diff options
author | rakekniven <2069590+rakekniven@users.noreply.github.com> | 2023-02-11 22:59:22 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-02-13 09:09:53 +0000 |
commit | f4b7917ca678b62742a83671541d4b0fac8fcdc7 (patch) | |
tree | f509274238cc38a8bac25ec14a19eab454ce5137 /apps/files | |
parent | b59b8fd8088502c9a55a1efaa760ff34964cd439 (diff) | |
download | nextcloud-server-f4b7917ca678b62742a83671541d4b0fac8fcdc7.tar.gz nextcloud-server-f4b7917ca678b62742a83671541d4b0fac8fcdc7.zip |
l10n: Fixed grammar
Reported at Transifex.
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/views/Settings.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/src/views/Settings.vue b/apps/files/src/views/Settings.vue index 9a63fea4924..1319b1f1808 100644 --- a/apps/files/src/views/Settings.vue +++ b/apps/files/src/views/Settings.vue @@ -46,7 +46,7 @@ </NcAppSettingsSection> <!-- Webdav URL--> - <NcAppSettingsSection id="webdav" :title="t('files', 'Webdav')"> + <NcAppSettingsSection id="webdav" :title="t('files', 'WebDAV')"> <NcInputField id="webdav-url-input" :show-trailing-button="true" :success="webdavUrlCopied" @@ -156,7 +156,7 @@ export default { await navigator.clipboard.writeText(this.webdavUrl) this.webdavUrlCopied = true - showSuccess(t('files', 'Webdav URL copied to clipboard')) + showSuccess(t('files', 'WebDAV URL copied to clipboard')) setTimeout(() => { this.webdavUrlCopied = false }, 5000) |