decidim-core 0.29.2 → 0.29.3

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 (115) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +5 -3
  3. data/app/cells/decidim/profile_actions/show.erb +1 -1
  4. data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
  5. data/app/cells/decidim/report_button/flag_modal.erb +13 -27
  6. data/app/cells/decidim/report_button_cell.rb +2 -8
  7. data/app/cells/decidim/report_user_button/already_reported_modal.erb +11 -0
  8. data/app/cells/decidim/report_user_button/flag_modal.erb +46 -0
  9. data/app/cells/decidim/report_user_button/show.erb +2 -0
  10. data/app/cells/decidim/report_user_button_cell.rb +59 -0
  11. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  12. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  13. data/app/cells/decidim/user_activity/show.erb +1 -1
  14. data/app/commands/decidim/create_omniauth_registration.rb +14 -8
  15. data/app/commands/decidim/create_report.rb +1 -6
  16. data/app/commands/decidim/search.rb +14 -0
  17. data/app/controllers/decidim/profiles_controller.rb +2 -2
  18. data/app/controllers/decidim/reports_controller.rb +1 -1
  19. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  20. data/app/forms/decidim/account_form.rb +5 -2
  21. data/app/helpers/decidim/orders_helper.rb +2 -1
  22. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  23. data/app/jobs/decidim/hide_child_resources_job.rb +24 -0
  24. data/app/mailers/decidim/reported_mailer.rb +1 -0
  25. data/app/models/decidim/action_log.rb +1 -9
  26. data/app/models/decidim/report.rb +1 -1
  27. data/app/models/decidim/user.rb +0 -4
  28. data/app/models/decidim/user_base_entity.rb +4 -0
  29. data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
  30. data/app/packs/src/decidim/index.js +4 -2
  31. data/app/packs/src/decidim/map/provider/here.js +1 -1
  32. data/app/packs/stylesheets/decidim/_content_blocks.scss +4 -0
  33. data/app/packs/stylesheets/decidim/_hashtags.scss +5 -0
  34. data/app/packs/stylesheets/decidim/_header.scss +11 -5
  35. data/app/packs/stylesheets/decidim/application.scss +1 -0
  36. data/app/presenters/decidim/log/user_presenter.rb +1 -0
  37. data/app/presenters/decidim/user_presenter.rb +1 -1
  38. data/app/services/decidim/base_diff_renderer.rb +2 -0
  39. data/app/services/decidim/static_map_generator.rb +1 -1
  40. data/app/views/decidim/last_activities/index.html.erb +1 -1
  41. data/app/views/decidim/reported_mailer/hide.html.erb +17 -1
  42. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  43. data/app/views/decidim/searches/_count.html.erb +1 -1
  44. data/app/views/decidim/searches/_filters.html.erb +40 -38
  45. data/app/views/decidim/shared/_orders.html.erb +2 -2
  46. data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
  47. data/config/locales/ar.yml +41 -28
  48. data/config/locales/bg.yml +10 -24
  49. data/config/locales/bs-BA.yml +2 -0
  50. data/config/locales/ca-IT.yml +2111 -0
  51. data/config/locales/ca.yml +57 -29
  52. data/config/locales/cs.yml +55 -32
  53. data/config/locales/de.yml +48 -24
  54. data/config/locales/el.yml +10 -15
  55. data/config/locales/en.yml +44 -16
  56. data/config/locales/eo.yml +2 -0
  57. data/config/locales/es-MX.yml +56 -28
  58. data/config/locales/es-PY.yml +61 -33
  59. data/config/locales/es.yml +60 -32
  60. data/config/locales/eu.yml +112 -87
  61. data/config/locales/fi-plain.yml +44 -28
  62. data/config/locales/fi.yml +46 -30
  63. data/config/locales/fr-CA.yml +58 -25
  64. data/config/locales/fr.yml +57 -24
  65. data/config/locales/ga-IE.yml +4 -4
  66. data/config/locales/gl.yml +25 -15
  67. data/config/locales/hu.yml +9 -23
  68. data/config/locales/id-ID.yml +24 -16
  69. data/config/locales/is-IS.yml +10 -1
  70. data/config/locales/it.yml +35 -27
  71. data/config/locales/ja.yml +55 -25
  72. data/config/locales/lb.yml +24 -22
  73. data/config/locales/lt.yml +5 -17
  74. data/config/locales/lv.yml +18 -15
  75. data/config/locales/nl.yml +23 -18
  76. data/config/locales/no.yml +18 -16
  77. data/config/locales/pl.yml +7 -21
  78. data/config/locales/pt-BR.yml +11 -24
  79. data/config/locales/pt.yml +18 -16
  80. data/config/locales/ro-RO.yml +243 -86
  81. data/config/locales/ru.yml +23 -8
  82. data/config/locales/sk.yml +29 -18
  83. data/config/locales/sl.yml +4 -0
  84. data/config/locales/sr-CS.yml +2 -0
  85. data/config/locales/sv.yml +22 -26
  86. data/config/locales/tr-TR.yml +24 -23
  87. data/config/locales/uk.yml +12 -2
  88. data/config/locales/zh-CN.yml +18 -15
  89. data/config/locales/zh-TW.yml +8 -16
  90. data/lib/decidim/asset_router/storage.rb +7 -2
  91. data/lib/decidim/attributes/time_with_zone.rb +5 -1
  92. data/lib/decidim/content_parsers/blob_parser.rb +10 -8
  93. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  94. data/lib/decidim/core/test/shared_examples/reports_examples.rb +48 -6
  95. data/lib/decidim/core/test/shared_examples/social_share_examples.rb +32 -0
  96. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
  97. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
  98. data/lib/decidim/core/version.rb +1 -1
  99. data/lib/decidim/map/provider/dynamic_map/here.rb +1 -40
  100. data/lib/decidim/map/provider/static_map/here.rb +34 -0
  101. data/lib/decidim/moderation_tools.rb +16 -2
  102. data/lib/decidim/nicknamizable.rb +1 -1
  103. data/lib/decidim/reportable.rb +6 -2
  104. data/lib/decidim/translatable_attributes.rb +5 -1
  105. data/lib/tasks/upgrade/clean_hidden_resources.rake +33 -0
  106. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +23 -20
  107. metadata +15 -14
  108. data/app/cells/decidim/author/flag.erb +0 -6
  109. data/app/cells/decidim/author/flag_user.erb +0 -14
  110. data/app/cells/decidim/flag_modal/flag_user.erb +0 -34
  111. data/app/cells/decidim/flag_modal/show.erb +0 -52
  112. data/app/cells/decidim/flag_modal_cell.rb +0 -56
  113. data/app/cells/decidim/profile_sidebar/show.erb +0 -167
  114. data/app/cells/decidim/profile_sidebar_cell.rb +0 -68
  115. data/app/packs/src/decidim/vendor/leaflet-tilelayer-here.js +0 -212
