diff options
author | rakekniven <2069590+rakekniven@users.noreply.github.com> | 2021-11-02 22:11:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 22:11:31 +0100 |
commit | b7d0babcb88b3d277e4ba10b30fef4fb3fadb81f (patch) | |
tree | 64ec208e1c2f1728fd22bbf0d4ca9121867c5c10 /lib/private/legacy | |
parent | 95480f5a91ce6b5ff0135d6ec62c36cbf2f121b8 (diff) | |
download | nextcloud-server-b7d0babcb88b3d277e4ba10b30fef4fb3fadb81f.tar.gz nextcloud-server-b7d0babcb88b3d277e4ba10b30fef4fb3fadb81f.zip |
Added dot at end of sentence.
The full message in the UI is composed by a few strings. Therefore the single parts needs an dot at the end.
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/OC_Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_Util.php b/lib/private/legacy/OC_Util.php index 35c81dd34e6..21fd18c4b13 100644 --- a/lib/private/legacy/OC_Util.php +++ b/lib/private/legacy/OC_Util.php @@ -781,7 +781,7 @@ class OC_Util { $errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY)); } else { $errors[] = [ - 'error' => $l->t('Cannot create "data" directory'), + 'error' => $l->t('Cannot create "data" directory.'), 'hint' => $l->t('This can usually be fixed by giving the webserver write access to the root directory. See %s', [$urlGenerator->linkToDocs('admin-dir_permissions')]) ]; |