decidim-forms 0.31.0.rc1 → 0.31.0.rc2

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 +0 -10
  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 +0 -10
  6. data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +0 -10
  7. data/config/locales/ar.yml +0 -2
  8. data/config/locales/bg.yml +0 -8
  9. data/config/locales/ca-IT.yml +1 -7
  10. data/config/locales/ca.yml +1 -7
  11. data/config/locales/cs.yml +2 -8
  12. data/config/locales/de.yml +1 -9
  13. data/config/locales/el.yml +0 -8
  14. data/config/locales/en.yml +3 -9
  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 +3 -9
  19. data/config/locales/fi-plain.yml +2 -8
  20. data/config/locales/fi.yml +2 -8
  21. data/config/locales/fr-CA.yml +2 -7
  22. data/config/locales/fr.yml +2 -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 -6
  28. data/config/locales/ja.yml +3 -9
  29. data/config/locales/lb.yml +0 -6
  30. data/config/locales/lt.yml +0 -8
  31. data/config/locales/lv.yml +0 -4
  32. data/config/locales/nl.yml +0 -8
  33. data/config/locales/no.yml +0 -8
  34. data/config/locales/pl.yml +0 -8
  35. data/config/locales/pt-BR.yml +0 -8
  36. data/config/locales/pt.yml +0 -6
  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 +3 -9
  41. data/config/locales/tr-TR.yml +0 -6
  42. data/config/locales/val-ES.yml +0 -2
  43. data/config/locales/zh-CN.yml +0 -6
  44. data/config/locales/zh-TW.yml +0 -8
  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: 05af3125cda32c7d53951e708a287eb891e0461c260db0d8d153412af721be38
4
- data.tar.gz: b5d48ab5cbb0f1fbb6e970b874f1283cc827053a4d8c8251d46ab575183f7c68
3
+ metadata.gz: 10cee5c8cf9c6f33218ddcbda38125eea06c16d3306ed26c37b22fa3893094ec
4
+ data.tar.gz: 3b1b30b4848cd720c0bdc5720c7b27a868b332b1f30cd8f51fed9aca615dfdeb
5
5
  SHA512:
