diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2019-11-13 18:26:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-13 18:26:30 +0100 |
commit | 80b40ff490f3771db325d3da751f30880643f1d0 (patch) | |
tree | 144ffeceff046b98e593499f7416a2fb44fc5bf0 /apps | |
parent | 634812ca1ec3c92bcd36aab546dcddb18ca90554 (diff) | |
download | nextcloud-server-80b40ff490f3771db325d3da751f30880643f1d0.tar.gz nextcloud-server-80b40ff490f3771db325d3da751f30880643f1d0.zip |
l10n: Triple dot to ellipsis
Reported at Transifex.
Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
Diffstat (limited to 'apps')
-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 df222eafe0c..b2f7652f244 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.') } |