decidim-surveys 0.30.3 → 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.
- checksums.yaml +4 -4
 - data/README.md +3 -3
 - data/app/commands/decidim/surveys/admin/create_survey.rb +14 -2
 - data/app/commands/decidim/surveys/admin/publish_survey.rb +3 -3
 - data/app/commands/decidim/surveys/admin/update_survey.rb +0 -13
 - data/app/commands/decidim/surveys/admin/update_survey_settings.rb +53 -0
 - data/app/commands/decidim/surveys/{publish_answers.rb → publish_responses.rb} +8 -8
 - data/app/commands/decidim/surveys/{unpublish_answers.rb → unpublish_responses.rb} +8 -8
 - data/app/controllers/decidim/surveys/admin/application_controller.rb +13 -0
 - data/app/controllers/decidim/surveys/admin/{publish_answers_controller.rb → publish_responses_controller.rb} +9 -9
 - data/app/controllers/decidim/surveys/admin/questions/surveys_controller.rb +48 -0
 - data/app/controllers/decidim/surveys/admin/{answers_controller.rb → responses_controller.rb} +18 -13
 - data/app/controllers/decidim/surveys/admin/settings/surveys_controller.rb +42 -0
 - data/app/controllers/decidim/surveys/admin/surveys_controller.rb +20 -39
 - data/app/controllers/decidim/surveys/surveys_controller.rb +15 -12
 - data/app/forms/decidim/surveys/admin/survey_form.rb +3 -7
 - data/app/forms/decidim/surveys/admin/survey_settings_form.rb +18 -0
 - data/app/helpers/decidim/surveys/{publish_answers_helper.rb → publish_responses_helper.rb} +11 -11
 - data/app/helpers/decidim/surveys/survey_helper.rb +1 -1
 - data/app/jobs/decidim/surveys/{clean_survey_answers_job.rb → clean_survey_responses_job.rb} +4 -4
 - data/app/jobs/decidim/surveys/settings_change_job.rb +5 -5
 - data/app/mailers/decidim/surveys/survey_confirmation_mailer.rb +6 -6
 - data/app/models/decidim/surveys/survey.rb +4 -4
 - data/app/permissions/decidim/surveys/admin/permissions.rb +4 -4
 - data/app/permissions/decidim/surveys/permissions.rb +1 -1
 - data/app/serializers/decidim/surveys/data_importer.rb +5 -5
 - data/app/serializers/decidim/surveys/data_serializer.rb +5 -5
 - data/app/views/decidim/surveys/admin/publish_responses/_toggle_button.html.erb +22 -0
 - data/app/views/decidim/surveys/admin/{publish_answers → publish_responses}/index.html.erb +5 -5
 - data/app/views/decidim/surveys/admin/questions/surveys/edit.html.erb +44 -0
 - data/app/views/decidim/surveys/admin/responses/index.html.erb +101 -0
 - data/app/views/decidim/surveys/admin/responses/show.html.erb +43 -0
 - data/app/views/decidim/surveys/admin/{surveys → settings/surveys}/_form.html.erb +2 -3
 - data/app/views/decidim/surveys/admin/settings/surveys/edit.html.erb +23 -0
 - data/app/views/decidim/surveys/admin/surveys/_tabs_menu.html.erb +11 -0
 - data/app/views/decidim/surveys/admin/surveys/edit.html.erb +18 -18
 - data/app/views/decidim/surveys/admin/surveys/index.html.erb +101 -23
 - data/app/views/decidim/surveys/admin/surveys/new.html.erb +23 -0
 - data/app/views/decidim/surveys/survey_confirmation_mailer/confirmation.html.erb +1 -1
 - data/app/views/decidim/surveys/surveys/{_published_questions_answers.html.erb → _published_questions_responses.html.erb} +2 -2
 - data/app/views/decidim/surveys/surveys/not_allowed.html.erb +2 -2
 - data/app/views/layouts/decidim/admin/surveys.html.erb +18 -0
 - data/config/assets.rb +1 -1
 - data/config/locales/ar.yml +0 -20
 - data/config/locales/bg.yml +0 -28
 - data/config/locales/ca-IT.yml +50 -29
 - data/config/locales/ca.yml +50 -29
 - data/config/locales/cs.yml +37 -39
 - data/config/locales/de.yml +42 -26
 - data/config/locales/el.yml +0 -23
 - data/config/locales/en.yml +54 -33
 - data/config/locales/es-MX.yml +49 -28
 - data/config/locales/es-PY.yml +49 -28
 - data/config/locales/es.yml +49 -28
 - data/config/locales/eu.yml +48 -27
 - data/config/locales/fi-plain.yml +46 -25
 - data/config/locales/fi.yml +46 -25
 - data/config/locales/fr-CA.yml +40 -32
 - data/config/locales/fr.yml +40 -32
 - data/config/locales/ga-IE.yml +0 -13
 - data/config/locales/gl.yml +0 -22
 - data/config/locales/hu.yml +0 -16
 - data/config/locales/id-ID.yml +0 -15
 - data/config/locales/is-IS.yml +0 -2
 - data/config/locales/it.yml +0 -22
 - data/config/locales/ja.yml +48 -27
 - data/config/locales/lb.yml +0 -22
 - data/config/locales/lt.yml +0 -25
 - data/config/locales/lv.yml +0 -17
 - data/config/locales/nl.yml +0 -22
 - data/config/locales/no.yml +0 -22
 - data/config/locales/pl.yml +0 -30
 - data/config/locales/pt-BR.yml +0 -22
 - data/config/locales/pt.yml +0 -22
 - data/config/locales/ro-RO.yml +18 -23
 - data/config/locales/ru.yml +0 -13
 - data/config/locales/sk.yml +0 -18
 - data/config/locales/sl.yml +0 -8
 - data/config/locales/sv.yml +13 -23
 - data/config/locales/tr-TR.yml +0 -22
 - data/config/locales/uk.yml +0 -13
 - data/config/locales/zh-CN.yml +0 -15
 - data/config/locales/zh-TW.yml +0 -22
 - data/db/migrate/20250317110501_rename_answer_to_response_in_decidim_surveys.rb +8 -0
 - data/lib/decidim/api/survey_type.rb +12 -0
 - data/lib/decidim/surveys/admin_engine.rb +46 -7
 - data/lib/decidim/surveys/component.rb +24 -19
 - data/lib/decidim/surveys/engine.rb +8 -25
 - data/lib/decidim/surveys/seeds.rb +42 -42
 - data/lib/decidim/surveys/test/factories.rb +3 -3
 - data/lib/decidim/surveys/version.rb +1 -1
 - data/lib/tasks/surveys/upgrade/decidim_surveys_upgrade_tasks.rake +16 -82
 - metadata +35 -28
 - data/app/queries/decidim/surveys/metrics/answers_metric_manage.rb +0 -65
 - data/app/queries/decidim/surveys/metrics/survey_participants_metric_measure.rb +0 -30
 - data/app/views/decidim/surveys/admin/answers/index.html.erb +0 -49
 - data/app/views/decidim/surveys/admin/answers/show.html.erb +0 -43
 - data/app/views/decidim/surveys/admin/publish_answers/_toggle_button.html.erb +0 -22
 - data/app/views/decidim/surveys/admin/surveys/edit_questions.html.erb +0 -47
 
    
        data/config/locales/es-MX.yml
    CHANGED
    
    | 
         @@ -9,18 +9,27 @@ es-MX: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Encuesta
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Encuestas
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/ 
     | 
| 
      
 12 
     | 
    
         
            +
                  decidim/surveys/survey_response:
         
     | 
| 
       13 
13 
     | 
    
         
             
                    one: Respuesta
         
     | 
| 
       14 
14 
     | 
    
         
             
                    other: Respuestas
         
     | 
| 
       15 
15 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
16 
     | 
    
         
             
                admin:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  actions:
         
     | 
