@@ -53,7 +52,7 @@
{{ description }}
-
![]()
+
{{ subTitle }}
@@ -70,8 +69,8 @@
}
.qr-url {
- font-size: 0.6em;
- margin-top: 16px;
+ font-size: 0.6em;
+ margin-top: 16px;
}
@media print {
diff --git a/src/components/Base/modules/RadioGroupDiv.vue b/src/components/Base/modules/RadioGroupDiv.vue
index 4bec7a9b2..e706d1ad1 100644
--- a/src/components/Base/modules/RadioGroupDiv.vue
+++ b/src/components/Base/modules/RadioGroupDiv.vue
@@ -4,42 +4,46 @@
-->
-
-
diff --git a/src/components/Cards/VoteInfoCards.vue b/src/components/Cards/VoteInfoCards.vue
index 37ea36563..144753e02 100644
--- a/src/components/Cards/VoteInfoCards.vue
+++ b/src/components/Cards/VoteInfoCards.vue
@@ -4,31 +4,66 @@
-->
@@ -42,4 +77,3 @@
-
diff --git a/src/components/Cards/modules/CardAddProposals.vue b/src/components/Cards/modules/CardAddProposals.vue
index 986341951..fe92c4976 100644
--- a/src/components/Cards/modules/CardAddProposals.vue
+++ b/src/components/Cards/modules/CardAddProposals.vue
@@ -4,34 +4,39 @@
-->
{{ t('polls', 'You are asked to propose more options. ') }}
- {{ t('polls', 'The proposal period ends {timeRelative}.',
- { timeRelative: pollStore.proposalsExpireRelative }) }}
+ {{
+ t('polls', 'The proposal period ends {timeRelative}.', {
+ timeRelative: pollStore.proposalsExpireRelative,
+ })
+ }}
-
+
diff --git a/src/components/Cards/modules/CardAnonymousPollHint.vue b/src/components/Cards/modules/CardAnonymousPollHint.vue
index 0eba3580e..39e82f338 100644
--- a/src/components/Cards/modules/CardAnonymousPollHint.vue
+++ b/src/components/Cards/modules/CardAnonymousPollHint.vue
@@ -4,21 +4,41 @@
-->
- {{ t('polls', 'This poll is an anonymous poll for everyone, including the owner. Deanonymizing is disabled for this poll.') }}
- {{ t('polls', 'But be aware, that your name is not stored in an encrypted or obfuscated way.') }}
+ {{
+ t(
+ 'polls',
+ 'This poll is an anonymous poll for everyone, including the owner. Deanonymizing is disabled for this poll.',
+ )
+ }}
+ {{
+ t(
+ 'polls',
+ 'But be aware, that your name is not stored in an encrypted or obfuscated way.',
+ )
+ }}
- {{ t('polls', 'This poll is an anonymous poll for everyone, except for the owner and delegated poll admins.') }}
- {{ t('polls', 'Anonymization of this poll can be removed at any time by the owner and delegated poll admins.') }}
+ {{
+ t(
+ 'polls',
+ 'This poll is an anonymous poll for everyone, except for the owner and delegated poll admins.',
+ )
+ }}
+ {{
+ t(
+ 'polls',
+ 'Anonymization of this poll can be removed at any time by the owner and delegated poll admins.',
+ )
+ }}
diff --git a/src/components/Cards/modules/CardClosedPoll.vue b/src/components/Cards/modules/CardClosedPoll.vue
index cc4a2a2fe..0ff2dc310 100644
--- a/src/components/Cards/modules/CardClosedPoll.vue
+++ b/src/components/Cards/modules/CardClosedPoll.vue
@@ -4,12 +4,12 @@
-->
@@ -19,4 +19,4 @@
{{ t('polls', 'No further action is possible.') }}
-
\ No newline at end of file
+
diff --git a/src/components/Cards/modules/CardHiddenParticipants.vue b/src/components/Cards/modules/CardHiddenParticipants.vue
index b14cd5762..faf51a42a 100644
--- a/src/components/Cards/modules/CardHiddenParticipants.vue
+++ b/src/components/Cards/modules/CardHiddenParticipants.vue
@@ -4,22 +4,32 @@
-->
- {{ t('polls', 'Due to possible performance issues {countHiddenParticipants} voters are hidden.', { countHiddenParticipants: pollStore.countHiddenParticipants }) }}
- {{ t('polls', 'You can reveal them, but you may expect an unwanted long loading time.') }}
+ {{
+ t(
+ 'polls',
+ 'Due to possible performance issues {countHiddenParticipants} voters are hidden.',
+ { countHiddenParticipants: pollStore.countHiddenParticipants },
+ )
+ }}
+ {{
+ t(
+ 'polls',
+ 'You can reveal them, but you may expect an unwanted long loading time.',
+ )
+ }}
-
diff --git a/src/components/Cards/modules/CardLimitedVotes.vue b/src/components/Cards/modules/CardLimitedVotes.vue
index 5933197c6..efdc8496e 100644
--- a/src/components/Cards/modules/CardLimitedVotes.vue
+++ b/src/components/Cards/modules/CardLimitedVotes.vue
@@ -4,43 +4,84 @@
-->
-
- {{ n('polls', '%n vote is allowed per option.', '%n votes are allowed per option.', pollStore.configuration.maxVotesPerOption) }}
+ {{
+ n(
+ 'polls',
+ '%n vote is allowed per option.',
+ '%n votes are allowed per option.',
+ pollStore.configuration.maxVotesPerOption,
+ )
+ }}
-
- {{ n('polls', '%n vote is allowed per participant.', '%n votes are allowed per participant.', pollStore.configuration.maxVotesPerUser) }}
- {{ n('polls', 'You have %n vote left.', 'You have %n votes left.', votesLeft) }}
+ {{
+ n(
+ 'polls',
+ '%n vote is allowed per participant.',
+ '%n votes are allowed per participant.',
+ pollStore.configuration.maxVotesPerUser,
+ )
+ }}
+ {{
+ n(
+ 'polls',
+ 'You have %n vote left.',
+ 'You have %n votes left.',
+ votesLeft,
+ )
+ }}
-
+
{{ orphanedVotesText }}
-
+
diff --git a/src/components/Cards/modules/CardLocked.vue b/src/components/Cards/modules/CardLocked.vue
index eede7f36a..b9e39f086 100644
--- a/src/components/Cards/modules/CardLocked.vue
+++ b/src/components/Cards/modules/CardLocked.vue
@@ -4,16 +4,22 @@
-->
diff --git a/src/components/Cards/modules/CardRegister.vue b/src/components/Cards/modules/CardRegister.vue
index fce6819a7..c4b02b133 100644
--- a/src/components/Cards/modules/CardRegister.vue
+++ b/src/components/Cards/modules/CardRegister.vue
@@ -4,25 +4,30 @@
-->
@@ -32,4 +37,4 @@
-
\ No newline at end of file
+
diff --git a/src/components/Cards/modules/CardSendConfirmations.vue b/src/components/Cards/modules/CardSendConfirmations.vue
index 8632428c1..70a47590a 100644
--- a/src/components/Cards/modules/CardSendConfirmations.vue
+++ b/src/components/Cards/modules/CardSendConfirmations.vue
@@ -4,42 +4,49 @@
-->
{{ confirmationSendMessage }}
-
-
diff --git a/src/components/Cards/modules/CardUnpublishedPoll.vue b/src/components/Cards/modules/CardUnpublishedPoll.vue
index c85e97588..8b5c8f439 100644
--- a/src/components/Cards/modules/CardUnpublishedPoll.vue
+++ b/src/components/Cards/modules/CardUnpublishedPoll.vue
@@ -4,20 +4,21 @@
-->
{{ t('polls', 'This poll is unpublished.') }}
- {{ t('polls', 'Existing participants will still have access.') }}
+ {{ t('polls', 'Existing participants will still have access.') }}
+
{{ t('polls', 'Invite users or allow internal access for all site users.') }}
diff --git a/src/components/Combo/ComboTable.vue b/src/components/Combo/ComboTable.vue
index 1a4b20a4b..6fd3217ac 100644
--- a/src/components/Combo/ComboTable.vue
+++ b/src/components/Combo/ComboTable.vue
@@ -4,31 +4,33 @@
-->
-
-
-
+
@@ -64,7 +65,8 @@
flex-direction: column;
}
- .participant, .vote-item {
+ .participant,
+ .vote-item {
flex: 0 0 auto;
height: 4.5em;
line-height: 1.5em;
@@ -89,7 +91,8 @@
overflow-x: scroll;
}
- .user-column::after, .vote-column::after {
+ .user-column::after,
+ .vote-column::after {
content: '';
height: 8px;
}
diff --git a/src/components/Combo/VoteColumn.vue b/src/components/Combo/VoteColumn.vue
index 024d25b2e..89156b170 100644
--- a/src/components/Combo/VoteColumn.vue
+++ b/src/components/Combo/VoteColumn.vue
@@ -6,12 +6,17 @@
//TODO: Check correct usage of participants in template (v-for)
-
-
+
-
diff --git a/src/components/Comments/CommentItem.vue b/src/components/Comments/CommentItem.vue
index a53b0ed63..3a53936e6 100644
--- a/src/components/Comments/CommentItem.vue
+++ b/src/components/Comments/CommentItem.vue
@@ -4,73 +4,85 @@
-->
-
{{ t('polls', 'The automatic reminder is sent to all shares via email:') }}
-{{ t('polls', 'For polls with expiration:') }}
++ {{ + t('polls', 'The automatic reminder is sent to all shares via email:') + }} +
+{{ t('polls', 'For polls with expiration:') }}
-- {{ t('polls', '48 hours before the expiration date, if the poll is created more than 5 days before the expiration.') }}
- - {{ t('polls', '36 hours before the expiration date, if the poll is created more than 2 and less than 5 days before the expiration.') }}
+ -
+ {{
+ t(
+ 'polls',
+ '48 hours before the expiration date, if the poll is created more than 5 days before the expiration.',
+ )
+ }}
+
+ -
+ {{
+ t(
+ 'polls',
+ '36 hours before the expiration date, if the poll is created more than 2 and less than 5 days before the expiration.',
+ )
+ }}
+
-{{ t('polls', 'For date polls without expiration:') }}
+{{ t('polls', 'For date polls without expiration:') }}
-- {{ t('polls', '48 hours before the first date option, if the poll is created more than 5 days before the first date option.') }}
- - {{ t('polls', '36 hours before the first date option, if the poll is created more than 2 and less than 5 days before the first date option.') }}
+ -
+ {{
+ t(
+ 'polls',
+ '48 hours before the first date option, if the poll is created more than 5 days before the first date option.',
+ )
+ }}
+
+ -
+ {{
+ t(
+ 'polls',
+ '36 hours before the first date option, if the poll is created more than 2 and less than 5 days before the first date option.',
+ )
+ }}
+
-{{ t('polls', 'No reminder is sent:') }}
+{{ t('polls', 'No reminder is sent:') }}
-- {{ t('polls', 'For text polls without expiration.') }}
- - {{ t('polls', 'For polls created less than 2 days before the expiration.') }}
- - {{ t('polls', 'If a share already got a reminder (no matter, if the expiration date got changed).') }}
- - {{ t('polls', 'If the poll is already closed.') }}
+ - {{ t('polls', 'For text polls without expiration.') }}
+ -
+ {{
+ t(
+ 'polls',
+ 'For polls created less than 2 days before the expiration.',
+ )
+ }}
+
+ -
+ {{
+ t(
+ 'polls',
+ 'If a share already got a reminder (no matter, if the expiration date got changed).',
+ )
+ }}
+
+ - {{ t('polls', 'If the poll is already closed.') }}