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
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2022-08-22 11:33:58 +0300
committerGitHub <noreply@github.com>2022-08-22 11:33:58 +0300
commit55b30c6ba6daa79591baef1c9190eb17323a7f82 (patch)
tree9eb78f8b0485df4a00ebff1b1543989475f3d416 /src/js/components
parent196a0800a9b30e92b029dd23167b03aa31fc3f18 (diff)
l10n: Change "mail" to "email" (#2550)
* l10n: Change "mail" to "email" Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> * l10n: Changed to lowercase Reported at Transifex. Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Co-authored-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Diffstat (limited to 'src/js/components')
-rw-r--r--src/js/components/Actions/ActionSendConfirmedOptions.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/components/Actions/ActionSendConfirmedOptions.vue b/src/js/components/Actions/ActionSendConfirmedOptions.vue
index b112b261..88f83f6a 100644
--- a/src/js/components/Actions/ActionSendConfirmedOptions.vue
+++ b/src/js/components/Actions/ActionSendConfirmedOptions.vue
@@ -28,12 +28,12 @@
<template #icon>
<EmailCheckIcon />
</template>
- {{ t('polls', 'Send Confirmation mails') }}
+ {{ t('polls', 'Send confirmation emails') }}
</VueButton>
</div>
<div v-if="confirmations" class="confirmation-info">
<div v-if="confirmations.sent" class="sent-confirmations">
- <h2>{{ t('polls', 'Sent mails to:') }}</h2>
+ <h2>{{ t('polls', 'Sent emails to:') }}</h2>
<ul>
<li v-for="(item) in confirmations.sent" :key="item">
{{ item }}
@@ -41,7 +41,7 @@
</ul>
</div>
<div v-if="confirmations.error" class="error-confirmations">
- <h2>{{ t('polls', 'Mails could not be sent:') }}</h2>
+ <h2>{{ t('polls', 'Emails could not be sent:') }}</h2>
<ul>
<li v-for="(item) in confirmations.error" :key="item">
{{ item }}
@@ -67,7 +67,7 @@ export default {
data() {
return {
- caption: t('polls', 'Send information about confirmed options per mail'),
+ caption: t('polls', 'Send information about confirmed options by email'),
confirmations: null,
headerCaption: t('polls', 'Inform your participants about the confirmed options'),
}