decidim-templates 0.27.5 → 0.28.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/commands/decidim/templates/admin/apply_questionnaire_template.rb +1 -1
- data/app/commands/decidim/templates/admin/copy_proposal_answer_template.rb +21 -0
- data/app/commands/decidim/templates/admin/copy_questionnaire_template.rb +3 -33
- data/app/commands/decidim/templates/admin/copy_template.rb +43 -0
- data/app/commands/decidim/templates/admin/create_block_user_template.rb +15 -0
- data/app/commands/decidim/templates/admin/create_proposal_answer_template.rb +47 -0
- data/app/commands/decidim/templates/admin/create_questionnaire_template.rb +6 -19
- data/app/commands/decidim/templates/admin/create_template.rb +54 -0
- data/app/commands/decidim/templates/admin/destroy_questionnaire_template.rb +22 -0
- data/app/commands/decidim/templates/admin/update_proposal_answer_template.rb +51 -0
- data/app/commands/decidim/templates/admin/update_template.rb +6 -0
- data/app/controllers/decidim/templates/admin/application_controller.rb +0 -8
- data/app/controllers/decidim/templates/admin/block_user_templates_controller.rb +124 -0
- data/app/controllers/decidim/templates/admin/concerns/templatable.rb +1 -1
- data/app/controllers/decidim/templates/admin/proposal_answer_templates_controller.rb +173 -0
- data/app/controllers/decidim/templates/admin/questionnaire_templates_controller.rb +4 -4
- data/app/forms/decidim/templates/admin/proposal_answer_template_form.rb +23 -0
- data/app/helpers/decidim/templates/admin/application_helper.rb +18 -0
- data/app/models/decidim/templates/template.rb +0 -6
- data/app/packs/entrypoints/decidim_templates_admin.js +2 -0
- data/app/packs/src/decidim/templates/admin/block_user_template_chooser.js +20 -0
- data/app/packs/src/decidim/templates/admin/proposal_answer_template_chooser.js +31 -0
- data/app/packs/stylesheets/decidim/templates/templates.scss +3 -12
- data/app/presenters/decidim/templates/admin_log/template_presenter.rb +2 -2
- data/app/views/decidim/templates/admin/block_user_templates/_form.html.erb +13 -0
- data/app/views/decidim/templates/admin/block_user_templates/_template_chooser.html.erb +12 -0
- data/app/views/decidim/templates/admin/block_user_templates/edit.html.erb +18 -0
- data/app/views/decidim/templates/admin/block_user_templates/index.html.erb +45 -0
- data/app/views/decidim/templates/admin/block_user_templates/new.html.erb +18 -0
- data/app/views/decidim/templates/admin/proposal_answer_templates/_form.html.erb +38 -0
- data/app/views/decidim/templates/admin/proposal_answer_templates/_template_chooser.html.erb +16 -0
- data/app/views/decidim/templates/admin/proposal_answer_templates/edit.html.erb +18 -0
- data/app/views/decidim/templates/admin/proposal_answer_templates/index.html.erb +51 -0
- data/app/views/decidim/templates/admin/proposal_answer_templates/new.html.erb +18 -0
- data/app/views/decidim/templates/admin/questionnaire_templates/_choose.html.erb +35 -35
- data/app/views/decidim/templates/admin/questionnaire_templates/_form.html.erb +9 -12
- data/app/views/decidim/templates/admin/questionnaire_templates/_preview.html.erb +52 -60
- data/app/views/decidim/templates/admin/questionnaire_templates/edit.html.erb +31 -16
- data/app/views/decidim/templates/admin/questionnaire_templates/index.html.erb +6 -8
- data/app/views/decidim/templates/admin/questionnaire_templates/new.html.erb +18 -7
- data/app/views/decidim/templates/admin/questionnaire_templates/preview.js.erb +3 -0
- data/app/views/layouts/decidim/admin/templates.html.erb +1 -9
- data/config/assets.rb +2 -1
- data/config/locales/ar.yml +8 -2
- data/config/locales/ca.yml +47 -8
- data/config/locales/cs.yml +47 -8
- data/config/locales/de.yml +47 -8
- data/config/locales/en.yml +47 -8
- data/config/locales/es-MX.yml +47 -8
- data/config/locales/es-PY.yml +47 -8
- data/config/locales/es.yml +47 -8
- data/config/locales/eu.yml +47 -8
- data/config/locales/fi-plain.yml +47 -8
- data/config/locales/fi.yml +47 -8
- data/config/locales/fr-CA.yml +33 -8
- data/config/locales/fr.yml +47 -8
- data/config/locales/ga-IE.yml +6 -2
- data/config/locales/gl.yml +6 -10
- data/config/locales/hu.yml +6 -10
- data/config/locales/it.yml +6 -10
- data/config/locales/ja.yml +28 -8
- data/config/locales/kaa.yml +4 -1
- data/config/locales/lt.yml +18 -8
- data/config/locales/nl.yml +6 -11
- data/config/locales/no.yml +6 -10
- data/config/locales/pl.yml +6 -10
- data/config/locales/pt-BR.yml +6 -13
- data/config/locales/pt.yml +6 -10
- data/config/locales/ro-RO.yml +18 -8
- data/config/locales/sv.yml +6 -2
- data/config/locales/tr-TR.yml +8 -10
- data/config/locales/zh-CN.yml +6 -11
- data/config/locales/zh-TW.yml +18 -8
- data/db/migrate/20221006055954_add_field_values_and_target_to_decidim_templates.rb +21 -0
- data/db/seeds.rb +6 -6
- data/lib/decidim/templates/admin_engine.rb +22 -17
- data/lib/decidim/templates/engine.rb +4 -0
- data/lib/decidim/templates/menu.rb +48 -0
- data/lib/decidim/templates/test/factories.rb +16 -1
- data/lib/decidim/templates/test/shared_examples/copies_all_questionnaire_contents_examples.rb +3 -3
- data/lib/decidim/templates/test/shared_examples/uses_questionnaire_templates.rb +8 -6
- data/lib/decidim/templates/version.rb +1 -1
- metadata +47 -17
- data/config/environment.rb +0 -3
data/config/locales/de.yml
CHANGED
@@ -10,23 +10,27 @@ de:
|
|
10
10
|
decidim:
|
11
11
|
admin:
|
12
12
|
menu:
|
13
|
+
manage: Verwalten
|
13
14
|
templates: Vorlagen
|
14
15
|
templates:
|
16
|
+
actions:
|
17
|
+
new_template: Neue Vorlage
|
15
18
|
apply:
|
16
19
|
error: Es gab ein Problem beim Anwenden dieser Vorlage.
|
17
|
-
success: Vorlage erfolgreich angewendet
|
20
|
+
success: Vorlage erfolgreich angewendet.
|
18
21
|
copy:
|
19
22
|
error: Beim Kopieren dieser Vorlage ist ein Problem aufgetreten.
|
20
|
-
success: Vorlage erfolgreich kopiert
|
23
|
+
success: Vorlage erfolgreich kopiert.
|
21
24
|
create:
|
22
25
|
error: Es gab ein Problem beim Erstellen dieser Vorlage.
|
23
|
-
success: Vorlage erfolgreich erstellt
|
26
|
+
success: Vorlage erfolgreich erstellt.
|
24
27
|
destroy:
|
25
|
-
success: Vorlage erfolgreich gelöscht
|
28
|
+
success: Vorlage erfolgreich gelöscht.
|
26
29
|
empty: Es gibt noch keine Vorlagen.
|
30
|
+
missing_resource: "(fehlende Ressource)"
|
27
31
|
update:
|
28
32
|
error: Bei der Aktualisierung dieser Vorlage ist ein Problem aufgetreten.
|
29
|
-
success: Vorlage erfolgreich aktualisiert
|
33
|
+
success: Vorlage erfolgreich aktualisiert.
|
30
34
|
titles:
|
31
35
|
template_types:
|
32
36
|
questionnaires: Fragebogenvorlagen
|
@@ -42,6 +46,38 @@ de:
|
|
42
46
|
name: Vorlage
|
43
47
|
templates:
|
44
48
|
admin:
|
49
|
+
block_user_templates:
|
50
|
+
edit:
|
51
|
+
title: Vorlage für Nachricht an zu blockierende Nutzende bearbeiten
|
52
|
+
form:
|
53
|
+
save: Speichern
|
54
|
+
index:
|
55
|
+
confirm_delete: Möchten Sie diese Vorlage wirklich löschen?
|
56
|
+
title: Nachrichten blockieren
|
57
|
+
new:
|
58
|
+
title: Neue Vorlage für Nachricht an zu blockierende Nutzende
|
59
|
+
template_chooser:
|
60
|
+
select_template: Wählen Sie eine Antwortvorlage aus
|
61
|
+
proposal_answer_templates:
|
62
|
+
edit:
|
63
|
+
title: Vorlage für Vorschlagsantworten bearbeiten
|
64
|
+
form:
|
65
|
+
component_constraint_help: Beachten Sie, dass nur partizipative Räume mit Komponenten des Typs "Vorschlag" aufgelistet werden.
|
66
|
+
hint1_html: "<strong>%{organization}</strong> wird durch den Namen der Organisation ersetzt"
|
67
|
+
hint2_html: "<strong>%{name}</strong> wird durch den Namen des Autors ersetzt"
|
68
|
+
hint3_html: "<strong>%{admin}</strong> wird durch den Namen des Admins ersetzt, der den Vorschlag beantwortet"
|
69
|
+
hint_html: "<strong>Tipp:</strong> Sie können diese Variablen überall in der Antwortvorlage verwenden. Sie werden bei der Verwendung der Vorlage ersetzt"
|
70
|
+
save: Speichern
|
71
|
+
index:
|
72
|
+
component_constraint: Einschränkung hinzufügen
|
73
|
+
confirm_delete: Möchten Sie diese Vorlage wirklich löschen?
|
74
|
+
global_scope: Global (überall verfügbar)
|
75
|
+
internal_state: Interner Status
|
76
|
+
title: Vorschlagsantworten
|
77
|
+
new:
|
78
|
+
title: Neue Vorlage für Vorschlagsantworten
|
79
|
+
template_chooser:
|
80
|
+
select_template: Antwortvorlage auswählen
|
45
81
|
questionnaire_templates:
|
46
82
|
choose:
|
47
83
|
create_from_template: Aus Vorlage erstellen
|
@@ -51,15 +87,16 @@ de:
|
|
51
87
|
skip_template: Überspringen
|
52
88
|
edit:
|
53
89
|
edit: Bearbeiten
|
54
|
-
empty: Es gibt noch keine Fragen
|
90
|
+
empty: Es gibt noch keine Fragen.
|
55
91
|
questionnaire: Fragebogen
|
92
|
+
title: Formular-Vorlage bearbeiten
|
56
93
|
form:
|
57
|
-
save: Speichern
|
58
|
-
template_title: Vorlageninformation
|
59
94
|
title: Fragebogenvorlage %{questionnaire_for}
|
60
95
|
index:
|
61
96
|
confirm_delete: Möchten Sie diese Vorlage wirklich löschen?
|
62
97
|
title: Fragebogenvorlagen
|
98
|
+
new:
|
99
|
+
title: Neue Formular-Vorlage
|
63
100
|
preview:
|
64
101
|
current_step: Schritt %{step}
|
65
102
|
of_total_steps: von %{total_steps}
|
@@ -71,4 +108,6 @@ de:
|
|
71
108
|
duplicate: "%{user_name} hat die Umfragevorlage %{resource_name} dupliziert"
|
72
109
|
update: "%{user_name} hat die Umfragevorlage %{resource_name} aktualisiert"
|
73
110
|
template_types:
|
111
|
+
block_user: Nachrichten blockieren
|
112
|
+
proposal_answer_templates: Vorschlagsantworten
|
74
113
|
questionnaires: Fragebögen
|
data/config/locales/en.yml
CHANGED
@@ -10,23 +10,27 @@ en:
|
|
10
10
|
decidim:
|
11
11
|
admin:
|
12
12
|
menu:
|
13
|
+
manage: Manage
|
13
14
|
templates: Templates
|
14
15
|
templates:
|
16
|
+
actions:
|
17
|
+
new_template: New template
|
15
18
|
apply:
|
16
19
|
error: There was a problem applying this template.
|
17
|
-
success: Template applied successfully
|
20
|
+
success: Template applied successfully.
|
18
21
|
copy:
|
19
22
|
error: There was a problem copying this template.
|
20
|
-
success: Template copied successfully
|
23
|
+
success: Template copied successfully.
|
21
24
|
create:
|
22
25
|
error: There was a problem creating this template.
|
23
|
-
success: Template created successfully
|
26
|
+
success: Template created successfully.
|
24
27
|
destroy:
|
25
|
-
success: Template deleted successfully
|
28
|
+
success: Template deleted successfully.
|
26
29
|
empty: There are no templates yet.
|
30
|
+
missing_resource: "(missing resource)"
|
27
31
|
update:
|
28
32
|
error: There was a problem updating this template.
|
29
|
-
success: Template updated successfully
|
33
|
+
success: Template updated successfully.
|
30
34
|
titles:
|
31
35
|
template_types:
|
32
36
|
questionnaires: Questionnaire templates
|
@@ -42,6 +46,38 @@ en:
|
|
42
46
|
name: Template
|
43
47
|
templates:
|
44
48
|
admin:
|
49
|
+
block_user_templates:
|
50
|
+
edit:
|
51
|
+
title: Edit block user message template
|
52
|
+
form:
|
53
|
+
save: Save
|
54
|
+
index:
|
55
|
+
confirm_delete: Are you sure you want to delete this template?
|
56
|
+
title: Block user messages
|
57
|
+
new:
|
58
|
+
title: New block user message template
|
59
|
+
template_chooser:
|
60
|
+
select_template: Select a template answer
|
61
|
+
proposal_answer_templates:
|
62
|
+
edit:
|
63
|
+
title: Edit proposal answer template
|
64
|
+
form:
|
65
|
+
component_constraint_help: Note that only participatory spaces having components of the type "proposals" will be listed.
|
66
|
+
hint1_html: "<strong>%{organization}</strong> will be replaced by the organization's name"
|
67
|
+
hint2_html: "<strong>%{name}</strong> will be replaced by the author's name"
|
68
|
+
hint3_html: "<strong>%{admin}</strong> will be replaced by the admin's name (the one answering the proposal)"
|
69
|
+
hint_html: "<strong>Hint:</strong> You can use these variables anywhere on the answer template that will be replaced when using the template"
|
70
|
+
save: Save
|
71
|
+
index:
|
72
|
+
component_constraint: Add constraint
|
73
|
+
confirm_delete: Are you sure you want to delete this template?
|
74
|
+
global_scope: Global (available everywhere)
|
75
|
+
internal_state: Internal state
|
76
|
+
title: Proposal answers
|
77
|
+
new:
|
78
|
+
title: New proposal answer template
|
79
|
+
template_chooser:
|
80
|
+
select_template: Select a template answer
|
45
81
|
questionnaire_templates:
|
46
82
|
choose:
|
47
83
|
create_from_template: Create from template
|
@@ -51,15 +87,16 @@ en:
|
|
51
87
|
skip_template: Skip
|
52
88
|
edit:
|
53
89
|
edit: Edit
|
54
|
-
empty: There are no questions yet
|
90
|
+
empty: There are no questions yet.
|
55
91
|
questionnaire: Questionnaire
|
92
|
+
title: Edit questionnaire template
|
56
93
|
form:
|
57
|
-
save: Save
|
58
|
-
template_title: Template information
|
59
94
|
title: Questionnaire template %{questionnaire_for}
|
60
95
|
index:
|
61
96
|
confirm_delete: Are you sure you want to delete this template?
|
62
97
|
title: Questionnaire templates
|
98
|
+
new:
|
99
|
+
title: New questionnaire template
|
63
100
|
preview:
|
64
101
|
current_step: Step %{step}
|
65
102
|
of_total_steps: of %{total_steps}
|
@@ -71,4 +108,6 @@ en:
|
|
71
108
|
duplicate: "%{user_name} duplicated the %{resource_name} questionnaire template"
|
72
109
|
update: "%{user_name} updated the %{resource_name} questionnaire template"
|
73
110
|
template_types:
|
111
|
+
block_user: Block user messages
|
112
|
+
proposal_answer_templates: Proposal answers
|
74
113
|
questionnaires: Questionnaires
|
data/config/locales/es-MX.yml
CHANGED
@@ -10,23 +10,27 @@ es-MX:
|
|
10
10
|
decidim:
|
11
11
|
admin:
|
12
12
|
menu:
|
13
|
+
manage: Gestionar
|
13
14
|
templates: Plantillas
|
14
15
|
templates:
|
16
|
+
actions:
|
17
|
+
new_template: Añadir plantilla
|
15
18
|
apply:
|
16
19
|
error: Se ha producido un error al aplicar esta plantilla.
|
17
|
-
success: Plantilla aplicada correctamente
|
20
|
+
success: Plantilla aplicada correctamente.
|
18
21
|
copy:
|
19
22
|
error: Se ha producido un error al copiar esta plantilla.
|
20
|
-
success: Plantilla copiada correctamente
|
23
|
+
success: Plantilla copiada correctamente.
|
21
24
|
create:
|
22
25
|
error: Se ha producido un error al crear esta plantilla.
|
23
|
-
success: Plantilla creada correctamente
|
26
|
+
success: Plantilla creada correctamente.
|
24
27
|
destroy:
|
25
|
-
success: Plantilla eliminada correctamente
|
28
|
+
success: Plantilla eliminada correctamente.
|
26
29
|
empty: Todavía no hay plantillas.
|
30
|
+
missing_resource: "(recurso ausente)"
|
27
31
|
update:
|
28
32
|
error: Se ha producido un error al actualizar esta plantilla.
|
29
|
-
success: Plantilla actualizada correctamente
|
33
|
+
success: Plantilla actualizada correctamente.
|
30
34
|
titles:
|
31
35
|
template_types:
|
32
36
|
questionnaires: Plantillas de cuestionario
|
@@ -42,6 +46,38 @@ es-MX:
|
|
42
46
|
name: Plantilla
|
43
47
|
templates:
|
44
48
|
admin:
|
49
|
+
block_user_templates:
|
50
|
+
edit:
|
51
|
+
title: Editar plantilla del mensaje de bloqueo de la cuenta de usuaria
|
52
|
+
form:
|
53
|
+
save: Guardar
|
54
|
+
index:
|
55
|
+
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
56
|
+
title: Bloquear los mensajes de la usuaria
|
57
|
+
new:
|
58
|
+
title: Nueva plantilla para el mensaje de bloqueo de la cuenta de usuaria
|
59
|
+
template_chooser:
|
60
|
+
select_template: Selecciona una plantilla de respuesta
|
61
|
+
proposal_answer_templates:
|
62
|
+
edit:
|
63
|
+
title: Editar la plantilla de respuesta a la propuesta
|
64
|
+
form:
|
65
|
+
component_constraint_help: Tenga en cuenta que solo se listarán los espacios de participación que tengan componentes del tipo "propuestas".
|
66
|
+
hint1_html: "<strong>%{organization}</strong> será reemplazado por el nombre de la organización"
|
67
|
+
hint2_html: "<strong>%{name}</strong> será reemplazado por el nombre de la autora"
|
68
|
+
hint3_html: "<strong>%{admin}</strong> será reemplazado por el nombre de la administradora (la que responde a la propuesta)"
|
69
|
+
hint_html: "<strong>Sugerencia:</strong> Puede utilizar estas variables en cualquier lugar de la plantilla de respuesta que se reemplazarán cuando utilice la plantilla"
|
70
|
+
save: Guardar
|
71
|
+
index:
|
72
|
+
component_constraint: Añadir restricción
|
73
|
+
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
74
|
+
global_scope: Global (disponible en todas partes)
|
75
|
+
internal_state: Estado interno
|
76
|
+
title: Respuestas a propuestas
|
77
|
+
new:
|
78
|
+
title: Nueva la plantilla de respuesta a propuesta
|
79
|
+
template_chooser:
|
80
|
+
select_template: Selecciona una plantilla de respuesta
|
45
81
|
questionnaire_templates:
|
46
82
|
choose:
|
47
83
|
create_from_template: Crear desde plantilla
|
@@ -51,15 +87,16 @@ es-MX:
|
|
51
87
|
skip_template: Omitir
|
52
88
|
edit:
|
53
89
|
edit: Editar
|
54
|
-
empty: Aún no hay preguntas
|
90
|
+
empty: Aún no hay preguntas.
|
55
91
|
questionnaire: Cuestionario
|
92
|
+
title: Editar plantilla del cuestionario
|
56
93
|
form:
|
57
|
-
save: Guardar
|
58
|
-
template_title: Información de la plantilla
|
59
94
|
title: Plantilla de cuestionario %{questionnaire_for}
|
60
95
|
index:
|
61
96
|
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
62
97
|
title: Plantillas de cuestionario
|
98
|
+
new:
|
99
|
+
title: Nueva plantilla de cuestionario
|
63
100
|
preview:
|
64
101
|
current_step: Paso %{step}
|
65
102
|
of_total_steps: de %{total_steps}
|
@@ -71,4 +108,6 @@ es-MX:
|
|
71
108
|
duplicate: "%{user_name} ha duplicado la plantilla del cuestionario %{resource_name}"
|
72
109
|
update: "%{user_name} ha actualizado la platilla del cuestionario %{resource_name}"
|
73
110
|
template_types:
|
111
|
+
block_user: Bloquear los mensajes de la usuaria
|
112
|
+
proposal_answer_templates: Respuestas a propuestas
|
74
113
|
questionnaires: Cuestionarios
|
data/config/locales/es-PY.yml
CHANGED
@@ -10,23 +10,27 @@ es-PY:
|
|
10
10
|
decidim:
|
11
11
|
admin:
|
12
12
|
menu:
|
13
|
+
manage: Gestionar
|
13
14
|
templates: Plantillas
|
14
15
|
templates:
|
16
|
+
actions:
|
17
|
+
new_template: Añadir plantilla
|
15
18
|
apply:
|
16
19
|
error: Se ha producido un error al aplicar esta plantilla.
|
17
|
-
success: Plantilla aplicada correctamente
|
20
|
+
success: Plantilla aplicada correctamente.
|
18
21
|
copy:
|
19
22
|
error: Se ha producido un error al copiar esta plantilla.
|
20
|
-
success: Plantilla copiada correctamente
|
23
|
+
success: Plantilla copiada correctamente.
|
21
24
|
create:
|
22
25
|
error: Se ha producido un error al crear esta plantilla.
|
23
|
-
success: Plantilla creada correctamente
|
26
|
+
success: Plantilla creada correctamente.
|
24
27
|
destroy:
|
25
|
-
success: Plantilla eliminada correctamente
|
28
|
+
success: Plantilla eliminada correctamente.
|
26
29
|
empty: Todavía no hay plantillas.
|
30
|
+
missing_resource: "(recurso ausente)"
|
27
31
|
update:
|
28
32
|
error: Se ha producido un error al actualizar esta plantilla.
|
29
|
-
success: Plantilla actualizada correctamente
|
33
|
+
success: Plantilla actualizada correctamente.
|
30
34
|
titles:
|
31
35
|
template_types:
|
32
36
|
questionnaires: Plantillas de cuestionario
|
@@ -42,6 +46,38 @@ es-PY:
|
|
42
46
|
name: Plantilla
|
43
47
|
templates:
|
44
48
|
admin:
|
49
|
+
block_user_templates:
|
50
|
+
edit:
|
51
|
+
title: Editar plantilla del mensaje de bloqueo de la cuenta de usuaria
|
52
|
+
form:
|
53
|
+
save: Guardar
|
54
|
+
index:
|
55
|
+
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
56
|
+
title: Bloquear los mensajes de la usuaria
|
57
|
+
new:
|
58
|
+
title: Nueva plantilla para el mensaje de bloqueo de la cuenta de usuaria
|
59
|
+
template_chooser:
|
60
|
+
select_template: Selecciona una plantilla de respuesta
|
61
|
+
proposal_answer_templates:
|
62
|
+
edit:
|
63
|
+
title: Editar la plantilla de respuesta a la propuesta
|
64
|
+
form:
|
65
|
+
component_constraint_help: Tenga en cuenta que solo se listarán los espacios de participación que tengan componentes del tipo "propuestas".
|
66
|
+
hint1_html: "<strong>%{organization}</strong> será reemplazado por el nombre de la organización"
|
67
|
+
hint2_html: "<strong>%{name}</strong> será reemplazado por el nombre de la autora"
|
68
|
+
hint3_html: "<strong>%{admin}</strong> será reemplazado por el nombre de la administradora (la que responde a la propuesta)"
|
69
|
+
hint_html: "<strong>Sugerencia:</strong> Puede utilizar estas variables en cualquier lugar de la plantilla de respuesta que se reemplazarán cuando utilice la plantilla"
|
70
|
+
save: Guardar
|
71
|
+
index:
|
72
|
+
component_constraint: Añadir restricción
|
73
|
+
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
74
|
+
global_scope: Global (disponible en todas partes)
|
75
|
+
internal_state: Estado interno
|
76
|
+
title: Respuestas a propuestas
|
77
|
+
new:
|
78
|
+
title: Nueva la plantilla de respuesta a propuesta
|
79
|
+
template_chooser:
|
80
|
+
select_template: Selecciona una plantilla de respuesta
|
45
81
|
questionnaire_templates:
|
46
82
|
choose:
|
47
83
|
create_from_template: Crear desde plantilla
|
@@ -51,15 +87,16 @@ es-PY:
|
|
51
87
|
skip_template: Omitir
|
52
88
|
edit:
|
53
89
|
edit: Editar
|
54
|
-
empty: Aún no hay preguntas
|
90
|
+
empty: Aún no hay preguntas.
|
55
91
|
questionnaire: Cuestionario
|
92
|
+
title: Editar plantilla del cuestionario
|
56
93
|
form:
|
57
|
-
save: Guardar
|
58
|
-
template_title: Información de la plantilla
|
59
94
|
title: Plantilla de cuestionario %{questionnaire_for}
|
60
95
|
index:
|
61
96
|
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
62
97
|
title: Plantillas de cuestionario
|
98
|
+
new:
|
99
|
+
title: Nueva plantilla de cuestionario
|
63
100
|
preview:
|
64
101
|
current_step: Paso %{step}
|
65
102
|
of_total_steps: de %{total_steps}
|
@@ -71,4 +108,6 @@ es-PY:
|
|
71
108
|
duplicate: "%{user_name} ha duplicado la plantilla del cuestionario %{resource_name}"
|
72
109
|
update: "%{user_name} ha actualizado la platilla del cuestionario %{resource_name}"
|
73
110
|
template_types:
|
111
|
+
block_user: Bloquear los mensajes de la usuaria
|
112
|
+
proposal_answer_templates: Respuestas a propuestas
|
74
113
|
questionnaires: Cuestionarios
|
data/config/locales/es.yml
CHANGED
@@ -10,23 +10,27 @@ es:
|
|
10
10
|
decidim:
|
11
11
|
admin:
|
12
12
|
menu:
|
13
|
+
manage: Gestionar
|
13
14
|
templates: Plantillas
|
14
15
|
templates:
|
16
|
+
actions:
|
17
|
+
new_template: Añadir plantilla
|
15
18
|
apply:
|
16
19
|
error: Se ha producido un error al aplicar esta plantilla.
|
17
|
-
success: Plantilla aplicada correctamente
|
20
|
+
success: Plantilla aplicada correctamente.
|
18
21
|
copy:
|
19
22
|
error: Se ha producido un error al copiar esta plantilla.
|
20
|
-
success: Plantilla copiada correctamente
|
23
|
+
success: Plantilla copiada correctamente.
|
21
24
|
create:
|
22
25
|
error: Se ha producido un error al crear esta plantilla.
|
23
|
-
success: Plantilla creada correctamente
|
26
|
+
success: Plantilla creada correctamente.
|
24
27
|
destroy:
|
25
|
-
success: Plantilla eliminada correctamente
|
28
|
+
success: Plantilla eliminada correctamente.
|
26
29
|
empty: Todavía no hay plantillas.
|
30
|
+
missing_resource: "(recurso ausente)"
|
27
31
|
update:
|
28
32
|
error: Se ha producido un error al actualizar esta plantilla.
|
29
|
-
success: Plantilla actualizada correctamente
|
33
|
+
success: Plantilla actualizada correctamente.
|
30
34
|
titles:
|
31
35
|
template_types:
|
32
36
|
questionnaires: Plantillas de cuestionario
|
@@ -42,6 +46,38 @@ es:
|
|
42
46
|
name: Plantilla
|
43
47
|
templates:
|
44
48
|
admin:
|
49
|
+
block_user_templates:
|
50
|
+
edit:
|
51
|
+
title: Editar plantilla del mensaje de bloqueo de la cuenta de usuaria
|
52
|
+
form:
|
53
|
+
save: Guardar
|
54
|
+
index:
|
55
|
+
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
56
|
+
title: Bloquear los mensajes de la usuaria
|
57
|
+
new:
|
58
|
+
title: Nueva plantilla para el mensaje de bloqueo de la cuenta de usuaria
|
59
|
+
template_chooser:
|
60
|
+
select_template: Selecciona una plantilla de respuesta
|
61
|
+
proposal_answer_templates:
|
62
|
+
edit:
|
63
|
+
title: Editar la plantilla de respuesta a la propuesta
|
64
|
+
form:
|
65
|
+
component_constraint_help: Tenga en cuenta que solo se listarán los espacios de participación que tengan componentes del tipo "propuestas".
|
66
|
+
hint1_html: "<strong>%{organization}</strong> será reemplazado por el nombre de la organización"
|
67
|
+
hint2_html: "<strong>%{name}</strong> será reemplazado por el nombre de la autora"
|
68
|
+
hint3_html: "<strong>%{admin}</strong> será reemplazado por el nombre de la administradora (la que responde a la propuesta)"
|
69
|
+
hint_html: "<strong>Sugerencia:</strong> Puede utilizar estas variables en cualquier lugar de la plantilla de respuesta que se reemplazarán cuando utilice la plantilla"
|
70
|
+
save: Guardar
|
71
|
+
index:
|
72
|
+
component_constraint: Añadir restricción
|
73
|
+
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
74
|
+
global_scope: Global (disponible en todas partes)
|
75
|
+
internal_state: Estado interno
|
76
|
+
title: Respuestas a propuestas
|
77
|
+
new:
|
78
|
+
title: Nueva la plantilla de respuesta a propuesta
|
79
|
+
template_chooser:
|
80
|
+
select_template: Selecciona una plantilla de respuesta
|
45
81
|
questionnaire_templates:
|
46
82
|
choose:
|
47
83
|
create_from_template: Crear desde plantilla
|
@@ -51,15 +87,16 @@ es:
|
|
51
87
|
skip_template: Omitir
|
52
88
|
edit:
|
53
89
|
edit: Editar
|
54
|
-
empty: Aún no hay preguntas
|
90
|
+
empty: Aún no hay preguntas.
|
55
91
|
questionnaire: Cuestionario
|
92
|
+
title: Editar plantilla del cuestionario
|
56
93
|
form:
|
57
|
-
save: Guardar
|
58
|
-
template_title: Información de la plantilla
|
59
94
|
title: Plantilla de cuestionario %{questionnaire_for}
|
60
95
|
index:
|
61
96
|
confirm_delete: '¿Seguro que quieres eliminar esta plantilla?'
|
62
97
|
title: Plantillas de cuestionario
|
98
|
+
new:
|
99
|
+
title: Nueva plantilla de cuestionario
|
63
100
|
preview:
|
64
101
|
current_step: Paso %{step}
|
65
102
|
of_total_steps: de %{total_steps}
|
@@ -71,4 +108,6 @@ es:
|
|
71
108
|
duplicate: "%{user_name} ha duplicado la plantilla del cuestionario %{resource_name}"
|
72
109
|
update: "%{user_name} ha actualizado la platilla del cuestionario %{resource_name}"
|
73
110
|
template_types:
|
111
|
+
block_user: Bloquear los mensajes de la usuaria
|
112
|
+
proposal_answer_templates: Respuestas a propuestas
|
74
113
|
questionnaires: Cuestionarios
|
data/config/locales/eu.yml
CHANGED
@@ -10,23 +10,27 @@ eu:
|
|
10
10
|
decidim:
|
11
11
|
admin:
|
12
12
|
menu:
|
13
|
+
manage: Kudeatu
|
13
14
|
templates: Txantiloiak
|
14
15
|
templates:
|
16
|
+
actions:
|
17
|
+
new_template: Beste txantiloi bat
|
15
18
|
apply:
|
16
19
|
error: Arazo bat izan da txantiloi hau aplikatzean.
|
17
|
-
success: Txantiloia zuzen
|
20
|
+
success: Txantiloia zuzen aplikatua.
|
18
21
|
copy:
|
19
22
|
error: Arazo bat izan da txantiloi hau kopiatzean.
|
20
|
-
success: Txantiloia zuzen
|
23
|
+
success: Txantiloia zuzen kopiatua.
|
21
24
|
create:
|
22
25
|
error: Arazo bat izan da txantiloi hau sortzean.
|
23
|
-
success: Txantiloia zuzen
|
26
|
+
success: Txantiloia zuzen sortua.
|
24
27
|
destroy:
|
25
|
-
success: Txantiloia zuzen
|
28
|
+
success: Txantiloia zuzen ezabatua.
|
26
29
|
empty: Oraindik ez dago txantiloirik.
|
30
|
+
missing_resource: "(baliabide galdua)"
|
27
31
|
update:
|
28
32
|
error: Arazo bat egon da eztabaida hau eguneratzean.
|
29
|
-
success: Txantiloia zuzen
|
33
|
+
success: Txantiloia zuzen eguneratua.
|
30
34
|
titles:
|
31
35
|
template_types:
|
32
36
|
questionnaires: Galdeketa-txantiloiak
|
@@ -42,6 +46,38 @@ eu:
|
|
42
46
|
name: Txantiloia
|
43
47
|
templates:
|
44
48
|
admin:
|
49
|
+
block_user_templates:
|
50
|
+
edit:
|
51
|
+
title: Editatu erabiltzailearen kontua blokeatzeko mezuaren txantiloia
|
52
|
+
form:
|
53
|
+
save: Gorde
|
54
|
+
index:
|
55
|
+
confirm_delete: Ziur zaude txantiloi hau ezabatu nahi duzula?
|
56
|
+
title: Blokeatu erabiltzailearen mezuak
|
57
|
+
new:
|
58
|
+
title: Txantiloi berria erabiltzaile-kontua blokeatzeko mezurako
|
59
|
+
template_chooser:
|
60
|
+
select_template: Hautatu txantiloi-fitxategi bat
|
61
|
+
proposal_answer_templates:
|
62
|
+
edit:
|
63
|
+
title: Editatu proposamenaren erantzun-txantilioia
|
64
|
+
form:
|
65
|
+
component_constraint_help: Kontuan izan soilik zerrendatuko direla "proposamenak" motako osagaiak dituzten parte hartzeko espazioak.
|
66
|
+
hint1_html: "\n<strong>%{organization}</strong> erakundearen izenak ordezkatuko du."
|
67
|
+
hint2_html: "<strong>%{name}</strong> egilearen izenak ordezkatuko du."
|
68
|
+
hint3_html: "<strong>%{admin}</strong> administratzailearen izenak ordezkatuko du (proposamenari erantzuten diona)."
|
69
|
+
hint_html: "<strong>Iradokizuna</strong> Aldagarri hauek erantzunaren txantiloiaren edozein lekutan erabil ditzakezu, txantiloia erabiltzean ordezkatuko baitira"
|
70
|
+
save: Gorde
|
71
|
+
index:
|
72
|
+
component_constraint: Gehitu hertsapena.
|
73
|
+
confirm_delete: Ziur zaude txantiloi hau ezabatu nahi duzula?
|
74
|
+
global_scope: Globala (nonahi eskuragarri)
|
75
|
+
internal_state: Barne egoera
|
76
|
+
title: Proposamenen erantzunak
|
77
|
+
new:
|
78
|
+
title: Proposamenaren erantzun-txantilioi berria
|
79
|
+
template_chooser:
|
80
|
+
select_template: Aukeratu erantzun-txantiloi bat.
|
45
81
|
questionnaire_templates:
|
46
82
|
choose:
|
47
83
|
create_from_template: Sortu txantiloitik
|
@@ -51,15 +87,16 @@ eu:
|
|
51
87
|
skip_template: Saltatu
|
52
88
|
edit:
|
53
89
|
edit: Editatu
|
54
|
-
empty: Oraindik ez dago galderarik
|
90
|
+
empty: Oraindik ez dago galderarik.
|
55
91
|
questionnaire: Galdetegia
|
92
|
+
title: Editatu galdetegiaren txantiloia
|
56
93
|
form:
|
57
|
-
save: Gorde
|
58
|
-
template_title: Txantiloiaren informazioa
|
59
94
|
title: '%{questionnaire_for}% galdetegiaren txantiloia'
|
60
95
|
index:
|
61
96
|
confirm_delete: Ziur zaude txantiloi hau ezabatu nahi duzula?
|
62
97
|
title: Galdetegi-txantiloiak
|
98
|
+
new:
|
99
|
+
title: Beste galdetegi-txantiloi bat
|
63
100
|
preview:
|
64
101
|
current_step: '%{step} urratsa'
|
65
102
|
of_total_steps: '%{total_steps} etik'
|
@@ -71,4 +108,6 @@ eu:
|
|
71
108
|
duplicate: "%{user_name} -k %{resource_name} galdetegia bikoiztu du"
|
72
109
|
update: "%{user_name} -k %{resource_name} galdetegia eguneratu du"
|
73
110
|
template_types:
|
111
|
+
block_user: Blokeatu erabiltzailearen mezuak
|
112
|
+
proposal_answer_templates: Proposamenen erantzunak
|
74
113
|
questionnaires: Galdetegiak
|