Merge pull request #17930 from nextcloud/rakekniven-patch-1

l10n: Triple dot to ellipsis
This commit is contained in:
John Molakvoæ 2019-12-03 15:40:03 +01:00 committed by GitHub
commit cd71ad0e50
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') return t('files_sharing', 'Resharing is not allowed')
} }
if (!allowRemoteSharing && allowMailSharing) { if (!allowRemoteSharing && allowMailSharing) {
return t('files_sharing', 'Name or email address...') return t('files_sharing', 'Name or email address')
} }
if (allowRemoteSharing && !allowMailSharing) { if (allowRemoteSharing && !allowMailSharing) {
return t('files_sharing', 'Name or federated cloud ID...') return t('files_sharing', 'Name or federated cloud ID')
} }
if (allowRemoteSharing && allowMailSharing) { 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() { isValidQuery() {
@ -147,7 +147,7 @@ export default {
noResultText() { noResultText() {
if (this.loading) { if (this.loading) {
return t('files_sharing', 'Searching...') return t('files_sharing', 'Searching')
} }
return t('files_sharing', 'No elements found.') return t('files_sharing', 'No elements found.')
} }