diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-02-14 06:06:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 06:06:19 +0100 |
commit | 39b13e096ccfd23d8b9b4527e098f53b7535f26b (patch) | |
tree | 3cccb81d96ef57dbce4fda69bb7e6fd2979e27e6 /apps | |
parent | e01936efa845b579127691bbd41488d997b65440 (diff) | |
parent | f4b7917ca678b62742a83671541d4b0fac8fcdc7 (diff) | |
download | nextcloud-server-39b13e096ccfd23d8b9b4527e098f53b7535f26b.tar.gz nextcloud-server-39b13e096ccfd23d8b9b4527e098f53b7535f26b.zip |
Merge pull request #36675 from nextcloud/rakekniven-patch-3
l10n: Fixed grammar
Diffstat (limited to 'apps')
-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) |