| 
      
 18 
     | 
    
         
            +
                    confirm_unpublish_survey: '¿Seguro que quieres despublicar esta encuesta?'
         
     | 
| 
      
 19 
     | 
    
         
            +
                    see_survey: Ver encuesta
         
     | 
| 
       17 
20 
     | 
    
         
             
                  admin_log:
         
     | 
| 
       18 
21 
     | 
    
         
             
                    changeset:
         
     | 
| 
       19 
22 
     | 
    
         
             
                      surveys: Encuestas
         
     | 
| 
      
 23 
     | 
    
         
            +
                  menu:
         
     | 
| 
      
 24 
     | 
    
         
            +
                    surveys_menu:
         
     | 
| 
      
 25 
     | 
    
         
            +
                      main: Principal
         
     | 
| 
      
 26 
     | 
    
         
            +
                      questions: Preguntas
         
     | 
| 
      
 27 
     | 
    
         
            +
                      responses: Respuestas
         
     | 
| 
      
 28 
     | 
    
         
            +
                      settings: Configuración
         
     | 
| 
       20 
29 
     | 
    
         
             
                components:
         
     | 
| 
       21 
30 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
31 
     | 
    
         
             
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                       
     | 
| 
      
 32 
     | 
    
         
            +
                      respond: Responder
         
     | 
| 
       24 
33 
     | 
    
         
             
                    name: Encuestas
         
     | 
| 
       25 
34 
     | 
    
         
             
                    settings:
         
     | 
| 
       26 
35 
     | 
    
         
             
                      announcement: Aviso
         
     | 
| 
         @@ -40,44 +49,50 @@ es-MX: 
     | 
|
| 
       40 
49 
     | 
    
         
             
                      email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
         
     | 
| 
       41 
50 
     | 
    
         
             
                      email_subject: Nueva encuesta en %{participatory_space_title}
         
     | 
| 
       42 
51 
     | 
    
         
             
                      notification_title: Ya está abierta la encuesta <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
         
     | 
| 
       43 
     | 
    
         
            -
                metrics:
         
     | 
| 
       44 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       45 
     | 
    
         
            -
                    description: Número de encuestas respondidas por los usuarios
         
     | 
| 
       46 
     | 
    
         
            -
                    object: respuestas a encuestas
         
     | 
| 
       47 
     | 
    
         
            -
                    title: Respuestas a encuestas
         
     | 
| 
       48 
52 
     | 
    
         
             
                statistics:
         
     | 
| 
       49 
     | 
    
         
            -
                   
     | 
| 
      
 53 
     | 
    
         
            +
                  responses: 'Respuestas:'
         
     | 
| 
      
 54 
     | 
    
         
            +
                  responses_count: Respuestas
         
     | 
| 
      
 55 
     | 
    
         
            +
                  surveys_count_tooltip: El número de encuestas realizadas y de respuestas recogidas.
         
     | 
| 
       50 
56 
     | 
    
         
             
                surveys:
         
     | 
| 
       51 
57 
     | 
    
         
             
                  actions:
         
     | 
| 
       52 
     | 
    
         
            -
                    answers_alert: La opción de borrar las respuestas al publicar la encuesta está activada. Si sigues, se borrarán las %{answers_count} existentes actualmente.
         
     | 
| 
       53 
58 
     | 
    
         
             
                    confirm_destroy: '¿Seguro que lo quieres eliminar?'
         
     | 
| 
       54 
59 
     | 
    
         
             
                    destroy: Eliminar
         
     | 
| 
       55 
60 
     | 
    
         
             
                    edit: Editar
         
     | 
| 
       56 
     | 
    
         
            -
                    manage_questions:  
     | 
| 
      
 61 
     | 
    
         
            +
                    manage_questions: Preguntas
         
     | 
| 
       57 
62 
     | 
    
         
             
                    new_survey: Nueva encuesta
         
     | 
| 
       58 
63 
     | 
    
         
             
                    preview: Previsualizar
         
     | 
| 
      
 64 
     | 
    
         
            +
                    responses_alert: La opción de borrar las respuestas al publicar la encuesta está activada. Si sigues, se borrarán las %{responses_count} existentes actualmente.
         
     | 
| 
       59 
65 
     | 
    
         
             
                    title: Acciones
         
     | 
| 
       60 
66 
     | 
    
         
             
                  admin:
         
     | 
| 
       61 
     | 
    
         
            -
                    answers:
         
     | 
| 
       62 
     | 
    
         
            -
                      index:
         
     | 
| 
       63 
     | 
    
         
            -
                        title: "%{total} respuestas en total"
         
     | 
| 
       64 
     | 
    
         
            -
                      show:
         
     | 
| 
       65 
     | 
    
         
            -
                        title: 'Respuesta #%{number}'
         
     | 
| 
       66 
67 
     | 
    
         
             
                    exports:
         
     | 
| 
       67 
     | 
    
         
            -
                       
     | 
| 
       68 
     | 
    
         
            -
                     
     | 
| 
      
 68 
     | 
    
         
            +
                      survey_user_responses: Respuestas de las participantes de la encuesta
         
     | 
| 
      
 69 
     | 
    
         
            +
                    publish_responses:
         
     | 
| 
       69 
70 
     | 
    
         
             
                      index:
         
     | 
| 
       70 
     | 
    
         
            -
                        answers:
         
     | 
| 
       71 
     | 
    
         
            -
                          one: "%{count} respuesta"
         
     | 
| 
       72 
     | 
    
         
            -
                          other: "%{count} respuestas"
         
     | 
| 
       73 
71 
     | 
    
         
             
                        description: |-
         
     | 
| 
       74 
     | 
    
         
            -
                          Publicando las respuestas a las  
     | 
| 
       75 
     | 
    
         
            -
                          Puedes seleccionar las  
     | 
| 
      
 72 
     | 
    
         
            +
                          Publicando las respuestas a las respuestas de la encuesta, estas serán visibles para las visitantes.
         
     | 
| 
      
 73 
     | 
    
         
            +
                          Puedes seleccionar las repuestas que quieres publicar marcancndo el "checkbox" de cada una de ellas.
         
     | 
| 
       76 
74 
     | 
    
         
             
                          Solo puedes publicar las respuestas de las preguntas que son del tipo de respuesta: "Opción única", "Opción múltiple", "Matriz (opción única)", "Matriz (opción múltiple), y "Ordenación".
         
     | 
| 
      
 75 
     | 
    
         
            +
                        responses:
         
     | 
| 
      
 76 
     | 
    
         
            +
                          one: "%{count} respuesta"
         
     | 
| 
      
 77 
     | 
    
         
            +
                          other: "%{count} respostes"
         
     | 
| 
       77 
78 
     | 
    
         
             
                        status:
         
     | 
| 
       78 
79 
     | 
    
         
             
                          not_published: No publicadas
         
     | 
| 
       79 
80 
     | 
    
         
             
                          published: Publicadas
         
     | 
| 
       80 
     | 
    
         
            -
                        title: Publicar respuestas
         
     | 
| 
      
 81 
     | 
    
         
            +
                        title: Publicar las respuestas
         
     | 
| 
      
 82 
     | 
    
         
            +
                    questions:
         
     | 
| 
      
 83 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 84 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 85 
     | 
    
         
            +
                          title: Preguntas
         
     | 
| 
      
 86 
     | 
    
         
            +
                    responses:
         
     | 
| 
      
 87 
     | 
    
         
            +
                      index:
         
     | 
| 
      
 88 
     | 
    
         
            +
                        no_responses: Aún no hay ninguna respuesta
         
     | 
| 
      
 89 
     | 
    
         
            +
                        title: "%{total} respuestas en total"
         
     | 
| 
      
 90 
     | 
    
         
            +
                      show:
         
     | 
| 
      
 91 
     | 
    
         
            +
                        title: 'Respuesta #%{number}'
         
     | 
| 
      
 92 
     | 
    
         
            +
                    settings:
         
     | 
