decidim-forms 0.25.1 → 0.26.0

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 (42) hide show
  1. checksums.yaml +4 -4
  2. data/app/commands/decidim/forms/answer_questionnaire.rb +6 -2
  3. data/app/forms/decidim/forms/admin/question_form.rb +4 -0
  4. data/app/models/decidim/forms/answer.rb +1 -0
  5. data/app/models/decidim/forms/question.rb +7 -1
  6. data/app/packs/src/decidim/forms/admin/forms.js +2 -0
  7. data/app/presenters/decidim/forms/admin/questionnaire_answer_presenter.rb +19 -4
  8. data/app/presenters/decidim/forms/admin/questionnaire_participant_presenter.rb +5 -2
  9. data/app/queries/decidim/forms/questionnaire_user_answers.rb +4 -1
  10. data/app/views/decidim/forms/admin/questionnaires/_form.html.erb +12 -0
  11. data/app/views/decidim/forms/admin/questionnaires/_title_and_description.html.erb +80 -0
  12. data/app/views/decidim/forms/questionnaires/_answer.html.erb +10 -1
  13. data/app/views/decidim/forms/questionnaires/answers/_title_and_description.html.erb +1 -0
  14. data/app/views/decidim/forms/questionnaires/show.html.erb +8 -7
  15. data/config/locales/ca.yml +11 -0
  16. data/config/locales/cs.yml +11 -0
  17. data/config/locales/en.yml +11 -0
  18. data/config/locales/es-MX.yml +11 -0
  19. data/config/locales/es-PY.yml +11 -0
  20. data/config/locales/es.yml +11 -0
  21. data/config/locales/fi-plain.yml +11 -0
  22. data/config/locales/fi.yml +11 -0
  23. data/config/locales/fr-CA.yml +11 -0
  24. data/config/locales/fr.yml +12 -1
  25. data/config/locales/gl.yml +11 -0
  26. data/config/locales/hu.yml +11 -0
  27. data/config/locales/ja.yml +12 -1
  28. data/config/locales/lb-LU.yml +103 -0
  29. data/config/locales/nl.yml +11 -0
  30. data/config/locales/no.yml +52 -0
  31. data/config/locales/pt-BR.yml +1 -1
  32. data/config/locales/ro-RO.yml +69 -58
  33. data/config/locales/sv.yml +12 -0
  34. data/config/locales/val-ES.yml +18 -0
  35. data/lib/decidim/forms/test/factories.rb +12 -0
  36. data/lib/decidim/forms/test/shared_examples/manage_questionnaire_answers.rb +18 -0
  37. data/lib/decidim/forms/test/shared_examples/manage_questionnaires/add_questions.rb +36 -5
  38. data/lib/decidim/forms/test/shared_examples/manage_questionnaires/update_questions.rb +98 -0
  39. data/lib/decidim/forms/test/shared_examples/manage_questionnaires.rb +8 -0
  40. data/lib/decidim/forms/user_answers_serializer.rb +7 -1
  41. data/lib/decidim/forms/version.rb +1 -1
  42. metadata +15 -12
@@ -79,6 +79,7 @@ fr-CA:
79
79
  form:
80
80
  add_question: Ajouter une question
81
81
  add_separator: Ajouter un séparateur
82
+ add_title_and_description: Ajouter un titre et une description
82
83
  already_answered_warning: Certains utilisateurs ont déjà répondu au questionnaire, vous ne pouvez donc pas modifier ses questions.
83
84
  collapse: Réduire toutes les questions
84
85
  expand: Développer toutes les questions
@@ -108,6 +109,15 @@ fr-CA:
108
109
  remove: Retirer
109
110
  separator: Séparateur
110
111
  up: Haut
112
+ title_and_description:
113
+ collapse: Réduire
114
+ description: Description
115
+ down: Descendre
116
+ expand: Déveloper
117
+ remove: Supprimer
118
+ title: Titre
119
+ title_and_description: Titre et description
120
+ up: Vers le haut
111
121
  update:
112
122
  invalid: Il y a eu des erreurs lors de la sauvegarde du questionnaire.
113
123
  success: Le formulaire a bien été sauvegardé.