@@ -33,6 +33,8 @@ hu:
33
33
  personal_url: Személyes URL
34
34
  remove_avatar: Avatár eltávolítása
35
35
  tos_agreement: A szolgáltatás felhasználási feltételei
36
+ user_group:
37
+ avatar: Profilkép
36
38
  models:
37
39
  decidim/attachment_created_event: Melléklet
38
40
  decidim/component_published_event: Aktív elem
@@ -500,7 +502,7 @@ hu:
500
502
  metrics:
501
503
  name: Szervezeti mutatók
502
504
  participatory_space_metrics:
503
- name: Mérőszámok
505
+ name: Részvétel számokban
504
506
  participatory_space_stats:
505
507
  name: Statisztikák
506
508
  social_networks_metadata:
@@ -1002,13 +1004,13 @@ hu:
1002
1004
  conversation_mailer:
1003
1005
  comanagers_new_conversation:
1004
1006
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1005
- greeting: Kedves %{recipient}!
1007
+ greeting: Szia %{recipient}!
1006
1008
  intro: "%{manager} egy új beszélgetést indított a(z) %{group} csoport nevében. Kattintson ide a megtekintéshez:"
1007
1009
  outro: Örömteli platform használatot kívánunk!
1008
1010
  subject: "%{manager} egy új beszélgetést indított a(z) %{group} nevében"
1009
1011
  comanagers_new_message:
1010
1012
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1011
- greeting: Kedves %{recipient}!
1013
+ greeting: Szia %{recipient}!
1012
1014
  intro: "%{manager} egy új üzenetet tett közzé egy beszélgetésben a(z) %{group} csoport nevében. Kattintson ide a megtekintéshez:"
1013
1015
  outro: Örömteli platform használatot kívánunk!
1014
1016
  subject: "%{manager} új üzeneteket küldött a(z) %{group} nevében"
@@ -1019,13 +1021,13 @@ hu:
1019
1021
  subject: "%{sender} beszélgetést kezdett veled"
1020
1022
  new_group_conversation:
1021
1023
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1022
- greeting: Kedves %{recipient}!
1024
+ greeting: Szia %{recipient}!
1023
1025
  intro: "%{sender} egy új beszélgetést indított a(z) %{group} csoport nevében. Kattintson ide a megtekintéshez:"
1024
1026
  outro: Örömteli platform használatot kívánunk!
1025
1027
  subject: "%{sender} új beszélgetést indított a(z) %{group} csoporttal"
1026
1028
  new_group_message:
1027
1029
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1028
- greeting: Kedves %{recipient}!
1030
+ greeting: Szia %{recipient}!
1029
1031
  intro: "%{sender} új üzeneteket tett közzé a(z) %{group} csoporttal folytatott beszélgetésben. Kattintson ide a megtekintéshez:"
1030
1032
  outro: Örömteli platform használatot kívánunk!
1031
1033
  subject: "%{group} csoportba új üzenetet küldött %{sender}"
@@ -1053,7 +1055,7 @@ hu:
1053
1055
  no_conversations: Még nem rendelkezik beszélgetésekkel.
1054
1056
  title: Beszélgetések
1055
1057
  reply_form:
1056
- placeholder: Az Ön válasza...
1058
+ placeholder: A válaszod...
1057
1059
  send: Küldés
1058
1060
  show:
1059
1061
  back: Vissza az összes beszélgetéshez
@@ -1076,7 +1078,7 @@ hu:
1076
1078
  followers:
1077
1079
  description: A résztvevők száma, akik ezt a részvételi teret követik
1078
1080
  object: követők
1079
- title: Követők
1081
+ title: Követő
1080
1082
  participants:
1081
1083
  description: Az aktív felhasználók száma a szervezetben
1082
1084
  object: résztvevők
@@ -1245,10 +1247,6 @@ hu:
1245
1247
  members: Belépés
1246
1248
  officialized: Hivatalos résztvevő
