Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve strings #53

Merged
merged 10 commits into from
May 30, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import app.revanced.util.resultOrThrow
@Suppress("unused")
object ScreenshotPopupPatch : BaseBytecodePatch(
name = "Disable screenshot popup",
description = "Adds an option to disable the popup that shows up when taking a screenshot.",
description = "Adds an option to disable the popup that appears when taking a screenshot.",
dependencies = setOf(
SettingsPatch::class,
SharedResourceIdPatch::class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import app.revanced.util.patch.BaseResourcePatch
@Suppress("DEPRECATION", "unused")
object MaterialYouPatch : BaseResourcePatch(
name = "MaterialYou",
description = "Enables MaterialYou theme for Android 12+.",
description = "Applies the MaterialYou theme for Android 12+ devices.",
dependencies = setOf(
BaseThemePatch::class,
SettingsPatch::class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction3rc
@Suppress("unused")
object PlayerButtonsPatch : BaseBytecodePatch(
name = "Hide player buttons",
description = "Adds an option to hide buttons in the video player.",
description = "Adds options to hide buttons in the video player.",
dependencies = setOf(
CastButtonPatch::class,
FullscreenButtonViewStubPatch::class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import app.revanced.util.patch.BaseResourcePatch
@Suppress("unused")
object ShortsOutlineButtonPatch : BaseResourcePatch(
name = "Shorts outline button",
description = "Applies the outline icon to the action buttons in the Shorts player.",
description = "Applies, at compile time, the outline icon to the action buttons in the Shorts player.",
dependencies = setOf(SettingsPatch::class),
compatiblePackages = COMPATIBLE_PACKAGE
) {
Expand Down
Loading