decidim-forms 0.30.2 → 0.30.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/packs/src/decidim/forms/forms.js +25 -4
  3. data/app/views/decidim/forms/admin/questionnaires/_question.html.erb +1 -11
  4. data/app/views/decidim/forms/admin/questionnaires/_questions_form.html.erb +31 -2
  5. data/app/views/decidim/forms/admin/questionnaires/_separator.html.erb +3 -10
  6. data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +1 -11
  7. data/config/locales/ar.yml +0 -2
  8. data/config/locales/bg.yml +0 -7
  9. data/config/locales/ca-IT.yml +1 -7
  10. data/config/locales/ca.yml +1 -7
  11. data/config/locales/cs.yml +1 -7
  12. data/config/locales/de.yml +0 -7
  13. data/config/locales/el.yml +0 -7
  14. data/config/locales/en.yml +1 -7
  15. data/config/locales/es-MX.yml +1 -7
  16. data/config/locales/es-PY.yml +1 -7
  17. data/config/locales/es.yml +1 -7
  18. data/config/locales/eu.yml +1 -7
  19. data/config/locales/fi-plain.yml +1 -7
  20. data/config/locales/fi.yml +1 -7
  21. data/config/locales/fr-CA.yml +1 -7
  22. data/config/locales/fr.yml +1 -7
  23. data/config/locales/ga-IE.yml +0 -4
  24. data/config/locales/gl.yml +0 -4
  25. data/config/locales/hu.yml +0 -4
  26. data/config/locales/id-ID.yml +0 -2
  27. data/config/locales/it.yml +0 -5
  28. data/config/locales/ja.yml +1 -7
  29. data/config/locales/lb.yml +0 -5
  30. data/config/locales/lt.yml +0 -7
  31. data/config/locales/lv.yml +0 -4
  32. data/config/locales/nl.yml +0 -7
  33. data/config/locales/no.yml +0 -7
  34. data/config/locales/pl.yml +0 -7
  35. data/config/locales/pt-BR.yml +0 -7
  36. data/config/locales/pt.yml +0 -5
  37. data/config/locales/ro-RO.yml +0 -7
  38. data/config/locales/ru.yml +0 -2
  39. data/config/locales/sk.yml +0 -2
  40. data/config/locales/sv.yml +1 -7
  41. data/config/locales/tr-TR.yml +0 -5
  42. data/config/locales/val-ES.yml +0 -2
  43. data/config/locales/zh-CN.yml +0 -5
  44. data/config/locales/zh-TW.yml +0 -7
  45. data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +122 -25
  46. data/lib/decidim/forms/version.rb +1 -1
  47. metadata +8 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1a8b24f27a5fe27e2a6ebf4799b2f59683f3da639198b0e7a346c60dcd28561
4
- data.tar.gz: 7c4caea9fc78e3515c2d2f95bb31db886e96a091f51f248d2939eaf03ecb2b6b
3
+ metadata.gz: 8a8424bb2f5cacd9868f1538d0cdc057fcdc584376ade7d96feedc3d6f786d82
4
+ data.tar.gz: ed7905ca76911d9f7f64356fa8c769c84d2f2d55e5f759dbe31c2ae53dafefcc
5
5
  SHA512:
6
- metadata.gz: 5c3946e36ebcc2261912001d51c32363e77fda1a3949d3d0c12ec5c794fa75211b958ded800bc860ffdefab777ec96d89f964e1f1e7bc294af4afc1ca0953cbb
7
- data.tar.gz: 70eef05c6c7bb3cb7000f1659db5c6249962754a0add45ccd7f6f1dcf88e583b8852c0e2b77ebd7131c2ef365ededf5fb8e8182a91acfdd41c5e69466a804f78
6
+ metadata.gz: f2a0e85dca3cc59b4cae82c57be4a322fdf6f6105dcdeb7ba8d423f6d6bc79bb2ad87ba792f1568ea30510fb226c74a664a38674c6b2dc1a42691e58553ccefe
7
+ data.tar.gz: d7db5fad7db1ec5d1e10276822d1b1c3b609db8d7065f03e7550c1842e4adb6d40641d972196d6f3d920b15aa5efc4c59fd285823ff79c3f4a14c2304a1042de
@@ -35,10 +35,31 @@ $(() => {
35
35
  }
36
36
  });