1247
1249
  send_private_message: Privát üzenet küldése
1248
- sidebar:
1249
- badges:
1250
- info: A jelvények a platformon végzett konkrét tevékenység végrehajtásával érhetők el.
1251
- title: Kitűzők
1252
1250
  user:
1253
1251
  actions:
1254
1252
  create_user_group: Csoport létrehozása
@@ -1264,16 +1262,7 @@ hu:
1264
1262
  message: Üzenet
1265
1263
  resend_email_confirmation_instructions: E-mail visszaigazolási utasítások újraküldése
1266
1264
  confirmation_instructions_sent: A megerősítő email az utasításokkal elküldve.
1267
- create_user_group: Csoport létrehozása
1268
- edit_profile: Profil szerkesztése
1269
- edit_user_group: Csoportprofil szerkesztése
1270
1265
  fill_in_email_to_confirm_it: Kérjük, töltse ki a csoport e-mailjét a megerősítéshez.
1271
- invite_user: Résztvevő meghívása
1272
- join_user_group: Csatlakozás kérése a csoporthoz
1273
- leave_user_group: Kilépés a csoportból
1274
- manage_user_group_admins: Adminisztrátorok kezelése
1275
- manage_user_group_users: Tagok kezelése
1276
- resend_email_confirmation_instructions: E-mail visszaigazolási utasítások újraküldése
1277
1266
  reported_mailer:
1278
1267
  hide:
1279
1268
  hello: Helló %{name}!
@@ -1362,14 +1351,11 @@ hu:
1362
1351
  flag_user_modal:
1363
1352
  already_reported: Ezt a tartalmat már jelentették, az adminisztrátor éppen felülvizsgálja.
1364
1353
  block: Résztvevő blokkolása
1365
- close: Bezár
1366
- description: Mi nem megfelelő a felhasználóval kapcsolatban?
1367
1354
  does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz, amiről úgy gondolja, nem tartozik ide: %{organization_name}.'
1368
1355
  hide: Minden tartalom elrejtése
1369
1356
  offensive: Rasszizmust, szexizmust, gyalázkodást, személyeskedést, halálos fenyegetést, öngyilkosságra való felhívást vagy gyűlöletbeszédet tartalmaz.
1370
1357
  report: Jelentés
1371
1358
  spam: Klikkvadászat, reklám, átverés vagy script bot.
1372
- title: Nem megfelelően viselkedő felhasználó jelentése
1373
1359
  floating_help:
1374
1360
  help: Segítség
1375
1361
  follow_button:
@@ -29,7 +29,6 @@ id:
29
29
  attributes:
30
30
  decidim/user:
31
31
  current_password: Kata sandi saat ini
32
- email: E-mail
33
32
  name: Nama pengguna
34
33
  password: Kata sandi
35
34
  password_confirmation: konfirmasi kata kunci
@@ -254,6 +253,8 @@ id:
254
253
  view_all: Lihat semua
255
254
  metrics:
256
255
  name: Metrik organisasi
256
+ participatory_space_metrics:
257
+ name: Partisipasi dalam angka
257
258
  stats:
258
259
  name: Statistik organisasi
259
260
  sub_hero:
@@ -554,10 +555,18 @@ id:
554
555
  home: Rumah
555
556
  messaging:
556
557
  conversation_mailer:
558
+ comanagers_new_conversation:
559
+ greeting: Hai, %{recipient}!
560
+ comanagers_new_message:
561
+ greeting: Hai, %{recipient}!
557
562
  new_conversation:
558
563
  greeting: Hai, %{recipient}!
559
564
  intro: "%{sender} telah memulai percakapan baru dengan Anda. Klik di sini untuk melihatnya:"
560
565
  subject: "%{sender} telah memulai percakapan dengan Anda"
566
+ new_group_conversation:
567
+ greeting: Hai, %{recipient}!
568
+ new_group_message:
569
+ greeting: Hai, %{recipient}!
561
570
  new_message:
562
571
  greeting: Hai, %{recipient}!
563
572
  intro: "%{sender} telah memposting pesan baru di percakapan Anda. Klik di sini untuk melihatnya:"
@@ -577,11 +586,9 @@ id:
577
586
  participants:
578
587
  description: Jumlah pengguna aktif dalam organisasi
579
588
  object: peserta
580
- title: Peserta
581
589
  users:
582
590
  description: Jumlah pengguna dalam organisasi
583
591
  object: pengguna
584
- title: Pengguna
585
592
  newsletter_mailer:
586
593
  newsletter:
587
594
  unsubscribe: Untuk memilih tidak menerima jenis email ini, <a href="%{link}" target="_blank" class="unsubscribe">Berhenti Berlangganan</a>.
@@ -655,22 +662,21 @@ id:
655
662
  badges: Lencana
656
663
  followers: Pengikut
657
664
  following: Mengikuti
665
+ group_admins: Kelola admin
666
+ group_members: Kelola anggota
658
667
  groups: Grup
659
668
  members: Anggota
660
- sidebar:
661
- badges:
662
- info: Lencana diperoleh dengan melakukan aktivitas tertentu di platform.
663
- title: Lencana
664
669
  user:
665
- create_user_group: Membuat grup
666
- edit_profile: Edit profil
667
- edit_user_group: Edit profil grup
668
- invite_user: Undang pengguna
669
- join_user_group: Permintaan untuk bergabung dengan grup
670
- leave_user_group: Meninggalkan grup
671
- manage_user_group_admins: Kelola admin
672
- manage_user_group_users: Kelola anggota
673
- resend_email_confirmation_instructions: Kirim ulang instruksi konfirmasi email
670
+ actions:
671
+ create_user_group: Membuat grup
672
+ edit_profile: Edit profil
673
+ edit_user_group: Edit profil grup
674
+ invite_user: Undang pengguna
675
+ join_user_group: Permintaan untuk bergabung dengan grup
676
+ leave_user_group: Meninggalkan grup
677
+ manage_user_group_admins: Kelola admin
678
+ manage_user_group_users: Kelola anggota
679
+ resend_email_confirmation_instructions: Kirim ulang instruksi konfirmasi email
674
680
  reported_mailer:
675
681
  hide:
676
682
  hello: Halo %{name},
@@ -740,6 +746,8 @@ id:
740
746
  statistics:
741
747
  comments_count: Komentar
742
748
  user_conversations:
749
+ reply:
750
+ send: Kirim
743
751
  update:
744
752
  error: Pesan tidak terkirim. Coba lagi nanti
745
753
  user_interests:
@@ -16,7 +16,6 @@ is:
16
16
  attributes:
17
17
  decidim/user:
18
18
  current_password: Núverandi lykilorð
19
- email: Tölvupóstur
20
19
  password: Lykilorð
21
20
  password_confirmation: Staðfesta lykilorð
22
21
  remember_me: Muna eftir mér
@@ -226,10 +225,18 @@ is:
226
225
  home: Heim
227
226
  messaging:
228
227
  conversation_mailer:
228
+ comanagers_new_conversation:
229
+ greeting: Hæ, %{recipient}!
230
+ comanagers_new_message:
231
+ greeting: Hæ, %{recipient}!
229
232
  new_conversation:
230
233
  greeting: Hæ, %{recipient}!
231
234
  intro: "%{sender} hefur byrjað nýtt samtal við þig. Smelltu hér til að sjá það:"
232
235
  subject: "%{sender} hefur byrjað samtal við þig"
236
+ new_group_conversation:
237
+ greeting: Hæ, %{recipient}!
238
+ new_group_message:
239
+ greeting: Hæ, %{recipient}!
233
240
  new_message:
234
241
  greeting: Hæ, %{recipient}!
235
242
  intro: "%{sender} hefur sent ný skilaboð í samtali þínu. Smelltu hér til að sjá þær:"
@@ -287,6 +294,8 @@ is:
287
294
  share: Deila
288
295
  share_link: Deila tengil
289
296
  user_conversations:
297
+ reply:
298
+ send: Senda
290
299
  update:
291
300
  error: Skilaboð ekki send. Reyndu aftur seinna
292
301
  devise:
@@ -29,6 +29,8 @@ it:
29
29
  password_confirmation: Conferma la tua password
30
30
  personal_url: Pagina personale
31
31
  remove_avatar: Rimuovi avatar
32
+ user_group:
33
+ avatar: Immagine del profilo
32
34
  models:
33
35
  decidim/attachment_created_event: Allegato
34
36
  decidim/component_published_event: Componente attivo
@@ -40,6 +42,7 @@ it:
40
42
  decidim/promote_to_admin: Promosso ad amministratore del gruppo
41
43
  decidim/removed_from_group: Rimosso dal gruppo
42
44
  decidim/resource_endorsed_event: Risorsa approvata
45
+ decidim/user_group_created_event: Gruppo utenti creato
43
46
  activerecord:
44
47
  attributes:
45
48
  decidim/user:
@@ -373,6 +376,8 @@ it:
373
376
  view_all: Guarda tutto
374
377
  metrics:
375
378
  name: Metriche dell'organizzazione
379
+ participatory_space_metrics:
380
+ name: Partecipazione in cifre
376
381
  stats:
377
382
  name: Statistiche dell'organizzazione
378
383
  sub_hero:
@@ -408,7 +413,7 @@ it:
408
413
  uncheck: Mantieni deselezionato
409
414
  title: Iscrizioni alla newsletter
410
415
  omniauth_buttons:
411
- or: O
416
+ or: oppure
412
417
  doorkeeper:
413
418
  authorizations:
414
419
  new:
@@ -517,7 +522,7 @@ it:
517
522
  email_outro: Hai ricevuto questa notifica perché hai fatto attività sul nostro sito web.
518
523
  groups:
519
524
  demoted_membership:
520
- email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ha rimosso i diritti di amministratore per quel gruppo.
525
+ email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ha rimosso i tuoi diritti di amministratore per quel gruppo.
521
526
  email_outro: Hai ricevuto questa notifica perché sei un membro di quel gruppo.
522
527
  email_subject: Non sei più un amministratore del gruppo %{user_group_name}!
523
528
  notification_title: Non sei più un amministratore del gruppo <a href="%{resource_path}">%{user_group_name}</a>.
@@ -528,7 +533,7 @@ it:
528
533
  notification_title: Sei stato invitato a far parte del gruppo <a href="%{resource_path}">%{user_group_name}</a> . Controlla la pagina <a href="%{groups_profile_tab_path}">Gruppi</a> nel tuo profilo per approvarla!
529
534
  join_request_accepted:
530
535
  email_intro: Congratulazioni! Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ha accettato la tua richiesta di adesione.
