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:
authordartcafe <github@dartcafe.de>2021-02-27 17:40:52 +0300
committerdartcafe <github@dartcafe.de>2021-02-27 17:40:52 +0300
commitb5b5f5f39fcf670457477d5ad0198058b8b5379e (patch)
tree816964d22e465d5d2b74dc23334928e39ac15f0f /src/js/components/SideBar/SideBarTabConfiguration.vue
parenteaf29cd18279a39cdc3b655aad0f1e6fc122b4e5 (diff)
workaround for quotation marks #1405
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/SideBar/SideBarTabConfiguration.vue')
-rw-r--r--src/js/components/SideBar/SideBarTabConfiguration.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/components/SideBar/SideBarTabConfiguration.vue b/src/js/components/SideBar/SideBarTabConfiguration.vue
index a3e5e2ef..0e42c21f 100644
--- a/src/js/components/SideBar/SideBarTabConfiguration.vue
+++ b/src/js/components/SideBar/SideBarTabConfiguration.vue
@@ -38,7 +38,7 @@
<ConfigBox :title="t('polls', 'Poll configurations')" icon-class="icon-category-customization">
<CheckBoxDiv v-model="pollAllowComment" :label="t('polls', 'Allow Comments')" />
- <CheckBoxDiv v-model="pollAllowMaybe" :label="t('polls', 'Allow \'maybe\' vote')" />
+ <CheckBoxDiv v-model="pollAllowMaybe" :label="allowMybeLabel" />
<div v-if="(useVoteLimit || useOptionLimit) && pollAllowMaybe" class="indented warning">
{{ t('polls', 'If vote limits are used, \'maybe\' shouldn\'t be allowed.') }}
@@ -115,6 +115,7 @@ export default {
data() {
return {
titleEmpty: false,
+ allowMybeLabel: t('polls', 'Allow "maybe" vote'),
accessOptions: [
{ value: 'hidden', label: t('polls', 'Only invited users') },
{ value: 'public', label: t('polls', 'All users') },