37
37
 
38
- document.querySelectorAll(".js-sortable-check-box-collection").forEach((el) => new DragonDrop(el, {
39
- handle: false,
40
- item: ".js-collection-input"
41
- }));
38
+ document.querySelectorAll(".js-sortable-check-box-collection").forEach((el) => {
39
+
40
+ /**
41
+ * Due to a bug reported in https://github.com/decidim/decidim/issues/15191
42
+ * we have to listen to the `drag` event and prevent the scrolling
43
+ * and enabling it back again after it.
44
+ */
45
+
46
+ let preventScroll = function(event) {
47
+ event.preventDefault();
48
+ }
49
+
50
+ el.addEventListener("touchmove", (event) => {
51
+ preventScroll(event);
52
+ }, { passive: false });
53
+
54
+ el.addEventListener("touchend", () => {
55
+ el.removeEventListener("touchmove", preventScroll)
56
+ });
57
+
58
+ return new DragonDrop(el, {
59
+ handle: false,
60
+ item: ".js-collection-input"
61
+ });
62
+ });
42
63
 
43
64
  $(".answer-questionnaire .question[data-conditioned='true']").each((idx, el) => {
44
65
  createDisplayConditions({
@@ -23,17 +23,7 @@
23
23
  </button>
24
24
 
25
25
  <% if editable %>
26
- <button class="button button__sm button__transparent-secondary small alert move-up-question button--title">
27
- <%= icon("arrow-up-line") %>
28
- <%= t(".up") %>
29
- </button>
30
-
31
- <button class="button button__sm button__transparent-secondary small alert move-down-question button--title">
32
- <%= icon("arrow-down-line") %>
33
- <%= t(".down") %>
34
- </button>
35
-
36
- <button class="button button__sm button__transparent-secondary small alert remove-question button--title">
26
+ <button class="button button__xs button__transparent-secondary small alert remove-question button--title">
37
27
  <%= icon("delete-bin-line") %>
38
28
  <%= t(".remove") %>
39
29
  </button>
@@ -39,7 +39,7 @@
39
39
  <%= cell("decidim/announcement", t(".already_answered_warning"), callout_class: "warning" ) %>
40
40
  <% end %>
41
41
 
42
- <div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0">
42
+ <div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0" data-draggable-table data-sort-url="#" id="questionnaire-questions-list">
43
43
  <% @form.questions.each_with_index do |question, index| %>
44
44
  <%= fields_for "questions[questions][]", question do |question_form| %>
45
45
  <% if question.separator? %>
@@ -72,9 +72,38 @@
72
72
  <%= append_javascript_pack_tag "decidim_forms_admin" %>
73
73
 
74
74
  <% if questionnaire.questions_editable? %>
75
- <script>
75
+ <script>
76
76
  document.addEventListener("DOMContentLoaded", function () {
77
77
  window.Decidim.createEditableForm();
78
+
79
+ // Function to initialize the sortable functionality
80
+ function initializeSortable() {
81
+ const container = document.querySelector("#questionnaire-questions-list");
82
+ const questionCards = container?.querySelectorAll(".card.questionnaire-question");
83
+
84
+ if (!container || !questionCards?.length) return;
85
+
86
+ questionCards.forEach(card => {
87
+ card.setAttribute("draggable", "true");
88
+ card.setAttribute("role", "option");
89
+ card.setAttribute("aria-grabbed", "false");
90
+ });
91
+
92
+ window.Decidim?.createSortableList?.("#questionnaire-questions-list");
93
+ }
94
+
95
+ // Initialize on load and when new options such as questions etc are added
96
+ initializeSortable();
97
+
98
+ const observer = new MutationObserver(() => {
99
+ clearTimeout(observer.timer);
100
+ observer.timer = setTimeout(initializeSortable, 500);
101
+ });
102
+
103
+ const container = document.querySelector("#questionnaire-questions-list");
104
+ if (container) {
105
+ observer.observe(container, { childList: true, subtree: true });
106
+ }
78
107
  });
79
108
  </script>
80
109
  <% end %>
@@ -12,16 +12,9 @@
12
12
 
13
13
  <div class="flex items-center gap-x-4 ml-auto">
14
14
  <% if editable %>
15
- <button class="button button__sm button__transparent button__transparent-secondary small alert move-up-question button--title">
16
- <%== "#{icon("arrow-up-line")} #{t(".up")}" %>
17
- </button>
18
-
19
- <button class="button button__sm button__transparent button__transparent-secondary small alert move-down-question button--title">
20
- <%== "#{icon("arrow-down-line")} #{t(".down")}" %>
21
- </button>
22
-
23
- <button class="button button__sm button__transparent button__transparent-secondary small alert remove-question button--title">
24
- <%= t(".remove") %>
15
+ <button class="button button__xs button__transparent button__transparent-secondary small alert remove-question button--title">
16
+ <%= icon("delete-bin-line") %>
17
+ <span class="hidden md:block"><%= t(".remove") %></span>
25
18
  </button>
26
19
  <% end %>
27
20
  </div>
@@ -23,17 +23,7 @@
23
23
  </button>
24
24
 
25
25
  <% if editable %>
26
- <button class="button button__sm button__transparent button__transparent-secondary small alert move-up-question button--title">
27
- <%= icon("arrow-up-line") %>
28
- <%= t(".up") %>
29
- </button>
30
-
31
- <button class="button button__sm button__transparent button__transparent-secondary small alert move-down-question button--title">
32
- <%= icon("arrow-down-line") %>
33
- <%= t(".down") %>
34
- </button>
35
-
36
- <button class="button button__sm button__transparent button__transparent-secondary small alert remove-question button--title">
26
+ <button class="button button__xs button__transparent button__transparent-secondary small alert remove-question button--title">
37
27
  <%= icon("delete-bin-line") %>
38
28
  <%= t(".remove") %>
39
29
  </button>
@@ -35,11 +35,9 @@ ar:
35
35
  add_answer_option: إضافة خيار الإجابة
36
36
  any: أي
37
37
  description: وصف
38
- down: أسفل
39
38
  question: سؤال
40
39
  remove: إزالة
41
40
  statement: بيان
42
- up: فوق
43
41
  title_and_description:
44
42
  description: الوصف
45
43
  update:
@@ -19,7 +19,6 @@ bg:
19
19
  tos: Условия за ползване
20
20
  questionnaires:
21
21
  actions:
22
- back: Назад към въпросите
23
22
  show: Показване на отговорите
24
23
  answer_option:
25
24
  answer_option: Възможност за отговор
@@ -72,26 +71,20 @@ bg:
72
71
  any: Някой
73
72
  collapse: Свий
74
73
  description: Описание
75
- down: Надолу
76
74
  expand: Разтваряне
77
75
  question: Въпрос
78
76
  remove: Премахни
79
77
  statement: Изявление
80
- up: Горе
81
78
  separator:
82
- down: Долу
83
79
  remove: Премахни
84
80
  separator: Разделител
85
- up: Горе
86
81
  title_and_description:
87
82
  collapse: Свий
88
83
  description: Описание
89
- down: Долу
90
84
  expand: Разтваряне
91
85
  remove: Премахни
92
86
  title: Заглавие
93
87
  title_and_description: Заглавие и описание
94
- up: Горе
95
88
  update:
96
89
  invalid: Възникна проблем при запазването на формуляра.
97
90
  success: Формулярите бяха запазени успешно.
@@ -55,7 +55,7 @@ ca-IT:
55
55
  tos: Termes del servei
56
56
  questionnaires:
57
57
  actions:
58
- back: Tornar a les preguntes
58
+ back: Tornar a les respostes
59
59
  publish_answers: Publica respostes
60
60
  show: Mostrar les respostes
61
61
  answer_option:
@@ -125,12 +125,10 @@ ca-IT:
125
125
  any: Cap
126
126
  collapse: Redueix
127
127
  description: Descripció
128
- down: Avall
129
128
  expand: Expandeix
130
129
  question: Pregunta
131
130
  remove: Eliminar
132
131
  statement: Declaració
133
- up: Amunt
134
132
  questions_form:
135
133
  already_answered_warning: No pots modificar les preguntes d'aquest formulari perquè algunes participants ja han respost el formulari.
136
134
  collapse: Replega totes les preguntes
@@ -139,19 +137,15 @@ ca-IT:
139
137
  update:
140
138
  success: Pregunta/es afegida/es correctament a l'enquesta.
141
139
  separator:
142
- down: Baixar
143
140
  remove: Eliminar
144
141
  separator: Separador
145
- up: Pujar
146
142
  title_and_description:
147
143
  collapse: Replegar
148
144
  description: Descripció
149
- down: Baixar
150
145
  expand: Expandir
151
146
  remove: Esborrar
152
147
  title: Títol
153
148
  title_and_description: Títol i descripció
154
- up: Pujar
155
149
  update:
156
150
  invalid: S'ha produït un error en desar el formulari.
157
151
  success: Formulari desat correctament.
@@ -55,7 +55,7 @@ ca:
55
55
  tos: Termes del servei
56
56
  questionnaires:
57
57
  actions:
58
- back: Tornar a les preguntes
58
+ back: Tornar a les respostes
59
59
  publish_answers: Publica respostes
60
60
  show: Mostrar les respostes
61
61
  answer_option:
@@ -125,12 +125,10 @@ ca:
125
125
  any: Cap
126
126
  collapse: Redueix
127
127
  description: Descripció
128
- down: Avall
129
128
  expand: Expandeix
130
129
  question: Pregunta
131
130
  remove: Eliminar
132
131
  statement: Declaració
133
- up: Amunt
134
132
  questions_form:
135
133
  already_answered_warning: No pots modificar les preguntes d'aquest formulari perquè algunes participants ja han respost el formulari.
136
134
  collapse: Replega totes les preguntes
@@ -139,19 +137,15 @@ ca:
139
137
  update:
140
138
  success: Pregunta/es afegida/es correctament a l'enquesta.
141
139
  separator:
142
- down: Baixar
143
140
  remove: Eliminar
144
141
  separator: Separador
145
- up: Pujar
146
142
  title_and_description:
147
143
  collapse: Replegar
148
144
  description: Descripció
149
- down: Baixar
150
145
  expand: Expandir
151
146
  remove: Esborrar
152
147
  title: Títol
153
148
  title_and_description: Títol i descripció
154
- up: Pujar
155
149
  update:
156
150
  invalid: S'ha produït un error en desar el formulari.
157
151
  success: Formulari desat correctament.
@@ -55,7 +55,7 @@ cs:
55
55
  tos: Podmínky služby
56
56
  questionnaires:
57
57
  actions:
58
- back: Zpět na otázky
58
+ back: Zpět k reakcím
59
59
  publish_answers: Zveřejnit odpovědi
60
60
  show: Zobrazit odpovědi
61
61
  answer_option:
@@ -125,12 +125,10 @@ cs:
125
125
  any: Žádný
126
126
  collapse: Sbalit
127
127
  description: Popis
128
- down: Dolů
129
128
  expand: Rozbalit
130
129
  question: Otázka
131
130
  remove: Odstranit
132
131
  statement: Prohlášení
133
- up: Nahoru
134
132
  questions_form:
135
133
  already_answered_warning: Formulář je již zodpovězen některými uživateli, takže jeho otázky nemůžete upravovat.
136
134
  collapse: Sbalit všechny otázky
@@ -139,19 +137,15 @@ cs:
139
137
  update:
140
138
  success: Otázky ankety byly úspěšně uloženy.
141
139
  separator:
142
- down: Dolů
143
140
  remove: Odebrat
144
141
  separator: Oddělovač
145
- up: Nahoru
146
142
  title_and_description:
147
143
  collapse: Sbalit
148
144
  description: Popis
149
- down: Dolů
150
145
  expand: Rozbalit
151
146
  remove: Odebrat
152
147
  title: Název
153
148
  title_and_description: Název a popis
154
- up: Nahoru
155
149
  update:
156
150
  invalid: Při ukládání dotazníku došlo k chybám.
157
151
  success: Formulář byl úspěšně uložen.
@@ -55,7 +55,6 @@ de:
55
55
  tos: Nutzungsbedingungen
56
56
  questionnaires:
57
57
  actions:
58
- back: Zurück zu Fragen
59
58
  publish_answers: Antworten veröffentlichen
60
59
  show: Antworten anzeigen
61
60
  answer_option:
@@ -125,12 +124,10 @@ de:
125
124
  any: Irgendein
126
125
  collapse: Einklappen
127
126
  description: Beschreibung
128
- down: Nach unten
129
127
  expand: Ausklappen
130
128
  question: Frage
131
129
  remove: Löschen
132
130
  statement: Aussage
133
- up: Oben
134
131
  questions_form:
135
132
  already_answered_warning: Der Fragebogen wird bereits von einigen Benutzern beantwortet, sodass Sie die Fragen nicht ändern können.
136
133
  collapse: Alle Fragen einklappen
@@ -139,19 +136,15 @@ de:
139
136
  update:
140
137
  success: Umfrage erfolgreich gespeichert.
141
138
  separator:
142
- down: Runter
143
139
  remove: Löschen
144
140
  separator: Trennzeichen
145
- up: Nach oben
146
141
  title_and_description:
147
142
  collapse: Einklappen
148
143
  description: Beschreibung
149
- down: Runter
150
144
  expand: Ausklappen
151
145
  remove: Entfernen
152
146
  title: Titel
153
147
  title_and_description: Titel und Beschreibung
154
- up: Hinauf
155
148
  update:
156
149
  invalid: Beim Speichern des Fragebogens sind Fehler aufgetreten.
157
150
  success: Formular erfolgreich gespeichert.
@@ -19,7 +19,6 @@ el:
19
19
  tos: Όροι χρήσης υπηρεσίας
20
20
  questionnaires:
21
21
  actions:
22
- back: Επιστροφή στις ερωτήσεις
23
22
  show: Εμφάνιση απαντήσεων
24
23
  answer_option:
25
24
  answer_option: Επιλογή απάντησης
@@ -72,26 +71,20 @@ el:
72
71
  any: Οποιαδήποτε
73
72
  collapse: Σύμπτυξη
74
73
  description: Περιγραφή
75
- down: Κάτω
76
74
  expand: Ανάπτυξη
77
75
  question: Ερώτηση
78
76
  remove: Κατάργηση
79
77
  statement: Δήλωση
80
- up: Επάνω
81
78
  separator:
82
- down: Κάτω
83
79
  remove: Κατάργηση
84
80
  separator: Διαχωριστικό
85
- up: Επάνω
86
81
  title_and_description:
87
82
  collapse: Σύμπτυξη
88
83
  description: Περιγραφή
89
- down: Κάτω
90
84
  expand: Ανάπτυξη
91
85
  remove: Αφαίρεση
92
86
  title: Τίτλος
93
87
  title_and_description: Τίτλος και περιγραφή
94
- up: Πάνω
95
88
  update:
96
89
  invalid: Υπήρξε ένα πρόβλημα κατά την αποθήκευση της φόρμας.
97
90
  success: Η φόρμα αποθηκεύτηκε επιτυχώς.
@@ -55,7 +55,7 @@ en:
55
55
  tos: Terms of service
56
56
  questionnaires:
57
57
  actions:
58
- back: Back to questions
58
+ back: Back to responses
59
59
  publish_answers: Publish answers
60
60
  show: Show responses
61
61
  answer_option:
@@ -125,12 +125,10 @@ en:
125
125
  any: Any
126
126
  collapse: Collapse
127
127
  description: Description
128
- down: Down
129
128
  expand: Expand
130
129
  question: Question
131
130
  remove: Remove
132
131
  statement: Statement
133
- up: Up
134
132
  questions_form:
135
133
  already_answered_warning: The form is already answered by some users so you cannot modify its questions.
136
134
  collapse: Collapse all questions
@@ -139,19 +137,15 @@ en:
139
137
  update:
140
138
  success: Survey questions successfully saved.
141
139
  separator:
142
- down: Down
143
140
  remove: Remove
144
141
  separator: Separator
145
- up: Up
146
142
  title_and_description:
147
143
  collapse: Collapse
148
144
  description: Description
149
- down: Down
150
145
  expand: Expand
151
146
  remove: Remove
152
147
  title: Title
153
148
  title_and_description: Title and description
154
- up: Up
155
149
  update:
156
150
  invalid: There was a problem saving the form.
157
151
  success: Form successfully saved.
@@ -55,7 +55,7 @@ es-MX:
55
55
  tos: Términos y condiciones de uso
56
56
  questionnaires:
57
57
  actions:
58
- back: Volver a las preguntas
58
+ back: Volver a las respuestas
59
59
  publish_answers: Publicar respuestas
60
60
  show: Mostrar las respuestas
61
61
  answer_option:
@@ -125,12 +125,10 @@ es-MX:
125
125
  any: Alguna
126
126
  collapse: Contraer
127
127
  description: Descripción
128
- down: Abajo
129
128
  expand: Expandir
130
129
  question: Pregunta
131
130
  remove: Borrar
132
131
  statement: Declaración
133
- up: Arriba
134
132
  questions_form:
135
133
  already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
136
134
  collapse: Contraer todas las preguntas
@@ -139,19 +137,15 @@ es-MX:
139
137
  update:
140
138
  success: Pregunta/s añadida/s correctamente a la encuesta.
141
139
  separator:
142
- down: Bajar
143
140
  remove: Eliminar
144
141
  separator: Separador
145
- up: Subir
146
142
  title_and_description:
147
143
  collapse: Contraer
148
144
  description: Descripción
149
- down: Bajar
150
145
  expand: Expandir
151
146
  remove: Eliminar
152
147
  title: Título
153
148
  title_and_description: Título y descripción
154
- up: Subir
155
149
  update:
156
150
  invalid: Ha habido errores al guardar el cuestionario.
157
151
  success: Formulario guardado correctamente.
@@ -55,7 +55,7 @@ es-PY:
55
55
  tos: Términos y condiciones de uso
56
56
  questionnaires:
57
57
  actions:
58
- back: Volver a las preguntas
58
+ back: Volver a las respuestas
59
59
  publish_answers: Publicar respuestas
60
60
  show: Mostrar las respuestas
61
61
  answer_option:
@@ -125,12 +125,10 @@ es-PY:
125
125
  any: Alguna
126
126
  collapse: Contraer
127
127
  description: Descripción
128
- down: Abajo
129
128
  expand: Expandir
130
129
  question: Pregunta
131
130
  remove: Borrar
132
131
  statement: Declaración
133
- up: Arriba
134
132
  questions_form:
135
133
  already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
136
134
  collapse: Contraer todas las preguntas
@@ -139,19 +137,15 @@ es-PY:
139
137
  update:
140
138
  success: Pregunta/s añadida/s correctamente a la encuesta.
141
139
  separator:
142
- down: Bajar
143
140
  remove: Eliminar
144
141
  separator: Separador
145
- up: Subir
146
142
  title_and_description:
147
143
  collapse: Contraer
148
144
  description: Descripción
149
- down: Bajar
150
145
  expand: Expandir
151
146
  remove: Eliminar
152
147
  title: Título
153
148
  title_and_description: Título y descripción
154
- up: Subir
155
149
  update:
156
150
  invalid: Ha habido errores al guardar el cuestionario.
157
151
  success: Formulario guardado correctamente.
@@ -55,7 +55,7 @@ es:
55
55
  tos: Términos y condiciones de uso
56
56
  questionnaires:
57
57
  actions:
58
- back: Volver a las preguntas
58
+ back: Volver a las respuestas
59
59
  publish_answers: Publicar respuestas
60
60
  show: Mostrar las respuestas
61
61
  answer_option:
@@ -125,12 +125,10 @@ es:
125
125
  any: Alguna
126
126
  collapse: Contraer
127
127
  description: Descripción
128
- down: Abajo
129
128
  expand: Expandir
130
129
  question: Pregunta
131
130
  remove: Eliminar
132
131
  statement: Declaración
133
- up: Arriba
134
132
  questions_form:
135
133
  already_answered_warning: No puedes modificar las preguntas porque algunas participantes ya han respondido el formulario.
136
134
  collapse: Contraer todas las preguntas
@@ -139,19 +137,15 @@ es:
139
137
  update:
140
138
  success: Pregunta/s añadida/s correctamente a la encuesta.
141
139
  separator:
142
- down: Bajar
143
140
  remove: Eliminar
144
141
  separator: Separador
145
- up: Subir
146
142
  title_and_description:
147
143
  collapse: Contraer
148
144
  description: Descripción
149
- down: Bajar
150
145
  expand: Expandir
151
146
  remove: Eliminar
152
147
  title: Título
153
148
  title_and_description: Título y descripción
154
- up: Subir
155
149
  update:
156
150
  invalid: Se ha producido un error al guardar el formulario.
157
151
  success: Formulario guardado correctamente.
@@ -55,7 +55,7 @@ eu:
55
55
  tos: Zerbitzu-baldintzak
56
56
  questionnaires:
57
57
  actions:
58
- back: Itzuli galderetara
58
+ back: Itzuli erantzunetara
59
59
  publish_answers: Argitaratu erantzunak
60
60
  show: Erakutsi erantzunak
61
61
  answer_option:
@@ -125,12 +125,10 @@ eu:
125
125
  any: Edozein
126
126
  collapse: Bildu
127
127
  description: Deskribapena
128
- down: Behera
129
128
  expand: Zabaldu
130
129
  question: Galdera
131
130
  remove: Kendu
132
131
  statement: Adierazpena
133
- up: Gora
134
132
  questions_form:
135
133
  already_answered_warning: Formularioa parte-hartzaile batzuek erantzuten dute dagoeneko; beraz, ezin dituzu galderak aldatu.
136
134
  collapse: Kolapsatu galdera guztiak
@@ -139,19 +137,15 @@ eu:
139
137
  update:
140
138
  success: Inkestaren galderak zuzen gordeta.
141
139
  separator:
142
- down: Behera
143
140
  remove: Kendu
144
141
  separator: Bereizlea
145
- up: Gora
146
142
  title_and_description:
147
143
  collapse: Kolapsoa
148
144
  description: Deskribapena
149
- down: Behera
150
145
  expand: Zabaldu
151
146
  remove: Kendu
152
147
  title: Izenburua
153
148
  title_and_description: Izenburua eta deskribapena
154
- up: Gora
155
149
  update:
156
150
  invalid: Arazo bat egon da inprimakia gordetzean.
157
151
  success: Galdetegia zuzen gorde da.
@@ -55,7 +55,7 @@ fi-pl:
55
55
  tos: Käyttöehdot
56
56
  questionnaires:
57
57
  actions:
58
- back: Takaisin kysymyksiin
58
+ back: Takaisin vastauksiin
59
59
  publish_answers: Julkaise vastaukset
60
60
  show: Näytä vastaukset
61
61
  answer_option:
@@ -125,12 +125,10 @@ fi-pl:
125
125
  any: Minkä tahansa
126
126
  collapse: Sulje
127
127
  description: Kuvaus
128
- down: Alas
129
128
  expand: Avaa
130
129
  question: Kysymys
131
130
  remove: Poista
132
131
  statement: Selite
133
- up: Ylös
134
132
  questions_form:
135
133
  already_answered_warning: Jotkut käyttäjät ovat jo vastanneet lomakkeeseen, joten et voi muokata sen kysymyksiä.
136
134
  collapse: Supista kaikki kysymykset
@@ -139,19 +137,15 @@ fi-pl:
139
137
  update:
140
138
  success: Kyselyn kysymysten tallentaminen onnistui.
141
139
  separator:
142
- down: Alas
143
140
  remove: Poista
144
141
  separator: Erotin
145
- up: Ylös
146
142
  title_and_description:
147
143
  collapse: Pienennä
148
144
  description: Kuvaus
149
- down: Alas
150
145
  expand: Laajenna
151
146
  remove: Poista
152
147
  title: Otsikko
153
148
  title_and_description: Otsikko ja kuvaus
154
- up: Ylös
155
149
  update:
156
150
  invalid: Kyselylomakkeiden tallentamisessa on tapahtunut virheitä.
157
151
  success: Lomake tallennettu onnistuneesti.