decidim-core 0.31.5 → 0.31.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/amendable/amend_button_card/show.erb +2 -2
  3. data/app/cells/decidim/author_cell.rb +0 -4
  4. data/app/cells/decidim/card_metadata_cell.rb +1 -1
  5. data/app/cells/decidim/comments_button_cell.rb +9 -1
  6. data/app/cells/decidim/content_blocks/cta_settings_form/show.erb +1 -1
  7. data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +2 -2
  8. data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -1
  9. data/app/cells/decidim/content_blocks/highlighted_content_banner_settings_form/show.erb +1 -1
  10. data/app/cells/decidim/content_blocks/highlighted_participatory_spaces_cell.rb +1 -1
  11. data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +1 -1
  12. data/app/cells/decidim/content_blocks/static_page/section_settings_form/show.erb +3 -1
  13. data/app/cells/decidim/content_blocks/static_page/summary_settings_form/show.erb +3 -1
  14. data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
  15. data/app/cells/decidim/data_consent/category.erb +20 -33
  16. data/app/cells/decidim/footer_topics/show.erb +5 -8
  17. data/app/cells/decidim/participatory_space_dropdown_metadata/links.erb +1 -1
  18. data/app/cells/decidim/resource_types_filter/show.erb +2 -2
  19. data/app/cells/decidim/share_widget/qr_code_modal.erb +1 -1
  20. data/app/commands/decidim/destroy_account.rb +12 -1
  21. data/app/commands/decidim/multiple_attachments_methods.rb +28 -27
  22. data/app/controllers/concerns/decidim/devise_controllers.rb +10 -0
  23. data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
  24. data/app/helpers/decidim/menu_helper.rb +0 -2
  25. data/app/jobs/decidim/process_inactive_participant_job.rb +0 -7
  26. data/app/mailers/decidim/delete_user_mailer.rb +14 -0
  27. data/app/mailers/decidim/participants_account_mailer.rb +0 -16
  28. data/app/models/decidim/moderation.rb +1 -1
  29. data/app/models/decidim/participatory_space_private_user.rb +1 -1
  30. data/app/models/decidim/user.rb +2 -2
  31. data/app/models/decidim/user_base_entity.rb +17 -2
  32. data/app/models/decidim/user_moderation.rb +1 -1
  33. data/app/packs/src/decidim/controllers/accordion/accordion.test.js +196 -42
  34. data/app/packs/src/decidim/controllers/accordion/controller.js +93 -17
  35. data/app/packs/src/decidim/controllers/dropdown/controller.js +6 -0
  36. data/app/packs/src/decidim/controllers/dropdown/dropdown.test.js +28 -0
  37. data/app/packs/src/decidim/controllers/form_validator/form_validator.js +6 -6
  38. data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +23 -1
  39. data/app/packs/src/decidim/controllers/mention/controller.js +296 -140
  40. data/app/packs/src/decidim/controllers/mention/input_mentions.test.js +120 -457
  41. data/app/packs/src/decidim/controllers/multiple_mentions/controller.js +68 -32
  42. data/app/packs/src/decidim/controllers/multiple_mentions/input_multiple_mentions.test.js +30 -23
  43. data/app/packs/src/decidim/controllers/password_toggler/controller.js +22 -1
  44. data/app/packs/src/decidim/controllers/password_toggler/password_toggler.test.js +11 -20
  45. data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
  46. data/app/packs/src/decidim/direct_uploads/upload_modal.js +12 -7
  47. data/app/packs/src/decidim/geocoding/reverse_geocoding.js +15 -5
  48. data/app/packs/src/decidim/geocoding/reverse_geocoding.test.js +197 -0
  49. data/app/packs/src/decidim/index.js +4 -3
  50. data/app/packs/src/decidim/map/controller.js +10 -1
  51. data/app/packs/src/decidim/refactor/moved/focus_guard.js +12 -12
  52. data/app/packs/src/decidim/refactor/moved/focus_guard.test.js +136 -0
  53. data/app/packs/src/decidim/sw/sw.js +1 -1
  54. data/app/packs/src/decidim/utilities/text.js +6 -6
  55. data/app/packs/stylesheets/decidim/_cards.scss +1 -1
  56. data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
  57. data/app/packs/stylesheets/decidim/_cookies.scss +13 -5
  58. data/app/packs/stylesheets/decidim/_documents.scss +1 -1
  59. data/app/packs/stylesheets/decidim/_editor_suggestions.scss +49 -0
  60. data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
  61. data/app/packs/stylesheets/decidim/_footer.scss +33 -1
  62. data/app/packs/stylesheets/decidim/_participatory_spaces.scss +1 -1
  63. data/app/packs/stylesheets/decidim/_tom_select.scss +23 -0
  64. data/app/packs/stylesheets/decidim/application.scss +2 -0
  65. data/app/packs/stylesheets/decidim/editor.scss +2 -33
  66. data/app/packs/stylesheets/decidim/geocoding_addons.scss +10 -2
  67. data/app/presenters/decidim/footer_menu_presenter.rb +2 -4
  68. data/app/presenters/decidim/menu_item_presenter.rb +9 -3
  69. data/app/presenters/decidim/stats_presenter.rb +1 -1
  70. data/app/resolvers/decidim/meta_image_url_resolver.rb +7 -0
  71. data/app/uploaders/decidim/image_uploader.rb +1 -1
  72. data/app/views/decidim/delete_user_mailer/delete.html.erb +6 -0
  73. data/app/views/decidim/gamification/badges/index.html.erb +1 -1
  74. data/app/views/decidim/homepage/show.html.erb +1 -1
  75. data/app/views/decidim/last_activities/index.html.erb +1 -1
  76. data/app/views/decidim/messaging/conversations/_error_modal.html.erb +11 -19
  77. data/app/views/decidim/messaging/conversations/error.js.erb +12 -7
  78. data/app/views/decidim/newsletters/unsubscribe.html.erb +1 -1
  79. data/app/views/decidim/offline/show.html.erb +1 -1
  80. data/app/views/decidim/pages/index.html.erb +1 -1
  81. data/app/views/decidim/profiles/show.html.erb +1 -1
  82. data/app/views/decidim/searches/_filters.html.erb +1 -1
  83. data/app/views/decidim/shared/_resource_actions.html.erb +4 -4
  84. data/app/views/decidim/user_activities/index.html.erb +1 -1
  85. data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
  86. data/app/views/layouts/decidim/footer/_main.html.erb +1 -1
  87. data/app/views/layouts/decidim/footer/_main_links.html.erb +56 -28
  88. data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
  89. data/app/views/layouts/decidim/shared/_layout_center.html.erb +1 -1
  90. data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
  91. data/app/views/layouts/decidim/shared/_layout_two_col.html.erb +1 -1
  92. data/config/locales/ar.yml +0 -25
  93. data/config/locales/bg.yml +0 -25
  94. data/config/locales/ca-IT.yml +37 -33
  95. data/config/locales/ca.yml +37 -33
  96. data/config/locales/cs.yml +12 -31
  97. data/config/locales/de.yml +5 -42
  98. data/config/locales/el.yml +0 -22
  99. data/config/locales/en.yml +36 -32
  100. data/config/locales/es-MX.yml +36 -32
  101. data/config/locales/es-PY.yml +36 -32
  102. data/config/locales/es.yml +36 -32
  103. data/config/locales/eu.yml +72 -70
  104. data/config/locales/fi-plain.yml +37 -32
  105. data/config/locales/fi.yml +37 -32
  106. data/config/locales/fr-CA.yml +16 -28
  107. data/config/locales/fr.yml +16 -28
  108. data/config/locales/gl.yml +0 -22
  109. data/config/locales/hu.yml +0 -22
  110. data/config/locales/id-ID.yml +0 -21
  111. data/config/locales/is-IS.yml +0 -6
  112. data/config/locales/it.yml +1 -20
  113. data/config/locales/ja.yml +52 -44
  114. data/config/locales/lb.yml +0 -23
  115. data/config/locales/lt.yml +0 -24
  116. data/config/locales/lv.yml +0 -21
  117. data/config/locales/nl.yml +0 -23
  118. data/config/locales/no.yml +0 -23
  119. data/config/locales/pl.yml +4 -27
  120. data/config/locales/pt-BR.yml +2 -40
  121. data/config/locales/pt.yml +0 -23
  122. data/config/locales/ro-RO.yml +1 -32
  123. data/config/locales/ru.yml +0 -8
  124. data/config/locales/sk.yml +1 -39
  125. data/config/locales/sv.yml +6 -36
  126. data/config/locales/tr-TR.yml +0 -24
  127. data/config/locales/uk.yml +0 -6
  128. data/config/locales/zh-CN.yml +0 -21
  129. data/config/locales/zh-TW.yml +0 -24
  130. data/db/migrate/20250217192438_convert_user_groups_into_users.rb +3 -2
  131. data/decidim-core.gemspec +3 -0
  132. data/lib/decidim/api/functions/user_entity_list.rb +2 -0
  133. data/lib/decidim/attachment_attributes.rb +58 -9
  134. data/lib/decidim/command.rb +1 -1
  135. data/lib/decidim/content_renderers/base_renderer.rb +112 -0
  136. data/lib/decidim/content_renderers/blob_renderer.rb +4 -7
  137. data/lib/decidim/content_renderers/mention_resource_renderer.rb +10 -6
  138. data/lib/decidim/content_renderers/resource_renderer.rb +16 -7
  139. data/lib/decidim/content_renderers/user_renderer.rb +11 -9
  140. data/lib/decidim/core/content_blocks/registry_manager.rb +4 -4
  141. data/lib/decidim/core/engine.rb +8 -0
  142. data/lib/decidim/core/test/factories.rb +3 -0
  143. data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +10 -10
  144. data/lib/decidim/core/test/shared_examples/amendable/amendment_event_examples.rb +2 -2
  145. data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +3 -3
  146. data/lib/decidim/core/test/shared_examples/comments_examples.rb +32 -6
  147. data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +2 -1
  148. data/lib/decidim/core/test/shared_examples/resource_liked_event_examples.rb +3 -3
  149. data/lib/decidim/core/version.rb +1 -1
  150. data/lib/decidim/core.rb +1 -1
  151. data/lib/decidim/map/autocomplete.rb +4 -3
  152. data/lib/decidim/map/dynamic_map.rb +3 -1
  153. data/lib/decidim/searchable.rb +5 -0
  154. data/lib/decidim/view_model.rb +1 -1
  155. data/lib/tasks/decidim_mailers_tasks.rake +31 -9
  156. metadata +32 -10
  157. data/app/commands/decidim/gallery_methods.rb +0 -107
  158. data/app/packs/src/decidim/vendor/tribute.js +0 -1890
  159. data/app/packs/stylesheets/decidim/_tribute.scss +0 -36
  160. data/app/views/decidim/participants_account_mailer/removal_notification.html.erb +0 -11
