Skip to content

Commit ba1271b

Browse files
committed
fix: Inconsistent string with context
1 parent 9a9d1ea commit ba1271b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/src/main/java/app/revanced/manager/ui/screen/settings/DownloadsSettingsScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ fun DownloadsSettingsScreen(
144144
is DownloaderPluginState.Loaded -> TrustDialog(
145145
title = R.string.downloader_plugin_revoke_trust_dialog_title,
146146
body = stringResource(
147-
R.string.downloader_plugin_trust_dialog_body,
147+
R.string.downloader_plugin_revoke_trust_dialog_body,
148148
),
149149
pluginName = appName,
150150
signature = signature,

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
<string name="downloader_plugin_trust_dialog_title">Trust plugin?</string>
139139
<string name="downloader_plugin_revoke_trust_dialog_title">Revoke trust?</string>
140140
<string name="downloader_plugin_trust_dialog_body">By continuing you\'ve agreed to running external plugins.\n\nDo not allow any suspicious plugin(s) to be installed as they can run arbitrary code.</string>
141+
<string name="downloader_plugin_revoke_trust_dialog_body">By revoking trust, this plugin will be disabled and prevented from running.</string>
141142
<string name="downloader_plugin_trust_dialog_signature">Signature:\n\n%s</string>
142143
<string name="downloader_plugin_trust_dialog_plugin">Plugin:\n%s</string>
143144
<string name="downloader_settings_no_apps">No downloaded apps found</string>

0 commit comments

Comments
 (0)