@@ -131,6 +141,7 @@ fr-CA:
131
141
  short_answer: Réponse courte
132
142
  single_option: Option unique
133
143
  sorting: Tri
144
+ title_and_description: Titre et description
134
145
  questionnaires:
135
146
  answer:
136
147
  invalid: Il y a eu des erreurs en répondant au questionnaire.
@@ -79,6 +79,7 @@ fr:
79
79
  form:
80
80
  add_question: Ajouter une question
81
81
  add_separator: Ajouter un séparateur
82
+ add_title_and_description: Ajouter un titre et une description
82
83
  already_answered_warning: Certains utilisateurs ont déjà répondu au questionnaire, vous ne pouvez donc pas modifier ses questions.
83
84
  collapse: Réduire toutes les questions
84
85
  expand: Développer toutes les questions
@@ -108,6 +109,15 @@ fr:
108
109
  remove: Retirer
109
110
  separator: Séparateur
110
111
  up: Haut
112
+ title_and_description:
113
+ collapse: Réduire
114
+ description: Description
115
+ down: Descendre
116
+ expand: Développer
117
+ remove: Supprimer
118
+ title: Titre
119
+ title_and_description: Titre et description
120
+ up: Monter
111
121
  update:
112
122
  invalid: Il y a eu des erreurs lors de la sauvegarde du questionnaire.
113
123
  success: Le questionnaire a bien été sauvegardé.
@@ -131,6 +141,7 @@ fr:
131
141
  short_answer: Réponse courte
132
142
  single_option: Option unique
133
143
  sorting: Tri
144
+ title_and_description: Titre et description
134
145
  questionnaires:
135
146
  answer:
136
147
  invalid: Il y a eu des erreurs en répondant au questionnaire.
@@ -140,7 +151,7 @@ fr:
140
151
  max_choices: 'Choix maximum: %{n}'
141
152
  show:
142
153
  answer_questionnaire:
143
- anonymous_user_message: <a href="%{sign_in_link}">Connectez-vous avec votre compte</a> ou <a href="%{sign_up_link}">inscrivez-vous</a> pour répondre au questionnaire.
154
+ anonymous_user_message: <a href="%{sign_in_link}">Identifiez-vous avec votre compte</a> ou <a href="%{sign_up_link}">créez un compte</a> pour répondre au questionnaire.
144
155
  title: Répondez au questionnaire
145
156
  current_step: Étape %{step}
146
157
  of_total_steps: de %{total_steps}
@@ -32,6 +32,7 @@ gl:
32
32
  save: Gardar
33
33
  form:
34
34
  add_question: Engadir pregunta
35
+ add_title_and_description: Engadir títutlo e descrición
35
36
  already_answered_warning: Algúns usuarios xa responderon o cuestionario para que non poida modificar as súas preguntas.
36
37
  matrix_row:
37
38
  remove: Quitar
@@ -45,6 +46,15 @@ gl:
45
46
  remove: Quitar
46
47
  statement: Declaración
47
48
  up: Arriba
49
+ title_and_description:
50
+ collapse: Contraer
51
+ description: Descrición
52
+ down: Abaixo
53
+ expand: Expandir
54
+ remove: Eliminar
55
+ title: Título
56
+ title_and_description: Título e descrición
57
+ up: Arriba
48
58
  update:
49
59
  invalid: Produciuse un erro ao gardar o cuestionario.
50
60
  errors:
@@ -58,6 +68,7 @@ gl:
58
68
  short_answer: Resposta curta
59
69
  single_option: Opción única
60
70
  sorting: Clasificación
71
+ title_and_description: Título e descrición
61
72
  questionnaires:
62
73
  answer:
63
74
  invalid: Houbo erros ao responder ao cuestionario.
@@ -34,6 +34,7 @@ hu:
34
34
  save: Mentés
35
35
  form:
36
36
  add_question: Kérdés hozzáadása
37
+ add_title_and_description: Adj hozzá címet és leírást
37
38
  already_answered_warning: Néhány felhasználó már válaszolt a kérdőívre, így nem változtathatja meg kérdéseit.
38
39
  collapse: Minden kérdés összecsukása
39
40
  expand: Minden kérdés kibontása
@@ -51,6 +52,15 @@ hu:
51
52
  remove: Eltávolít
52
53
  statement: Nyilatkozat
53
54
  up: Fel
55
+ title_and_description:
56
+ collapse: Összecsuk
57
+ description: Leírás
58
+ down: Le
59
+ expand: Kibont
60
+ remove: Eltávolít
61
+ title: Cím
62
+ title_and_description: Cím és leírás
63
+ up: Fel
54
64
  update:
55
65
  invalid: Hiba történt a kérdőív mentésekor.
56
66
  errors:
@@ -64,6 +74,7 @@ hu:
64
74
  short_answer: Rövid válasz
65
75
  single_option: Egy választási lehetőség
66
76
  sorting: Válogatás
77
+ title_and_description: Cím és leírás
67
78
  questionnaires:
68
79
  answer:
69
80
  invalid: Hiba történt a kérdőív megválaszolásakor.
@@ -9,7 +9,7 @@ ja:
9
9
  max_choices: 選択肢の最大数
10
10
  question_type: タイプ
11
11
  questionnaire_question:
12
- mandatory: Mandatory
12
+ mandatory: 必須
13
13
  max_characters: 文字数制限 (制限がない場合は0にしてください)
14
14
  errors:
15
15
  models:
@@ -79,6 +79,7 @@ ja:
79
79
  form:
80
80
  add_question: 質問を追加
81
81
  add_separator: 区切り文字を追加
82
+ add_title_and_description: タイトルと説明を追加
82
83
  already_answered_warning: このフォームはすでに一部のユーザーによって回答されているため、質問を修正することはできません。
83
84
  collapse: すべての質問を閉じる
84
85
  expand: すべての質問を展開
@@ -108,6 +109,15 @@ ja:
108
109
  remove: 削除
109
110
  separator: 区切り記号
110
111
  up: 上へ
112
+ title_and_description:
113
+ collapse: 折りたたむ
114
+ description: 説明
115
+ down: 下へ
116
+ expand: 展開する
117
+ remove: 削除
118
+ title: タイトル
119
+ title_and_description: タイトルと説明
120
+ up: 上へ
111
121
  update:
112
122
  invalid: フォームの保存に失敗しました。
113
123
  success: フォームを保存しました。
@@ -131,6 +141,7 @@ ja:
131
141
  short_answer: 短い回答
132
142
  single_option: 単一オプション
133
143
  sorting: 並び替え
144
+ title_and_description: タイトルと説明
134
145
  questionnaires:
135
146
  answer:
136
147
  invalid: フォームの回答に問題がありました。
@@ -1 +1,104 @@
1
1
  lb:
2
+ activemodel:
3
+ attributes:
4
+ questionnaire_question:
5
+ mandatory: Verpflichtend
6
+ max_characters: Maximale Anzahl Zeichen (0 bedeutet kein Limit)
7
+ errors:
8
+ models:
9
+ answer:
10
+ attributes:
11
+ add_documents:
12
+ needs_to_be_reattached: Muss erneut angehängt werden
13
+ body:
14
+ too_long: ist zu lang
15
+ choices:
16
+ missing: sind nicht vollständig
17
+ too_many: sind zu viele
18
+ questionnaire:
19
+ request_invalid: Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es nochmal
20
+ decidim:
21
+ forms:
22
+ admin:
23
+ models:
24
+ components:
25
+ description: Beschreibung
26
+ tos: Nutzungsbedingungen
27
+ questionnaires:
28
+ actions:
29
+ back: Zurück zu Fragen
30
+ show: Antworten anzeigen
31
+ answer_option:
32
+ answer_option: Antwortoption
33
+ free_text: Freier Text
34
+ remove: Löschen
35
+ statement: Aussage
36
+ answers:
37
+ actions:
38
+ back: Zurück zu Antworten
39
+ export: Exportieren
40
+ show: Antworten anzeigen
41
+ empty: Noch keine Antworten
42
+ export:
43
+ answer:
44
+ title: 'Antwort #%{number}'
45
+ export_response:
46
+ title: Umfrage_Benutzer_Antworten_%{token}
47
+ index:
48
+ title: "%{total} Antworten insgesamt"
49
+ show:
50
+ title: 'Antwort #%{number}'
51
+ display_condition:
52
+ answer_option: Antwortoption
53
+ condition_question: Frage
54
+ condition_type: Bedingung
55
+ condition_types:
56
+ answered: Beantwortet
57
+ equal: Gleich
58
+ match: Beinhaltet Text
59
+ not_answered: Unbeantwortet
60
+ not_equal: Nicht gleich
61
+ condition_value: Enthaltener Text
62
+ display_condition: Bedingung anzeigen
63
+ mandatory: Diese Bedingung muss immer erfüllt werden, unabhängig vom Status anderer Bedingungen
64
+ remove: Löschen
65
+ save_warning: Vergessen Sie nicht, das Formular zu speichern, bevor Sie die Anzeigebedingungen konfigurieren
66
+ select_answer_option: Antwortoption auswählen
67
+ select_condition_question: Eine Frage
68
+ select_condition_type: Wählen Sie einen Bedingungstyp
69
+ edit:
70
+ save: Speichern
71
+ title: Fragebogen bearbeiten
72
+ form:
73
+ add_question: Frage hinzufügen
74
+ add_separator: Trennzeichen hinzufügen
75
+ already_answered_warning: Der Fragebogen wird bereits von einigen Benutzern beantwortet, sodass Sie die Fragen nicht ändern können.
76
+ collapse: Alle Fragen einklappen
77
+ expand: Alle Fragen ausklappen
78
+ preview: Vorschau
79
+ title: Formular für %{questionnaire_for} bearbeiten
80
+ unpublished_warning: Das Formular ist nicht öffentlich. Sie können die Fragen ändern, dabei werden allerdings die aktuellen Antworten gelöscht.
81
+ matrix_row:
82
+ matrix_row: Zeile
83
+ questionnaires:
84
+ show:
85
+ questionnaire_not_published:
86
+ body: Dieses Formular ist noch nicht veröffentlicht.
87
+ tos_agreement: Mit der Teilnahme stimmen Sie den Nutzungsbedingungen zu
88
+ step_navigation:
89
+ show:
90
+ are_you_sure: Diese Aktion kann nicht rückgängig gemacht werden und Sie können Ihre Antworten nicht bearbeiten. Bist du sicher?
91
+ back: Zurück
92
+ continue: Weiter
93
+ submit: einreichen
94
+ user_answers_serializer:
95
+ body: Antwort
96
+ completion: Abschluss
97
+ created_at: Beantwortet am
98
+ id: ID beantworten
99
+ ip_hash: IP-Hash
100
+ question: Frage
101
+ registered: Registriert
102
+ session_token: Benutzerkennung
103
+ unregistered: Nicht registriert
104
+ user_status: Benutzerstatus
@@ -74,6 +74,7 @@ nl:
74
74
  form:
75
75
  add_question: Vraag toevoegen
76
76
  add_separator: Scheidingsteken toevoegen
77
+ add_title_and_description: Titel en beschrijving toevoegen
77
78
  already_answered_warning: De vragenlijst is al door enkele gebruikers beantwoord, dus u kunt de vragen niet wijzigen.
78
79
  collapse: Alle vragen samenvouwen
79
80
  expand: Vouw alle vragen uit
@@ -102,6 +103,15 @@ nl:
102
103
  remove: Verwijderen
103
104
  separator: Scheidingsteken
104
105
  up: Omhoog
106
+ title_and_description:
107
+ collapse: Inklappen
108
+ description: Beschrijving
109
+ down: Naar beneden
110
+ expand: Uitklappen
111
+ remove: Verwijderen
112
+ title: Titel
113
+ title_and_description: Titel en beschrijving
114
+ up: Naar boven
105
115
  update:
106
116
  invalid: Er zijn fouten opgetreden bij het opslaan van de vragenlijst.
107
117
  success: Formulier succesvol opgeslagen.
@@ -124,6 +134,7 @@ nl:
124
134
  short_answer: Kort antwoord
125
135
  single_option: Enkele optie
126
136
  sorting: sorteer-
137
+ title_and_description: Titel en beschrijving
127
138
  questionnaires:
128
139
  answer:
129
140
  invalid: Er zijn fouten opgetreden bij het beantwoorden van de vragenlijst.
@@ -3,15 +3,22 @@
3
3
  attributes:
4
4
  answer:
5
5
  body: Svar
6
+ choices: Valg
7
+ selected_choices: Valgte valg
6
8
  question:
7
9
  max_choices: Maksimalt antall valg
8
10
  question_type: Type
9
11
  questionnaire_question:
10
12
  mandatory: Obligatorisk
13
+ max_characters: Tegngrense (la være 0 hvis ingen begrensning)
11
14
  errors:
12
15
  models:
13
16
  answer:
14
17
  attributes:
18
+ add_documents:
19
+ needs_to_be_reattached: Må legges til på nytt
20
+ body:
21
+ too_long: er for lang
15
22
  choices:
16
23
  missing: er ikke fullstendig
17
24
  too_many: er for mange
@@ -48,16 +55,44 @@
48
55
  title: "%{total} svar totalt"
49
56
  show:
50
57
  title: 'Svar #%{number}'
58
+ display_condition:
59
+ answer_option: Svaralternativ
60
+ condition_question: Spørsmål
61
+ condition_type: Betingelse
62
+ condition_types:
63
+ answered: Besvart
64
+ equal: Lik
65
+ match: Inkluder tekst
66
+ not_answered: Ikke besvart
67
+ not_equal: Ikke lik
68
+ condition_value: Inkludert tekst
69
+ display_condition: Vis betingelse
70
+ mandatory: Denne betingelsen må alltid oppfylles uavhengig av status for andre betingelser
71
+ remove: Fjern
72
+ save_warning: Husk å lagre skjemaet før du konfigurerer visningsbetingelser
73
+ select_answer_option: Velg svaralternativ
74
+ select_condition_question: Velg et spørsmål
75
+ select_condition_type: Velg en betingelsestype
51
76
  edit:
52
77
  save: Lagre
78
+ title: Rediger spørreskjema
53
79
  form:
54
80
  add_question: Legg til spørsmål
81
+ add_separator: Legg til skilletegn
82
+ add_title_and_description: Legg til tittel og beskrivelse
55
83
  already_answered_warning: Skjemaet er allerede besvart av noen brukere derfor kan du ikke endre spørsmålene.
84
+ collapse: Skjul alle spørsmål
85
+ expand: Utvid alle spørsmål
86
+ preview: Forhåndsvis
87
+ title: Rediger skjema for %{questionnaire_for}
88
+ unpublished_warning: Skjemaet er ikke publisert. Du kan endre spørsmålet, men da slettes nåværende svar.
56
89
  matrix_row:
90
+ matrix_row: Rad
57
91
  remove: Fjern
58
92
  statement: Uttalelse
59
93
  question:
60
94
  add_answer_option: Legg til svaralternativ
95
+ add_display_condition: Legg til visningsbetingelse
61
96
  add_display_condition_info: Lagre skjemaet for å konfigurere visningsbetingelser
62
97
  add_matrix_row: Legg til rad
63
98
  any: Alle
@@ -74,8 +109,18 @@
74
109
  remove: Fjern
75
110
  separator: Skilletegn
76
111
  up: Opp
112
+ title_and_description:
113
+ collapse: Kollaps
114
+ description: Beskrivelse
115
+ down: Ned
116
+ expand: Utvid
117
+ remove: Fjern
118
+ title: Tittel
119
+ title_and_description: Tittel og beskrivelse
120
+ up: Opp
77
121
  update:
78
122
  invalid: Det oppstod et problem med å lagre dette skjema.
123
+ success: Skjemaet ble lagret.
79
124
  errors:
80
125
  answer:
81
126
  body: Teksten kan ikke være blank
@@ -84,12 +129,19 @@
84
129
  images:
85
130
  dimensions: "%{width} x %{height} px"
86
131
  dimensions_info: 'Dette bildet vil være:'
132
+ processors:
133
+ resize_and_pad: Endret størrelse og avstand til
134
+ resize_to_fit: Endret størrelse for å passe
87
135
  question_types:
136
+ files: Filer
88
137
  long_answer: Langt svar
138
+ matrix_multiple: Matrise (Flervalg)
139
+ matrix_single: Matrise (Enkeltvalg)
89
140
  multiple_option: Flere alternativer
90
141
  short_answer: Kort svar
91
142
  single_option: Enkelt alternativ
92
143
  sorting: Sortering
144
+ title_and_description: Tittel og beskrivelse
93
145
  questionnaires:
94
146
  answer:
95
147
  invalid: Det oppstod et problem med å svare på skjemaet.
@@ -1,4 +1,4 @@
1
- pt:
1
+ pt-BR:
2
2
  activemodel:
3
3
  attributes:
4
4
  answer:
@@ -4,13 +4,13 @@ ro:
4
4
  answer:
5
5
  body: Răspuns
6
6
  choices: Opțiuni
7
- selected_choices: Alegeri selectate
7
+ selected_choices: Opțiuni selectate
8
8
  question:
9
9
  max_choices: Numărul maxim de opțiuni
10
10
  question_type: Tip
11
11
  questionnaire_question:
12
- mandatory: Mandatory
13
- max_characters: Limita de caractere (lăsați la 0 dacă nu este limită)
12
+ mandatory: Obligatoriu
13
+ max_characters: Limita de caractere (lăsați la 0 dacă nu este nicio limită)
14
14
  errors:
15
15
  models:
16
16
  answer:
@@ -20,23 +20,23 @@ ro:
20
20
  body:
21
21
  too_long: este prea lung
22
22
  choices:
23
- missing: nu sunt complete
23
+ missing: nu sunt completate
24
24
  too_many: sunt prea multe
25
25
  questionnaire:
26
- request_invalid: A apărut o eroare la procesarea cererii. rugăm să încercați din nou
26
+ request_invalid: A apărut o eroare la procesarea cererii. Te rugăm să încerci din nou
27
27
  decidim:
28
28
  forms:
29
29
  admin:
30
30
  models:
31
31
  components:
32
32
  description: Descriere
33
- tos: Termenii serviciului
33
+ tos: Condiţii de utilizare
34
34
  questionnaires:
35
35
  actions:
36
36
  back: Înapoi la întrebări
37
- show: Arată răspunsurile
37
+ show: Afișează răspunsurile
38
38
  answer_option:
39
- answer_option: Opțiune răspuns
39
+ answer_option: Opțiune de răspuns
40
40
  free_text: Text liber
41
41
  remove: Elimină
42
42
  statement: Declarație
@@ -44,76 +44,86 @@ ro:
44
44
  actions:
45
45
  back: Înapoi la răspunsuri
46
46
  export: Exportă
47
- show: Arată răspunsurile
48
- empty: Încă nu există răspunsuri
47
+ show: Afişează răspunsurile
48
+ empty: Niciun răspuns încă
49
49
  export:
50
50
  answer:
51
51
  title: 'Răspuns #%{number}'
52
52
  export_response:
53
- title: chestionar_utilizator_răspunsuri_%{token}
53
+ title: survey_user_answers_%{token}
54
54
  index:
55
55
  title: "%{total} total răspunsuri"
56
56
  show:
57
57
  title: 'Răspuns #%{number}'
58
58
  display_condition:
59
- answer_option: Opțiune răspuns
59
+ answer_option: Opțiune de răspuns
60
60
  condition_question: Întrebare
61
61
  condition_type: Condiție
62
62
  condition_types:
63
- answered: Răspuns
64
- equal: Egal
63
+ answered: Răspunse
64
+ equal: Egal cu
65
65
  match: Include textul
66
- not_answered: Nu s-a răspuns
67
- not_equal: Nu este egal
66
+ not_answered: Fără răspuns
67
+ not_equal: Nu este egal cu
68
68
  condition_value: Text inclus
69
- display_condition: Condiție de afișare
70
- mandatory: Această condiție trebuie îndeplinită întotdeauna indiferent de statutul altor condiții
69
+ display_condition: Afișează condiția
70
+ mandatory: Această condiție trebuie îndeplinită întotdeauna indiferent de stadiul altor condiții
71
71
  remove: Elimină
