diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-12-03 08:14:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 08:14:19 +0100 |
commit | faa6b8d114f2e96c00d9ef63adb75684aba48f1c (patch) | |
tree | af4e4b4c65c0fa4810ab50b760e0fa989a496b39 /apps/files_sharing/src/components/SharingInput.vue | |
parent | 80b40ff490f3771db325d3da751f30880643f1d0 (diff) | |
download | nextcloud-server-faa6b8d114f2e96c00d9ef63adb75684aba48f1c.tar.gz nextcloud-server-faa6b8d114f2e96c00d9ef63adb75684aba48f1c.zip |
Add space before ellipsis
Diffstat (limited to 'apps/files_sharing/src/components/SharingInput.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index b2f7652f244..ffa77f26784 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -122,16 +122,16 @@ export default { return t('files_sharing', 'Resharing is not allowed') } if (!allowRemoteSharing && allowMailSharing) { - return t('files_sharing', 'Name or email address…') + return t('files_sharing', 'Name or email address …') } if (allowRemoteSharing && !allowMailSharing) { - return t('files_sharing', 'Name or federated cloud ID…') + return t('files_sharing', 'Name or federated cloud ID …') } if (allowRemoteSharing && allowMailSharing) { - return t('files_sharing', 'Name, federated cloud ID or email address…') + return t('files_sharing', 'Name, federated cloud ID or email address …') } - return t('files_sharing', 'Name…') + return t('files_sharing', 'Name …') }, isValidQuery() { @@ -147,7 +147,7 @@ export default { noResultText() { if (this.loading) { - return t('files_sharing', 'Searching…') + return t('files_sharing', 'Searching …') } return t('files_sharing', 'No elements found.') } |