6
- metadata.gz: b161e3aa8dfc6ac31403c294b7e0bbe9f204bff581a081b7941c7e5d79e3f0d8bfe9c05d8977b96245b303c6faaca4de97f6fe5262f21a5b59bd5d844ac6f9ed
7
- data.tar.gz: 4a0f3aeb5702e008483a90afea735eba581c53bd9d949a7447178c40c67d263705573b91012aa0c6f94234537123abb87ebe6b401482754cc0170718930a0c26
6
+ metadata.gz: 6b44f235a04a06408d2d3a8d39c86fb557a09c873a1c5d6d010c8d19fc6d91c61b081e5d8686c665e54e413d18c630b5fbe175d4c5d216dd5f3e63f5392b922f
7
+ data.tar.gz: d7eda3ba4d5c7ad2d2646b63d5c74e672872aed1e8fa90db732f92eaebca30103ff7fc0e04057369c7dbab7a41323627f136a634adb52f872d2f1d630d100f4e
@@ -35,10 +35,31 @@ document.addEventListener("turbo:load", () => {
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
  $(".response-questionnaire .question[data-conditioned='true']").each((idx, el) => {
44
65
  createDisplayConditions({
@@ -23,16 +23,6 @@
23
23
  </button>
24
24
 
25
25
  <% if editable %>
26
- <button class="button button__xs button__transparent-secondary small alert move-up-question button--title">
27
- <%= icon("arrow-up-line") %>
28
- <span class="hidden md:block"><%= t(".up") %></span>
29
- </button>
30
-
31
- <button class="button button__xs button__transparent-secondary small alert move-down-question button--title">
32
- <%= icon("arrow-down-line") %>
33
- <span class="hidden md:block"><%= t(".down") %></span>
34
- </button>
35
-
36
26
  <button class="button button__xs button__transparent-secondary small alert remove-question button--title">
37
27
  <%= icon("delete-bin-line") %>
38
28
  <span class="hidden md:block"><%= t(".remove") %></span>
@@ -40,7 +40,7 @@
40
40
  <%= cell("decidim/announcement", t(".already_responded_warning"), callout_class: "warning" ) %>
41
41
  <% end %>
42
42
 
43
- <div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0">
43
+ <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">
44
44
  <% @form.questions.each_with_index do |question, index| %>
45
45
  <%= fields_for "questions[questions][]", question do |question_form| %>
46
46
  <% if question.separator? %>
@@ -73,9 +73,38 @@
73
73
  <%= append_javascript_pack_tag "decidim_forms_admin" %>
74
74
 
75
75
  <% if questionnaire.questions_editable? %>
76
- <script>
76
+ <script>
77
77
  document.addEventListener("turbo:load", function () {
78
78
  window.Decidim.createEditableForm();
79
+
80
+ // Function to initialize the sortable functionality
81
+ function initializeSortable() {
82
+ const container = document.querySelector("#questionnaire-questions-list");
83
+ const questionCards = container?.querySelectorAll(".card.questionnaire-question");
84
+
85
+ if (!container || !questionCards?.length) return;
86
+
87
+ questionCards.forEach(card => {
88
+ card.setAttribute("draggable", "true");
89
+ card.setAttribute("role", "option");
90
+ card.setAttribute("aria-grabbed", "false");
91
+ });
92
+
93
+ window.Decidim?.createSortableList?.("#questionnaire-questions-list");
94
+ }
95
+
96
+ // Initialize on load and when new options such as questions etc are added
97
+ initializeSortable();
98
+
99
+ const observer = new MutationObserver(() => {
100
+ clearTimeout(observer.timer);
101
+ observer.timer = setTimeout(initializeSortable, 500);
102
+ });
103
+
104
+ const container = document.querySelector("#questionnaire-questions-list");
105
+ if (container) {
106
+ observer.observe(container, { childList: true, subtree: true });
107
+ }
79
108
  });
80
109
  </script>
81
110
  <% end %>
@@ -12,16 +12,6 @@
12
12
 
13
13
  <div class="flex flex-row-reverse items-center gap-x-4 ml-auto">
14
14
  <% if editable %>
15
- <button class="button button__xs button__transparent button__transparent-secondary small alert move-up-question button--title">
16
- <%= icon("arrow-up-line") %>
17
- <span class="hidden md:block"><%= t(".up") %></span>
18
- </button>
19
-
20
- <button class="button button__xs button__transparent button__transparent-secondary small alert move-down-question button--title">
21
- <%= icon("arrow-down-line") %>
22
- <span class="hidden md:block"><%= t(".down") %></span>
23
- </button>
24
-
25
15
  <button class="button button__xs button__transparent button__transparent-secondary small alert remove-question button--title">
26
16
  <%= icon("delete-bin-line") %>
27
17
  <span class="hidden md:block"><%= t(".remove") %></span>
@@ -23,16 +23,6 @@
23
23
  </button>
24
24
 
25
25
  <% if editable %>
26
- <button class="button button__xs button__transparent button__transparent-secondary small alert move-up-question button--title">
27
- <%= icon("arrow-up-line") %>
28
- <span class="hidden md:block"><%= t(".up") %></span>
29
- </button>
30
-
31
- <button class="button button__xs button__transparent button__transparent-secondary small alert move-down-question button--title">
32
- <%= icon("arrow-down-line") %>
33
- <span class="hidden md:block"><%= t(".down") %></span>
34
- </button>
35
-
36
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
  <span class="hidden md:block"><%= t(".remove") %></span>
@@ -28,11 +28,9 @@ ar:
28
28
  question:
29
29
  any: أي
30
30
  description: وصف
31
- down: أسفل
32
31
  question: سؤال
33
32
  remove: إزالة
34
33
  statement: بيان
35
- up: فوق
36
34
  title_and_description:
37
35
  description: الوصف
38
36
  update:
@@ -16,8 +16,6 @@ bg:
16
16
  description: Описание
17
17
  tos: Условия за ползване
18
18
  questionnaires:
19
- actions:
20
- back: Назад към въпросите
21
19
  display_condition:
22
20
  condition_question: Въпрос
23
21
  condition_type: Условие
@@ -52,29 +50,23 @@ bg:
52
50
  any: Някой
53
51
  collapse: Свий
54
52
  description: Описание
55
- down: Надолу
56
53
  expand: Разтваряне
57
54
  question: Въпрос
58
55
  remove: Премахни
59
56
  statement: Изявление
60
- up: Горе
61
57
  responses:
62
58
  actions:
63
59
  show: Показване на отговорите
64
60
  separator:
65
- down: Долу
66
61
  remove: Премахни
67
62
  separator: Разделител
68
- up: Горе
69
63
  title_and_description:
70
64
  collapse: Свий
71
65
  description: Описание
72
- down: Долу
73
66
  expand: Разтваряне
74
67
  remove: Премахни
75
68
  title: Заглавие
76
69
  title_and_description: Заглавие и описание
77
- up: Горе
78
70
  update:
79
71
  invalid: Възникна проблем при запазването на формуляра.
80
72
  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_responses: Publicar les respostes
60
60
  show: Respostes
61
61
  display_condition:
@@ -103,12 +103,10 @@ ca-IT:
103
103
  any: Cap
104
104
  collapse: Redueix
105
105
  description: Descripció
106
- down: Avall
107
106
  expand: Expandeix
108
107
  question: Pregunta
109
108
  remove: Eliminar
110
109
  statement: Declaració
111
- up: Amunt
112
110
  questions_form:
113
111
  already_responded_warning: L'enquesta ja està contestada per algunes usuàries i per tant no pots modificar les seves preguntes.
114
112
  collapse: Replega totes les preguntes
@@ -139,19 +137,15 @@ ca-IT:
139
137
  show:
140
138
  title: 'Resposta #%{number}'
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_responses: Publicar les respostes
60
60
  show: Respostes
61
61
  display_condition:
@@ -103,12 +103,10 @@ ca:
103
103
  any: Cap
104
104
  collapse: Redueix
105
105
  description: Descripció
106
- down: Avall
107
106
  expand: Expandeix
108
107
  question: Pregunta
109
108
  remove: Eliminar
110
109
  statement: Declaració
111
- up: Amunt
112
110
  questions_form:
113
111
  already_responded_warning: L'enquesta ja està contestada per algunes usuàries i per tant no pots modificar les seves preguntes.
114
112
  collapse: Replega totes les preguntes
@@ -139,19 +137,15 @@ ca:
139
137
  show:
140
138
  title: 'Resposta #%{number}'
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.
@@ -44,7 +44,7 @@ cs:
44
44
  allow_editing_responses: Povolit registrovaným uživatelům upravovat vlastní odpovědi z průzkumu
45
45
  allow_responses: Povolit odpovědi
46
46
  allow_unregistered: Povolit neregistrovaným uživatelům odpovědět na průzkum
47
- allow_unregistered_help: Pokud je aktivní, pro odpověď na dotazník nebude vyžadováno žádné přihlášení. To může vést ke špatným nebo nespolehlivým údajům a bude to zranitelnější vůči automatickým útokům. Používejte s opatrností! Mějte na paměti, že účastník může odpovědět na stejný průzkum vícekrát, použitím různých prohlížečů nebo funkce "soukromého prohlížeče" svého webového prohlížeče.
47
+ allow_unregistered_help: Pokud je aktivní, pro odpověď na dotazník nebude nutné žádné přihlášení. To může vést ke špatným nebo nespolehlivým údajům a bude to zranitelnější vůči automatickým útokům. Používejte s opatrností! Mějte na paměti, že účastník může odpovědět na stejný průzkum vícekrát, použitím různých prohlížečů nebo funkce "soukromého prohlížeče" svého webového prohlížeče.
48
48
  announcement: Oznámení
49
49
  clean_after_publish: Odstranit odpovědi při publikování ankety
50
50
  description: Popis
@@ -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_responses: Publikovat odpovědi
60
60
  show: Odpovědi
61
61
  display_condition:
@@ -103,12 +103,10 @@ cs:
103
103
  any: Žádný
104
104
  collapse: Sbalit
105
105
  description: Popis
106
- down: Dolů
107
106
  expand: Rozbalit
108
107
  question: Otázka
109
108
  remove: Odstranit
110
109
  statement: Prohlášení
111
- up: Nahoru
112
110
  questions_form:
113
111
  already_responded_warning: Formulář už obsahuje odpovědi od některých uživatelů, takže nemůžete upravovat jeho otázky.
114
112
  collapse: Sbalit všechny otázky
@@ -139,19 +137,15 @@ cs:
139
137
  show:
140
138
  title: 'Odpověď č.%{number}'
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.
@@ -43,8 +43,7 @@ de:
43
43
  components:
44
44
  allow_editing_responses: Registrierten Benutzern die Bearbeitung eigener Umfrageantworten ermöglichen
45
45
  allow_responses: Antworten erlauben
46
- allow_unregistered: Nicht registrierten Benutzern erlauben, die Umfrage zu beantworten
47
- allow_unregistered_help: Wenn aktiviert, ist keine Anmeldung erforderlich, um die Umfrage zu beantworten. Dies kann zu schlechten oder unzuverlässigen Daten führen und ist anfälliger für automatisierte Angriffe. Verwenden Sie diese Funktion mit Vorsicht! Beachten Sie, dass ein Teilnehmer die gleiche Umfrage mehrfach beantworten kann, indem er verschiedene Browser oder die "Private Browsing"-Funktion ihres Web-Browsers nutzt.
46
+ allow_unregistered: Teilnahme an der Umfrage ohne Registrierung erlauben
48
47
  announcement: Ankündigung
49
48
  clean_after_publish: Antworten beim Veröffentlichen der Umfrage löschen
50
49
  description: Beschreibung
@@ -55,7 +54,6 @@ de:
55
54
  tos: Nutzungsbedingungen
56
55
  questionnaires:
57
56
  actions:
58
- back: Zurück zu Fragen
59
57
  publish_responses: Antworten veröffentlichen
60
58
  show: Antworten
61
59
  display_condition:
@@ -103,12 +101,10 @@ de:
103
101
  any: Irgendein
104
102
  collapse: Einklappen
105
103
  description: Beschreibung
106
- down: Nach unten
107
104
  expand: Ausklappen
108
105
  question: Frage
109
106
  remove: Löschen
110
107
  statement: Aussage
111
- up: Oben
112
108
  questions_form:
113
109
  already_responded_warning: Das Formular wird von einigen Benutzern bereits beantwortet, weshalb Sie die Fragen nicht mehr ändern können.
114
110
  collapse: Alle Fragen einklappen
@@ -139,19 +135,15 @@ de:
139
135
  show:
140
136
  title: 'Antwort #%{number}'
141
137
  separator:
142
- down: Runter
143
138
  remove: Löschen
144
139
  separator: Trennzeichen
145
- up: Nach oben
146
140
  title_and_description:
147
141
  collapse: Einklappen
148
142
  description: Beschreibung
149
- down: Runter
150
143
  expand: Ausklappen
151
144
  remove: Entfernen
152
145
  title: Titel
153
146
  title_and_description: Titel und Beschreibung
154
- up: Hinauf
155
147
  update:
156
148
  invalid: Beim Speichern des Fragebogens sind Fehler aufgetreten.
157
149
  success: Formular erfolgreich gespeichert.
@@ -16,8 +16,6 @@ el:
16
16
  description: Περιγραφή
17
17
  tos: Όροι χρήσης υπηρεσίας
18
18
  questionnaires:
19
- actions:
20
- back: Επιστροφή στις ερωτήσεις
21
19
  display_condition:
22
20
  condition_question: Ερώτηση
23
21
  condition_type: Συνθήκη
@@ -52,29 +50,23 @@ el:
52
50
  any: Οποιαδήποτε
53
51
  collapse: Σύμπτυξη
54
52
  description: Περιγραφή
55
- down: Κάτω
56
53
  expand: Ανάπτυξη
57
54
  question: Ερώτηση
58
55
  remove: Κατάργηση
59
56
  statement: Δήλωση
60
- up: Επάνω
61
57
  responses:
62
58
  actions:
63
59
  show: Εμφάνιση απαντήσεων
64
60
  separator:
65
- down: Κάτω
66
61
  remove: Κατάργηση
67
62
  separator: Διαχωριστικό
68
- up: Επάνω
69
63
  title_and_description:
70
64
  collapse: Σύμπτυξη
71
65
  description: Περιγραφή
72
- down: Κάτω
73
66
  expand: Ανάπτυξη
74
67
  remove: Αφαίρεση
75
68
  title: Τίτλος
76
69
  title_and_description: Τίτλος και περιγραφή
77
- up: Πάνω
78
70
  update:
79
71
  invalid: Υπήρξε ένα πρόβλημα κατά την αποθήκευση της φόρμας.
80
72
  success: Η φόρμα αποθηκεύτηκε επιτυχώς.
@@ -43,8 +43,8 @@ en:
43
43
  components:
44
44
  allow_editing_responses: Allow registered users to edit own survey responses
45
45
  allow_responses: Allow responses
46
- allow_unregistered: Allow unregistered users to response the survey
47
- allow_unregistered_help: If active, no login will be required in order to response the survey. This may lead to poor or unreliable data and it will be more vulnerable to automated attacks. Use with caution! Mind that a participant could response the same survey multiple times, by using different browsers or the "private browsing" feature of her web browser.
46
+ allow_unregistered: Allow unregistered users to respond to the survey
47
+ allow_unregistered_help: If active, no login will be required in order to respond to the survey. This may lead to poor or unreliable data and it will be more vulnerable to automated attacks. Use with caution! Mind that a participant could response the same survey multiple times, by using different browsers or the "private browsing" feature of her web browser.
48
48
  announcement: Announcement
49
49
  clean_after_publish: Delete responses when publishing the survey
50
50
  description: Description
@@ -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_responses: Publish responses
60
60
  show: Responses
61
61
  display_condition:
@@ -103,12 +103,10 @@ en:
103
103
  any: Any
104
104
  collapse: Collapse
105
105
  description: Description
106
- down: Down
107
106
  expand: Expand
108
107
  question: Question
109
108
  remove: Remove
110
109
  statement: Statement
111
- up: Up
112
110
  questions_form:
113
111
  already_responded_warning: The form is already responded by some users so you cannot modify its questions.
114
112
  collapse: Collapse all questions
@@ -139,19 +137,15 @@ en:
139
137
  show:
140
138
  title: 'Response #%{number}'
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_responses: Publicar las respuestas
60
60
  show: Respuestas
61
61
  display_condition:
@@ -103,12 +103,10 @@ es-MX:
103
103
  any: Alguna
104
104
  collapse: Contraer
105
105
  description: Descripción
106
- down: Abajo
107
106
  expand: Expandir
108
107
  question: Pregunta
109
108
  remove: Borrar
110
109
  statement: Declaración
111
- up: Arriba
112
110
  questions_form:
113
111
  already_responded_warning: La encuesta ya está contestada por algunas usuarias, así que no puedes modificar sus preguntas.
114
112
  collapse: Contraer todas las preguntas
@@ -139,19 +137,15 @@ es-MX:
139
137
  show:
140
138
  title: 'Respuesta #%{number}'
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_responses: Publicar las respuestas
60
60
  show: Respuestas
61
61
  display_condition:
@@ -103,12 +103,10 @@ es-PY:
103
103
  any: Alguna
104
104
  collapse: Contraer
105
105
  description: Descripción
106
- down: Abajo
107
106
  expand: Expandir
108
107
  question: Pregunta
109
108
  remove: Borrar
110
109
  statement: Declaración
111
- up: Arriba
112
110
  questions_form:
113
111
  already_responded_warning: La encuesta ya está contestada por algunas usuarias, así que no puedes modificar sus preguntas.
114
112
  collapse: Contraer todas las preguntas
@@ -139,19 +137,15 @@ es-PY:
139
137
  show:
140
138
  title: 'Respuesta #%{number}'
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_responses: Publicar las respuestas
60
60
  show: Respuestas
61
61
  display_condition:
@@ -103,12 +103,10 @@ es:
103
103
  any: Alguna
104
104
  collapse: Contraer
105
105
  description: Descripción
106
- down: Abajo
107
106
  expand: Expandir
108
107
  question: Pregunta
109
108
  remove: Eliminar
110
109
  statement: Declaración
111
- up: Arriba
112
110
  questions_form:
113
111
  already_responded_warning: La encuesta ya está contestada por algunas usuarias, así que no puedes modificar sus preguntas.
114
112
  collapse: Contraer todas las preguntas
@@ -139,19 +137,15 @@ es:
139
137
  show:
140
138
  title: 'Respuesta #%{number}'
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.
@@ -43,8 +43,8 @@ eu:
43
43
  components:
44
44
  allow_editing_responses: Eman aukera erregistratutako parte-hartzaileei inkestako erantzunak editatzeko
45
45
  allow_responses: Baimendu erantzunak
46
- allow_unregistered: Baimendu erregistratu gabe dauden parte-hartzailei galdetegia erantzutea
47
- allow_unregistered_help: Aktibatuta badago ez da beharrezkoa saioa hastea inkesta erantzuteko. Honen ondorioz datu eskas edo fidagarritasun gutxikoak bildu litezke. Kontuz erabili! Izan ere, parte-hartzaile berak hainbat aldiz erantzun litzake nabigatzaile desberdinetatik edo "nabigazio pribatuaren" aukera erabiliz.
46
+ allow_unregistered: Ahalbidetu erregistratu gabeko erabiltzaileek inkestari erantzun diezaioten
47
+ allow_unregistered_help: Aktibatuta badago, ez da beharrezkoa saioa hastea inkesta erantzuteko. Horrek datu txarrak edo fidagarriak ez direnak ekar ditzake, eta eraso automatizatuen aurrean ahulagoa izango da. Kontuz ibili! Kontuan izan parte-hartzaile batek inkesta berari hainbat aldiz erantzun ahal izango liokeela, hainbat nabigatzaile erabiliz edo bere web nabigatzailearen "nabigazio pribatua" ezaugarria erabiliz.
48
48
  announcement: Oharra
49
49
  clean_after_publish: Ezabatu erantzunak inkesta argitaratzean
50
50
  description: Deskribapena
@@ -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_responses: Argitaratu erantzunak
60
60
  show: Erantzunak
61
61
  display_condition:
@@ -103,12 +103,10 @@ eu:
103
103
  any: Edozein
104
104
  collapse: Bildu
105
105
  description: Deskribapena
106
- down: Behera
107
106
  expand: Zabaldu
108
107
  question: Galdera
109
108
  remove: Kendu
110
109
  statement: Adierazpena
111
- up: Gora
112
110
  questions_form:
113
111
  already_responded_warning: Formularioa parte-hartzaile batzuek erantzuten dute dagoeneko; beraz, ezin dituzu galderak aldatu.
114
112
  collapse: Kolapsatu galdera guztiak
@@ -139,19 +137,15 @@ eu:
139
137
  show:
140
138
  title: '#%{number} erantzun'
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.