@@ -148,9 +148,6 @@ id:
148
148
  back: Kembali
149
149
  heading: Tinjau amandemennya
150
150
  send: Terima amandemen
151
- wizard_step_form:
152
- steps:
153
- '1': Buat amandemen Anda
154
151
  anonymous_user: Anonim
155
152
  application:
156
153
  documents:
@@ -301,13 +298,9 @@ id:
301
298
  affected_user:
302
299
  email_intro: 'Amendemen telah diterima untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
303
300
  email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah seorang pengarang %{amendable_title}.
304
- email_subject: Amandemen diterima untuk %{amendable_title} dari %{emendation_author_nickname}
305
- notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah diterima untuk <a href="%{amendable_path}">%{amendable_title}</a>.
306
301
  follower:
307
302
  email_intro: 'Amendemen telah diterima untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
308
303
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{amendable_title}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
309
- email_subject: Amandemen diterima untuk %{amendable_title} dari %{emendation_author_nickname}
310
- notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah diterima untuk <a href="%{amendable_path}">%{amendable_title}</a>.
311
304
  amendment_created:
312
305
  affected_user:
313
306
  email_intro: 'Sebuah perubahan baru telah dibuat untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
@@ -323,24 +316,16 @@ id:
323
316
  affected_user:
324
317
  email_intro: 'Suatu emendasi yang ditolak untuk %{amendable_title} telah dipromosikan menjadi independen %{amendable_type}. Anda dapat melihatnya dari halaman ini:'
325
318
  email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah seorang pengarang %{amendable_title}.
326
- email_subject: Amandemen dari %{emendation_author_nickname} telah diterbitkan sebagai %{amendable_type}baru
327
- notification_title: Amandemen</a> <a href="%{emendation_path}">ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a> telah dipublikasikan sebagai %{amendable_type} baru oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>
328
319
  follower:
329
320
  email_intro: 'Suatu emendasi yang ditolak untuk %{amendable_title} telah dipromosikan menjadi independen %{amendable_type}. Anda dapat melihatnya dari halaman ini:'
