mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Merge pull request #17930 from nextcloud/rakekniven-patch-1
l10n: Triple dot to ellipsis
This commit is contained in:
commit
cd71ad0e50
1 changed files with 5 additions and 5 deletions
|
|
@ -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.')
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue