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/is-IS.yml
    CHANGED
    
    
    
        data/config/locales/it.yml
    CHANGED
    
    | 
         @@ -9,14 +9,9 @@ it: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Questionario
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: indagini
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       13 
     | 
    
         
            -
                    one: Risposta
         
     | 
| 
       14 
     | 
    
         
            -
                    other: risposte
         
     | 
| 
       15 
12 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
13 
     | 
    
         
             
                components:
         
     | 
| 
       17 
14 
     | 
    
         
             
                  surveys:
         
     | 
| 
       18 
     | 
    
         
            -
                    actions:
         
     | 
| 
       19 
     | 
    
         
            -
                      answer: Risposta
         
     | 
| 
       20 
15 
     | 
    
         
             
                    settings:
         
     | 
| 
       21 
16 
     | 
    
         
             
                      global:
         
     | 
| 
       22 
17 
     | 
    
         
             
                        announcement: Annuncio
         
     | 
| 
         @@ -34,17 +29,8 @@ it: 
     | 
|
| 
       34 
29 
     | 
    
         
             
                      email_outro: Hai ricevuto questa notifica perché stai seguendo %{participatory_space_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
         
     | 
| 
       35 
30 
     | 
    
         
             
                      email_subject: Un nuovo questionario su %{participatory_space_title}
         
     | 
| 
       36 
31 
     | 
    
         
             
                      notification_title: Il questionario <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> è ora aperto.
         
     | 
| 
       37 
     | 
    
         
            -
                metrics:
         
     | 
| 
       38 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       39 
     | 
    
         
            -
                    description: Numero di sondaggi rispondenti dagli utenti
         
     | 
| 
       40 
     | 
    
         
            -
                    object: risposte ai sondaggi
         
     | 
| 
       41 
     | 
    
         
            -
                    title: Risposte ai sondaggi
         
     | 
| 
       42 
     | 
    
         
            -
                statistics:
         
     | 
| 
       43 
     | 
    
         
            -
                  answers_count: Risposte
         
     | 
| 
       44 
32 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
33 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Risposte dei partecipanti al sondaggio
         
     | 
| 
       48 
34 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
36 
     | 
    
         
             
                        invalid: Ci sono stati degli errori durante il salvataggio del sondaggio.
         
     | 
| 
         @@ -52,11 +38,3 @@ it: 
     | 
|
| 
       52 
38 
     | 
    
         
             
                  admin_log:
         
     | 
| 
       53 
39 
     | 
    
         
             
                    survey:
         
     | 
| 
       54 
40 
     | 
    
         
             
                      unpublish: "%{user_name} ha aggiornato il budget %{resource_name} nello spazio %{space_name}"
         
     | 
| 
       55 
     | 
    
         
            -
                  models:
         
     | 
| 
       56 
     | 
    
         
            -
                    survey:
         
     | 
| 
       57 
     | 
    
         
            -
                      fields:
         
     | 
| 
       58 
     | 
    
         
            -
                        answers: Risposte
         
     | 
| 
       59 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       60 
     | 
    
         
            -
                    answer:
         
     | 
| 
       61 
     | 
    
         
            -
                      invalid: Ci sono stati errori nel rispondere al sondaggio.
         
     | 
| 
       62 
     | 
    
         
            -
                      success: Le risposte sono state registrate correttamente.
         
     | 
    
        data/config/locales/ja.yml
    CHANGED
    
    | 
         @@ -8,17 +8,26 @@ ja: 
     | 
|
| 
       8 
8 
     | 
    
         
             
                models:
         
     | 
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    other: アンケート
         
     | 
| 
       11 
     | 
    
         
            -
                  decidim/surveys/ 
     | 
| 
      
 11 
     | 
    
         
            +
                  decidim/surveys/survey_response:
         
     | 
| 
       12 
12 
     | 
    
         
             
                    other: 回答
         
     | 
| 
       13 
13 
     | 
    
         
             
              decidim:
         
     | 
| 
       14 
14 
     | 
    
         
             
                admin:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  actions:
         
     | 
| 
      
 16 
     | 
    
         
            +
                    confirm_unpublish_survey: このアンケートを非公開にしますか?
         
     | 
| 
      
 17 
     | 
    
         
            +
                    see_survey: アンケートを見る
         
     | 
| 
       15 
18 
     | 
    
         
             
                  admin_log:
         
     | 
| 
       16 
19 
     | 
    
         
             
                    changeset:
         
     | 
| 
       17 
20 
     | 
    
         
             
                      surveys: アンケート
         
     | 
| 
      
 21 
     | 
    
         
            +
                  menu:
         
     | 
| 
      
 22 
     | 
    
         
            +
                    surveys_menu:
         
     | 
| 
      
 23 
     | 
    
         
            +
                      main: メイン
         
     | 
| 
      
 24 
     | 
    
         
            +
                      questions: 質問
         
     | 
| 
      
 25 
     | 
    
         
            +
                      responses: 回答
         
     | 
| 
      
 26 
     | 
    
         
            +
                      settings: 設定
         
     | 
| 
       18 
27 
     | 
    
         
             
                components:
         
     | 
| 
       19 
28 
     | 
    
         
             
                  surveys:
         
     | 
| 
       20 
29 
     | 
    
         
             
                    actions:
         
     | 
| 
       21 
     | 
    
         
            -
                       
     | 
| 
      
 30 
     | 
    
         
            +
                      respond: 回答する
         
     | 
| 
       22 
31 
     | 
    
         
             
                    name: 調査
         
     | 
| 
       23 
32 
     | 
    
         
             
                    settings:
         
     | 
| 
       24 
33 
     | 
    
         
             
                      announcement: お知らせ
         
     | 
| 
         @@ -38,43 +47,49 @@ ja: 
     | 
|
| 
       38 
47 
     | 
    
         
             
                      email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
         
     | 
| 
       39 
48 
     | 
    
         
             
                      email_subject: '%{participatory_space_title} での新しいアンケート'
         
     | 
| 
       40 
49 
     | 
    
         
             
                      notification_title: <a href="%{resource_path}">%{resource_title}の</a> <a href="%{participatory_space_url}">%{participatory_space_title}のアンケート</a> が公開されました。
         
     | 
| 
       41 
     | 
    
         
            -
                metrics:
         
     | 
| 
       42 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       43 
     | 
    
         
            -
                    description: 回答したアンケート数
         
     | 
| 
       44 
     | 
    
         
            -
                    object: アンケートに対する答えは
         
     | 
| 
       45 
     | 
    
         
            -
                    title: アンケートへの回答
         
     | 
| 
       46 
50 
     | 
    
         
             
                statistics:
         
     | 
| 
       47 
     | 
    
         
            -
                   
     | 
| 
      
 51 
     | 
    
         
            +
                  responses: '応答:'
         
     | 
| 
      
 52 
     | 
    
         
            +
                  responses_count: 回答
         
     | 
| 
      
 53 
     | 
    
         
            +
                  surveys_count_tooltip: 利用可能なアンケート数と、収集された回答数です。
         
     | 
| 
       48 
54 
     | 
    
         
             
                surveys:
         
     | 
| 
       49 
55 
     | 
    
         
             
                  actions:
         
     | 
| 
       50 
     | 
    
         
            -
                    answers_alert: この調査では公開時の回答削除機能が有効です。続行すると現状 %{answers_count} 件の回答が破棄されます。
         
     | 
| 
       51 
56 
     | 
    
         
             
                    confirm_destroy: 削除してもよろしいですか?
         
     | 
| 
       52 
57 
     | 
    
         
             
                    destroy: 破棄
         
     | 
| 
       53 
58 
     | 
    
         
             
                    edit: 編集
         
     | 
| 
       54 
     | 
    
         
            -
                    manage_questions:  
     | 
| 
      
 59 
     | 
    
         
            +
                    manage_questions: 質問
         
     | 
| 
       55 
60 
     | 
    
         
             
                    new_survey: 新しいアンケート
         
     | 
| 
       56 
61 
     | 
    
         
             
                    preview: プレビュー
         
     | 
| 
      
 62 
     | 
    
         
            +
                    responses_alert: このアンケートでは、公開時に回答を削除する設定が有効になっています。現在%{responses_count}件の回答があり、続行するとそれらは削除されます。
         
     | 
| 
       57 
63 
     | 
    
         
             
                    title: アクション
         
     | 
| 
       58 
64 
     | 
    
         
             
                  admin:
         
     | 
| 
       59 
     | 
    
         
            -
                    answers:
         
     | 
| 
       60 
     | 
    
         
            -
                      index:
         
     | 
| 
       61 
     | 
    
         
            -
                        title: "総回答数 %{total} 件"
         
     | 
| 
       62 
     | 
    
         
            -
                      show:
         
     | 
| 
       63 
     | 
    
         
            -
                        title: '回答 #%{number}'
         
     | 
| 
       64 
65 
     | 
    
         
             
                    exports:
         
     | 
| 
       65 
     | 
    
         
            -
                       
     | 
| 
       66 
     | 
    
         
            -
                     
     | 
| 
      
 66 
     | 
    
         
            +
                      survey_user_responses: アンケート参加者の回答
         
     | 
| 
      
 67 
     | 
    
         
            +
                    publish_responses:
         
     | 
| 
       67 
68 
     | 
    
         
             
                      index:
         
     | 
| 
       68 
     | 
    
         
            -
                        answers:
         
     | 
| 
       69 
     | 
    
         
            -
                          other: "%{count} 件の回答"
         
     | 
| 
       70 
69 
     | 
    
         
             
                        description: |-
         
     | 
| 
       71 
     | 
    
         
            -
                           
     | 
| 
       72 
     | 
    
         
            -
                           
     | 
| 
       73 
     | 
    
         
            -
                           
     | 
| 
      
 70 
     | 
    
         
            +
                          質問への回答を公開すると、それらが一般に表示されるようになります。
         
     | 
| 
      
 71 
     | 
    
         
            +
                          各質問の横にあるチェックボックスをクリックすることで、公開したい回答を選択できます。
         
     | 
| 
      
 72 
     | 
    
         
            +
                          公開できる質問の種類は、「単一選択」「複数選択」「マトリックス(単一選択)」「マトリックス(複数選択)」「並べ替え」です。
         
     | 
| 
      
 73 
     | 
    
         
            +
                        responses:
         
     | 
| 
      
 74 
     | 
    
         
            +
                          other: "%{count} 回答"
         
     | 
| 
       74 
75 
     | 
    
         
             
                        status:
         
     | 
| 
       75 
76 
     | 
    
         
             
                          not_published: 未公開
         
     | 
| 
       76 
77 
     | 
    
         
             
                          published: 公開済み
         
     | 
| 
       77 
78 
     | 
    
         
             
                        title: 回答を公開
         
     | 
| 
      
 79 
     | 
    
         
            +
                    questions:
         
     | 
| 
      
 80 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 81 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 82 
     | 
    
         
            +
                          title: 質問
         
     | 
| 
      
 83 
     | 
    
         
            +
                    responses:
         
     | 
| 
      
 84 
     | 
    
         
            +
                      index:
         
     | 
| 
      
 85 
     | 
    
         
            +
                        no_responses: 回答はまだありません
         
     | 
| 
      
 86 
     | 
    
         
            +
                        title: "総回答数 %{total} 件"
         
     | 
| 
      
 87 
     | 
    
         
            +
                      show:
         
     | 
| 
      
 88 
     | 
    
         
            +
                        title: '応答 #%{number}'
         
     | 
| 
      
 89 
     | 
    
         
            +
                    settings:
         
     | 
| 
      
 90 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 91 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 92 
     | 
    
         
            +
                          title: 設定
         
     | 
| 
       78 
93 
     | 
    
         
             
                    surveys:
         
     | 
| 
       79 
94 
     | 
    
         
             
                      create:
         
     | 
| 
       80 
95 
     | 
    
         
             
                        invalid: アンケートの作成中に問題が発生しました。
         
     | 
| 
         @@ -85,6 +100,8 @@ ja: 
     | 
|
| 
       85 
100 
     | 
    
         
             
                        title: アンケートを編集
         
     | 
| 
       86 
101 
     | 
    
         
             
                      index:
         
     | 
| 
       87 
102 
     | 
    
         
             
                        title: アンケート
         
     | 
| 
      
 103 
     | 
    
         
            +
                      new:
         
     | 
| 
      
 104 
     | 
    
         
            +
                        title: 新しいアンケート
         
     | 
| 
       88 
105 
     | 
    
         
             
                      publish:
         
     | 
| 
       89 
106 
     | 
    
         
             
                        invalid: このアンケートを公開する際に問題が発生しました。
         
     | 
| 
       90 
107 
     | 
    
         
             
                        success: アンケートを公開しました。
         
     | 
| 
         @@ -110,10 +127,14 @@ ja: 
     | 
|
| 
       110 
127 
     | 
    
         
             
                  models:
         
     | 
| 
       111 
128 
     | 
    
         
             
                    survey:
         
     | 
| 
       112 
129 
     | 
    
         
             
                      fields:
         
     | 
| 
       113 
     | 
    
         
            -
                         
     | 
| 
      
 130 
     | 
    
         
            +
                        published: 公開済み
         
     | 
| 
       114 
131 
     | 
    
         
             
                        questions: 質問
         
     | 
| 
      
 132 
     | 
    
         
            +
                        responses: 回答
         
     | 
| 
       115 
133 
     | 
    
         
             
                        status: ステータス
         
     | 
| 
       116 
134 
     | 
    
         
             
                        title: タイトル
         
     | 
| 
      
 135 
     | 
    
         
            +
                      published:
         
     | 
| 
      
 136 
     | 
    
         
            +
                        published: 公開済み
         
     | 
| 
      
 137 
     | 
    
         
            +
                        unpublished: 未公開
         
     | 
| 
       117 
138 
     | 
    
         
             
                      status:
         
     | 
| 
       118 
139 
     | 
    
         
             
                        closed: 終了済
         
     | 
| 
       119 
140 
     | 
    
         
             
                        open: 公開
         
     | 
| 
         @@ -123,10 +144,6 @@ ja: 
     | 
|
| 
       123 
144 
     | 
    
         
             
                      subject: アンケート %{questionnaire_title} 回答確認
         
     | 
| 
       124 
145 
     | 
    
         
             
                    export_name: アンケートの回答
         
     | 
| 
       125 
146 
     | 
    
         
             
                  surveys:
         
     | 
| 
       126 
     | 
    
         
            -
                    answer:
         
     | 
| 
       127 
     | 
    
         
            -
                      invalid: アンケートの回答に問題がありました。
         
     | 
| 
       128 
     | 
    
         
            -
                      spam_detected: フォームでの回答中に問題が発生しました。もしかしたら回答が早すぎたかもしれません。再度お試しいただけますか?
         
     | 
| 
       129 
     | 
    
         
            -
                      success: アンケートは正常に回答しました。
         
     | 
| 
       130 
147 
     | 
    
         
             
                    count:
         
     | 
| 
       131 
148 
     | 
    
         
             
                      surveys_count:
         
     | 
| 
       132 
149 
     | 
    
         
             
                        other: "%{count} 件の調査"
         
     | 
| 
         @@ -136,6 +153,10 @@ ja: 
     | 
|
| 
       136 
153 
     | 
    
         
             
                        closed: 終了済
         
     | 
| 
       137 
154 
     | 
    
         
             
                        open: 公開
         
     | 
| 
       138 
155 
     | 
    
         
             
                    no_surveys_warning: アンケートが検索条件に一致していないか、アンケートが公開されていません。
         
     | 
| 
      
 156 
     | 
    
         
            +
                    response:
         
     | 
| 
      
 157 
     | 
    
         
            +
                      invalid: アンケートに回答する際に問題が発生しました。
         
     | 
| 
      
 158 
     | 
    
         
            +
                      spam_detected: フォームに回答する際に問題が発生しました。早すぎるかもしれません。もう一度やり直していただけますか?
         
     | 
| 
      
 159 
     | 
    
         
            +
                      success: アンケートに回答しました。
         
     | 
| 
       139 
160 
     | 
    
         
             
                    show:
         
     | 
| 
       140 
161 
     | 
    
         
             
                      closed: 終了済
         
     | 
| 
       141 
162 
     | 
    
         
             
                      open: 公開
         
     | 
    
        data/config/locales/lb.yml
    CHANGED
    
    | 
         @@ -9,14 +9,9 @@ lb: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Emfro
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Emfroen
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       13 
     | 
    
         
            -
                    one: Äntwerten
         
     | 
| 
       14 
     | 
    
         
            -
                    other: Äntwerten
         
     | 
| 
       15 
12 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
13 
     | 
    
         
             
                components:
         
     | 
| 
       17 
14 
     | 
    
         
             
                  surveys:
         
     | 
| 
       18 
     | 
    
         
            -
                    actions:
         
     | 
| 
       19 
     | 
    
         
            -
                      answer: Äntwert
         
     | 
| 
       20 
15 
     | 
    
         
             
                    settings:
         
     | 
| 
       21 
16 
     | 
    
         
             
                      global:
         
     | 
| 
       22 
17 
     | 
    
         
             
                        announcement: Ukënnegung
         
     | 
| 
         @@ -34,26 +29,9 @@ lb: 
     | 
|
| 
       34 
29 
     | 
    
         
             
                      email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
         
     | 
| 
       35 
30 
     | 
    
         
             
                      email_subject: Eine neue Umfrage in %{participatory_space_title}
         
     | 
| 
       36 
31 
     | 
    
         
             
                      notification_title: Die Umfrage <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> ist jetzt geöffnet.
         
     | 
| 
       37 
     | 
    
         
            -
                metrics:
         
     | 
| 
       38 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       39 
     | 
    
         
            -
                    description: Anzahl der Umfragen, die von den Benutzern beantwortet wurden
         
     | 
| 
       40 
     | 
    
         
            -
                    object: Antworten auf Umfragen
         
     | 
| 
       41 
     | 
    
         
            -
                    title: Antworten zu Umfragen
         
     | 
| 
       42 
     | 
    
         
            -
                statistics:
         
     | 
| 
       43 
     | 
    
         
            -
                  answers_count: Äntwerten
         
     | 
| 
       44 
32 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
33 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Umfrage Benutzer Antworten
         
     | 
| 
       48 
34 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
36 
     | 
    
         
             
                        invalid: Beim Speichern der Umfrage sind Fehler aufgetreten.
         
     | 
| 
       51 
37 
     | 
    
         
             
                        success: Umfrage wurde erfolgreich gespeichert.
         
     | 
| 
       52 
     | 
    
         
            -
                  models:
         
     | 
| 
       53 
     | 
    
         
            -
                    survey:
         
     | 
| 
       54 
     | 
    
         
            -
                      fields:
         
     | 
| 
       55 
     | 
    
         
            -
                        answers: Äntwerten
         
     | 
| 
       56 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       57 
     | 
    
         
            -
                    answer:
         
     | 
| 
       58 
     | 
    
         
            -
                      invalid: Bei der Beantwortung der Umfrage sind Fehler aufgetreten.
         
     | 
| 
       59 
     | 
    
         
            -
                      success: Umfrage erfolgreich beantwortet.
         
     | 
    
        data/config/locales/lt.yml
    CHANGED
    
    | 
         @@ -11,16 +11,9 @@ lt: 
     | 
|
| 
       11 
11 
     | 
    
         
             
                    few: Apklausos
         
     | 
| 
       12 
12 
     | 
    
         
             
                    many: Apklausos
         
     | 
| 
       13 
13 
     | 
    
         
             
                    other: Apklausos
         
     | 
| 
       14 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       15 
     | 
    
         
            -
                    one: Atsakyti
         
     | 
| 
       16 
     | 
    
         
            -
                    few: Atsakymai
         
     | 
| 
       17 
     | 
    
         
            -
                    many: Atsakymai
         
     | 
| 
       18 
     | 
    
         
            -
                    other: Atsakymai
         
     | 
| 
       19 
14 
     | 
    
         
             
              decidim:
         
     | 
| 
       20 
15 
     | 
    
         
             
                components:
         
     | 
| 
       21 
16 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
     | 
    
         
            -
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                      answer: Atsakyti
         
     | 
| 
       24 
17 
     | 
    
         
             
                    settings:
         
     | 
| 
       25 
18 
     | 
    
         
             
                      global:
         
     | 
| 
       26 
19 
     | 
    
         
             
                        announcement: Pranešimas
         
     | 
| 
         @@ -38,29 +31,11 @@ lt: 
     | 
|
| 
       38 
31 
     | 
    
         
             
                      email_outro: Šį pranešimą gavote dėl to, kad sekate %{participatory_space_title}. Jeigu nebenorite gauti pranešimų, spustelėkite ankstesnę nuorodą.
         
     | 
| 
       39 
32 
     | 
    
         
             
                      email_subject: Nauja apklausa %{participatory_space_title}
         
     | 
| 
       40 
33 
     | 
    
         
             
                      notification_title: Apklausa <a href="%{resource_path}">%{resource_title}</a> <a href="%{participatory_space_url}">%{participatory_space_title}</a> dabar vyksta.
         
     | 
| 
       41 
     | 
    
         
            -
                metrics:
         
     | 
| 
       42 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       43 
     | 
    
         
            -
                    description: Apklausų, į kurių klausimus atsakė dalyviai, skaičius
         
     | 
| 
       44 
     | 
    
         
            -
                    object: atsakymai į apklausų klausimus
         
     | 
| 
       45 
     | 
    
         
            -
                    title: Atsakymai į apklausų klausimus
         
     | 
| 
       46 
     | 
    
         
            -
                statistics:
         
     | 
| 
       47 
     | 
    
         
            -
                  answers_count: Atsakymai
         
     | 
| 
       48 
34 
     | 
    
         
             
                surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                  admin:
         
     | 
| 
       50 
     | 
    
         
            -
                    exports:
         
     | 
| 
       51 
     | 
    
         
            -
                      survey_user_answers: Apklausos dalyvių atsakymai
         
     | 
| 
       52 
36 
     | 
    
         
             
                    surveys:
         
     | 
| 
       53 
37 
     | 
    
         
             
                      update:
         
     | 
| 
       54 
38 
     | 
    
         
             
                        invalid: Išsaugant šią apklausą iškilo problema.
         
     | 
| 
       55 
39 
     | 
    
         
             
                        success: Apklausa išsaugota.
         
     | 
| 
       56 
40 
     | 
    
         
             
                  last_activity:
         
     | 
| 
       57 
41 
     | 
    
         
             
                    new_survey: 'Nauja apklausa:'
         
     | 
| 
       58 
     | 
    
         
            -
                  models:
         
     | 
| 
       59 
     | 
    
         
            -
                    survey:
         
     | 
| 
       60 
     | 
    
         
            -
                      fields:
         
     | 
| 
       61 
     | 
    
         
            -
                        answers: Atsakymai
         
     | 
| 
       62 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       63 
     | 
    
         
            -
                    answer:
         
     | 
| 
       64 
     | 
    
         
            -
                      invalid: Atsakant į šios apklausos klausimus iškilo problema.
         
     | 
| 
       65 
     | 
    
         
            -
                      spam_detected: Atsakant į šią formą iškilo problema. Galbūt paskubėjote? Ar galite pabandyti dar kartą?
         
     | 
| 
       66 
     | 
    
         
            -
                      success: Į apklausos klausimus atsakyta.
         
     | 
    
        data/config/locales/lv.yml
    CHANGED
    
    | 
         @@ -10,15 +10,9 @@ lv: 
     | 
|
| 
       10 
10 
     | 
    
         
             
                    zero: Aptaujas
         
     | 
| 
       11 
11 
     | 
    
         
             
                    one: Aptauja
         
     | 
| 
       12 
12 
     | 
    
         
             
                    other: Aptaujas
         
     | 
| 
       13 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       14 
     | 
    
         
            -
                    zero: Atbildes
         
     | 
| 
       15 
     | 
    
         
            -
                    one: Atbilde
         
     | 
| 
       16 
     | 
    
         
            -
                    other: Atbildes
         
     | 
| 
       17 
13 
     | 
    
         
             
              decidim:
         
     | 
| 
       18 
14 
     | 
    
         
             
                components:
         
     | 
| 
       19 
15 
     | 
    
         
             
                  surveys:
         
     | 
| 
       20 
     | 
    
         
            -
                    actions:
         
     | 
| 
       21 
     | 
    
         
            -
                      answer: Atbilde
         
     | 
| 
       22 
16 
     | 
    
         
             
                    settings:
         
     | 
| 
       23 
17 
     | 
    
         
             
                      global:
         
     | 
| 
       24 
18 
     | 
    
         
             
                        announcement: Paziņojums
         
     | 
| 
         @@ -36,20 +30,9 @@ lv: 
     | 
|
| 
       36 
30 
     | 
    
         
             
                      email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{participatory_space_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
         
     | 
| 
       37 
31 
     | 
    
         
             
                      email_subject: Jauna aptauja telpā %{participatory_space_title}
         
     | 
| 
       38 
32 
     | 
    
         
             
                      notification_title: Aptauja <a href="%{resource_path}">%{resource_title}</a> sadaļā <a href="%{participatory_space_url}">%{activatory_space_title}</a> tagad ir atvērta
         
     | 
| 
       39 
     | 
    
         
            -
                metrics:
         
     | 
| 
       40 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       41 
     | 
    
         
            -
                    description: Dalībnieka atbildēto aptaujas jautājumu skaits
         
     | 
| 
       42 
     | 
    
         
            -
                    object: atbildes uz aptaujas jautājumiem
         
     | 
| 
       43 
     | 
    
         
            -
                    title: Atbildes uz aptaujas jautājumiem
         
     | 
| 
       44 
33 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
34 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Aptaujas dalībnieka atbildes
         
     | 
| 
       48 
35 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
36 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
37 
     | 
    
         
             
                        invalid: Saglabājot aptauju, radās problēma.
         
     | 
| 
       51 
38 
     | 
    
         
             
                        success: Aptauja ir veiksmīgi saglabāta
         
     | 
| 
       52 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       53 
     | 
    
         
            -
                    answer:
         
     | 
| 
       54 
     | 
    
         
            -
                      invalid: Atbildot uz aptauju, radās problēma.
         
     | 
| 
       55 
     | 
    
         
            -
                      success: Uz aptaujas jautājumiem ir veiksmīgi atbildēts.
         
     | 
    
        data/config/locales/nl.yml
    CHANGED
    
    | 
         @@ -9,14 +9,9 @@ nl: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Enquête
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: onderzoeken
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       13 
     | 
    
         
            -
                    one: Antwoord
         
     | 
| 
       14 
     | 
    
         
            -
                    other: antwoorden
         
     | 
| 
       15 
12 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
13 
     | 
    
         
             
                components:
         
     | 
| 
       17 
14 
     | 
    
         
             
                  surveys:
         
     | 
| 
       18 
     | 
    
         
            -
                    actions:
         
     | 
| 
       19 
     | 
    
         
            -
                      answer: Antwoorden
         
     | 
| 
       20 
15 
     | 
    
         
             
                    settings:
         
     | 
| 
       21 
16 
     | 
    
         
             
                      global:
         
     | 
| 
       22 
17 
     | 
    
         
             
                        announcement: Aankondiging
         
     | 
| 
         @@ -34,26 +29,9 @@ nl: 
     | 
|
| 
       34 
29 
     | 
    
         
             
                      email_outro: Je hebt deze melding ontvangen omdat je %{participatory_space_title} volgt. Je kan de notificaties uitschakelen door de voorgaande link te volgen.
         
     | 
| 
       35 
30 
     | 
    
         
             
                      email_subject: Een nieuwe enquête in %{participatory_space_title}
         
     | 
| 
       36 
31 
     | 
    
         
             
                      notification_title: De enquête <a href="%{resource_path}">%{resource_title}</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> is nu geopend.
         
     | 
| 
       37 
     | 
    
         
            -
                metrics:
         
     | 
| 
       38 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       39 
     | 
    
         
            -
                    description: Aantal enquêtes beantwoord door deelnemers
         
     | 
| 
       40 
     | 
    
         
            -
                    object: antwoorden op enquêtes
         
     | 
| 
       41 
     | 
    
         
            -
                    title: Antwoorden op enquêtes
         
     | 
| 
       42 
     | 
    
         
            -
                statistics:
         
     | 
| 
       43 
     | 
    
         
            -
                  answers_count: Antwoorden
         
     | 
| 
       44 
32 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
33 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Antwoorden van de deelnemers aan de enquête
         
     | 
| 
       48 
34 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
36 
     | 
    
         
             
                        invalid: Er is een probleem opgetreden bij het opslaan van de enquête.
         
     | 
| 
       51 
37 
     | 
    
         
             
                        success: Enquête succesvol opgeslagen.
         
     | 
| 
       52 
     | 
    
         
            -
                  models:
         
     | 
| 
       53 
     | 
    
         
            -
                    survey:
         
     | 
| 
       54 
     | 
    
         
            -
                      fields:
         
     | 
| 
       55 
     | 
    
         
            -
                        answers: Antwoorden
         
     | 
| 
       56 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       57 
     | 
    
         
            -
                    answer:
         
     | 
| 
       58 
     | 
    
         
            -
                      invalid: Er is een fout opgetreden bij het opslaan van de pagina.
         
     | 
| 
       59 
     | 
    
         
            -
                      success: Enquête met succes beantwoord.
         
     | 
    
        data/config/locales/no.yml
    CHANGED
    
    | 
         @@ -9,14 +9,9 @@ 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Undersøkelse
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Undersøkelse
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       13 
     | 
    
         
            -
                    one: Svar
         
     | 
| 
       14 
     | 
    
         
            -
                    other: Svar
         
     | 
| 
       15 
12 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
13 
     | 
    
         
             
                components:
         
     | 
| 
       17 
14 
     | 
    
         
             
                  surveys:
         
     | 
| 
       18 
     | 
    
         
            -
                    actions:
         
     | 
| 
       19 
     | 
    
         
            -
                      answer: Svar
         
     | 
| 
       20 
15 
     | 
    
         
             
                    settings:
         
     | 
| 
       21 
16 
     | 
    
         
             
                      global:
         
     | 
| 
       22 
17 
     | 
    
         
             
                        announcement: Kunngjøring
         
     | 
| 
         @@ -34,26 +29,9 @@ 
     | 
|
| 
       34 
29 
     | 
    
         
             
                      email_outro: Du har mottatt denne varslingen fordi du følger %{participatory_space_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
         
     | 
| 
       35 
30 
     | 
    
         
             
                      email_subject: En ny undersøkelse i %{participatory_space_title}
         
     | 
| 
       36 
31 
     | 
    
         
             
                      notification_title: Undersøkelsen <a href="%{resource_path}">%{resource_title}</a> i <a href="%{participatory_space_url}">%{participatory_space_title}</a> er nå åpen.
         
     | 
| 
       37 
     | 
    
         
            -
                metrics:
         
     | 
| 
       38 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       39 
     | 
    
         
            -
                    description: Antall undersøkelser besvart av deltakerne
         
     | 
| 
       40 
     | 
    
         
            -
                    object: svar på undersøkelser
         
     | 
| 
       41 
     | 
    
         
            -
                    title: Svar på undersøkelser
         
     | 
| 
       42 
     | 
    
         
            -
                statistics:
         
     | 
| 
       43 
     | 
    
         
            -
                  answers_count: Svar
         
     | 
| 
       44 
32 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
33 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Undersøkelsens deltaker svar
         
     | 
| 
       48 
34 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
36 
     | 
    
         
             
                        invalid: Det oppstod et problem med å lagre undersøkelsen.
         
     | 
| 
       51 
37 
     | 
    
         
             
                        success: Undersøkelsen ble lagret.
         
     | 
| 
       52 
     | 
    
         
            -
                  models:
         
     | 
| 
       53 
     | 
    
         
            -
                    survey:
         
     | 
| 
       54 
     | 
    
         
            -
                      fields:
         
     | 
| 
       55 
     | 
    
         
            -
                        answers: Svar
         
     | 
| 
       56 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       57 
     | 
    
         
            -
                    answer:
         
     | 
| 
       58 
     | 
    
         
            -
                      invalid: Det oppstod et problem med å svare på undersøkelsen.
         
     | 
| 
       59 
     | 
    
         
            -
                      success: Undersøkelsen ble besvart.
         
     | 
    
        data/config/locales/pl.yml
    CHANGED
    
    | 
         @@ -11,16 +11,9 @@ pl: 
     | 
|
| 
       11 
11 
     | 
    
         
             
                    few: Ankiety
         
     | 
| 
       12 
12 
     | 
    
         
             
                    many: Ankiety
         
     | 
| 
       13 
13 
     | 
    
         
             
                    other: Ankiety
         
     | 
| 
       14 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       15 
     | 
    
         
            -
                    one: Odpowiedź
         
     | 
| 
       16 
     | 
    
         
            -
                    few: Odpowiedzi
         
     | 
| 
       17 
     | 
    
         
            -
                    many: Odpowiedzi
         
     | 
| 
       18 
     | 
    
         
            -
                    other: Odpowiedzi
         
     | 
| 
       19 
14 
     | 
    
         
             
              decidim:
         
     | 
| 
       20 
15 
     | 
    
         
             
                components:
         
     | 
| 
       21 
16 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
     | 
    
         
            -
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                      answer: Odpowiedź
         
     | 
| 
       24 
17 
     | 
    
         
             
                    settings:
         
     | 
| 
       25 
18 
     | 
    
         
             
                      global:
         
     | 
| 
       26 
19 
     | 
    
         
             
                        announcement: Ogłoszenie
         
     | 
| 
         @@ -38,34 +31,11 @@ pl: 
     | 
|
| 
       38 
31 
     | 
    
         
             
                      email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{participatory_space_title}. Możesz przestać otrzymywać powiadomienia po kliknięciu w poprzedni link.
         
     | 
| 
       39 
32 
     | 
    
         
             
                      email_subject: Nowa ankieta w %{participatory_space_title}
         
     | 
| 
       40 
33 
     | 
    
         
             
                      notification_title: Ankieta <a href="%{resource_path}">%{resource_title}</a> w <a href="%{participatory_space_url}">%{participatory_space_title}</a> jest teraz otwarta.
         
     | 
| 
       41 
     | 
    
         
            -
                metrics:
         
     | 
| 
       42 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       43 
     | 
    
         
            -
                    description: Liczba ankiet wypełnionych przez użytkowników
         
     | 
| 
       44 
     | 
    
         
            -
                    object: odpowiedzi na ankiety
         
     | 
| 
       45 
     | 
    
         
            -
                    title: Odpowiedzi na ankiety
         
     | 
| 
       46 
     | 
    
         
            -
                statistics:
         
     | 
| 
       47 
     | 
    
         
            -
                  answers_count: Odpowiedzi
         
     | 
| 
       48 
34 
     | 
    
         
             
                surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                  admin:
         
     | 
| 
       50 
     | 
    
         
            -
                    exports:
         
     | 
| 
       51 
     | 
    
         
            -
                      survey_user_answers: Odpowiedzi użytkowników na pytania z ankiety
         
     | 
| 
       52 
36 
     | 
    
         
             
                    surveys:
         
     | 
| 
       53 
37 
     | 
    
         
             
                      update:
         
     | 
| 
       54 
38 
     | 
    
         
             
                        invalid: Podczas zapisywania ankiety wystąpił błąd.
         
     | 
| 
       55 
39 
     | 
    
         
             
                        success: Ankieta została zapisana pomyślnie.
         
     | 
| 
       56 
40 
     | 
    
         
             
                  last_activity:
         
     | 
| 
       57 
41 
     | 
    
         
             
                    new_survey: 'Nowa ankieta:'
         
     | 
| 
       58 
     | 
    
         
            -
                  models:
         
     | 
| 
       59 
     | 
    
         
            -
                    survey:
         
     | 
| 
       60 
     | 
    
         
            -
                      fields:
         
     | 
| 
       61 
     | 
    
         
            -
                        answers: Odpowiedzi
         
     | 
| 
       62 
     | 
    
         
            -
                  survey_confirmation_mailer:
         
     | 
| 
       63 
     | 
    
         
            -
                    confirmation:
         
     | 
| 
       64 
     | 
    
         
            -
                      body: Pomyślnie udzielono odpowiedzi na ankietę %{questionnaire_title} w ramach %{participatory_space}
         
     | 
| 
       65 
     | 
    
         
            -
                      subject: Kwestionariusz %{questionnaire_title} odpowiadający na potwierdzenie
         
     | 
| 
       66 
     | 
    
         
            -
                    export_name: Odpowiedzi udzielone w ankiecie
         
     | 
| 
       67 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       68 
     | 
    
         
            -
                    answer:
         
     | 
| 
       69 
     | 
    
         
            -
                      invalid: Podczas wypełniania ankiety wystąpił błąd.
         
     | 
| 
       70 
     | 
    
         
            -
                      spam_detected: Wystąpił błąd podczas wypełniania formularza. Być może zostało to zrobione zbyt szybko, czy możesz spróbować ponownie?
         
     | 
| 
       71 
     | 
    
         
            -
                      success: Twoja ankieta została wypełniona.
         
     | 
    
        data/config/locales/pt-BR.yml
    CHANGED
    
    | 
         @@ -9,14 +9,9 @@ pt-BR: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Enquete
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Enquetes
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       13 
     | 
    
         
            -
                    one: Resposta
         
     | 
| 
       14 
     | 
    
         
            -
                    other: Respostas
         
     | 
| 
       15 
12 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
13 
     | 
    
         
             
                components:
         
     | 
| 
       17 
14 
     | 
    
         
             
                  surveys:
         
     | 
| 
       18 
     | 
    
         
            -
                    actions:
         
     | 
| 
       19 
     | 
    
         
            -
                      answer: Responda
         
     | 
| 
       20 
15 
     | 
    
         
             
                    settings:
         
     | 
| 
       21 
16 
     | 
    
         
             
                      global:
         
     | 
| 
       22 
17 
     | 
    
         
             
                        announcement: Anúncio
         
     | 
| 
         @@ -34,26 +29,9 @@ pt-BR: 
     | 
|
| 
       34 
29 
     | 
    
         
             
                      email_outro: Você recebeu esta notificação porque está seguindo %{participatory_space_title}. Você pode parar de receber notificações após o link anterior.
         
     | 
| 
       35 
30 
     | 
    
         
             
                      email_subject: Uma nova pesquisa em %{participatory_space_title}
         
     | 
| 
       36 
31 
     | 
    
         
             
                      notification_title: A pesquisa <a href="%{resource_path}">%{resource_title}</a> em <a href="%{participatory_space_url}">%{participatory_space_title}</a> está agora aberta.
         
     | 
| 
       37 
     | 
    
         
            -
                metrics:
         
     | 
| 
       38 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       39 
     | 
    
         
            -
                    description: Número de pesquisas respondidas por usuários
         
     | 
| 
       40 
     | 
    
         
            -
                    object: respostas para pesquisas
         
     | 
| 
       41 
     | 
    
         
            -
                    title: Respostas para pesquisas
         
     | 
| 
       42 
     | 
    
         
            -
                statistics:
         
     | 
| 
       43 
     | 
    
         
            -
                  answers_count: Respostas
         
     | 
| 
       44 
32 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
33 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Avalie as respostas dos usuários
         
     | 
| 
       48 
34 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
36 
     | 
    
         
             
                        invalid: Houve erros ao salvar a pesquisa.
         
     | 
| 
       51 
37 
     | 
    
         
             
                        success: Pesquisa salva com sucesso.
         
     | 
| 
       52 
     | 
    
         
            -
                  models:
         
     | 
| 
       53 
     | 
    
         
            -
                    survey:
         
     | 
| 
       54 
     | 
    
         
            -
                      fields:
         
     | 
| 
       55 
     | 
    
         
            -
                        answers: Respostas
         
     | 
| 
       56 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       57 
     | 
    
         
            -
                    answer:
         
     | 
| 
       58 
     | 
    
         
            -
                      invalid: Houve erros ao responder a pesquisa.
         
     | 
| 
       59 
     | 
    
         
            -
                      success: Pesquisa respondida com sucesso.
         
     | 
    
        data/config/locales/pt.yml
    CHANGED
    
    | 
         @@ -9,14 +9,9 @@ pt: 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  decidim/surveys/survey:
         
     | 
| 
       10 
10 
     | 
    
         
             
                    one: Inquérito
         
     | 
| 
       11 
11 
     | 
    
         
             
                    other: Inquéritos
         
     | 
| 
       12 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       13 
     | 
    
         
            -
                    one: Resposta
         
     | 
| 
       14 
     | 
    
         
            -
                    other: Respostas
         
     | 
| 
       15 
12 
     | 
    
         
             
              decidim:
         
     | 
| 
       16 
13 
     | 
    
         
             
                components:
         
     | 
| 
       17 
14 
     | 
    
         
             
                  surveys:
         
     | 
| 
       18 
     | 
    
         
            -
                    actions:
         
     | 
| 
       19 
     | 
    
         
            -
                      answer: Responder
         
     | 
| 
       20 
15 
     | 
    
         
             
                    settings:
         
     | 
| 
       21 
16 
     | 
    
         
             
                      global:
         
     | 
| 
       22 
17 
     | 
    
         
             
                        announcement: Anúncio
         
     | 
| 
         @@ -34,26 +29,9 @@ pt: 
     | 
|
| 
       34 
29 
     | 
    
         
             
                      email_outro: Recebeu esta notificação porque segue %{participatory_space_title}. Pode parar de receber notificações seguindo a hiperligação anterior.
         
     | 
| 
       35 
30 
     | 
    
         
             
                      email_subject: Um novo inquérito em %{participatory_space_title}
         
     | 
| 
       36 
31 
     | 
    
         
             
                      notification_title: O inquérito <a href="%{resource_path}">%{resource_title}</a> em <a href="%{participatory_space_url}">%{participatory_space_title}</a> está agora aberto.
         
     | 
| 
       37 
     | 
    
         
            -
                metrics:
         
     | 
| 
       38 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       39 
     | 
    
         
            -
                    description: Número de inquéritos respondidos por participantes
         
     | 
| 
       40 
     | 
    
         
            -
                    object: respostas aos questionários
         
     | 
| 
       41 
     | 
    
         
            -
                    title: Respostas aos questionários
         
     | 
| 
       42 
     | 
    
         
            -
                statistics:
         
     | 
| 
       43 
     | 
    
         
            -
                  answers_count: Respostas
         
     | 
| 
       44 
32 
     | 
    
         
             
                surveys:
         
     | 
| 
       45 
33 
     | 
    
         
             
                  admin:
         
     | 
| 
       46 
     | 
    
         
            -
                    exports:
         
     | 
| 
       47 
     | 
    
         
            -
                      survey_user_answers: Respostas dos participantes aos inquéritos
         
     | 
| 
       48 
34 
     | 
    
         
             
                    surveys:
         
     | 
| 
       49 
35 
     | 
    
         
             
                      update:
         
     | 
| 
       50 
36 
     | 
    
         
             
                        invalid: Ocorreu um problema ao guardar o inquérito.
         
     | 
| 
       51 
37 
     | 
    
         
             
                        success: Inquérito guardado corretamente.
         
     | 
| 
       52 
     | 
    
         
            -
                  models:
         
     | 
| 
       53 
     | 
    
         
            -
                    survey:
         
     | 
| 
       54 
     | 
    
         
            -
                      fields:
         
     | 
| 
       55 
     | 
    
         
            -
                        answers: Respostas
         
     | 
| 
       56 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       57 
     | 
    
         
            -
                    answer:
         
     | 
| 
       58 
     | 
    
         
            -
                      invalid: Ocorreu um problema ao responder ao inquérito.
         
     | 
| 
       59 
     | 
    
         
            -
                      success: Inquérito respondido corretamente.
         
     | 
    
        data/config/locales/ro-RO.yml
    CHANGED
    
    | 
         @@ -10,15 +10,15 @@ ro: 
     | 
|
| 
       10 
10 
     | 
    
         
             
                    one: Sondaj
         
     | 
| 
       11 
11 
     | 
    
         
             
                    few: Sondaje
         
     | 
| 
       12 
12 
     | 
    
         
             
                    other: Sondaje
         
     | 
| 
       13 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       14 
     | 
    
         
            -
                    one: Răspuns
         
     | 
| 
       15 
     | 
    
         
            -
                    few: Răspunsuri
         
     | 
| 
       16 
     | 
    
         
            -
                    other: Răspunsuri
         
     | 
| 
       17 
13 
     | 
    
         
             
              decidim:
         
     | 
| 
      
 14 
     | 
    
         
            +
                admin:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  menu:
         
     | 
| 
      
 16 
     | 
    
         
            +
                    surveys_menu:
         
     | 
| 
      
 17 
     | 
    
         
            +
                      main: Principal
         
     | 
| 
      
 18 
     | 
    
         
            +
                      questions: Întrebări
         
     | 
| 
      
 19 
     | 
    
         
            +
                      settings: Setări
         
     | 
| 
       18 
20 
     | 
    
         
             
                components:
         
     | 
| 
       19 
21 
     | 
    
         
             
                  surveys:
         
     | 
| 
       20 
     | 
    
         
            -
                    actions:
         
     | 
| 
       21 
     | 
    
         
            -
                      answer: Răspunde
         
     | 
| 
       22 
22 
     | 
    
         
             
                    settings:
         
     | 
| 
       23 
23 
     | 
    
         
             
                      global:
         
     | 
| 
       24 
24 
     | 
    
         
             
                        announcement: Anunţ
         
     | 
| 
         @@ -36,29 +36,24 @@ ro: 
     | 
|
| 
       36 
36 
     | 
    
         
             
                      email_outro: Ai primit această notificare deoarece urmărești „%{participatory_space_title}”. Poți anula aceste notificări de la link-ul anterior.
         
     | 
| 
       37 
37 
     | 
    
         
             
                      email_subject: Un nou sondaj în %{participatory_space_title}
         
     | 
| 
       38 
38 
     | 
    
         
             
                      notification_title: Sondajul <a href="%{resource_path}">%{resource_title}</a> din <a href="%{participatory_space_url}">%{participatory_space_title}</a> este acum deschis.
         
     | 
| 
       39 
     | 
    
         
            -
                metrics:
         
     | 
| 
       40 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       41 
     | 
    
         
            -
                    description: Numărul de sondaje la care au răspuns participanții
         
     | 
| 
       42 
     | 
    
         
            -
                    object: răspunsuri la sondaje
         
     | 
| 
       43 
     | 
    
         
            -
                    title: Răspunsuri la sondaje
         
     | 
| 
       44 
39 
     | 
    
         
             
                statistics:
         
     | 
| 
       45 
     | 
    
         
            -
                   
     | 
| 
      
 40 
     | 
    
         
            +
                  responses: 'Răspunsuri:'
         
     | 
| 
      
 41 
     | 
    
         
            +
                  surveys_count_tooltip: Numărul de sondaje disponibile și răspunsuri care au fost colectate.
         
     | 
| 
       46 
42 
     | 
    
         
             
                surveys:
         
     | 
| 
      
 43 
     | 
    
         
            +
                  actions:
         
     | 
| 
      
 44 
     | 
    
         
            +
                    manage_questions: Întrebări
         
     | 
| 
       47 
45 
     | 
    
         
             
                  admin:
         
     | 
| 
       48 
     | 
    
         
            -
                     
     | 
| 
       49 
     | 
    
         
            -
                       
     | 
| 
      
 46 
     | 
    
         
            +
                    questions:
         
     | 
| 
      
 47 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 48 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 49 
     | 
    
         
            +
                          title: Întrebări
         
     | 
| 
      
 50 
     | 
    
         
            +
                    settings:
         
     | 
| 
      
 51 
     | 
    
         
            +
                      surveys:
         
     | 
| 
      
 52 
     | 
    
         
            +
                        edit:
         
     | 
| 
      
 53 
     | 
    
         
            +
                          title: Setări
         
     | 
| 
       50 
54 
     | 
    
         
             
                    surveys:
         
     | 
| 
       51 
55 
     | 
    
         
             
                      update:
         
     | 
| 
       52 
56 
     | 
    
         
             
                        invalid: A apărut o eroare la salvarea sondajului.
         
     | 
| 
       53 
57 
     | 
    
         
             
                        success: Sondajul a fost salvat cu succes.
         
     | 
| 
       54 
58 
     | 
    
         
             
                  last_activity:
         
     | 
| 
       55 
59 
     | 
    
         
             
                    new_survey: 'Sondaj nou:'
         
     | 
| 
       56 
     | 
    
         
            -
                  models:
         
     | 
| 
       57 
     | 
    
         
            -
                    survey:
         
     | 
| 
       58 
     | 
    
         
            -
                      fields:
         
     | 
| 
       59 
     | 
    
         
            -
                        answers: Răspunsuri
         
     | 
| 
       60 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       61 
     | 
    
         
            -
                    answer:
         
     | 
| 
       62 
     | 
    
         
            -
                      invalid: A apărut o problemă în timpul răspunsului pentru sondaj.
         
     | 
| 
       63 
     | 
    
         
            -
                      spam_detected: A apărut o problemă la completarea formularului. Poate că ați fost prea rapid(ă), puteți încerca din nou?
         
     | 
| 
       64 
     | 
    
         
            -
                      success: Răspunsul pentru sondaj a fost înregistrat cu succes.
         
     | 
    
        data/config/locales/ru.yml
    CHANGED
    
    | 
         @@ -11,16 +11,9 @@ ru: 
     | 
|
| 
       11 
11 
     | 
    
         
             
                    few: Опроса
         
     | 
| 
       12 
12 
     | 
    
         
             
                    many: Опросов
         
     | 
| 
       13 
13 
     | 
    
         
             
                    other: Опросов
         
     | 
| 
       14 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       15 
     | 
    
         
            -
                    one: Ответ
         
     | 
| 
       16 
     | 
    
         
            -
                    few: Ответа
         
     | 
| 
       17 
     | 
    
         
            -
                    many: Ответов
         
     | 
| 
       18 
     | 
    
         
            -
                    other: Ответов
         
     | 
| 
       19 
14 
     | 
    
         
             
              decidim:
         
     | 
| 
       20 
15 
     | 
    
         
             
                components:
         
     | 
| 
       21 
16 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
     | 
    
         
            -
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                      answer: Ответ
         
     | 
| 
       24 
17 
     | 
    
         
             
                    settings:
         
     | 
| 
       25 
18 
     | 
    
         
             
                      global:
         
     | 
| 
       26 
19 
     | 
    
         
             
                        announcement: Объявление
         
     | 
| 
         @@ -40,13 +33,7 @@ ru: 
     | 
|
| 
       40 
33 
     | 
    
         
             
                      notification_title: Опрос <a href="%{resource_path}">%{resource_title}</a> в <a href="%{participatory_space_url}">%{participatory_space_title}</a> теперь открыт.
         
     | 
| 
       41 
34 
     | 
    
         
             
                surveys:
         
     | 
| 
       42 
35 
     | 
    
         
             
                  admin:
         
     | 
| 
       43 
     | 
    
         
            -
                    exports:
         
     | 
| 
       44 
     | 
    
         
            -
                      survey_user_answers: Ответы участников на опрос
         
     | 
| 
       45 
36 
     | 
    
         
             
                    surveys:
         
     | 
| 
       46 
37 
     | 
    
         
             
                      update:
         
     | 
| 
       47 
38 
     | 
    
         
             
                        invalid: При попытке сохранить опрос произошли ошибки.
         
     | 
| 
       48 
39 
     | 
    
         
             
                        success: Опрос успешно сохранен.
         
     | 
| 
       49 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       50 
     | 
    
         
            -
                    answer:
         
     | 
| 
       51 
     | 
    
         
            -
                      invalid: При прохождении опроса произошли ошибки.
         
     | 
| 
       52 
     | 
    
         
            -
                      success: Опрос успешно пройден.
         
     | 
    
        data/config/locales/sk.yml
    CHANGED
    
    | 
         @@ -11,16 +11,9 @@ sk: 
     | 
|
| 
       11 
11 
     | 
    
         
             
                    few: Prieskumy
         
     | 
| 
       12 
12 
     | 
    
         
             
                    many: Prieskumy
         
     | 
| 
       13 
13 
     | 
    
         
             
                    other: Prieskumy
         
     | 
| 
       14 
     | 
    
         
            -
                  decidim/surveys/survey_answer:
         
     | 
| 
       15 
     | 
    
         
            -
                    one: Odpoveď
         
     | 
| 
       16 
     | 
    
         
            -
                    few: Odpovede
         
     | 
| 
       17 
     | 
    
         
            -
                    many: Odpovede
         
     | 
| 
       18 
     | 
    
         
            -
                    other: Odpovede
         
     | 
| 
       19 
14 
     | 
    
         
             
              decidim:
         
     | 
| 
       20 
15 
     | 
    
         
             
                components:
         
     | 
| 
       21 
16 
     | 
    
         
             
                  surveys:
         
     | 
| 
       22 
     | 
    
         
            -
                    actions:
         
     | 
| 
       23 
     | 
    
         
            -
                      answer: Odpovedať
         
     | 
| 
       24 
17 
     | 
    
         
             
                    settings:
         
     | 
| 
       25 
18 
     | 
    
         
             
                      global:
         
     | 
| 
       26 
19 
     | 
    
         
             
                        announcement: Oznámenie
         
     | 
| 
         @@ -38,20 +31,9 @@ sk: 
     | 
|
| 
       38 
31 
     | 
    
         
             
                      email_outro: Túto notifikáciu ste dostali, pretože sledujete %{participatory_space_title}. Notifikácie môžete zrušiť po kliknutí na predchádzajúci odkaz.
         
     | 
| 
       39 
32 
     | 
    
         
             
                      email_subject: Nový prieskum v %{participatory_space_title}
         
     | 
| 
       40 
33 
     | 
    
         
             
                      notification_title: Prieskum <a href="%{resource_path}">%{resource_title}</a> v <a href="%{participatory_space_url}">%{participatory_space_title}</a> bol práve otvorený.
         
     | 
| 
       41 
     | 
    
         
            -
                metrics:
         
     | 
| 
       42 
     | 
    
         
            -
                  survey_answers:
         
     | 
| 
       43 
     | 
    
         
            -
                    description: Počet prieskumov, na ktoré odpovedali účastníci
         
     | 
| 
       44 
     | 
    
         
            -
                    object: odpovede na prieskumy
         
     | 
| 
       45 
     | 
    
         
            -
                    title: Odpovede na prieskumy
         
     | 
| 
       46 
34 
     | 
    
         
             
                surveys:
         
     | 
| 
       47 
35 
     | 
    
         
             
                  admin:
         
     | 
| 
       48 
     | 
    
         
            -
                    exports:
         
     | 
| 
       49 
     | 
    
         
            -
                      survey_user_answers: Odpovede účastníkov prieskumu
         
     | 
| 
       50 
36 
     | 
    
         
             
                    surveys:
         
     | 
| 
       51 
37 
     | 
    
         
             
                      update:
         
     | 
| 
       52 
38 
     | 
    
         
             
                        invalid: Vyskytol sa problém s ukladaním prieskumu.
         
     | 
| 
       53 
39 
     | 
    
         
             
                        success: Prieskum úspešne uložený.
         
     | 
| 
       54 
     | 
    
         
            -
                  surveys:
         
     | 
| 
       55 
     | 
    
         
            -
                    answer:
         
     | 
| 
       56 
     | 
    
         
            -
                      invalid: Vyskytol sa problém s odpovedaním na prieskum.
         
     | 
| 
       57 
     | 
    
         
            -
                      success: Odpoveď úspešne zaznamenaná.
         
     |