l10n: Triple dot to ellipsis

Reported at Transifex.

Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
This commit is contained in:
rakekniven 2019-11-13 18:26:30 +01:00 committed by GitHub
parent 634812ca1e
commit 80b40ff490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -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.')
}