| 
      
 93 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 94 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 95 
     | 
    
         
            +
                          title: Configuración
         
     | 
| 
       81 
96 
     | 
    
         
             
                    surveys:
         
     | 
| 
       82 
97 
     | 
    
         
             
                      create:
         
     | 
| 
       83 
98 
     | 
    
         
             
                        invalid: Se ha producido un error creando la encuesta.
         
     | 
| 
         @@ -88,6 +103,8 @@ es-MX: 
     | 
|
| 
       88 
103 
     | 
    
         
             
                        title: Editar la encuesta
         
     | 
| 
       89 
104 
     | 
    
         
             
                      index:
         
     | 
| 
       90 
105 
     | 
    
         
             
                        title: Encuestas
         
     | 
| 
      
 106 
     | 
    
         
            +
                      new:
         
     | 
| 
      
 107 
     | 
    
         
            +
                        title: Nueva encuesta
         
     | 
| 
       91 
108 
     | 
    
         
             
                      publish:
         
     | 
| 
       92 
109 
     | 
    
         
             
                        invalid: Se ha producido un error al publicar esta encuesta.
         
     | 
| 
       93 
110 
     | 
    
         
             
                        success: Encuesta publicada correctamente.
         
     | 
| 
         @@ -113,10 +130,14 @@ es-MX: 
     | 
|
| 
       113 
130 
     | 
    
         
             
                  models:
         
     | 
| 
       114 
131 
     | 
    
         
             
                    survey:
         
     | 
| 
       115 
132 
     | 
    
         
             
                      fields:
         
     | 
| 
       116 
     | 
    
         
            -
                         
     | 
| 
      
 133 
     | 
    
         
            +
                        published: Publicada
         
     | 
| 
       117 
134 
     | 
    
         
             
                        questions: Preguntas
         
     | 
| 
      
 135 
     | 
    
         
            +
                        responses: Respuestas
         
     | 
| 
       118 
136 
     | 
    
         
             
                        status: Estado
         
     | 
| 
       119 
137 
     | 
    
         
             
                        title: Título
         
     | 
| 
      
 138 
     | 
    
         
            +
                      published:
         
     | 
| 
      
 139 
     | 
    
         
            +
                        published: Publicada
         
     | 
| 
      
 140 
     | 
    
         
            +
                        unpublished: Despublicada
         
     | 
| 
       120 
141 
     | 
    
         
             
                      status:
         
     | 
| 
       121 
142 
     | 
    
         
             
                        closed: Cerrada
         
     | 
| 
       122 
143 
     | 
    
         
             
                        open: Abierta
         
     | 
| 
         @@ -126,10 +147,6 @@ es-MX: 
     | 
|
| 
       126 
147 
     | 
    
         
             
                      subject: Confirmación de respuesta al cuestionario %{questionnaire_title}
         
     | 
| 
       127 
148 
     | 
    
         
             
                    export_name: Respuestas a la encuesta
         
     | 
| 
       128 
149 
     | 
    
         
             
                  surveys:
         
     | 
| 
       129 
     | 
    
         
            -
                    answer:
         
     | 
| 
       130 
     | 
    
         
            -
                      invalid: Se han producido errores al responder a la encuesta.
         
     | 
| 
       131 
     | 
    
         
            -
                      spam_detected: Hubo un problema respondiendo al formulario. Tal vez has sido demasiado rápido, ¿puedes intentarlo de nuevo?
         
     | 
| 
       132 
     | 
    
         
            -
                      success: La encuesta ha sido respondida con éxito.
         
     | 
| 
       133 
150 
     | 
    
         
             
                    count:
         
     | 
| 
       134 
151 
     | 
    
         
             
                      surveys_count:
         
     | 
| 
       135 
152 
     | 
    
         
             
                        one: "%{count} encuesta"
         
     | 
| 
         @@ -140,6 +157,10 @@ es-MX: 
     | 
|
| 
       140 
157 
     | 
    
         
             
                        closed: Cerrada
         
     | 
| 
       141 
158 
     | 
    
         
             
                        open: Abiertas
         
     | 
| 
       142 
159 
     | 
    
         
             
                    no_surveys_warning: No hay encuestas que coincidan con tu criterio de búsqueda o no hay ninguna encuesta.
         
     | 
| 
      
 160 
     | 
    
         
            +
                    response:
         
     | 
| 
      
 161 
     | 
    
         
            +
                      invalid: Se ha producido un error al responder la encuesta.
         
     | 
| 
      
 162 
     | 
    
         
            +
                      spam_detected: Hubo un problema respondiendo al formulario. Tal vez has sido demasiado rápido, ¿puedes intentarlo de nuevo?
         
     | 
| 
      
 163 
     | 
    
         
            +
                      success: La encuesta se ha respondido correctamente.
         
     | 
| 
       143 
164 
     | 
    
         
             
                    show:
         
     | 
| 
       144 
165 
     | 
    
         
             
                      closed: Cerrada
         
     | 
| 
       145 
166 
     | 
    
         
             
                      open: Abierta
         
     | 
    
        data/config/locales/es-PY.yml
    CHANGED
    
    | 
         @@ -9,18 +9,27 @@ es-PY: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Encuesta
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Encuestas
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/ 
     | 
| 
      
 12 
     | 
    
         
            +
                  decidim/surveys/survey_response:
         
     | 
| 
       13 
13 
     | 
    
         
             
                    one: Respuesta
         
     | 
| 
       14 
14 
     | 
    
         
             
                    other: Respuestas
         
     | 
| 
       15 
15 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
16 
     | 
    
         
             
                admin:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  actions:
         
     | 
| 
      
 18 
     | 
    
         
            +
                    confirm_unpublish_survey: '¿Seguro que quieres despublicar esta encuesta?'
         
     | 
| 
      
 19 
     | 
    
         
            +
                    see_survey: Ver encuesta
         
     | 
| 
       17 
20 
     | 
    
         
             
                  admin_log:
         
     | 
| 
       18 
21 
     | 
    
         
             
                    changeset:
         
     | 
| 
       19 
22 
     | 
    
         
             
                      surveys: Encuestas
         
     | 
| 
      
 23 
     | 
    
         
            +
                  menu:
         
     | 
| 
      
 24 
     | 
    
         
            +
                    surveys_menu:
         
     | 
| 
      
 25 
     | 
    
         
            +
                      main: Principal
         
     | 
| 
      
 26 
     | 
    
         
            +
                      questions: Preguntas
         
     | 
| 
      
 27 
     | 
    
         
            +
                      responses: Respuestas
         
     | 
| 
      
 28 
     | 
    
         
            +
                      settings: Configuración
         
     | 
| 
       20 
29 
     | 
    
         
             
                components:
         
     | 
| 
       21 
30 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
31 
     | 
    
         
             
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                       
     | 
| 
      
 32 
     | 
    
         
            +
                      respond: Responder
         
     | 
| 
       24 
33 
     | 
    
         
             
                    name: Encuestas
         
     | 
| 
       25 
34 
     | 
    
         
             
                    settings:
         
     | 
| 
       26 
35 
     | 
    
         
             
                      announcement: Aviso
         
     | 
| 
         @@ -40,44 +49,50 @@ es-PY: 
     | 
|
| 
       40 
49 
     | 
    
         
             
                      email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
         
     | 
| 
       41 
50 
     | 
    
         
             
                      email_subject: Nueva encuesta en %{participatory_space_title}
         
     | 
| 
       42 
51 
     | 
    
         
             
                      notification_title: Ya está abierta la encuesta <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
         
     | 
| 
       43 
     | 
    
         
            -
                metrics:
         
     | 
| 
       44 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       45 
     | 
    
         
            -
                    description: Número de encuestas respondidas por los usuarios.
         
     | 
| 
       46 
     | 
    
         
            -
                    object: respuestas a encuestas
         
     | 
| 
       47 
     | 
    
         
            -
                    title: Respuestas a encuestas
         
     | 
| 
       48 
52 
     | 
    
         
             
                statistics:
         
     | 
| 
       49 
     | 
    
         
            -
                   
     | 
| 
      
 53 
     | 
    
         
            +
                  responses: 'Respuestas:'
         
     | 
| 
      
 54 
     | 
    
         
            +
                  responses_count: Respuestas
         
     | 
| 
      
 55 
     | 
    
         
            +
                  surveys_count_tooltip: El número de encuestas realizadas y de respuestas recogidas.
         
     | 
| 
       50 
56 
     | 
    
         
             
                surveys:
         
     | 
| 
       51 
57 
     | 
    
         
             
                  actions:
         
     | 
| 
       52 
     | 
    
         
            -
                    answers_alert: La opción de borrar las respuestas al publicar la encuesta está activada. Si sigues, se borrarán las %{answers_count} existentes actualmente.
         
     | 
| 
       53 
58 
     | 
    
         
             
                    confirm_destroy: '¿Seguro que lo quieres eliminar?'
         
     | 
| 
       54 
59 
     | 
    
         
             
                    destroy: Eliminar
         
     | 
| 
       55 
60 
     | 
    
         
             
                    edit: Editar
         
     | 
| 
       56 
     | 
    
         
            -
                    manage_questions:  
     | 
| 
      
 61 
     | 
    
         
            +
                    manage_questions: Preguntas
         
     | 
| 
       57 
62 
     | 
    
         
             
                    new_survey: Nueva encuesta
         
     | 
| 
       58 
63 
     | 
    
         
             
                    preview: Previsualizar
         
     | 
| 
      
 64 
     | 
    
         
            +
                    responses_alert: La opción de borrar las respuestas al publicar la encuesta está activada. Si sigues, se borrarán las %{responses_count} existentes actualmente.
         
     | 
| 
       59 
65 
     | 
    
         
             
                    title: Acciones
         
     | 
| 
       60 
66 
     | 
    
         
             
                  admin:
         
     | 
| 
       61 
     | 
    
         
            -
                    answers:
         
     | 
| 
       62 
     | 
    
         
            -
                      index:
         
     | 
| 
       63 
     | 
    
         
            -
                        title: "%{total} respuestas en total"
         
     | 
| 
       64 
     | 
    
         
            -
                      show:
         
     | 
| 
       65 
     | 
    
         
            -
                        title: 'Respuesta #%{number}'
         
     | 
| 
       66 
67 
     | 
    
         
             
                    exports:
         
     | 
| 
       67 
     | 
    
         
            -
                       
     | 
| 
       68 
     | 
    
         
            -
                     
     | 
| 
      
 68 
     | 
    
         
            +
                      survey_user_responses: Respuestas de las participantes de la encuesta
         
     | 
| 
      
 69 
     | 
    
         
            +
                    publish_responses:
         
     | 
| 
       69 
70 
     | 
    
         
             
                      index:
         
     | 
| 
       70 
     | 
    
         
            -
                        answers:
         
     | 
| 
       71 
     | 
    
         
            -
                          one: "%{count} respuesta"
         
     | 
| 
       72 
     | 
    
         
            -
                          other: "%{count} respuestas"
         
     | 
| 
       73 
71 
     | 
    
         
             
                        description: |-
         
     | 
| 
       74 
     | 
    
         
            -
                          Publicando las respuestas a las  
     | 
| 
       75 
     | 
    
         
            -
                          Puedes seleccionar las  
     | 
| 
      
 72 
     | 
    
         
            +
                          Publicando las respuestas a las respuestas de la encuesta, estas serán visibles para las visitantes.
         
     | 
| 
      
 73 
     | 
    
         
            +
                          Puedes seleccionar las repuestas que quieres publicar marcancndo el "checkbox" de cada una de ellas.
         
     | 
| 
       76 
74 
     | 
    
         
             
                          Solo puedes publicar las respuestas de las preguntas que son del tipo de respuesta: "Opción única", "Opción múltiple", "Matriz (opción única)", "Matriz (opción múltiple), y "Ordenación".
         
     | 
| 
      
 75 
     | 
    
         
            +
                        responses:
         
     | 
| 
      
 76 
     | 
    
         
            +
                          one: "%{count} respuesta"
         
     | 
| 
      
 77 
     | 
    
         
            +
                          other: "%{count} respostes"
         
     | 
| 
       77 
78 
     | 
    
         
             
                        status:
         
     | 
| 
       78 
79 
     | 
    
         
             
                          not_published: No publicadas
         
     | 
| 
       79 
80 
     | 
    
         
             
                          published: Publicadas
         
     | 
| 
       80 
     | 
    
         
            -
                        title: Publicar respuestas
         
     | 
| 
      
 81 
     | 
    
         
            +
                        title: Publicar las respuestas
         
     | 
| 
      
 82 
     | 
    
         
            +
                    questions:
         
     | 
| 
      
 83 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 84 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 85 
     | 
    
         
            +
                          title: Preguntas
         
     | 
| 
      
 86 
     | 
    
         
            +
                    responses:
         
     | 
| 
      
 87 
     | 
    
         
            +
                      index:
         
     | 
| 
      
 88 
     | 
    
         
            +
                        no_responses: Aún no hay ninguna respuesta
         
     | 
| 
      
 89 
     | 
    
         
            +
                        title: "%{total} respuestas en total"
         
     | 
| 
      
 90 
     | 
    
         
            +
                      show:
         
     | 
| 
      
 91 
     | 
    
         
            +
                        title: 'Respuesta #%{number}'
         
     | 
| 
      
 92 
     | 
    
         
            +
                    settings:
         
     | 
| 
      
 93 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 94 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 95 
     | 
    
         
            +
                          title: Configuración
         
     | 
| 
       81 
96 
     | 
    
         
             
                    surveys:
         
     | 
| 
       82 
97 
     | 
    
         
             
                      create:
         
     | 
| 
       83 
98 
     | 
    
         
             
                        invalid: Se ha producido un error creando la encuesta.
         
     | 
| 
         @@ -88,6 +103,8 @@ es-PY: 
     | 
|
| 
       88 
103 
     | 
    
         
             
                        title: Editar la encuesta
         
     | 
| 
       89 
104 
     | 
    
         
             
                      index:
         
     | 
| 
       90 
105 
     | 
    
         
             
                        title: Encuestas
         
     | 
| 
      
 106 
     | 
    
         
            +
                      new:
         
     | 
| 
      
 107 
     | 
    
         
            +
                        title: Nueva encuesta
         
     | 
| 
       91 
108 
     | 
    
         
             
                      publish:
         
     | 
| 
       92 
109 
     | 
    
         
             
                        invalid: Se ha producido un error al publicar esta encuesta.
         
     | 
| 
       93 
110 
     | 
    
         
             
                        success: Encuesta publicada correctamente.
         
     | 
| 
         @@ -113,10 +130,14 @@ es-PY: 
     | 
|
| 
       113 
130 
     | 
    
         
             
                  models:
         
     | 
| 
       114 
131 
     | 
    
         
             
                    survey:
         
     | 
| 
       115 
132 
     | 
    
         
             
                      fields:
         
     | 
| 
       116 
     | 
    
         
            -
                         
     | 
| 
      
 133 
     | 
    
         
            +
                        published: Publicada
         
     | 
| 
       117 
134 
     | 
    
         
             
                        questions: Preguntas
         
     | 
| 
      
 135 
     | 
    
         
            +
                        responses: Respuestas
         
     | 
| 
       118 
136 
     | 
    
         
             
                        status: Estado
         
     | 
| 
       119 
137 
     | 
    
         
             
                        title: Título
         
     | 
| 
      
 138 
     | 
    
         
            +
                      published:
         
     | 
| 
      
 139 
     | 
    
         
            +
                        published: Publicada
         
     | 
| 
      
 140 
     | 
    
         
            +
                        unpublished: Despublicada
         
     | 