531
- email_outro: Hai ricevuto questa notifica perché la tua richiesta di partecipazione è stata aggiornata.
536
+ email_outro: Hai ricevuto questa notifica perché la tua richiesta di adesione è stata aggiornata.
532
537
  email_subject: Sei stato accettato nel gruppo %{user_group_name}!
533
538
  notification_title: Sei stato accettato nel gruppo <a href="%{resource_path}">%{user_group_name}</a>.
534
539
  join_request_created:
@@ -542,7 +547,7 @@ it:
542
547
  email_subject: La tua richiesta di aderire al gruppo %{user_group_name} è stata respinta!
543
548
  notification_title: La tua richiesta di aderire al gruppo <a href="%{resource_path}">%{user_group_name}</a> è stata respinta.
544
549
  promoted_to_admin:
545
- email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ti ha concesso i diritti di amministratore per quel gruppo.
550
+ email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ti ha concesso i diritti di amministratore quel gruppo.
546
551
  email_outro: Hai ricevuto questa notifica perché sei un membro di quel gruppo.
547
552
  email_subject: Ora sei un amministratore del gruppo %{user_group_name}!
548
553
  notification_title: Ora sei un amministratore del gruppo <a href="%{resource_path}">%{user_group_name}</a>.
@@ -555,7 +560,7 @@ it:
555
560
  email_intro: Un nuovo gruppo di utenti è stato creato con il nome %{user_group_name}. Ora puoi verificarlo nel <a href="%{groups_admin_url}">pannello di amministrazione</a>.
556
561
  email_outro: Hai ricevuto questa notifica perché sei un amministratore della piattaforma.
557
562
  email_subject: È stato creato un nuovo gruppo di utenti
558
- notification_title: Il gruppo utente %{user_group_name} è stato creato. Ora puoi verificarlo nel <a href="%{groups_admin_path}">pannello di amministratore</a>.
563
+ notification_title: Il gruppo di utenti %{user_group_name} è stato creato. Ora puoi verificarlo nel <a href="%{groups_admin_path}">pannello di amministratore</a>.
559
564
  user_group_updated:
560
565
  email_intro: Un gruppo di utenti con il nome %{user_group_name} ha aggiornato il suo profilo, lasciandolo non verificato. Ora puoi verificarlo nel <a href="%{groups_admin_url}">pannello di amministrazione</a>.
561
566
  email_outro: Hai ricevuto questa notifica perché sei un amministratore della piattaforma.
@@ -580,6 +585,8 @@ it:
580
585
  email_outro: Hai ricevuto questa notifica perché stai seguendo %{nickname}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
581
586
  email_subject: "%{nickname} ha aggiornato il proprio profilo"
582
587
  notification_title: La pagina <a href="%{resource_path}">profilo</a> di %{name} (%{nickname}), che stai seguendo, è stata aggiornata.
588
+ user_officialized:
589
+ email_subject: ""
583
590
  export_mailer:
584
591
  download_your_data_export:
585
592
  click_button: 'Clicca sul link per scaricare i tuoi dati.<br/>Il file sarà disponibile fino a %{date}.<br/>Avrai bisogno di <a href="https://www.7-zip.org/">7-Zip</a> (per Windows), <a href="https://www.keka.io/en/">Keka</a> (per MacOS) o <a href="https://peazip.github.io">PeaZip</a> (per Linux) per aprirlo. Password: %{password}'
@@ -655,12 +662,12 @@ it:
655
662
  current_admins: 'Amministratori attuali:'
656
663
  manage_admins: Gestisci amministratori
657
664
  group_invites:
658
- accept_invitation: Accettare
665
+ accept_invitation: Accettato
659
666
  accept_or_reject_group_invitations: 'I seguenti gruppi ti hanno invitato a unirti a loro. Accetta o rifiuta le loro richieste:'
660
667
  index:
661
668
  invite: Invitare
662
669
  invite_user: Invita un utente
663
- reject_invitation: Rifiutare
670
+ reject_invitation: Rifiutato
664
671
  group_members:
665
672
  actions:
666
673
  are_you_sure: Sei sicuro?
@@ -686,8 +693,8 @@ it:
686
693
  success: Gruppo lasciato con successo.
687
694
  members:
688
695
  accept_or_reject_join_requests: 'I seguenti utenti hanno chiesto di unirsi a questo gruppo. Accetta o rifiuta le loro richieste:'
689
- accept_request: Accettare
690
- reject_request: Rifiutare
696
+ accept_request: Accettato
697
+ reject_request: Rifiutato
691
698
  new:
692
699
  create_user_group: Crea un gruppo
693
700
  new_user_group: Nuovo gruppo
@@ -788,6 +795,8 @@ it:
788
795
  new_conversation: Nuova conversazione
789
796
  next: Successivo
790
797
  title: Conversazioni
798
+ reply_form:
799
+ placeholder: La tua risposta...
791
800
  show:
792
801
  back: Torna a tutte le conversazioni
793
802
  chat_with: Conversazione con
@@ -805,11 +814,11 @@ it:
805
814
  participants:
806
815
  description: Numero di utenti attivi nell'organizzazione
807
816
  object: partecipanti
808
- title: I partecipanti
817
+ title: Partecipanti
809
818
  users:
810
819
  description: Numero di utenti nell'organizzazione
811
820
  object: utenti
812
- title: utenti
821
+ title: Partecipanti
813
822
  newsletter_mailer:
814
823
  newsletter:
