fix typo in resource string name

This commit is contained in:
David Kaspar 2023-10-27 20:07:18 +01:00
parent 116bb19bc6
commit e89384ee61
2 changed files with 4 additions and 4 deletions

View File

@ -81,14 +81,14 @@ fun SelectNotificationProvider(sharedPreferencesViewModel: SharedPreferencesView
distributorPresent = true
},
title = {
Text(stringResource(R.string.push_server_insteall_app))
Text(stringResource(R.string.push_server_install_app))
},
text = {
Material3RichText(
style = RichTextStyle().resolveDefaults()
) {
Markdown(
content = stringResource(R.string.push_server_insteall_app_description)
content = stringResource(R.string.push_server_install_app_description)
)
}
},

View File

@ -653,8 +653,8 @@
<string name="push_server_none_explainer">Disables Push Notifications</string>
<string name="push_server_uses_app_explainer">Uses app %1$s</string>
<string name="push_server_insteall_app">Push Notification Setup</string>
<string name="push_server_insteall_app_description">
<string name="push_server_install_app">Push Notification Setup</string>
<string name="push_server_install_app_description">
To receive push notifications, install any app that supports [Unified Push](https://unifiedpush.org/), such as [Nfty](https://ntfy.sh/).
After installing, select the app you want to use in the Settings.
</string>