| 
       120 
141 
     | 
    
         
             
                      status:
         
     | 
| 
       121 
142 
     | 
    
         
             
                        closed: Cerrada
         
     | 
| 
       122 
143 
     | 
    
         
             
                        open: Abierta
         
     | 
| 
         @@ -126,10 +147,6 @@ es-PY: 
     | 
|
| 
       126 
147 
     | 
    
         
             
                      subject: Confirmación de respuesta al cuestionario %{questionnaire_title}
         
     | 
| 
       127 
148 
     | 
    
         
             
                    export_name: Respuestas a la encuesta
         
     | 
| 
       128 
149 
     | 
    
         
             
                  surveys:
         
     | 
| 
       129 
     | 
    
         
            -
                    answer:
         
     | 
| 
       130 
     | 
    
         
            -
                      invalid: Se han producido errores al responder a la encuesta.
         
     | 
| 
       131 
     | 
    
         
            -
                      spam_detected: Hubo un problema respondiendo al formulario. Tal vez has sido demasiado rápido, ¿puedes intentarlo de nuevo?
         
     | 
| 
       132 
     | 
    
         
            -
                      success: La encuesta ha sido respondida con éxito.
         
     | 
| 
       133 
150 
     | 
    
         
             
                    count:
         
     | 
| 
       134 
151 
     | 
    
         
             
                      surveys_count:
         
     | 
| 
       135 
152 
     | 
    
         
             
                        one: "%{count} encuesta"
         
     | 
| 
         @@ -140,6 +157,10 @@ es-PY: 
     | 
|
| 
       140 
157 
     | 
    
         
             
                        closed: Cerrada
         
     | 
| 
       141 
158 
     | 
    
         
             
                        open: Abiertas
         
     | 
| 
       142 
159 
     | 
    
         
             
                    no_surveys_warning: No hay encuestas que coincidan con tu criterio de búsqueda o no hay ninguna encuesta.
         
     | 
| 
      
 160 
     | 
    
         
            +
                    response:
         
     | 
| 
      
 161 
     | 
    
         
            +
                      invalid: Se ha producido un error al responder la encuesta.
         
     | 
| 
      
 162 
     | 
    
         
            +
                      spam_detected: Hubo un problema respondiendo al formulario. Tal vez has sido demasiado rápido, ¿puedes intentarlo de nuevo?
         
     | 
| 
      
 163 
     | 
    
         
            +
                      success: La encuesta se ha respondido correctamente.
         
     | 
| 
       143 
164 
     | 
    
         
             
                    show:
         
     | 
| 
       144 
165 
     | 
    
         
             
                      closed: Cerrada
         
     | 
| 
       145 
166 
     | 
    
         
             
                      open: Abierta
         
     | 
    
        data/config/locales/es.yml
    CHANGED
    
    | 
         @@ -9,18 +9,27 @@ es: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Encuesta
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Encuestas
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/ 
     | 
| 
      
 12 
     | 
    
         
            +
                  decidim/surveys/survey_response:
         
     | 
| 
       13 
13 
     | 
    
         
             
                    one: Respuesta
         
     | 
| 
       14 
14 
     | 
    
         
             
                    other: Respuestas
         
     | 
| 
       15 
15 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
16 
     | 
    
         
             
                admin:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  actions:
         
     | 
| 
      
 18 
     | 
    
         
            +
                    confirm_unpublish_survey: '¿Seguro que quieres despublicar esta encuesta?'
         
     | 
| 
      
 19 
     | 
    
         
            +
                    see_survey: Ver encuesta
         
     | 
| 
       17 
20 
     | 
    
         
             
                  admin_log:
         
     | 
| 
       18 
21 
     | 
    
         
             
                    changeset:
         
     | 
| 
       19 
22 
     | 
    
         
             
                      surveys: Encuestas
         
     | 
| 
      
 23 
     | 
    
         
            +
                  menu:
         
     | 
| 
      
 24 
     | 
    
         
            +
                    surveys_menu:
         
     | 
| 
      
 25 
     | 
    
         
            +
                      main: Principal
         
     | 
| 
      
 26 
     | 
    
         
            +
                      questions: Preguntas
         
     | 
| 
      
 27 
     | 
    
         
            +
                      responses: Respuestas
         
     | 
| 
      
 28 
     | 
    
         
            +
                      settings: Configuración
         
     | 
| 
       20 
29 
     | 
    
         
             
                components:
         
     | 
| 
       21 
30 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
31 
     | 
    
         
             
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                       
     | 
| 
      
 32 
     | 
    
         
            +
                      respond: Responder
         
     | 
| 
       24 
33 
     | 
    
         
             
                    name: Encuestas
         
     | 
| 
       25 
34 
     | 
    
         
             
                    settings:
         
     | 
| 
       26 
35 
     | 
    
         
             
                      announcement: Aviso
         
     | 
| 
         @@ -40,44 +49,50 @@ es: 
     | 
|
| 
       40 
49 
     | 
    
         
             
                      email_outro: Has recibido esta notificación porque estás siguiendo el espacio "%{participatory_space_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
         
     | 
| 
       41 
50 
     | 
    
         
             
                      email_subject: Nueva encuesta en %{participatory_space_title}
         
     | 
| 
       42 
51 
     | 
    
         
             
                      notification_title: Ya está abierta la encuesta <a href="%{resource_path}">%{resource_title}</a> en <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
         
     | 
| 
       43 
     | 
    
         
            -
                metrics:
         
     | 
| 
       44 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       45 
     | 
    
         
            -
                    description: Número de encuestas respondidas por las participantes
         
     | 
| 
       46 
     | 
    
         
            -
                    object: respuestas a encuestas
         
     | 
| 
       47 
     | 
    
         
            -
                    title: Respuestas a encuestas
         
     | 
| 
       48 
52 
     | 
    
         
             
                statistics:
         
     | 
| 
       49 
     | 
    
         
            -
                   
     | 
| 
      
 53 
     | 
    
         
            +
                  responses: 'Respuestas:'
         
     | 
| 
      
 54 
     | 
    
         
            +
                  responses_count: Respuestas
         
     | 
| 
      
 55 
     | 
    
         
            +
                  surveys_count_tooltip: El número de encuestas realizadas y de respuestas recogidas.
         
     | 
| 
       50 
56 
     | 
    
         
             
                surveys:
         
     | 
| 
       51 
57 
     | 
    
         
             
                  actions:
         
     | 
| 
       52 
     | 
    
         
            -
                    answers_alert: La opción de borrar las respuestas al publicar la encuesta está activada. Si sigues, se borrarán las %{answers_count} existentes actualmente.
         
     | 
| 
       53 
58 
     | 
    
         
             
                    confirm_destroy: '¿Seguro que lo quieres eliminar?'
         
     | 
| 
       54 
59 
     | 
    
         
             
                    destroy: Eliminar
         
     | 
| 
       55 
60 
     | 
    
         
             
                    edit: Editar
         
     | 
| 
       56 
     | 
    
         
            -
                    manage_questions:  
     | 
| 
      
 61 
     | 
    
         
            +
                    manage_questions: Preguntas
         
     | 
| 
       57 
62 
     | 
    
         
             
                    new_survey: Nueva encuesta
         
     | 
| 
       58 
63 
     | 
    
         
             
                    preview: Previsualizar
         
     | 
| 
      
 64 
     | 
    
         
            +
                    responses_alert: La opción de borrar las respuestas al publicar la encuesta está activada. Si sigues, se borrarán las %{responses_count} existentes actualmente.
         
     | 
| 
       59 
65 
     | 
    
         
             
                    title: Acciones
         
     | 
| 
       60 
66 
     | 
    
         
             
                  admin:
         
     | 
| 
       61 
     | 
    
         
            -
                    answers:
         
     | 
| 
       62 
     | 
    
         
            -
                      index:
         
     | 
