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:
authorRené Gieling <github@dartcafe.de>2021-08-07 10:44:01 +0300
committerGitHub <noreply@github.com>2021-08-07 10:44:01 +0300
commit545bc616bdf9e001d8d60994f0260d5d18dcdb93 (patch)
treecf53a48bd7644835dcb11c0596e1e79fe18e9bf7 /src/js/components/Configuration
parentc27d29ace30b7a3217d901ff542a88460aa2d548 (diff)
parent4589679c8721c898f9063e85be9630649409a508 (diff)
Merge branch 'master' into layout/vote-view
Diffstat (limited to 'src/js/components/Configuration')
-rw-r--r--src/js/components/Configuration/ConfigAllowMayBe.vue2
-rw-r--r--src/js/components/Configuration/ConfigOptionLimit.vue2
-rw-r--r--src/js/components/Configuration/ConfigUseNo.vue2
-rw-r--r--src/js/components/Configuration/ConfigVoteLimit.vue2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/js/components/Configuration/ConfigAllowMayBe.vue b/src/js/components/Configuration/ConfigAllowMayBe.vue
index 62585625..e55945fc 100644
--- a/src/js/components/Configuration/ConfigAllowMayBe.vue
+++ b/src/js/components/Configuration/ConfigAllowMayBe.vue
@@ -39,7 +39,7 @@ export default {
data() {
return {
- label: t('polls', 'Allow "maybe" vote'),
+ label: t('polls', 'Allow "Maybe" vote'),
}
},
diff --git a/src/js/components/Configuration/ConfigOptionLimit.vue b/src/js/components/Configuration/ConfigOptionLimit.vue
index 66afcffd..8d52ab08 100644
--- a/src/js/components/Configuration/ConfigOptionLimit.vue
+++ b/src/js/components/Configuration/ConfigOptionLimit.vue
@@ -23,7 +23,7 @@
<template>
<div>
<CheckboxRadioSwitch :checked.sync="useOptionLimit" type="switch">
- {{ t('polls', 'Limit yes votes per option') }}
+ {{ t('polls', 'Limit "Yes" votes per option') }}
</CheckboxRadioSwitch>
<InputDiv v-if="optionLimit"
v-model="optionLimit"
diff --git a/src/js/components/Configuration/ConfigUseNo.vue b/src/js/components/Configuration/ConfigUseNo.vue
index c01fb11b..dccac3fa 100644
--- a/src/js/components/Configuration/ConfigUseNo.vue
+++ b/src/js/components/Configuration/ConfigUseNo.vue
@@ -39,7 +39,7 @@ export default {
data() {
return {
- label: t('polls', 'Delete vote when switched to "no"'),
+ label: t('polls', 'Delete vote when switched to "No"'),
}
},
diff --git a/src/js/components/Configuration/ConfigVoteLimit.vue b/src/js/components/Configuration/ConfigVoteLimit.vue
index c3358421..3735f66a 100644
--- a/src/js/components/Configuration/ConfigVoteLimit.vue
+++ b/src/js/components/Configuration/ConfigVoteLimit.vue
@@ -23,7 +23,7 @@
<template>
<div>
<CheckboxRadioSwitch :checked.sync="useVoteLimit" type="switch">
- {{ t('polls', 'Limit yes votes per user') }}
+ {{ t('polls', 'Limit "Yes" votes per user') }}
</CheckboxRadioSwitch>
<InputDiv v-if="voteLimit"
v-model="voteLimit"