aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrakekniven <2069590+rakekniven@users.noreply.github.com>2025-04-12 17:19:26 +0200
committerGitHub <noreply@github.com>2025-04-12 17:19:26 +0200
commit0ceea33749bd9f57af6137bb3c13b3eefb4ae1d4 (patch)
tree81d73deca4345acb48d0a7fe93e9611952d01046
parente761c9e3eb2ab565adb890ce2faf33ada6fb3311 (diff)
downloadnextcloud-server-0ceea33749bd9f57af6137bb3c13b3eefb4ae1d4.tar.gz
nextcloud-server-0ceea33749bd9f57af6137bb3c13b3eefb4ae1d4.zip
chore(i18n): Aligned spelling of app namerakekniven-patch-2
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
-rw-r--r--apps/files_reminders/lib/SetupChecks/NeedNotificationsApp.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_reminders/lib/SetupChecks/NeedNotificationsApp.php b/apps/files_reminders/lib/SetupChecks/NeedNotificationsApp.php
index 1dc7d652c67..e5890567181 100644
--- a/apps/files_reminders/lib/SetupChecks/NeedNotificationsApp.php
+++ b/apps/files_reminders/lib/SetupChecks/NeedNotificationsApp.php
@@ -31,9 +31,9 @@ class NeedNotificationsApp implements ISetupCheck {
public function run(): SetupResult {
if ($this->appManager->isEnabledForAnyone('notifications')) {
- return SetupResult::success($this->l10n->t('This files_reminder can work properly.'));
+ return SetupResult::success($this->l10n->t('The "files_reminders" app can work properly.'));
} else {
- return SetupResult::warning($this->l10n->t('The files_reminder app needs the notification app to work properly. You should either enable notifications or disable files_reminder.'));
+ return SetupResult::warning($this->l10n->t('The "files_reminders" app needs the notification app to work properly. You should either enable notifications or disable files_reminder.'));
}
}
}