815
824
  unsubscribe: Per disattivare la ricezione di questo tipo di email, <a href="%{link}" target="_blank" class="unsubscribe">Unsubscribe</a>.
@@ -911,24 +920,23 @@ it:
911
920
  conversations: Conversazioni
912
921
  followers: Followers
913
922
  following: Seguiti
923
+ group_admins: Gestisci amministratori
924
+ group_members: Gestisci i membri
914
925
  groups: gruppi
915
926
  members: Utenti
916
927
  officialized: Partecipante ufficiale
917
928
  send_private_message: Invia messaggio privato
918
- sidebar:
919
- badges:
920
- info: I badge vengono guadagnati eseguendo attività specifiche sulla piattaforma.
921
- title: badge
922
929
  user:
923
- create_user_group: Crea un gruppo
924
- edit_profile: Modifica Profilo
925
- edit_user_group: Modifica il profilo del gruppo
926
- invite_user: Invita utente
927
- join_user_group: Richiesta di iscrizione al gruppo
928
- leave_user_group: Lascia il gruppo
929
- manage_user_group_admins: Gestisci amministratori
930
- manage_user_group_users: Gestisci i membri
931
- resend_email_confirmation_instructions: Rispedire le istruzioni per la conferma dell'email
930
+ actions:
931
+ create_user_group: Crea un gruppo
932
+ edit_profile: Modifica Profilo
933
+ edit_user_group: Modifica il profilo del gruppo
934
+ invite_user: Invita utente
935
+ join_user_group: Richiesta di iscrizione al gruppo
936
+ leave_user_group: Lascia il gruppo
937
+ manage_user_group_admins: Gestisci amministratori
938
+ manage_user_group_users: Gestisci i membri
939
+ resend_email_confirmation_instructions: Rispedire le istruzioni per la conferma dell'email
932
940
  reported_mailer:
933
941
  hide:
934
942
  hello: Ciao %{name},
@@ -1011,12 +1019,9 @@ it:
1011
1019
  title: Segnala un problema
1012
1020
  flag_user_modal:
1013
1021
  already_reported: Questo contenuto è già stato segnalato e sarà esaminato da un amministratore.
1014
- close: Chiudi
1015
- description: Che cosa è inappropriato riguardo all'utente?
1016
1022
  offensive: Vi sono contenuti razzisti, sessisti, offensivi, attacchi di carattere personale, minacce di morte o altro tipo di minacci, istigazioni al suicidio o altre forme d'odio verbale.
1017
1023
  report: Segnala
1018
1024
  spam: Contiene pubblicità, truffe, clickbait ("esca da click") o altro contenuto mirato ad attrarre traffico internet.
1019
- title: Segnala utente inappropriato
1020
1025
  floating_help:
1021
1026
  help: Aiuto
1022
1027
  participatory_space_filters:
@@ -1058,6 +1063,9 @@ it:
1058
1063
  help_text: "<strong>Attenzione:</strong> Il contenuto potrebbe essere tradotto automaticamente e non essere accurato al 100%."
1059
1064
  show_original: Mostra testo originale
1060
1065
  show_translated: Mostra testo tradotto automaticamente
1066
+ user_activity:
1067
+ index:
1068
+ no_activities_warning: Questo utente non ha ancora avuto alcuna attività.
1061
1069
  user_contact_disabled: Questo partecipante non accetta messaggi diretti.
1062
1070
  user_conversations:
1063
1071
  create:
@@ -4,10 +4,19 @@ ja:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: アカウントを削除する理由
7
+ attachment:
8
+ documents: ドキュメント
9
+ image: 画像
10
+ photos: 写真
7
11
  common:
8
12
  created_at: 作成日時
13
+ content_block_attachment:
14
+ background_image: 背景画像
15
+ main_image: メイン画像
9
16
  conversation:
10
17
  body: 本文
18
+ editor_image:
19
+ file: ファイル
11
20
  group:
12
21
  about: グループについて
13
22
  avatar: アバター
@@ -16,12 +25,15 @@ ja:
16
25
  name: 名前
17
26
  nickname: アカウントID
18
27
  phone: 電話番号
28
+ import:
29
+ file: ファイル
19
30
  message:
20
31
  body: 本文
21
32
  report:
22
33
  details: 追加コメント
23
34
  user:
24
35
  about: 私について
36
+ avatar: アバター
25
37
  email: あなたのメールアドレス
26
38
  encrypted_password: パスワード
27
39
  locale: 地域
@@ -33,6 +45,14 @@ ja:
33
45
  personal_url: 個人用URL
34
46
  remove_avatar: アバターを削除
35
47
  tos_agreement: 利用規約
48
+ user_group:
49
+ avatar: アバター
50
+ errors:
51
+ models:
52
+ user:
53
+ attributes:
54
+ nickname:
55
+ format: ニックネームは小文字でスペースを含まない必要があります
36
56
  models:
37
57
  decidim/attachment_created_event: 添付ファイル
38
58
  decidim/component_published_event: アクティブなコンポーネント
@@ -57,7 +77,7 @@ ja:
57
77
  with_participatory_space: 参加型スペース
58
78
  decidim/user:
59
79
  current_password: 現在のパスワード
60
- email: メールアドレス
80
+ email: Eメールアドレス
61
81
  name: アカウントID
62
82
  password: パスワード
63
83
  password_confirmation: パスワードの確認