330
321
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{amendable_title}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
331
- email_subject: Amandemen dari %{emendation_author_nickname} telah diterbitkan sebagai %{amendable_type}baru
332
- notification_title: Amandemen</a> <a href="%{emendation_path}">ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a> telah dipublikasikan sebagai %{amendable_type} baru oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>
333
322
  amendment_rejected:
334
323
  affected_user:
335
324
  email_intro: 'Amendemen telah ditolak untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
336
325
  email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah seorang pengarang %{amendable_title}.
337
- email_subject: Amandemen ditolak untuk %{amendable_title} dari %{emendation_author_nickname}
338
- notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a>.
339
326
  follower:
340
327
  email_intro: 'Amendemen telah ditolak untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
341
328
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{amendable_title}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
342
- email_subject: Amandemen ditolak untuk %{amendable_title} dari %{emendation_author_nickname}
343
- notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a>.
344
329
  attachments:
345
330
  attachment_created:
346
331
  email_intro: 'Dokumen baru telah ditambahkan ke %{resource_title}. Anda dapat melihatnya dari halaman ini:'
@@ -363,12 +348,6 @@ id:
363
348
  email_outro: Anda telah menerima pemberitahuan ini karena Anda melakukan aktivitas di situs web kami.
364
349
  level_up:
365
350
  email_outro: Anda telah menerima pemberitahuan ini karena Anda melakukan aktivitas di situs web kami.
366
- users:
367
- profile_updated:
368
- email_intro: Halaman <a href="%{resource_url}">profil</a> dari %{name} (%{nickname}), yang Anda ikuti, telah diperbarui.
369
- email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{nickname}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
370
- email_subject: "%{nickname} memperbarui profil mereka"
371
- notification_title: Halaman <a href="%{resource_path}">profil</a> dari %{name} (%{nickname}), yang Anda ikuti, telah diperbarui.
372
351
  export_mailer:
373
352
  download_your_data_export:
374
353
  download: Unduh
@@ -172,12 +172,6 @@ is:
172
172
  email_intro: 'Það hefur verið uppfært í "%{resource_title}". Þú getur séð það frá þessari síðu:'
173
173
  email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með "%{resource_title}". Þú getur sleppt því frá fyrri tengilinn.
174
174
  email_subject: Uppfærsla á %{resource_title}
175
- users:
176
- profile_updated:
177
- email_intro: <a href="%{resource_url}">prófíl síðu</a> af %{name} (%{nickname}), sem þú fylgist með, hefur verið uppfærð.
178
- email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með %{nickname}. Þú getur hætt við að fá tilkynningar eftir fyrri tengilinn.
179
- email_subject: "%{nickname} uppfærði prófílinn sinn"
180
- notification_title: <a href="%{resource_path}">prófíl síðu</a> af %{name} (%{nickname}), sem þú fylgist með, hefur verið uppfærð.
181
175
  export_mailer:
182
176
  subject: Útflutningur þinn "%{name}" er tilbúinn
183
177
  filters:
@@ -328,7 +328,7 @@ it:
328
328
  success: Bozza emendamento aggiornata correttamente.
329
329
  wizard_step_form:
330
330
  steps:
331
- '1': Crea il tuo emendamento
331
+ '2': Pubblica la tua rettifica
332
332
  anonymous_user: Anonimo
333
333
  application:
334
334
  document:
@@ -428,7 +428,6 @@ it:
428
428
  global:
429
429
  amendments_enabled: Emendamenti abilitati
430
430
  comments_enabled: Commenti abilitati
431
- comments_max_length: Lunghezza massima dei commenti
432
431
  dummy_global_attribute1: Attributo fittizio 1
433
432
  dummy_global_attribute2: Attributo fittizio 2
434
433
  dummy_global_translatable_text: Testo traducibile Dummy
@@ -542,13 +541,9 @@ it:
542
541
  affected_user:
543
542
  email_intro: 'Un''emendamento è stato accettato per %{amendable_title}. Puoi vederlo da questa pagina:'
544
543
  email_outro: Hai ricevuto questa notifica perché sei un autore di %{amendable_title}.
545
- email_subject: Un emendamento accettato per %{amendable_title} %{emendation_author_nickname}
546
- notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stato accettato per <a href="%{amendable_path}">%{amendable_title}</a>.
547
544
  follower:
548
545
  email_intro: 'Un''emendamento è stato accettato per %{amendable_title}. Puoi vederlo da questa pagina:'