| 
       63 
     | 
    
         
            -
                        title: "%{total} respuestas en total"
         
     | 
| 
       64 
     | 
    
         
            -
                      show:
         
     | 
| 
       65 
     | 
    
         
            -
                        title: 'Respuesta #%{number}'
         
     | 
| 
       66 
67 
     | 
    
         
             
                    exports:
         
     | 
| 
       67 
     | 
    
         
            -
                       
     | 
| 
       68 
     | 
    
         
            -
                     
     | 
| 
      
 68 
     | 
    
         
            +
                      survey_user_responses: Respuestas de las participantes de la encuesta
         
     | 
| 
      
 69 
     | 
    
         
            +
                    publish_responses:
         
     | 
| 
       69 
70 
     | 
    
         
             
                      index:
         
     | 
| 
       70 
     | 
    
         
            -
                        answers:
         
     | 
| 
       71 
     | 
    
         
            -
                          one: "%{count} respuesta"
         
     | 
| 
       72 
     | 
    
         
            -
                          other: "%{count} respuestas"
         
     | 
| 
       73 
71 
     | 
    
         
             
                        description: |-
         
     | 
| 
       74 
     | 
    
         
            -
                          Publicando las respuestas a las  
     | 
| 
       75 
     | 
    
         
            -
                          Puedes seleccionar las  
     | 
| 
      
 72 
     | 
    
         
            +
                          Publicando las respuestas a las respuestas de la encuesta, estas serán visibles para las visitantes.
         
     | 
| 
      
 73 
     | 
    
         
            +
                          Puedes seleccionar las repuestas que quieres publicar marcancndo el "checkbox" de cada una de ellas.
         
     | 
| 
       76 
74 
     | 
    
         
             
                          Solo puedes publicar las respuestas de las preguntas que son del tipo de respuesta: "Opción única", "Opción múltiple", "Matriz (opción única)", "Matriz (opción múltiple), y "Ordenación".
         
     | 
| 
      
 75 
     | 
    
         
            +
                        responses:
         
     | 
| 
      
 76 
     | 
    
         
            +
                          one: "%{count} respuesta"
         
     | 
| 
      
 77 
     | 
    
         
            +
                          other: "%{count} respostes"
         
     | 
| 
       77 
78 
     | 
    
         
             
                        status:
         
     | 
| 
       78 
79 
     | 
    
         
             
                          not_published: No publicadas
         
     | 
| 
       79 
80 
     | 
    
         
             
                          published: Publicadas
         
     | 
| 
       80 
     | 
    
         
            -
                        title: Publicar respuestas
         
     | 
| 
      
 81 
     | 
    
         
            +
                        title: Publicar las respuestas
         
     | 
| 
      
 82 
     | 
    
         
            +
                    questions:
         
     | 
| 
      
 83 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 84 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 85 
     | 
    
         
            +
                          title: Preguntas
         
     | 
| 
      
 86 
     | 
    
         
            +
                    responses:
         
     | 
| 
      
 87 
     | 
    
         
            +
                      index:
         
     | 
| 
      
 88 
     | 
    
         
            +
                        no_responses: Aún no hay ninguna respuesta
         
     | 
| 
      
 89 
     | 
    
         
            +
                        title: "%{total} respuestas en total"
         
     | 
| 
      
 90 
     | 
    
         
            +
                      show:
         
     | 
| 
      
 91 
     | 
    
         
            +
                        title: 'Respuesta #%{number}'
         
     | 
| 
      
 92 
     | 
    
         
            +
                    settings:
         
     | 
| 
      
 93 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 94 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 95 
     | 
    
         
            +
                          title: Configuración
         
     | 
| 
       81 
96 
     | 
    
         
             
                    surveys:
         
     | 
| 
       82 
97 
     | 
    
         
             
                      create:
         
     | 
| 
       83 
98 
     | 
    
         
             
                        invalid: Se ha producido un error creando la encuesta.
         
     | 
| 
         @@ -88,6 +103,8 @@ es: 
     | 
|
| 
       88 
103 
     | 
    
         
             
                        title: Editar la encuesta
         
     | 
| 
       89 
104 
     | 
    
         
             
                      index:
         
     | 
| 
       90 
105 
     | 
    
         
             
                        title: Encuestas
         
     | 
| 
      
 106 
     | 
    
         
            +
                      new:
         
     | 
| 
      
 107 
     | 
    
         
            +
                        title: Nueva encuesta
         
     | 
| 
       91 
108 
     | 
    
         
             
                      publish:
         
     | 
| 
       92 
109 
     | 
    
         
             
                        invalid: Se ha producido un error al publicar esta encuesta.
         
     | 
| 
       93 
110 
     | 
    
         
             
                        success: Encuesta publicada correctamente.
         
     | 
| 
         @@ -113,10 +130,14 @@ es: 
     | 
|
| 
       113 
130 
     | 
    
         
             
                  models:
         
     | 
| 
       114 
131 
     | 
    
         
             
                    survey:
         
     | 
| 
       115 
132 
     | 
    
         
             
                      fields:
         
     | 
| 
       116 
     | 
    
         
            -
                         
     | 
| 
      
 133 
     | 
    
         
            +
                        published: Publicada
         
     | 
| 
       117 
134 
     | 
    
         
             
                        questions: Preguntas
         
     | 
| 
      
 135 
     | 
    
         
            +
                        responses: Respuestas
         
     | 
| 
       118 
136 
     | 
    
         
             
                        status: Estado
         
     | 
| 
       119 
137 
     | 
    
         
             
                        title: Título
         
     | 
| 
      
 138 
     | 
    
         
            +
                      published:
         
     | 
| 
      
 139 
     | 
    
         
            +
                        published: Publicada
         
     | 
| 
      
 140 
     | 
    
         
            +
                        unpublished: Despublicada
         
     | 
| 
       120 
141 
     | 
    
         
             
                      status:
         
     | 
| 
       121 
142 
     | 
    
         
             
                        closed: Cerrada
         
     | 
| 
       122 
143 
     | 
    
         
             
                        open: Abierta
         
     | 
| 
         @@ -126,10 +147,6 @@ es: 
     | 
|
| 
       126 
147 
     | 
    
         
             
                      subject: Confirmación de respuesta al cuestionario %{questionnaire_title}
         
     | 
| 
       127 
148 
     | 
    
         
             
                    export_name: Respuestas a la encuesta
         
     | 
| 
       128 
149 
     | 
    
         
             
                  surveys:
         
     | 
| 
       129 
     | 
    
         
            -
                    answer:
         
     | 
| 
       130 
     | 
    
         
            -
                      invalid: Se ha producido un error al responder la encuesta.
         
     | 
| 
       131 
     | 
    
         
            -
                      spam_detected: Hubo un problema respondiendo al formulario. Tal vez has sido demasiado rápido, ¿puedes intentarlo de nuevo?
         
     | 
| 
       132 
     | 
    
         
            -
                      success: La encuesta se ha respondido correctamente.
         
     | 
| 
       133 
150 
     | 
    
         
             
                    count:
         
     | 
| 
       134 
151 
     | 
    
         
             
                      surveys_count:
         
     | 
| 
       135 
152 
     | 
    
         
             
                        one: "%{count} encuesta"
         
     | 
| 
         @@ -140,6 +157,10 @@ es: 
     | 
|
| 
       140 
157 
     | 
    
         
             
                        closed: Cerrada
         
     | 
| 
       141 
158 
     | 
    
         
             
                        open: Abiertas
         
     | 
| 
       142 
159 
     | 
    
         
             
                    no_surveys_warning: No hay encuestas que coincidan con tu criterio de búsqueda o no hay ninguna encuesta.
         
     | 
| 
      
 160 
     | 
    
         
            +
                    response:
         
     | 
| 
      
 161 
     | 
    
         
            +
                      invalid: Se ha producido un error al responder la encuesta.
         
     | 