72
- save_warning: Amintiţi-văsalvaţi formularul înainte de configurarea condiţiilor de afişare
73
- select_answer_option: Selectați opțiunea de răspuns
72
+ save_warning: Ține minte salvezi chestionarul înainte de configurarea condiţiilor de afişare
73
+ select_answer_option: Selectează opțiunea de răspuns
74
74
  select_condition_question: Selectează o întrebare
75
- select_condition_type: Selectați un tip de condiție
75
+ select_condition_type: Selectează un tip de condiție
76
76
  edit:
77
77
  save: Salvează
78
- title: Editare chestionar
78
+ title: Editează chestionarul
79
79
  form:
80
80
  add_question: Adaugă întrebare
81
81
  add_separator: Adaugă separator
82
- already_answered_warning: Formularul a primit deja un răspuns de la unii utilizatori astfel încât nu îi puteți modifica întrebările.
82
+ add_title_and_description: Adaugă titlu și descriere
83
+ already_answered_warning: Au fost înregistrare deja câteva răspunsuri de la utilizatori pentru acest chestionar. De aceea, nu mai poți modifica întrebările.
83
84
  collapse: Restrânge toate întrebările
84
85
  expand: Extinde toate întrebările
85
- preview: Previzualizare
86
- title: Editare formular pentru %{questionnaire_for}
87
- unpublished_warning: Formularul nu este publicat. Puteți modifica întrebările, dar acest lucru va șterge răspunsurile curente.
86
+ preview: Previzualizează
87
+ title: Editează chestionarul pentru %{questionnaire_for}
88
+ unpublished_warning: Chestionarul nu este publicat. Poți modifica întrebările, dar această acțiune va duce la stergerea automată a răspunsurilor curente.
88
89
  matrix_row:
89
90
  matrix_row: Rând
90
91
  remove: Elimină
91
92
  statement: Declarație
92
93
  question:
93
- add_answer_option: Adaugă opțiune răspuns
94
- add_display_condition: Adăugați o condiție de afișare
95
- add_display_condition_info: Salvați formularul pentru a configura condițiile de afișare
94
+ add_answer_option: Adaugă opțiune de răspuns
95
+ add_display_condition: Adaugă condiție de afișare
96
+ add_display_condition_info: Salvează formularul pentru a configura condițiile de afișare
96
97
  add_matrix_row: Adaugă rând
97
98
  any: Oricare
98
99
  collapse: Restrânge
99
100
  description: Descriere
100
- down: Jos
101
+ down: Mergi în jos
101
102
  expand: Extinde
102
103
  question: Întrebare
103
104
  remove: Elimină
104
105
  statement: Declarație
105
- up: Sus
106
+ up: Mergi în sus
106
107
  separator:
107
- down: Jos
108
+ down: Mergi în jos
108
109
  remove: Elimină
109
110
  separator: Separator
110
- up: Sus
111
+ up: Mergi în sus
112
+ title_and_description:
113
+ collapse: Restrânge
114
+ description: Descriere
115
+ down: Mergi în jos
116
+ expand: Extinde
117
+ remove: Șterge
118
+ title: Titlu
119
+ title_and_description: Titlu și descriere
120
+ up: Mergi în sus
111
121
  update:
112
- invalid: A apărut o eroare la salvarea formularului.
113
- success: Formular salvat cu succes.
122
+ invalid: A apărut o eroare la salvarea chestionarului.
123
+ success: Chestionarul a fost salvat cu succes.
114
124
  errors:
115
125
  answer:
116
- body: Corpul nu poate fi gol
126
+ body: Conținutul nu poate fi gol
117
127
  files:
118
128
  extension_allowlist: 'Formate acceptate:'
119
129
  images:
@@ -121,58 +131,59 @@ ro:
121
131
  dimensions_info: 'Această imagine va fi:'
122
132
  processors:
123
133
  resize_and_pad: Redimensionat și padded la
124
- resize_to_fit: Redimensionat pentru a se potrivi
134
+ resize_to_fit: Redimensionată pentru a se potrivi
125
135
  question_types:
126
136
  files: Fișiere
127
137
  long_answer: Răspuns lung
