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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-04-27 09:59:05 +0300
committerGitHub <noreply@github.com>2021-04-27 09:59:05 +0300
commit9c645b9cdccf804e9de429d00bae6cd4a8fc0e2d (patch)
tree0a04345bdfcea4ecd6b6ba2bb947780260523b31 /src
parentad6e46e17406f12e4a8f6c1443841dbd0108d7b5 (diff)
l10n: Change "username" to "name"
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Poll/PublicRegisterModal.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/js/components/Poll/PublicRegisterModal.vue b/src/js/components/Poll/PublicRegisterModal.vue
index 94339059..779a9f0b 100644
--- a/src/js/components/Poll/PublicRegisterModal.vue
+++ b/src/js/components/Poll/PublicRegisterModal.vue
@@ -128,28 +128,28 @@ export default {
userNameCheck() {
if (this.checkingUserName) {
return {
- result: t('polls', 'Checking username …'),
+ result: t('polls', 'Checking name …'),
status: 'checking',
}
}
if (this.userName.length === 0) {
return {
- result: t('polls', 'Enter a username to participate.'),
+ result: t('polls', 'Enter a name to participate.'),
status: 'empty',
}
} else if (this.userName.length < 3) {
return {
- result: t('polls', 'Username must be at least 3 characters.'),
+ result: t('polls', 'Name must be at least 3 characters.'),
status: 'error',
}
} else if (!this.isValidName) {
return {
- result: t('polls', 'Invalid username'),
+ result: t('polls', 'Invalid name'),
status: 'error',
}
}
return {
- result: t('polls', 'Username {username} is valid.', { username: this.userName }),
+ result: t('polls', 'Name {username} is valid.', { username: this.userName }),
status: 'success',
}
@@ -174,7 +174,7 @@ export default {
}
}
return {
- result: t('polls', 'valid email address.'),
+ result: t('polls', 'Valid email address.'),
status: 'success',
}
@@ -265,7 +265,7 @@ export default {
this.closeModal()
}
} catch {
- showError(t('polls', 'Error saving username', 1, this.poll.title))
+ showError(t('polls', 'Error saving name', 1, this.poll.title))
}
}
},