@@ -133,6 +153,7 @@ ja:
133
153
  front_page_link: フロントページに移動
134
154
  logo: "%{organization}の公式ロゴ"
135
155
  opens_in_new_tab: 新しいタブで開く
156
+ secondary_menu: セカンダリメニュー
136
157
  skip_button: メインコンテンツにスキップ
137
158
  account:
138
159
  blocked: このアカウントは利用規約に違反しているためブロックされています
@@ -482,6 +503,8 @@ ja:
482
503
  dummy_step_attribute1: ダミーステップ属性1
483
504
  dummy_step_attribute2: ダミーステップ属性2
484
505
  dummy_step_translatable_text: ダミーフェーズ翻訳可能なテキスト
506
+ pagination:
507
+ page_title: "%{component_name} - %{current_page} / %{total_pages} ページ"
485
508
  contact: お問い合わせ
486
509
  content_blocks:
487
510
  announcement:
@@ -530,7 +553,7 @@ ja:
530
553
  metrics:
531
554
  name: 組織の指標
532
555
  participatory_space_metrics:
533
- name: メトリクス
556
+ name: 指標
534
557
  participatory_space_stats:
535
558
  name: 統計情報
536
559
  social_networks_metadata:
@@ -566,7 +589,7 @@ ja:
566
589
  create:
567
590
  email_already_exists: 別のアカウントで同じメールアドレスを使用しています。
568
591
  new:
569
- complete_profile: プロファイルを完了
592
+ complete_profile: プロフィールを完了
570
593
  nickname_help: '%{organization} でのニックネームです。文字、数字、''-'' および ''_'' のみを使用できます。'
571
594
  sign_up: プロフィールを完成してください
572
595
  subtitle: アカウントの作成を完了するため、次のフォームに記入してください
@@ -718,6 +741,11 @@ ja:
718
741
  email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
719
742
  email_subject: '%{amendable_title} から %{emendation_author_nickname} の修正が却下されました'
720
743
  notification_title: <a href="%{emendation_path}">修正</a> <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> によって作成された <a href="%{amendable_path}">%{amendable_title}</a> は拒否されました。
744
+ emendation_promoted:
745
+ follower:
746
+ email_intro: '%{amendable_title}に対する修正案が公開されました。このページから確認できます:'
747
+ email_outro: あなたは %{amendable_title}の作者であるため、この通知を受け取りました。
748
+ email_subject: '%{emendation_author_nickname}による修正案が新しい%{amendable_type}として公開されました'
721
749
  attachments:
722
750
  attachment_created:
723
751
  email_intro: '%{resource_title}に新しいドキュメントが追加されました。このページから見ることができます:'
@@ -790,8 +818,8 @@ ja:
790
818
  user_group_updated:
791
819
  email_intro: ユーザーグループ「 %{user_group_name} 」がプロフィールページをアップデートし、未承認のままになっています。 <a href="%{groups_admin_url}">管理画面</a>から承認してください。
792
820
  email_outro: あなたはプラットフォームの管理者であるため、この通知を受け取りました。
793
- email_subject: ユーザーグループがプロファイルを更新しました
794
- notification_title: '%{user_group_name} ユーザーグループがプロファイルを更新し、未検証のままにしました。 <a href="%{groups_admin_path}">管理画面</a> で確認できるようになりました。'
821
+ email_subject: ユーザーグループがプロフィールを更新しました
822
+ notification_title: '%{user_group_name} ユーザーグループがプロフィールを更新し、未検証のままにしました。 <a href="%{groups_admin_path}">管理画面</a> で確認できるようになりました。'
795
823
  nickname_event:
796
824
  notification_body: ニックネームの使用方法を修正し、重複をなくすために大文字小文字を区別しないようにしました。<br/> あなたのニックネームは他の同じ名前の方の後に登録されたため、自動的にリネームされました。<a href="%{link_to_account_settings}">アカウント設定</a>から変更することができます。
797
825
  notification_event:
@@ -1158,6 +1186,8 @@ ja:
1158
1186
  not_started: まだ開始していません
1159
1187
  remaining: "残り %{time_distance}"
1160
1188
  metrics:
1189
+ blocked_users:
1190
+ description: ブロックされた参加者数
1161
1191
  download:
1162
1192
  csv: ダウンロードデータ(CSV)
1163
1193
  followers:
@@ -1168,6 +1198,10 @@ ja:
1168
1198
  description: 組織内のアクティブな参加者数
1169
1199
  object: 参加者
1170
1200
  title: 参加者
1201
+ reported_users:
1202
+ description: 報告された参加者数
1203
+ user_reports:
1204
+ description: 参加者によって行われた報告数
1171
1205
  users:
1172
1206
  description: 組織の参加者数
1173
1207
  object: 参加者
@@ -1233,10 +1267,12 @@ ja:
1233
1267
  notifications_digest_mailer:
1234
1268
  header:
1235
1269
  daily: 日次の通知のダイジェスト
1270
+ real_time: リアルタイム
1236
1271
  weekly: 週次の通知のダイジェスト
1237
1272
  hello: こんにちは %{name} さん、
1238
1273
  intro:
1239
1274
  daily: 'あなたがフォローしているアクティビティに基づいた最終日以降の通知です:'
1275
+ real_time: 'これらはあなたが以下のアクティビティについての通知です:'
1240
1276
  weekly: 'これらは、あなたがフォローしているアクティビティに基づいた先週以降の通知です:'