128
- matrix_multiple: Matricea (opțiune multiplă)
129
- matrix_single: Matricea (opțiunea unică)
130
- multiple_option: Opțiune multiplă
138
+ matrix_multiple: Matrice (mai multe opțiuni)
139
+ matrix_single: Matrice (opțiune unică)
140
+ multiple_option: Mai multe opțiuni
131
141
  short_answer: Răspuns scurt
132
142
  single_option: Opțiune unică
133
143
  sorting: Sortare
144
+ title_and_description: Titlu și descriere
134
145
  questionnaires:
135
146
  answer:
136
- invalid: A apărut o problemă cu răspunsul la formular.
147
+ invalid: A apărut o problemă la completarea chestionarului.
137
148
  max_choices_alert: Există prea multe alegeri selectate
138
- success: Formularul a răspuns cu succes.
149
+ success: Chestionarul a fost completat cu succes.
139
150
  question:
140
- max_choices: 'Max alegeri: %{n}'
151
+ max_choices: 'Număr maxim de alegeri: %{n}'
141
152
  show:
142
153
  answer_questionnaire:
143
- anonymous_user_message: <a href="%{sign_in_link}">Autentifică-te cu contul tău</a> sau <a href="%{sign_up_link}">înregistrează-te</a> pentru a răspunde la formular.
144
- title: Răspundeți la formular
154
+ anonymous_user_message: <a href="%{sign_in_link}">Autentifică-te cu contul tău</a> sau <a href="%{sign_up_link}">înregistrează-te</a> pentru a răspunde la chestionar.
155
+ title: Completează chestionarul
145
156
  current_step: Pasul %{step}
146
157
  of_total_steps: din %{total_steps}
147
158
  questionnaire_answered:
148
- body: Ați răspuns deja la acest formular.
149
- title: Răspuns deja
159
+ body: Ai completat deja la acest chestionar.
160
+ title: Un răspuns a fost deja trimis
150
161
  questionnaire_closed:
151
- body: Formularul este închis și nu se poate răspunde.
162
+ body: Chestionarul este închis și nu mai poate fi completat.
152
163
  title: Formular închis
153
164
  questionnaire_for_private_users:
154
- body: Formularul este disponibil doar pentru utilizatorii privați
155
- title: Formular închis
165
+ body: Chestionarul este disponibil doar pentru utilizatorii privați
166
+ title: Chestionar închis
156
167
  questionnaire_js_disabled:
157
- body: Unele dintre funcțiile acestui formular vor fi dezactivate. Pentru a îmbunătăți experiența, rugăm să activați JavaScript în browser-ul dvs.
168
+ body: Unele dintre funcționalitățile acestui chestionar vor fi dezactivate. Pentru a îți îmbunătăți experiența, te rugăm să activezi JavaScript în browser-ul tău.
158
169
  title: JavaScript este dezactivat
159
170
  questionnaire_not_published:
160
- body: Acest formular nu este publicat încă.
161
- tos_agreement: Prin participare acceptați termenii și condițiile sale de utilizare
171
+ body: Acest chestionar nu este încă publicat.
172
+ tos_agreement: Prin participare accepți Termenii și condițiile sale de utilizare
162
173
  step_navigation:
163
174
  show:
164
- are_you_sure: Această acțiune nu poate fi anulată și nu vei putea să îți editezi răspunsurile. Ești sigur(ă)?
175
+ are_you_sure: Această acțiune nu poate fi anulată și nu vei putea să îți editezi răspunsurile. Sigur dorești asta?
165
176
  back: Înapoi
166
177
  continue: Continuă
167
- submit: Trimiteți
178
+ submit: Trimite
168
179
  user_answers_serializer:
169
180
  body: Răspuns
170
181
  completion: Finalizare
171
- created_at: Răspuns pornit
182
+ created_at: Răspuns completat la
172
183
  id: ID răspuns
173
- ip_hash: Hash IP
184
+ ip_hash: IP Hash
174
185
  question: Întrebare
175
186
  registered: Înregistrat
176
187
  session_token: Identificator utilizator
177
188
  unregistered: Neînregistrat
178
- user_status: Statusul utilizatorului
189
+ user_status: Stadiul utilizatorului