summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-12-03 15:40:03 +0100
committerGitHub <noreply@github.com>2019-12-03 15:40:03 +0100
commitcd71ad0e50ecafdbad67c99d77bd77b32bdd5ca5 (patch)
tree33218914ddd2e9abb0f35309714aef99c84bf32d /apps
parent9cd7ecef9be3acdb52b531e8fc1fb9a2e9115a0b (diff)
parentfaa6b8d114f2e96c00d9ef63adb75684aba48f1c (diff)
downloadnextcloud-server-cd71ad0e50ecafdbad67c99d77bd77b32bdd5ca5.tar.gz
nextcloud-server-cd71ad0e50ecafdbad67c99d77bd77b32bdd5ca5.zip
Merge pull request #17930 from nextcloud/rakekniven-patch-1
l10n: Triple dot to ellipsis
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/src/components/SharingInput.vue10
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 c80bb02c6bc..8b4a115a4ba 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.')
}