| 
      
 162 
     | 
    
         
            +
                      spam_detected: Hubo un problema respondiendo al formulario. Tal vez has sido demasiado rápido, ¿puedes intentarlo de nuevo?
         
     | 
| 
      
 163 
     | 
    
         
            +
                      success: La encuesta se ha respondido correctamente.
         
     | 
| 
       143 
164 
     | 
    
         
             
                    show:
         
     | 
| 
       144 
165 
     | 
    
         
             
                      closed: Cerrada
         
     | 
| 
       145 
166 
     | 
    
         
             
                      open: Abierta
         
     | 
    
        data/config/locales/eu.yml
    CHANGED
    
    | 
         @@ -9,18 +9,27 @@ eu: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Inkesta
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Inkestak
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/ 
     | 
| 
      
 12 
     | 
    
         
            +
                  decidim/surveys/survey_response:
         
     | 
| 
       13 
13 
     | 
    
         
             
                    one: Erantzuna
         
     | 
| 
       14 
14 
     | 
    
         
             
                    other: Erantzunak
         
     | 
| 
       15 
15 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
16 
     | 
    
         
             
                admin:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  actions:
         
     | 
| 
      
 18 
     | 
    
         
            +
                    confirm_unpublish_survey: Ziur zaude inkesta hau despublikatu nahi duzula?
         
     | 
| 
      
 19 
     | 
    
         
            +
                    see_survey: Inkesta ikusi
         
     | 
| 
       17 
20 
     | 
    
         
             
                  admin_log:
         
     | 
| 
       18 
21 
     | 
    
         
             
                    changeset:
         
     | 
| 
       19 
22 
     | 
    
         
             
                      surveys: inkestak
         
     | 
| 
      
 23 
     | 
    
         
            +
                  menu:
         
     | 
| 
      
 24 
     | 
    
         
            +
                    surveys_menu:
         
     | 
| 
      
 25 
     | 
    
         
            +
                      main: Nagusia
         
     | 
| 
      
 26 
     | 
    
         
            +
                      questions: Galderak
         
     | 
| 
      
 27 
     | 
    
         
            +
                      responses: Erantzunak
         
     | 
| 
      
 28 
     | 
    
         
            +
                      settings: Ezarpenak
         
     | 
| 
       20 
29 
     | 
    
         
             
                components:
         
     | 
| 
       21 
30 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
31 
     | 
    
         
             
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                       
     | 
| 
      
 32 
     | 
    
         
            +
                      respond: Erantzun
         
     | 
| 
       24 
33 
     | 
    
         
             
                    name: Inkestak
         
     | 
| 
       25 
34 
     | 
    
         
             
                    settings:
         
     | 
| 
       26 
35 
     | 
    
         
             
                      announcement: Oharra
         
     | 
| 
         @@ -34,50 +43,56 @@ eu: 
     | 
|
| 
       34 
43 
     | 
    
         
             
                      email_intro: '%{resource_title} inkesta %{participatory_space_title} itxi egin da.'
         
     | 
| 
       35 
44 
     | 
    
         
             
                      email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan sartuz jakinarazpenak jasotzeari utzi ahal diozu.
         
     | 
| 
       36 
45 
     | 
    
         
             
                      email_subject: Inkesta bat itxi da %{participatory_space_title} espazioan
         
     | 
| 
       37 
     | 
    
         
            -
                      notification_title: <a href="%{resource_path}">%{resource_title}</a> inkesta <a href="%{participatory_space_url}">%{participatory_space_title}</a>  
     | 
| 
      
 46 
     | 
    
         
            +
                      notification_title: <a href="%{resource_path}">%{resource_title}</a> inkesta <a href="%{participatory_space_url}">%{participatory_space_title}</a> espazioan amaitu da.
         
     | 
| 
       38 
47 
     | 
    
         
             
                    survey_opened:
         
     | 
| 
       39 
48 
     | 
    
         
             
                      email_intro: '%{resource_title} inkesta ireki da %{participatory_space_title} espazioan. Orri honetan parte har dezakezu:'
         
     | 
| 
       40 
49 
     | 
    
         
             
                      email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Aurreko estekan sartuz jakinarazpenak jasotzeari utzi ahal diozu.
         
     | 
| 
       41 
50 
     | 
    
         
             
                      email_subject: Beste inkesta bat %{participatory_space_title} izeneko espazioan
         
     | 
| 
       42 
51 
     | 
    
         
             
                      notification_title: <a href="%{resource_path}">%{resource_title}</a> inkesta <a href="%{participatory_space_url}">%{participatory_space_title}</a> espazioan irekita dago.
         
     | 
| 
       43 
     | 
    
         
            -
                metrics:
         
     | 
| 
       44 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       45 
     | 
    
         
            -
                    description: Parte-hartzaileek erantzundako inkesta kopurua
         
     | 
| 
       46 
     | 
    
         
            -
                    object: inkestei erantzunak
         
     | 
| 
       47 
     | 
    
         
            -
                    title: Inkestei erantzunak
         
     | 
| 
       48 
52 
     | 
    
         
             
                statistics:
         
     | 
| 
       49 
     | 
    
         
            -
                   
     | 
| 
      
 53 
     | 
    
         
            +
                  responses: 'Erantzunak:'
         
     | 
| 
      
 54 
     | 
    
         
            +
                  responses_count: Erantzunak
         
     | 
| 
      
 55 
     | 
    
         
            +
                  surveys_count_tooltip: Jasotako inkesten eta erantzunen kopurua.
         
     | 
| 
       50 
56 
     | 
    
         
             
                surveys:
         
     | 
| 
       51 
57 
     | 
    
         
             
                  actions:
         
     | 
| 
       52 
     | 
    
         
            -
                    answers_alert: Erantzunak ezabatzea argitalpenean aktibatuta dago inkesta honetarako. Une honetan, erantzunen %{answers_count}  suntsitu egingo dira, jarraitzen baduzu.
         
     | 
| 
       53 
58 
     | 
    
         
             
                    confirm_destroy: Ziur zaude hau ezabatu nahi duzula?
         
     | 
| 
       54 
59 
     | 
    
         
             
                    destroy: Suntsitu
         
     | 
| 
       55 
60 
     | 
    
         
             
                    edit: Editatu
         
     | 
| 
       56 
     | 
    
         
            -
                    manage_questions:  
     | 
| 
      
 61 
     | 
    
         
            +
                    manage_questions: Galderak
         
     | 
| 
       57 
62 
     | 
    
         
             
                    new_survey: Beste inkesta bat
         
     | 
| 
       58 
63 
     | 
    
         
             
                    preview: Aurreikusi
         
     | 
| 
      
 64 
     | 
    
         
            +
                    responses_alert: Erantzunak ezabatzea argitalpenean aktibatuta dago inkesta honetarako. Une honetan, erantzunen %{responses_count} suntsitu egingo dira, jarraitzen baduzu.
         
     | 
| 
       59 
65 
     | 
    
         
             
                    title: Ekintzak
         
     | 
| 
       60 
66 
     | 
    
         
             
                  admin:
         
     | 
| 
       61 
     | 
    
         
            -
                    answers:
         
     | 
| 
       62 
     | 
    
         
            -
                      index:
         
     | 
| 
       63 
     | 
    
         
            -
                        title: "Guztira, %{total} erantzun"
         
     | 
| 
       64 
     | 
    
         
            -
                      show:
         
     | 
| 
       65 
     | 
    
         
            -
                        title: '#%{number} erantzun'
         
     | 
| 
       66 
67 
     | 
    
         
             
                    exports:
         
     | 
| 
       67 
     | 
    
         
            -
                       
     | 
| 
       68 
     | 
    
         
            -
                     
     | 
| 
      
 68 
     | 
    
         
            +
                      survey_user_responses: Inkestako parte-hartzaileen erantzunak
         
     | 
| 
      
 69 
     | 
    
         
            +
                    publish_responses:
         
     | 
| 
       69 