1241
1277
  outro: このコンテンツまたは著者をフォローしているため、これらの通知を受け取りました。それぞれのページからフォローを解除できます。
1242
1278
  see_more: 他の通知を見る
@@ -1335,7 +1371,7 @@ ja:
1335
1371
  success: パスワードを更新しました。
1336
1372
  profile:
1337
1373
  deleted: 削除された参加者
1338
- inaccessible_message: このプロファイルは利用規約違反のためアクセスできません!
1374
+ inaccessible_message: このプロフィールは利用規約違反のためアクセスできません!
1339
1375
  profiles:
1340
1376
  default_officialization_text_for_user_groups: このグループは公的に検証されており、その名前が実際の名前に対応していることが検証されています。
1341
1377
  default_officialization_text_for_users: この参加者は公的に検証されます。彼/彼女の名前または役割が実名・実際の役割に対応していることが確認されています。
@@ -1351,39 +1387,30 @@ ja:
1351
1387
  members: メンバー
1352
1388
  officialized: 正規参加者
1353
1389
  send_private_message: プライベートメッセージを送信
1354
- sidebar:
1355
- badges:
1356
- info: バッジはプラットフォームで特定のアクティビティを実行することで獲得できます。
1357
- title: バッジ
1358
1390
  user:
1359
1391
  actions:
1360
1392
  create_user_group: グループを作成
1361
1393
  disabled_message: メッセージ
1362
1394
  edit_profile: プロフィールを編集
1363
1395
  edit_user_group: グループプロフィールを編集
1364
- invite_user: 参加者を招待
1365
- join_user_group: グループへの参加リクエスト
1396
+ invite_user: 参加者の招待
1397
+ join_user_group: グループに参加するリクエスト
1366
1398
  leave_user_group: グループから退出する
1367
1399
  manage_user_group: グループを管理
1368
1400
  manage_user_group_admins: 管理者の管理
1369
1401
  manage_user_group_users: メンバーの管理
1370
1402
  message: メッセージ
1371
- resend_email_confirmation_instructions: 確認メールを再送する
1403
+ resend_email_confirmation_instructions: 確認メールを再送信する
1372
1404
  confirmation_instructions_sent: メール確認の手順を送信しました。
1373
- create_user_group: グループを作成
1374
- edit_profile: プロフィールを編集
1375
- edit_user_group: グループプロファイルを編集
1376
1405
  fill_in_email_to_confirm_it: グループのメールアドレスを入力して確認してください。
1377
- invite_user: 参加者の招待
1378
- join_user_group: グループに参加するリクエスト
1379
- leave_user_group: グループから退出する
1380
- manage_user_group_admins: 管理者の管理
1381
- manage_user_group_users: メンバーの管理
1382
- resend_email_confirmation_instructions: 確認メールを再送信する
1383
1406
  reported_mailer:
1384
1407
  hide:
1408
+ content: 通報されたコンテンツ
1409
+ details: 詳細
1385
1410
  hello: こんにちは、 %{name} さん。
1386
1411
  manage_moderations: モデレーションの管理
1412
+ participatory_space: 参加型スペース
1413
+ reason: 理由
1387
1414
  report_html: <p>次の <a href="%{url}">コンテンツ</a> が自動的に非表示になりました。</p>
1388
1415
  subject: リソースは自動的に非表示になりました
1389
1416
  report:
@@ -1403,6 +1430,8 @@ ja:
1403
1430
  create:
1404
1431
  error: レポートの作成中にエラーが発生しました。もう一度やり直してください。
1405
1432
  success: レポートは正常に作成され、管理者によってレビューされます。
1433
+ parent_hidden:
1434
+ report_details: 親リソースは非表示
1406
1435
  resource_endorsements:
1407
1436
  create:
1408
1437
  error: オススメする際に問題がありました。
@@ -1471,14 +1500,13 @@ ja:
1471
1500
  flag_user_modal:
1472
1501
  already_reported: このコンテンツはすでに報告されており、管理者が確認します。
1473
1502
  block: この参加者をブロック
1474
- close: 閉じる
1475
- description: ユーザーに不適切なのはどの点ですか?
1503
+ description: この参加者の不適切な点は何ですか?
1476
1504
  does_not_belong: 違法行為、自殺の脅威、個人情報、または %{organization_name} に属していないと思われる何かが含まれています。
1477
1505
  hide: すべての内容を隠す
1478
1506
  offensive: 人種差別、性差別、中傷、個人攻撃、死の脅威、自殺要求や何かしらの形態のヘイトスピーチが含まれています。
1479
1507
  report: 報告
1480
1508
  spam: 虚偽情報、広告、詐欺やスクリプトボットが含まれています。
1481
- title: 不適切なユーザーを報告
1509
+ title: 不適切な参加者を報告する
1482
1510
  floating_help:
1483
1511
  help: ヘルプ
1484
1512
  follow_button:
@@ -1928,6 +1956,8 @@ ja:
1928
1956
  expire_time_html: このログインセッションは <b><span class="minutes">%{minutes}</span> 分後に無効になります。</b>.
1929
1957
  language_chooser:
1930
1958
  choose_language: 言語を選択
1959
+ navigation:
1960
+ aria_label: 'ナビゲーションメニュー: %{title}'
1931
1961
  notifications_dashboard:
1932
1962
  mark_all_as_read: すべての通知を削除する
1933
1963
  mark_as_read: 既読にする