Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-12-03 10:14:19 +0300
committerGitHub <noreply@github.com>2019-12-03 10:14:19 +0300
commitfaa6b8d114f2e96c00d9ef63adb75684aba48f1c (patch)
treeaf4e4b4c65c0fa4810ab50b760e0fa989a496b39 /apps/files_sharing/src
parent80b40ff490f3771db325d3da751f30880643f1d0 (diff)
Add space before ellipsis
Diffstat (limited to 'apps/files_sharing/src')
-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 b2f7652f244..ffa77f26784 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.')
}