70 
     | 
    
         
             
                      index:
         
     | 
| 
       70 
     | 
    
         
            -
                        answers:
         
     | 
| 
       71 
     | 
    
         
            -
                          one: "Erantzun bat"
         
     | 
| 
       72 
     | 
    
         
            -
                          other: "%{count} erantzun"
         
     | 
| 
       73 
71 
     | 
    
         
             
                        description: |-
         
     | 
| 
       74 
72 
     | 
    
         
             
                          Galderen erantzunak argitaratzean, jendaurrean ikusgai jarriko dituzu.
         
     | 
| 
       75 
73 
     | 
    
         
             
                          Argitaratu nahi dituzun erantzunak hauta ditzakezu galdera bakoitzaren ondoan dagoen laukitxoan klik eginez.
         
     | 
| 
       76 
74 
     | 
    
         
             
                          Galdera mota hauek baino ezin dira argitaratu: "Aukera bakarra", "Aukera anitza", "Matrizea (aukera bakarra)", "Matrizea (aukera anitza)" eta "Sailkapena".
         
     | 
| 
      
 75 
     | 
    
         
            +
                        responses:
         
     | 
| 
      
 76 
     | 
    
         
            +
                          one: "Erantzun %{count}"
         
     | 
| 
      
 77 
     | 
    
         
            +
                          other: "%{count} erantzun"
         
     | 
| 
       77 
78 
     | 
    
         
             
                        status:
         
     | 
| 
       78 
79 
     | 
    
         
             
                          not_published: Argitaratu gabe
         
     | 
| 
       79 
80 
     | 
    
         
             
                          published: Argitaratua
         
     | 
| 
       80 
81 
     | 
    
         
             
                        title: Argitaratu erantzunak
         
     | 
| 
      
 82 
     | 
    
         
            +
                    questions:
         
     | 
| 
      
 83 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 84 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 85 
     | 
    
         
            +
                          title: Galderak
         
     | 
| 
      
 86 
     | 
    
         
            +
                    responses:
         
     | 
| 
      
 87 
     | 
    
         
            +
                      index:
         
     | 
| 
      
 88 
     | 
    
         
            +
                        no_responses: Oraindik ez dago erantzunik
         
     | 
| 
      
 89 
     | 
    
         
            +
                        title: "Guztira, %{total} erantzun"
         
     | 
| 
      
 90 
     | 
    
         
            +
                      show:
         
     | 
| 
      
 91 
     | 
    
         
            +
                        title: '#%{number} erantzun'
         
     | 
| 
      
 92 
     | 
    
         
            +
                    settings:
         
     | 
| 
      
 93 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 94 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 95 
     | 
    
         
            +
                          title: Ezarpenak
         
     | 
| 
       81 
96 
     | 
    
         
             
                    surveys:
         
     | 
| 
       82 
97 
     | 
    
         
             
                      create:
         
     | 
| 
       83 
98 
     | 
    
         
             
                        invalid: Arazo bat egon da inkesta sortzean.
         
     | 
| 
         @@ -88,6 +103,8 @@ eu: 
     | 
|
| 
       88 
103 
     | 
    
         
             
                        title: Editatu inkesta
         
     | 
| 
       89 
104 
     | 
    
         
             
                      index:
         
     | 
| 
       90 
105 
     | 
    
         
             
                        title: Inkestak
         
     | 
| 
      
 106 
     | 
    
         
            +
                      new:
         
     | 
| 
      
 107 
     | 
    
         
            +
                        title: Beste inkesta bat
         
     | 
| 
       91 
108 
     | 
    
         
             
                      publish:
         
     | 
| 
       92 
109 
     | 
    
         
             
                        invalid: Arazo bat egon da inkesta hau argitaratzean.
         
     | 
| 
       93 
110 
     | 
    
         
             
                        success: Inkesta zuzen argitaratua.
         
     | 
| 
         @@ -113,10 +130,14 @@ eu: 
     | 
|
| 
       113 
130 
     | 
    
         
             
                  models:
         
     | 
| 
       114 
131 
     | 
    
         
             
                    survey:
         
     | 
| 
       115 
132 
     | 
    
         
             
                      fields:
         
     | 
| 
       116 
     | 
    
         
            -
                         
     | 
| 
      
 133 
     | 
    
         
            +
                        published: Argitaratua
         
     | 
| 
       117 
134 
     | 
    
         
             
                        questions: Galderak
         
     | 
| 
      
 135 
     | 
    
         
            +
                        responses: Erantzunak
         
     | 
| 
       118 
136 
     | 
    
         
             
                        status: Egoera
         
     | 
| 
       119 
137 
     | 
    
         
             
                        title: Izenburua
         
     | 
| 
      
 138 
     | 
    
         
            +
                      published:
         
     | 
| 
      
 139 
     | 
    
         
            +
                        published: Argitaratua
         
     | 
| 
      
 140 
     | 
    
         
            +
                        unpublished: Desargitaratua
         
     | 
| 
       120 
141 
     | 
    
         
             
                      status:
         
     | 
| 
       121 
142 
     | 
    
         
             
                        closed: Itxita
         
     | 
| 
       122 
143 
     | 
    
         
             
                        open: Zabaldu
         
     | 
| 
         @@ -124,12 +145,8 @@ eu: 
     | 
|
| 
       124 
145 
     | 
    
         
             
                    confirmation:
         
     | 
| 
       125 
146 
     | 
    
         
             
                      body: Zuzen erantzun duzu %{participatory_space} espazioko %{questionnaire_title} inkesta
         
     | 
| 
       126 
147 
     | 
    
         
             
                      subject: '%{questionnaire_title} galdetegiaren erantzun-baieztapena'
         
     | 
| 
       127 
     | 
    
         
            -
                    export_name:  
     | 
| 
      
 148 
     | 
    
         
            +
                    export_name: Aztertu erantzunak
         
     | 
| 
       128 
149 
     | 
    
         
             
                  surveys:
         
     | 
| 
       129 
     | 
    
         
            -
                    answer:
         
     | 
| 
       130 
     | 
    
         
            -
                      invalid: Inkesta erantzutean errorea gertatu da.
         
     | 
| 
       131 
     | 
    
         
            -
                      spam_detected: Arazo bat izan da galdetegia erantzutean. Agian azkarregi joan zara, berriro egin dezakezu?
         
     | 
| 
       132 
     | 
    
         
            -
                      success: Inkesta ondo bete da.
         
     | 
| 
       133 
150 
     | 
    
         
             
                    count:
         
     | 
| 
       134 
151 
     | 
    
         
             
                      surveys_count:
         
     | 
| 
       135 
152 
     | 
    
         
             
                        one: "Inkesta bat"
         
     | 
| 
         @@ -140,6 +157,10 @@ eu: 
     | 
|
| 
       140 
157 
     | 
    
         
             
                        closed: Itxita
         
     | 
| 
       141 
158 
     | 
    
         
             
                        open: Zabaldu
         
     | 
| 
       142 
159 
     | 
    
         
             
                    no_surveys_warning: Ez dago zure bilatzeko irizpidearekin bat datorren inkestarik edo ez dago inkestarik irekita.
         
     | 
| 
      
 160 
     | 
    
         
            +
                    response:
         
     | 
| 
      
 161 
     | 
    
         
            +
                      invalid: Arazo bat egon da galdetegia erantzutean.
         
     | 
| 
      
 162 
     | 
    
         
            +
                      spam_detected: Arazo bat izan da galdetegia erantzutean. Agian azkarregi joan zara, berriro egin dezakezu?
         
     | 
| 
      
 163 
     | 
    
         
            +
                      success: Galdetegia zuzen erantzun da.
         
     | 
| 
       143 
164 
     | 
    
         
             
                    show:
         
     | 
| 
       144 
165 
     | 
    
         
             
                      closed: Itxita
         
     | 
| 
       145 
166 
     | 
    
         
             
                      open: Zabaldu
         
     |