fix: auto-captions patch switch description (#488)

This commit is contained in:
OxrxL 2022-09-15 16:25:57 +02:00 committed by GitHub
parent 31e4800471
commit 57824fb16c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,8 +36,8 @@ class AutoCaptionsPatch : BytecodePatch(
"revanced_autocaptions_enabled", "revanced_autocaptions_enabled",
StringResource("revanced_autocaptions_enabled_title", "Disable auto-captions"), StringResource("revanced_autocaptions_enabled_title", "Disable auto-captions"),
false, false,
StringResource("revanced_autocaptions_summary_on", "Auto-captions are enabled"), StringResource("revanced_autocaptions_summary_on", "Auto-captions are disabled"),
StringResource("revanced_autocaptions_summary_off", "Auto-captions are disabled") StringResource("revanced_autocaptions_summary_off", "Auto-captions are enabled")
) )
) )
@ -77,4 +77,4 @@ class AutoCaptionsPatch : BytecodePatch(
return PatchResultSuccess() return PatchResultSuccess()
} }
} }