Merge pull request #17930 from nextcloud/rakekniven-patch-1
l10n: Triple dot to ellipsis
This commit is contained in:
commit
cd71ad0e50
|
@ -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.')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue