diff options
author | Enjeck C <patrathewhiz@gmail.com> | 2025-07-28 05:08:33 +0100 |
---|---|---|
committer | Enjeck C <patrathewhiz@gmail.com> | 2025-07-28 05:08:33 +0100 |
commit | cfc83e611ca52f00f632d049fea5e697d669b9b0 (patch) | |
tree | 092fa77f05a8e2f855d225d219be80a6809b4b32 | |
parent | 993355af9f13f0098e620f6a2ec63d3a64ffc9d0 (diff) | |
download | nextcloud-server-translatable-string.tar.gz nextcloud-server-translatable-string.zip |
fix: Make some strings in CodeIntegrity.php translatabletranslatable-string
Signed-off-by: Enjeck C <patrathewhiz@gmail.com>
-rw-r--r-- | apps/settings/lib/SetupChecks/CodeIntegrity.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/lib/SetupChecks/CodeIntegrity.php b/apps/settings/lib/SetupChecks/CodeIntegrity.php index 2b4271fae9c..3556f591360 100644 --- a/apps/settings/lib/SetupChecks/CodeIntegrity.php +++ b/apps/settings/lib/SetupChecks/CodeIntegrity.php @@ -50,13 +50,13 @@ class CodeIntegrity implements ISetupCheck { 'link1' => [ 'type' => 'highlight', 'id' => 'getFailedIntegrityCheckFiles', - 'name' => 'List of invalid files…', + 'name' => $this->l10n->t('List of invalid files…'), 'link' => $this->urlGenerator->linkToRoute('settings.CheckSetup.getFailedIntegrityCheckFiles'), ], 'link2' => [ 'type' => 'highlight', 'id' => 'rescanFailedIntegrityCheck', - 'name' => 'Rescan…', + 'name' => $this->l10n->t('Rescan…'), 'link' => $this->urlGenerator->linkToRoute('settings.CheckSetup.rescanFailedIntegrityCheck'), ], ], |