549
546
  email_outro: Hai ricevuto questa notifica perché stai seguendo %{amendable_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
550
- email_subject: Un emendamento accettato per %{amendable_title} %{emendation_author_nickname}
551
- notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stato accettato per <a href="%{amendable_path}">%{amendable_title}</a>.
552
547
  amendment_created:
553
548
  affected_user:
554
549
  email_intro: 'Una nuova emendazione è stata creata per %{amendable_title}. Puoi vederlo da questa pagina:'
@@ -564,24 +559,16 @@ it:
564
559
  affected_user:
565
560
  email_intro: 'Un emendamento respinto per %{amendable_title} è stato promosso a un indipendente %{amendable_type}. Puoi vederlo da questa pagina:'
566
561
  email_outro: Hai ricevuto questa notifica perché sei un autore di %{amendable_title}.
567
- email_subject: Un emendamento da %{emendation_author_nickname} è stato pubblicato come nuovo %{amendable_type}
568
- notification_title: A <a href="%{emendation_path}">respinto modifica</a> per <a href="%{amendable_path}">%{amendable_title}</a> è stato pubblicato come nuovo %{amendable_type} da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
569
562
  follower:
570
563
  email_intro: 'Un emendamento respinto per %{amendable_title} è stato promosso a un indipendente %{amendable_type}. Puoi vederlo da questa pagina:'
571
564
  email_outro: Hai ricevuto questa notifica perché stai seguendo %{amendable_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
572
- email_subject: Un emendamento da %{emendation_author_nickname} è stato pubblicato come nuovo %{amendable_type}
573
- notification_title: A <a href="%{emendation_path}">respinto modifica</a> per <a href="%{amendable_path}">%{amendable_title}</a> è stato pubblicato come nuovo %{amendable_type} da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
574
565
  amendment_rejected:
575
566
  affected_user:
576
567
  email_intro: 'Un''emissione è stata rifiutata per %{amendable_title}. Puoi vederlo da questa pagina:'
577
568
  email_outro: Hai ricevuto questa notifica perché sei un autore di %{amendable_title}.
578
- email_subject: Un emendamento respinto per %{amendable_title} %{emendation_author_nickname}
579
- notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stata rifiutata per <a href="%{amendable_path}">%{amendable_title}</a>.
580
569
  follower:
581
570
  email_intro: 'Un''emissione è stata rifiutata per %{amendable_title}. Puoi vederlo da questa pagina:'
582
571
  email_outro: Hai ricevuto questa notifica perché stai seguendo %{amendable_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
583
- email_subject: Un emendamento respinto per %{amendable_title} %{emendation_author_nickname}
584
- notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stata rifiutata per <a href="%{amendable_path}">%{amendable_title}</a>.
585
572
  attachments:
586
573
  attachment_created:
587
574
  email_intro: 'Un nuovo documento è stato aggiunto a %{resource_title}. Puoi vederlo da questa pagina:'
@@ -613,11 +600,6 @@ it:
613
600
  Un amministratore ha rimosso il tuo %{resource_type} perché è stato segnalato come %{report_reasons}.</br>
614
601
  <i>%{resource_content}</i>
615
602
  users:
616
- profile_updated:
617
- email_intro: La pagina <a href="%{resource_url}">profilo</a> di %{name} (%{nickname}), che stai seguendo, è stata aggiornata.
618
- email_outro: Hai ricevuto questa notifica perché stai seguendo %{nickname}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
619
- email_subject: "%{nickname} ha aggiornato il proprio profilo"
620
- notification_title: La pagina <a href="%{resource_path}">profilo</a> di %{name} (%{nickname}), che stai seguendo, è stata aggiornata.
621
603
  user_officialized:
622
604
  email_subject: ""
623
605
  export_mailer:
@@ -754,7 +736,6 @@ it:
754
736
  modal_title: Nuova conversazione
755
737
  no_results: Nessun risultato
756
738
  error_modal:
757
- close: Chiudi modalità
758
739
  correct_errors: Correggi gli errori e riprova.
759
740
  intro: 'Ci sono stati i seguenti errori con il tuo messaggio:'
760
741
  ok: Ok
@@ -409,8 +409,8 @@ ja:
409
409
  success: 修正を撤回しました。
410
410
  wizard_step_form:
411
411
  steps:
412
- '1': 修正を作成する
413
- '2': 修正を公開
412
+ '1': 修正内容を作成する
413
+ '2': 修正内容を公開
414
414
  anonymous_user: 匿名です
415
415
  application:
416
416
  document:
@@ -540,7 +540,7 @@ ja:
540
540
  global:
541
541
  amendments_enabled: 修正を有効にする
542
542
  comments_enabled: コメントを有効にする
543
- comments_max_length: コメント最大長
543
+ comments_max_length: 各コメントの最大文字数
544
544
  define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
545
545
  dummy_global_attribute1: ダミーステータス1
546
546
  dummy_global_attribute2: ダミーステータス2
@@ -647,6 +647,13 @@ ja:
647
647
  all: すべて
648
648
  filter_taxonomy_values:
649
649
  all: すべて
650
+ delete_user_mailer:
651
+ delete:
652
+ body_1: アカウントは無効化されており、現在アクセスできません。あなたの個人データは、本サービスのデータ保持ポリシーに従い、永久削除される予定です。
653
+ body_2: セキュリティ上の理由から、一部の認証関連データは保持されます。新たにアカウントを作成し、再度認証を行った場合、これらのデータが新規アカウントに紐付けられる可能性があります。
654
+ greetings_html: よろしくお願いいたします。<br/><a href="%{organization_url}">%{organization_name}</a>
655
+ hello: こんにちは %{username} さん、
656
+ subject: アカウントは削除されました
650
657
  devise:
651
658
  omniauth_registrations:
652
659
  create:
@@ -859,13 +866,13 @@ ja:
859
866
  affected_user:
860
867
  email_intro: '%{amendable_title}の修正が承認されました。このページから確認できます:'
861
868
  email_outro: あなたは %{amendable_title} の作成者であるため、この通知を受け取りました。
862
- email_subject: '%{amendable_title} から %{emendation_author_nickname} の修正を承認しました'
863
- notification_title: <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> が作成した <a href="%{emendation_path}">修正</a> が <a href="%{amendable_path}">%{amendable_title}</a> に採用されました。
869
+ email_subject: '%{amendable_title} に対する %{emendation_author_name} からの修正内容を承認しました'
870
+ notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> によって作成された<a href="%{emendation_path}">修正案</a>が、<a href="%{amendable_path}">%{amendable_title}</a> に対して承認されました。
864
871
  follower:
865
872
  email_intro: '%{amendable_title}の修正が承認されました。このページから確認できます:'
866
- email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
867
- email_subject: '%{amendable_title} から %{emendation_author_nickname} の修正を承認しました'
868
- notification_title: <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> が作成した <a href="%{emendation_path}">修正</a> が <a href="%{amendable_path}">%{amendable_title}</a> に採用されました。
873
+ email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
874
+ email_subject: '%{amendable_title} に対する %{emendation_author_name} からの修正内容を承認しました'
875
+ notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> が作成した <a href="%{emendation_path}">修正内容</a> が <a href="%{amendable_path}">%{amendable_title}</a> に採用されました。
869
876
  amendment_created:
870
877
  affected_user:
871
878
  email_intro: '%{amendable_title}の新しい修正が作成されました。このページから確認できます:'
@@ -874,36 +881,36 @@ ja:
874
881
  notification_title: <a href="%{amendable_path}">%{amendable_title}</a> の新しい修正が作成されました。
875
882
  follower:
876
883
  email_intro: '%{amendable_title}の新しい修正が作成されました。このページから確認できます:'
877
- email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
884
+ email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
878
885
  email_subject: '%{amendable_title} の新しい修正'
879
886
  notification_title: <a href="%{amendable_path}">%{amendable_title}</a> の新しい修正が作成されました。
880
887
  amendment_promoted:
881
888
  affected_user:
882
889
  email_intro: '%{amendable_title} の修正が却下されました。新しい %{amendable_type}として公開されました。このページから見ることができます:'
883
890
  email_outro: あなたは %{amendable_title} の作成者であるため、この通知を受け取りました。
884
- email_subject: '%{emendation_author_nickname} からの修正が新しい %{amendable_type} として公開されました'
885
- notification_title: <a href="%{amendable_path}">%{amendable_title}</a>についての<a href="%{emendation_path}">却下された修正</a> が新しい %{amendable_type} として <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>によって公開されました.
891
+ email_subject: '%{emendation_author_name}による修正が新しい%{amendable_type}として公開されました'
892
+ notification_title: <a href="%{amendable_path}">%{amendable_title}</a>に対する<a href="%{emendation_path}">却下された修正案</a>が、<a href="%{emendation_author_path}">%{emendation_author_name}</a>によって新しい%{amendable_type}として公開されました。
886
893
  follower:
887
894
  email_intro: '%{amendable_title} の修正が却下されました。新しい %{amendable_type}として公開されました。このページから見ることができます:'
888
- email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
889
- email_subject: '%{emendation_author_nickname} からの修正が新しい %{amendable_type} として公開されました'
890
- notification_title: <a href="%{amendable_path}">%{amendable_title}</a>についての<a href="%{emendation_path}">却下された修正</a>が新しい%{amendable_type} として <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>によって公開されました.
895
+ email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
896
+ email_subject: '%{emendation_author_name} による修正が新しい %{amendable_type} として公開されました'
897
+ notification_title: <a href="%{amendable_path}">%{amendable_title}</a>に対する<a href="%{emendation_path}">却下された修正案</a>が、<a href="%{emendation_author_path}">%{emendation_author_name}</a>によって新しい%{amendable_type}として公開されました。
891
898
  amendment_rejected:
892
899
  affected_user:
893
900
  email_intro: '%{amendable_title}の修正が拒否されました。このページから確認できます:'
894
901
  email_outro: あなたは %{amendable_title} の作成者であるため、この通知を受け取りました。
895
- email_subject: '%{amendable_title} から %{emendation_author_nickname} の修正が却下されました'
896
- notification_title: <a href="%{emendation_path}">修正</a> <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> によって作成された <a href="%{amendable_path}">%{amendable_title}</a> は拒否されました。
902
+ email_subject: '%{amendable_title}に対する修正案が %{emendation_author_name} によって却下されました'
903
+ notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> が作成した<a href="%{emendation_path}">修正案</a>が、<a href="%{amendable_path}">%{amendable_title}</a> に対して承認されました。
897
904
  follower:
898
905
  email_intro: '%{amendable_title}の修正が拒否されました。このページから確認できます:'
899
- email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
900
- email_subject: '%{amendable_title} から %{emendation_author_nickname} の修正が却下されました'
901
- notification_title: <a href="%{emendation_path}">修正</a> <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> によって作成された <a href="%{amendable_path}">%{amendable_title}</a> は拒否されました。
906
+ email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
907
+ email_subject: '%{amendable_title}に対する修正案が %{emendation_author_name} によって却下されました'
908
+ notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> が作成した<a href="%{emendation_path}">修正案</a>が、<a href="%{amendable_path}">%{amendable_title}</a> に対して承認されました。
902
909
  emendation_promoted:
903
910
  follower:
904
911
  email_intro: '%{amendable_title}に対する修正案が公開されました。このページから確認できます:'
905
912
  email_outro: あなたは %{amendable_title}の作者であるため、この通知を受け取りました。
906
- email_subject: '%{emendation_author_nickname}による修正案が新しい%{amendable_type}として公開されました'
913
+ email_subject: '%{emendation_author_name}による修正案が新しい%{amendable_type}として公開されました'
907
914
  attachments:
908
915
  attachment_created:
909
916
  email_intro: '%{resource_title}に新しいドキュメントが追加されました。このページから見ることができます:'
@@ -913,13 +920,13 @@ ja:
913
920
  components:
914
921
  component_published:
915
922
  email_intro: '%{resource_title} コンポーネントが %{participatory_space_title}でアクティブになりました。このページから見ることができます:'
916
- email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
923
+ email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
917
924
  email_subject: '%{participatory_space_title} への更新'
918
925
  notification_title: '%{resource_title} コンポーネントが <a href="%{resource_path}">%{participatory_space_title}</a> のためにアクティブになりました'
919
926
  email_event:
920
927
  email_greeting: こんにちは、 %{user_name} さん。
921
928
  email_intro: '"%{resource_title}" の更新がありました。このページから見ることができます:'
922
- email_outro: '「%{resource_title}」をフォローしているため、この通知を受け取りました。前のリンクからこの通知をアンフォローすることができます。'
929
+ email_outro: '「%{resource_title}」をフォローしているため、この通知を受け取りました。上記のリンクからアンフォローすることができます。'
923
930
  email_subject: '%{resource_title} への更新'
924
931
  gamification:
925
932
  badge_earned:
@@ -946,8 +953,8 @@ ja:
946
953
  email_subject: '%{resource_type} は表示されなくなりました'
947
954
  notification_title: |-
948
955
  あなたの%{resource_type}は表示されなくなりました。<br>
949
- これは、あなたが返信した提案、ミーティング、討論、またはコメントがモデレーションされたためです。
950
- 元の投稿が再び表示可能になった場合、あなたのコメントも自動的に復元されます。
956
+ これは、あなたが返信した提案、ミーティング、討論、またはコメントがモデレーションされたためです。
957
+ 元の投稿が再び表示可能になった場合、あなたのコメントも自動的に復元されます。
951
958
  <i>%{resource_content}</i>
952
959
  resource_hidden:
953
960
  email_intro: '%{report_reasons} として報告されたため、管理者が %{resource_type} を削除しました。'
@@ -957,24 +964,24 @@ ja:
957
964
  %{resource_type} として報告されたため、管理者が %{report_reasons} を削除しました。</br>
958
965
  <i>%{resource_content}</i>
959
966
  resource_liked:
960
- email_intro: 'あなたがフォローしている%{liker_name} %{liker_nickname}が「%{resource_title}」をいいねしました。興味深いかもしれないので、ぜひチェックしてご参加ください:'
961
- email_outro: '%{liker_nickname}をフォローしているため、この通知を受信しました。前のリンク先から、通知の受信を停止できます。'
962
- email_subject: "%{liker_nickname} が新しいいいねを実行しました"
963
- notification_title: <a href="%{resource_path}">%{resource_title}</a> %{resource_type} <a href="%{liker_path}">%{liker_name} %{liker_nickname}</a>によっていいねされました。
967
+ email_intro: 'あなたがフォローしている%{liker_name} が「%{resource_title}」をいいねしました。興味深いかもしれないので、ぜひチェックしてご参加ください:'
968
+ email_outro: '%{liker_name} をフォローしているため、この通知が届きました。上記のリンクから通知の受信を停止できます。'
969
+ email_subject: "%{liker_name} が新しいいいねを行いました"
970
+ notification_title: <a href="%{resource_path}">%{resource_title}</a> %{resource_type} <a href="%{liker_path}">%{liker_name} </a>さんがいいねしました。
964
971
  resources:
965
972
  soft_deleted:
966
973
  notification_title: 管理者があなたの "%{resource_type}" " "%{resource_title}" を削除しました。
967
974
  users:
968
975
  profile_updated:
969
- email_intro: あなたがフォロー中の %{name} (%{nickname}) さんの <a href="%{resource_url}">プロフィールページ</a> が更新されました。
970
- email_outro: '%{nickname}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
971
- email_subject: "%{nickname} がプロフィールを更新しました"
972
- notification_title: あなたがフォロー中の %{name} (%{nickname}) さんの <a href="%{resource_path}">プロフィールページ</a> が更新されました。
976
+ email_intro: あなたがフォローしている %{name} さんの <a href="%{resource_url}">プロフィールページ</a>が更新されました。
977
+ email_outro: '%{name}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
978
+ email_subject: "%{name} はプロフィールを更新しました"
979
+ notification_title: あなたがフォローしている %{name} さんの <a href="%{resource_path}">プロフィールページ</a>が更新されました。
973
980
  user_officialized:
974
- email_intro: 参加者 %{name} (%{nickname}) が公式化されました。
981
+ email_intro: 参加者 %{name} が公式化されました。
975
982
  email_outro: あなたは組織の管理者であるため、この通知を受け取りました。
976
983
  email_subject: "%{name} が公式化されました"
977
- notification_title: 参加者 %{name} (%{nickname}) が公式化されました。
984
+ notification_title: 参加者 %{name} が公式化されました。
978
985
  export_mailer:
979
986
  download_your_data_export:
980
987
  click_button_html: 次のリンクをクリックしてデータをダウンロードしてください。<br/>ファイルは %{date} までダウンロードできます。
@@ -1166,6 +1173,8 @@ ja:
1166
1173
  dynamic:
1167
1174
  screen_reader_explanation: 以下の要素は、このページ上のアイテムを地図上のポイントとして表示するマップです。 この要素はスクリーンリーダーで使用することができますが、理解しにくいかもしれません。
1168
1175
  skip_button: 地図をスキップ
1176
+ zoom_in: 拡大
1177
+ zoom_out: 縮小
1169
1178
  static:
1170
1179
  latlng_text: '緯度: %{latitude}, 経度: %{longitude}'
1171
1180
  map_service_brand: OpenStreetMap
@@ -1196,7 +1205,6 @@ ja:
1196
1205
  create:
1197
1206
  error: 会話が開始されませんでした。後ほど改めてお試しください。
1198
1207
  error_modal:
1199
- close: ウィンドウを閉じる
1200
1208
  correct_errors: エラーを修正して、再度お試しください
1201
1209
  intro: 'あなたのメッセージには次のエラーがありました:'
1202
1210
  ok: OK
@@ -1322,6 +1330,7 @@ ja:
1322
1330
  own_activity: 誰かが私の提案にコメントしたり、私に言及したりした時など、自分自身の活動
1323
1331
  push_notifications: プッシュ通知
1324
1332
  push_notifications_reminder: プラットフォームから通知を受け取るには、まずブラウザの設定で通知を許可する必要があります。
1333
+ push_notifications_unsupported_browser: お使いのブラウザはサポートされていません。
1325
1334
  receive_notifications_about: 受け取りたい通知
1326
1335
  update_notifications_settings: 変更を保存
1327
1336
  update:
@@ -1380,7 +1389,7 @@ ja:
1380
1389
  is_root: このタクソノミーが親を持たない場合は True
1381
1390
  name: このタクソノミーの名前
1382
1391
  parent_id: このタクソノミーの親の固有ID(もしあれば)
1383
- part_of: このタクソノミが他のタクソノミの一部であるかどうかを検出するために使用されます
1392
+ part_of: この分類が他の分類の一部であるかどうかを検出するために使用されます
1384
1393
  taxonomizations_count: このタクソノミーを使用するリソースの数
1385
1394
  updated_at: このタクソノミーの最終更新日時
1386
1395
  weight: このタクソノミーが表示される順序
@@ -1496,7 +1505,7 @@ ja:
1496
1505
  participants_account_mailer:
1497
1506
  inactivity_notification:
1498
1507
  body_html: |
1499
- <p>記録によると、あなたは<strong>%{date_account_creation}</strong>に%{organization_name}のアカウントを作成しましたが、<strong>%{date_last_connection}</strong>以降は利用されていないようです。</p> <p>プライバシー保護のため、このアカウントは<strong>%{days}日後</strong>に自動削除される予定です。</p>
1508
+ <p>記録によると、あなたは<strong>%{date_account_creation}</strong>に%{organization_name}のアカウントを作成しましたが、<strong>%{date_last_connection}</strong>以降は利用されていないようです。</p> <p>プライバシー保護のため、このアカウントは<strong>%{days}日後</strong>に自動削除される予定です。</p>
1500
1509
  <p>%{organization_name}のアカウントを保持したい場合は、それまでに%{login_url}にアクセスするだけでアカウントは維持されます。</p>
1501
1510
  greetings_html: |
1502
1511
  よろしくお願いいたします。<br>
@@ -1505,13 +1514,9 @@ ja:
1505
1514
  log_in: ログイン
1506
1515
  never_logged_in: ログインしたことがない
1507
1516
  subject: 非アクティブなアカウントの警告
1508
- removal_notification:
1509
- body: あなたの %{organization_name} アカウントは非アクティブのため削除されました。
1510
- greetings_html: |
1511
- よろしくお願いいたします。<br>
1512
- %{organization_name}
1513
- hello: こんにちは %{username} さん、
1514
- subject: 非アクティブなアカウントが削除されました
1517
+ participatory_space:
1518
+ labels:
1519
+ reference: スペースの参照
1515
1520
  passwords:
1516
1521
  update:
1517
1522
  error: パスワードの更新中に問題が発生しました。
@@ -1801,6 +1806,7 @@ ja:
1801
1806
  nickname_help: ニックネームは %{organization} です。英文字、数字、'-' および '_' のみ使用できます。
1802
1807
  submit_button: 保存
1803
1808
  subtitle: 招待を受け入れる場合は、アカウントIDとパスワードを設定してください。
1809
+ subtitle_no_password: 招待を受け入れる場合は、ニックネームを設定してください。
1804
1810
  invitation_removed: 招待が削除されました。
1805
1811
  invitation_token_invalid: 指定された招待トークンは無効です!
1806
1812
  new:
@@ -1808,6 +1814,8 @@ ja:
1808
1814
  submit_button: 招待状を送信
1809
1815
  no_invitations_remaining: 招待状は残っていません
1810
1816
  send_instructions: '%{email} に招待メールが送信されました。'
1817
+ updated: 招待が承認されました。サインインしています。
1818
+ updated_not_active: 招待が承認されました。
1811
1819
  mailer:
1812
1820
  confirmation_instructions:
1813
1821
  action: アカウントを確認する
@@ -202,9 +202,6 @@ lb:
202
202
  update_draft:
203
203
  error: Et gouf e Problem beim Aktualiséieren vum Ännerungsvirschlag.
204
204
  success: Ännerungsvirschlag gouf aktualiséiert.
205
- wizard_step_form:
206
- steps:
207
- '1': Erstell deng Ännerung
208
205
  anonymous_user: Anonym
209
206
  application:
210
207
  document:
@@ -304,7 +301,6 @@ lb:
304
301
  global:
305
302
  amendments_enabled: Ännerungen aktivéiert
306
303
  comments_enabled: Kommentarer aktiv
307
- comments_max_length: Maximal Längt vun de Kommentären
308
304
  dummy_global_attribute1: Dummy Attribut 1
309
305
  dummy_global_attribute2: Dummy Attribut 2
310
306
  dummy_global_translatable_text: Dummy Text ze iwwersetzen
@@ -407,13 +403,9 @@ lb:
407
403
  affected_user:
408
404
  email_intro: 'Eng Ännerung gouf %{amendable_title} akzeptéiert. Du kanns dat op dëser Säit gesinn:'
409
405
  email_outro: Du hues dës Noriicht kritt well s'du en Auteur vum%{amendable_title} bass.
410
- email_subject: Akzeptéiert Ännerung %{amendable_title} vum %{emendation_author_nickname}
411
- notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf ugeholl.
412
406
  follower:
413
407
  email_intro: 'Eng Ännerung gouf %{amendable_title} akzeptéiert. Du kanns dat op dëser Säit gesinn:'
414
408
  email_outro: Du hues dës Noriicht kritt, well s'du dem %{amendable_title} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
415
- email_subject: Akzeptéiert Ännerung fir %{amendable_title} vum %{emendation_author_nickname}
416
- notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf ugeholl.
417
409
  amendment_created:
418
410
  affected_user:
419
411
  email_intro: 'Eng Ännerung fir %{amendable_title} gouf erstallt. Du kanns dat op dëser Säit gesinn:'
@@ -429,24 +421,16 @@ lb:
429
421
  affected_user:
430
422
  email_intro: 'Eng refuséiert Ännerung am %{amendable_title} gouf als eng nei ënner %{amendable_type} verëffentlecht. Du kanns dat op dëser Säit gesinn:'
431
423
  email_outro: Du hues dës Noriicht kritt well s'du en Auteur vum %{amendable_title} bass.
432
- email_subject: Eng Ännerung vun %{emendation_author_nickname} gouf als nei /n %{amendable_type} verëffentlecht
433
- notification_title: D' <a href="%{emendation_path}">refuséiert Ännerung </a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf als nei verëffentlecht %{amendable_type} duerch <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
434
424
  follower:
435
425
  email_intro: 'Eng refuséiert Ännerung am %{amendable_title} gouf als eng nei ënner %{amendable_type} verëffentlecht. Du kanns dat op dëser Säit gesinn:'
436
426
  email_outro: Du hues dës Noriicht kritt, well s'du dem %{amendable_title} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
437
- email_subject: Eng Ännerung vun %{emendation_author_nickname} gouf als nei /n %{amendable_type} verëffentlecht
438
- notification_title: D' <a href="%{emendation_path}">refuséiert Ännerung </a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf als nei verëffentlecht %{amendable_type} duerch <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
439
427
  amendment_rejected:
440
428
  affected_user:
441
429
  email_intro: 'Eng Ännerung fir %{amendable_title} gouf refuséiert. Du kanns dat op dëser Säit gesinn:'
442
430
  email_outro: Du hues dës Noriicht kritt well s'du en Auteur vum%{amendable_title} bass.
443
- email_subject: Refuséiert Ännerung fir %{amendable_title} vum %{emendation_author_nickname}
444
- notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf refuséiert.
445
431
  follower:
446
432
  email_intro: 'Eng Ännerung fir %{amendable_title} gouf refuséiert. Du kanns dat op dëser Säit gesinn:'
447
433
  email_outro: Du hues dës Noriicht kritt, well s'du dem %{amendable_title} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
448
- email_subject: Refuséiert Ännerung fir %{amendable_title} vum %{emendation_author_nickname}
449
- notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf refuséiert.
450
434
  attachments:
451
435
  attachment_created:
452
436
  email_intro: 'En neit Dokument fir %{resource_title} gouf dru gehaange. Du kanns dat op dëser Säit gesinn:'
@@ -476,12 +460,6 @@ lb:
476
460
  email_subject: Deng %{resource_type} gouf geläscht
477
461
  notification_title: |-
478
462
  En Admin huet däin %{resource_type} geläscht, well en als %{report_reasons}.</br><i>%{resource_content}</i> gemellt gouf
479
- users:
480
- profile_updated:
481
- email_intro: D' <a href="%{resource_url}">Profil-Säit</a> vum </a>%{name} (%{nickname}), där s'du nogees, gouf aktualiséiert.
482
- email_outro: Du hues dës Noriicht kritt, well s'du dem %{nickname} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
483
- email_subject: "%{nickname} huet säin Profil aktualiséiert"
484
- notification_title: D' <a href="%{resource_path}">Profil-Säit</a> vum </a>%{name} (%{nickname}), där s'du nogees, gouf aktualiséiert.
485
463
  export_mailer:
486
464
  download_your_data_export:
487
465
  download: Eroflueden
@@ -613,7 +591,6 @@ lb:
613
591
  modal_title: Nei Konversatioun
614
592
  no_results: Keen Resultat
615
593
  error_modal:
616
- close: Dialog zou maachen
617
594
  correct_errors: Korrigéier w. e. g. dëse Feeler a probéier op en Neits.
618
595
  intro: 'Bei denger Noriicht ass dësen Feeler opgetrueden:'
619
596
  ok: OK
@@ -351,9 +351,6 @@ lt:
351
351
  success: Pataisos juodraštis sėkmingai atnaujintas.
352
352
  withdraw:
353
353
  success: Pataisa sėkmingai atsiimta.
354
- wizard_step_form:
355
- steps:
356
- '1': Sukurkite savo pataisą
357
354
  anonymous_user: Anonimas
358
355
  application:
359
356
  document:
@@ -475,7 +472,6 @@ lt:
475
472
  global:
476
473
  amendments_enabled: Pataisos leidžiamos
477
474
  comments_enabled: Komentarai leidžiami
478
- comments_max_length: Komentarų maksimalus ilgis
479
475
  dummy_global_attribute1: Fiktyvus atributas 1
480
476
  dummy_global_attribute2: Fiktyvus atributas 2
481
477
  dummy_global_translatable_text: Testinis verčiamas tekstas
@@ -645,13 +641,9 @@ lt:
645
641
  affected_user:
646
642
  email_intro: 'Pataisa %{amendable_title} buvo priimta. Galite tai pamatyti:'
647
643
  email_outro: Šį pranešimą gavote dėl to, kad esate %{amendable_title} autorius(-ė).
648
- email_subject: '%{amendable_title} pataisa priimta iš %{emendation_author_nickname}'
649
- notification_title: <a href="%{emendation_path}"><a href="%{emendation_path}">Pataisa</a> sukurta <a href="%{emendation_author_path}"><a href="%{emendation_author_path}">%{emendation_author_nickname}</a> buvo priimta <a href="%{amendable_path}">%{amendable_title}</a>.
650
644
  follower:
651
645
  email_intro: 'Pataisa %{amendable_title} buvo priimta. Galite tai pamatyti:'
652
646
  email_outro: Šį pranešimą gavote dėl to, kad sekate %{amendable_title}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
653
- email_subject: '%{amendable_title} pataisa priimta iš %{emendation_author_nickname}'
654
- notification_title: <a href="%{emendation_path}"><a href="%{emendation_path}">Pataisa</a> sukurta <a href="%{emendation_author_path}"><a href="%{emendation_author_path}">%{emendation_author_nickname}</a> buvo priimta <a href="%{amendable_path}">%{amendable_title}</a>.
655
647
  amendment_created:
656
648
  affected_user:
657
649
  email_intro: 'Nauja pataisa buvo sukurta %{amendable_title}. Galite ją pamatyti šiame puslapyje:'
@@ -667,24 +659,16 @@ lt:
667
659
  affected_user:
668
660
  email_intro: 'Atmesta pataisa %{amendable_title} buvo paskelbta kaip nauja %{amendable_type}. Galite tai pamatyti šiame puslapyje:'
669
661
  email_outro: Šį pranešimą gavote dėl to, kad esate %{amendable_title} autorius(-ė).
670
- email_subject: '%{emendation_author_nickname} parengtas pakeitimas paskelbtas kaip naujas %{amendable_type}'
671
- notification_title: <a href="%{emendation_path}">Atmesta pataisa</a>dėl<a href="%{amendable_path}">%{amendable_title} buvo publikuota kaip nauja%{amendable_type}<a href="%{emendation_author_path}">%{emendation_author_nickname}.
672
662
  follower:
673
663
  email_intro: 'Atmesta pataisa %{amendable_title} buvo paskelbta kaip nauja %{amendable_type}. Galite tai pamatyti šiame puslapyje:'
674
664
  email_outro: Šį pranešimą gavote dėl to, kad sekate %{amendable_title}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
675
- email_subject: '%{emendation_author_nickname} publikavo naują pataisą kaip %{amendable_type}'
676
- notification_title: <a href="%{emendation_path}">Atmesta pataisa</a>dėl<a href="%{amendable_path}">%{amendable_title} buvo publikuota kaip nauja%{amendable_type}<a href="%{emendation_author_path}">%{emendation_author_nickname}.
677
665
  amendment_rejected:
678
666
  affected_user:
679
667
  email_intro: 'Atmesta %{amendable_title} pataisa. Ją galite pamatyti šiame puslapyje:'
680
668
  email_outro: Šį pranešimą gavote dėl to, kad esate %{amendable_title} autorius(-ė).
681
- email_subject: Atmesta %{emendation_author_nickname} parengta %{amendable_title} pataisa
682
- notification_title: <a href="%{emendation_path}">Pataisa</a>sukurta<a href="%{emendation_author_path}">%{emendation_author_nickname}</a>buvo atmesta dėl<a href="%{amendable_path}">%{amendable_title}</a>.
683
669
  follower:
684
670
  email_intro: 'Atmesta %{amendable_title} pataisa. Ją galite pamatyti šiame puslapyje:'
685
671
  email_outro: Šį pranešimą gavote dėl to, kad sekate %{amendable_title}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
686
- email_subject: Atmesta %{emendation_author_nickname} parengta %{amendable_title} pataisa
687
- notification_title: <a href="%{emendation_path}">Pataisa</a>sukurta<a href="%{emendation_author_path}">%{emendation_author_nickname}</a>buvo atmesta dėl<a href="%{amendable_path}">%{amendable_title}</a>.
688
672
  attachments:
689
673
  attachment_created:
690
674
  email_intro: 'Prie %{resource_title} pridėtas naujas dokumentas. Jį galite pamatyti šiame puslapyje:'
@@ -723,16 +707,9 @@ lt:
723
707
  </br>
724
708
  <i>%{resource_content}</i>
725
709
  users:
726
- profile_updated:
727
- email_intro: '%{name} (%{nickname}), profilio puslapis, <a href="%{resource_url}">, kurį sekate</a> buvo atnaujintas.'
728
- email_outro: Šį pranešimą gavote dėl to, kad sekate %{nickname}. Jeigu nebenorite gauti pranešimų, spustelėkite ankstesnę nuorodą.
729
- email_subject: "%{nickname} atnaujino savo profilį"
730
- notification_title: '%{name} (%{nickname}) profilio puslapis, <a href="%{resource_path}">, kurį sekate</a> buvo atnaujintas.'
731
710
  user_officialized:
732
- email_intro: Dalyvis %{name} (%{nickname}) buvo oficializuotas.
733
711
  email_outro: Šį pranešimą gavote dėl to, kad esate organizacijos administratorius.
734
712
  email_subject: "%{name} buvo oficializuotas"
735
- notification_title: Dalyvis %{name} (%{nickname}) buvo oficializuotas.
736
713
  export_mailer:
737
714
  download_your_data_export:
738
715
  download: Atsisiųsti
@@ -923,7 +900,6 @@ lt:
923
900
  create:
924
901
  error: Pokalbis neprasidėjo. Bandykite dar kartą vėliau.
925
902
  error_modal:
926
- close: Uždaryti modalinį langą
927
903
  correct_errors: Ištaisykite klaidas ir bandykite dar kartą.
928
904
  intro: 'Jūsų pranešime aptiktos šios klaidos:'
929
905
  ok: Gerai