decidim-comments 0.20.0 → 0.23.1.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/comments/bundle.js +66 -66
  3. data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
  4. data/app/cells/decidim/comments/comment_activity_cell.rb +2 -22
  5. data/app/cells/decidim/comments/comment_cell.rb +22 -0
  6. data/app/cells/decidim/comments/comment_m/footer.erb +5 -0
  7. data/app/cells/decidim/comments/comment_m/top.erb +7 -0
  8. data/app/cells/decidim/comments/comment_m_cell.rb +29 -0
  9. data/app/commands/decidim/comments/create_comment.rb +8 -8
  10. data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +9 -0
  11. data/app/events/decidim/comments/comment_event.rb +15 -2
  12. data/app/events/decidim/comments/user_group_mentioned_event.rb +10 -0
  13. data/app/forms/decidim/comments/comment_form.rb +17 -1
  14. data/app/frontend/application/icon.component.tsx +16 -4
  15. data/app/frontend/comments/add_comment_form.component.test.tsx +31 -29
  16. data/app/frontend/comments/add_comment_form.component.tsx +34 -18
  17. data/app/frontend/comments/comment.component.test.tsx +36 -5
  18. data/app/frontend/comments/comment.component.tsx +311 -89
  19. data/app/frontend/comments/comment_order_selector.component.tsx +26 -7
  20. data/app/frontend/comments/comment_thread.component.test.tsx +9 -8
  21. data/app/frontend/comments/comment_thread.component.tsx +3 -1
  22. data/app/frontend/comments/comments.component.test.tsx +17 -14
  23. data/app/frontend/comments/comments.component.tsx +90 -9
  24. data/app/frontend/comments/down_vote_button.component.tsx +27 -9
  25. data/app/frontend/comments/up_vote_button.component.tsx +27 -9
  26. data/app/frontend/comments/vote_button.component.tsx +4 -0
  27. data/app/frontend/comments/vote_button_component.test.tsx +14 -8
  28. data/app/frontend/entry.ts +19 -0
  29. data/app/frontend/entry_test.ts +2 -0
  30. data/app/frontend/mutations/add_comment.mutation.graphql +2 -2
  31. data/app/frontend/mutations/down_vote.mutation.graphql +2 -2
  32. data/app/frontend/mutations/up_vote.mutation.graphql +2 -2
  33. data/app/frontend/queries/comments.query.graphql +3 -3
  34. data/app/frontend/support/schema.ts +326 -0
  35. data/app/helpers/decidim/comments/comment_cells_helper.rb +33 -0
  36. data/app/models/decidim/comments/comment.rb +96 -18
  37. data/app/models/decidim/comments/seed.rb +1 -1
  38. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -6
  39. data/app/queries/decidim/comments/sorted_comments.rb +8 -2
  40. data/app/scrubbers/decidim/comments/user_input_scrubber.rb +20 -0
  41. data/app/services/decidim/comments/new_comment_notification_creator.rb +28 -3
  42. data/app/types/decidim/comments/commentable_interface.rb +3 -2
  43. data/app/types/decidim/comments/commentable_mutation_type.rb +6 -3
  44. data/config/locales/am-ET.yml +1 -0
  45. data/config/locales/ar.yml +10 -1
  46. data/config/locales/bg-BG.yml +6 -0
  47. data/config/locales/bg.yml +6 -0
  48. data/config/locales/ca.yml +24 -1
  49. data/config/locales/cs.yml +36 -13
  50. data/config/locales/da-DK.yml +1 -0
  51. data/config/locales/da.yml +1 -0
  52. data/config/locales/de.yml +23 -1
  53. data/config/locales/el-GR.yml +1 -0
  54. data/config/locales/el.yml +122 -0
  55. data/config/locales/en.yml +24 -1
  56. data/config/locales/eo.yml +1 -0
  57. data/config/locales/es-MX.yml +24 -1
  58. data/config/locales/es-PY.yml +24 -1
  59. data/config/locales/es.yml +24 -1
  60. data/config/locales/et-EE.yml +1 -0
  61. data/config/locales/et.yml +1 -0
  62. data/config/locales/eu.yml +4 -1
  63. data/config/locales/fi-plain.yml +24 -1
  64. data/config/locales/fi.yml +31 -8
  65. data/config/locales/fr-CA.yml +123 -0
  66. data/config/locales/fr.yml +25 -2
  67. data/config/locales/ga-IE.yml +1 -0
  68. data/config/locales/gl.yml +4 -1
  69. data/config/locales/hr-HR.yml +1 -0
  70. data/config/locales/hr.yml +1 -0
  71. data/config/locales/hu.yml +18 -2
  72. data/config/locales/id-ID.yml +4 -1
  73. data/config/locales/is-IS.yml +74 -0
  74. data/config/locales/is.yml +76 -0
  75. data/config/locales/it.yml +23 -1
  76. data/config/locales/ja-JP.yml +120 -0
  77. data/config/locales/ja.yml +121 -0
  78. data/config/locales/ko-KR.yml +1 -0
  79. data/config/locales/ko.yml +1 -0
  80. data/config/locales/lt-LT.yml +1 -0
  81. data/config/locales/lt.yml +1 -0
  82. data/config/locales/lv.yml +118 -0
  83. data/config/locales/mt-MT.yml +1 -0
  84. data/config/locales/mt.yml +1 -0
  85. data/config/locales/nl.yml +26 -3
  86. data/config/locales/no.yml +88 -1
  87. data/config/locales/om-ET.yml +1 -0
  88. data/config/locales/pl.yml +62 -40
  89. data/config/locales/pt-BR.yml +5 -2
  90. data/config/locales/pt.yml +47 -25
  91. data/config/locales/ro-RO.yml +124 -0
  92. data/config/locales/ru.yml +4 -1
  93. data/config/locales/sk-SK.yml +116 -0
  94. data/config/locales/sk.yml +120 -0
  95. data/config/locales/sl.yml +4 -0
  96. data/config/locales/so-SO.yml +1 -0
  97. data/config/locales/sr-CS.yml +20 -0
  98. data/config/locales/sv.yml +26 -3
  99. data/config/locales/ti-ER.yml +1 -0
  100. data/config/locales/tr-TR.yml +4 -1
  101. data/config/locales/uk.yml +4 -2
  102. data/config/locales/vi-VN.yml +1 -0
  103. data/config/locales/vi.yml +1 -0
  104. data/config/locales/zh-CN.yml +121 -0
  105. data/config/locales/zh-TW.yml +1 -0
  106. data/db/migrate/20200320105911_index_foreign_keys_in_decidim_comments_comments.rb +7 -0
  107. data/db/migrate/20200706123136_make_comments_handle_i18n.rb +41 -0
  108. data/db/migrate/20200828101910_add_commentable_counter_cache_to_comments.rb +9 -0
  109. data/lib/decidim/comments.rb +1 -0
  110. data/lib/decidim/comments/api/comment_type.rb +5 -1
  111. data/lib/decidim/comments/comment_serializer.rb +7 -2
  112. data/lib/decidim/comments/comment_vote_serializer.rb +5 -1
  113. data/lib/decidim/comments/commentable.rb +11 -0
  114. data/lib/decidim/comments/comments_helper.rb +28 -4
  115. data/lib/decidim/comments/engine.rb +13 -0
  116. data/lib/decidim/comments/markdown.rb +55 -0
  117. data/lib/decidim/comments/mutation_extensions.rb +8 -0
  118. data/lib/decidim/comments/query_extensions.rb +4 -0
  119. data/lib/decidim/comments/test/factories.rb +10 -1
  120. data/lib/decidim/comments/test/shared_examples/comment_event.rb +12 -2
  121. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +3 -2
  122. data/lib/decidim/comments/version.rb +1 -1
  123. metadata +74 -11
@@ -4,6 +4,7 @@ fr:
4
4
  decidim/comments/comment_by_followed_user_event: Commentaire
5
5
  decidim/comments/comment_created_event: Commentaire
6
6
  decidim/comments/reply_created_event: Réponse à un commentaire
7
+ decidim/comments/user_group_mentioned_event: Mention
7
8
  decidim/comments/user_mentioned_event: Mention
8
9
  activerecord:
9
10
  models:
@@ -15,9 +16,11 @@ fr:
15
16
  other: Votes
16
17
  decidim:
17
18
  comments:
18
- comments: Commentaires
19
+ comments: commentaires
20
+ comments_count: Nombre de commentaires
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
23
+ view: Voir
21
24
  votes:
22
25
  create:
23
26
  error: Une erreur s'est produite lors du vote sur le commentaire.
@@ -42,6 +45,7 @@ fr:
42
45
  against: Contre
43
46
  in_favor: Pour
44
47
  deleted_user: Utilisateur supprimé
48
+ hide_replies: Cacher les réponses
45
49
  reply: Répondre
46
50
  report:
47
51
  action: Signaler
@@ -53,7 +57,9 @@ fr:
53
57
  does_not_belong: Contient d’autres types de contenus qui vous semblent inappropriés à %{organization_name} (activités illégales, menaces suicidaires, informations personnelles,...).
54
58
  offensive: Contient des propos contraires à la loi (propos racistes, sexistes, insultes, attaques personnelles, menaces de mort, incitations au suicide ou toute forme de discours de haine,...).
55
59
  spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
56
- title: Signaler un problème
60
+ title: Signaler un contenu inapproprié
61
+ show_replies: Afficher %{replies_count} réponses
62
+ single_comment_link_title: Obtenir un lien vers un seul commentaire
57
63
  comment_order_selector:
58
64
  order:
59
65
  best_rated: Les mieux notés
@@ -66,8 +72,15 @@ fr:
66
72
  comments:
67
73
  blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
68
74
  blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
75
+ comment_details_title: Détails du commentaire
69
76
  loading: Chargement des commentaires ...
77
+ single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
78
+ single_comment_warning_title: Vous ne voyez qu'un seul commentaire
70
79
  title: "%{count} commentaires"
80
+ down_vote_button:
81
+ text: Je ne suis pas d'accord avec ce commentaire
82
+ up_vote_button:
83
+ text: Je suis d'accord avec ce commentaire
71
84
  events:
72
85
  comments:
73
86
  comment_by_followed_user:
@@ -75,6 +88,11 @@ fr:
75
88
  email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
76
89
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
77
90
  notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
91
+ comment_by_followed_user_group:
92
+ email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
93
+ email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
94
+ email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
95
+ notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
78
96
  comment_created:
79
97
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
80
98
  email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Vous pouvez vous désabonner à partir du lien précédant.
@@ -85,6 +103,11 @@ fr:
85
103
  email_outro: Vous venez de recevoir une notification à votre commentaire.
86
104
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
87
105
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
106
+ user_group_mentioned:
107
+ email_intro: Un groupe auquel vous appartenez a été mentionné
108
+ email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
109
+ email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
110
+ notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a> en tant que membre de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
88
111
  user_mentioned:
89
112
  email_intro: Vous avez été mentionné
90
113
  email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}.
@@ -0,0 +1 @@
1
+ ga:
@@ -4,6 +4,7 @@ gl:
4
4
  decidim/comments/comment_by_followed_user_event: Comentario
5
5
  decidim/comments/comment_created_event: Comentario
6
6
  decidim/comments/reply_created_event: Comentario de resposta
7
+ decidim/comments/user_group_mentioned_event: Mención
7
8
  decidim/comments/user_mentioned_event: Mención
8
9
  activerecord:
9
10
  models:
@@ -53,7 +54,6 @@ gl:
53
54
  does_not_belong: Contén actividades ilegais, ameazas de suicidio, información persoal ou outra cousa que pensas que non pertence a %{organization_name}.
54
55
  offensive: Contén racismo, sexismo, abuso, ataques persoais, ameazas de morte, solicitudes de suicidio ou calquera tipo de discurso de odio.
55
56
  spam: Contén clic, publicidade, fraudes ou bots de script.
56
- title: Informar dun problema
57
57
  comment_order_selector:
58
58
  order:
59
59
  best_rated: Mellor valorado
@@ -75,6 +75,9 @@ gl:
75
75
  email_outro: Recibiches esta notificación porque estás seguindo %{author_name}. Podes deixar de seguir este usuario desde a súa páxina de perfil.
76
76
  email_subject: Hai un novo comentario por %{author_name} en %{resource_title}
77
77
  notification_title: Hai un novo comentario <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
78
+ comment_by_followed_user_group:
79
+ email_subject: Hai un novo comentario por %{author_name} en %{resource_title}
80
+ notification_title: Hai un novo comentario <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
78
81
  comment_created:
79
82
  email_intro: "Comentouse %{resource_title} . Podes ler o comentario nesta páxina:"
80
83
  email_outro: Recibiches esta notificación porque estás seguindo "%{resource_title}" ou o seu autor. Podes deixar de seguir desde a ligazón anterior.
@@ -0,0 +1 @@
1
+ hr:
@@ -0,0 +1 @@
1
+ hr:
@@ -4,6 +4,7 @@ hu:
4
4
  decidim/comments/comment_by_followed_user_event: Megjegyzés
5
5
  decidim/comments/comment_created_event: Megjegyzés
6
6
  decidim/comments/reply_created_event: Hozzászólás válasz
7
+ decidim/comments/user_group_mentioned_event: Említés
7
8
  decidim/comments/user_mentioned_event: Említés
8
9
  activerecord:
9
10
  models:
@@ -15,7 +16,7 @@ hu:
15
16
  other: Szavazatok
16
17
  decidim:
17
18
  comments:
18
- comments: Megjegyzések
19
+ comments: Hozzászólások
19
20
  last_activity:
20
21
  new_comment_at_html: "<span>Új megjegyzés: %{link}</span>"
21
22
  votes:
@@ -42,6 +43,7 @@ hu:
42
43
  against: Ellenzem
43
44
  in_favor: Támogatom
44
45
  deleted_user: Törölt felhasználó
46
+ hide_replies: Válaszok elrejtése
45
47
  reply: Válasz
46
48
  report:
47
49
  action: Jelentés
@@ -53,7 +55,8 @@ hu:
53
55
  does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz, ami nem tartozik ide: %{organization_name}.'
54
56
  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.
55
57
  spam: Klikkvadászat, reklám, átverés vagy script bot.
56
- title: Jelentem a problémát
58
+ show_replies: '%{replies_count} válasz mutatása'
59
+ single_comment_link_title: Link a kommenthez
57
60
  comment_order_selector:
58
61
  order:
59
62
  best_rated: Legjobbra értékelt
@@ -66,7 +69,10 @@ hu:
66
69
  comments:
67
70
  blocked_comments_for_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
68
71
  blocked_comments_warning: A megjegyzések jelenleg le vannak tiltva, de a korábbiakat elolvashatod.
72
+ comment_details_title: Megjegyzés részletei
69
73
  loading: Hozzászólások betöltése ...
74
+ single_comment_warning: A többi hozzászólást <a href="%{url}">itt</a> ellenőrizheti.
75
+ single_comment_warning_title: Egyetlen megjegyzést látsz
70
76
  title: "%{count} megjegyzés"
71
77
  events:
72
78
  comments:
@@ -75,6 +81,11 @@ hu:
75
81
  email_outro: 'Ezt az értesítést azért kaptad, mert ezt követed: "%{author_name}". Leiratkozás az előző link segítségével.'
76
82
  email_subject: '%{author_name} új megjegyzése itt: %{resource_title}'
77
83
  notification_title: 'Új megjegyzés: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a>.'
84
+ comment_by_followed_user_group:
85
+ email_intro: 'A csoport %{author_name} megjegyzést hagyott itt: %{resource_title}. Ezen az oldalon megtalálod:'
86
+ email_outro: 'Ezt az értesítést azért kaptad, mert követed: "%{author_name}". Leiratkozáshoz látogasd meg ezt a csoportod a profiloldaláról.'
87
+ email_subject: '%{author_name} új megjegyzése itt: %{resource_title}'
88
+ notification_title: 'Új megjegyzés: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a>.'
78
89
  comment_created:
79
90
  email_intro: "A \"%{resource_title}\" témához megjegyzést fűzött valaki. Itt tudod elolvasni:"
80
91
  email_outro: 'Ezt az értesítést azért kaptad, mert ezt (vagy ennek szerzőjét) követed: "%{resource_title}". Ha szeretnél, a link segítségével leiratkozhatsz.'
@@ -85,6 +96,11 @@ hu:
85
96
  email_outro: Ezt az értesítést azért kaptad, mert valaki választolt a mejegyzésedre.
86
97
  email_subject: "%{author_name} megjegyzést tett a kommentedhez itt: %{resource_title}"
87
98
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> válaszolt a megjegyzésedre itt: <a href="%{resource_path}">%{resource_title}</a>'
99
+ user_group_mentioned:
100
+ email_intro: Említettek egy csoportot, amelybe tartozol
101
+ email_outro: Azért kapta ezt az értesítést, mert tagja annak a(z) %{group_name} csoportnak, amelyet a(z) %{resource_title} megemlített.
102
+ email_subject: A(z) %{resource_title} -ban említettek, a(z) %{group_name} tagjaként
103
+ notification_title: A(z) <a href="%{resource_path}">%{resource_title}</a> -ban a <a href="%{author_path}">%{author_name} %{author_nickname}</a> megemlített a(z) <a href="%{group_path}">%{group_name} %{group_nickname} </a> tagjaként
88
104
  user_mentioned:
89
105
  email_intro: Valaki említette a neved
90
106
  email_outro: Ezt az értesítést azért kaptad, mert korábban megemlítettek a(z) "%{resource_title}" témában.
@@ -4,6 +4,7 @@ id:
4
4
  decidim/comments/comment_by_followed_user_event: Komentar
5
5
  decidim/comments/comment_created_event: Komentar
6
6
  decidim/comments/reply_created_event: Balasan komentar
7
+ decidim/comments/user_group_mentioned_event: Menyebut
7
8
  decidim/comments/user_mentioned_event: Menyebut
8
9
  activerecord:
9
10
  models:
@@ -51,7 +52,6 @@ id:
51
52
  does_not_belong: Berisi aktivitas ilegal, ancaman bunuh diri, informasi pribadi, atau sesuatu yang menurut Anda bukan milik %{organization_name}
52
53
  offensive: Berisi rasisme, seksisme, penghinaan, serangan pribadi, ancaman kematian, permintaan bunuh diri atau segala bentuk pidato kebencian.
53
54
  spam: Berisi clickbait, iklan, penipuan atau bot skrip.
54
- title: Laporkan masalah
55
55
  comment_order_selector:
56
56
  order:
57
57
  best_rated: Nilai terbaik
@@ -73,6 +73,9 @@ id:
73
73
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{author_name}. Anda dapat berhenti mengikuti pengguna ini dari halaman profil mereka.
74
74
  email_subject: Ada komentar baru dengan %{author_name} in %{resource_title}
75
75
  notification_title: Ada komentar baru oleh <a href="%{author_path}">%{author_name} %{author_nickname}</a> di <a href="%{resource_path}">%{resource_title}</a>.
76
+ comment_by_followed_user_group:
77
+ email_subject: Ada komentar baru dengan %{author_name} in %{resource_title}
78
+ notification_title: Ada komentar baru oleh <a href="%{author_path}">%{author_name} %{author_nickname}</a> di <a href="%{resource_path}">%{resource_title}</a>.
76
79
  comment_created:
77
80
  email_intro: "%{resource_title} telah dikomentari. Anda dapat membaca komentar di halaman ini:"
78
81
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti "%{resource_title}" atau penulisnya. Anda dapat berhenti mengikutinya dari tautan sebelumnya.
@@ -0,0 +1,74 @@
1
+ is-IS:
2
+ decidim:
3
+ components:
4
+ add_comment_form:
5
+ account_message: <a href="%{sign_in_url}">Skráðu þig inn með reikningnum þínum</a> eða <a href="%{sign_up_url}">skráðu þig</a> til að bæta við ummælum þínum.
6
+ form:
7
+ body:
8
+ label: Athugasemd
9
+ placeholder: Hvað finnst þér um þetta?
10
+ form_error: Textinn er krafist og það má ekki vera lengri en %{length} stafir.
11
+ submit: Senda
12
+ user_group_id:
13
+ label: Athugasemd sem
14
+ opinion:
15
+ neutral: Hlutlaus
16
+ remaining_characters: "%{count} stafir eftir"
17
+ remaining_characters_1: "%{count} stafur eftir"
18
+ title: Bæta við athugasemd þinni
19
+ comment:
20
+ alignment:
21
+ against: Gegn
22
+ in_favor: Í hag
23
+ reply: Svara
24
+ report:
25
+ action: Skýrsla
26
+ already_reported: Þetta efni er þegar tilkynnt og það verður endurskoðað af stjórnanda.
27
+ close: Loka
28
+ description: Er þetta efni óviðeigandi?
29
+ details: Önnur athugasemdir
30
+ reasons:
31
+ does_not_belong: Inniheldur ólöglega starfsemi, sjálfsvígshugmyndir, persónulegar upplýsingar eða eitthvað sem þér finnst ekki tilheyra %{organization_name}.
32
+ offensive: Inniheldur kynþáttafordóma, kynhneigð, slurðir, persónulegar árásir, dauðarefsárásir, sjálfsvígstilraunir eða hvers konar hatursmál.
33
+ spam: Inniheldur clickbait, auglýsingar, óþekktarangi eða handritabots.
34
+ comment_order_selector:
35
+ order:
36
+ best_rated: Bestu einkunnir
37
+ most_discussed: Mest rætt
38
+ older: Eldri
39
+ recent: Nýleg
40
+ title: 'Raða eftir:'
41
+ comment_thread:
42
+ title: Samtal við %{authorName}
43
+ comments:
44
+ blocked_comments_warning: Athugasemdir eru gerðar óvirkar á þessum tíma, en þú getur lesið þau fyrri.
45
+ loading: Hleð inn athugasemdir ...
46
+ title: "%{count} athugasemdir"
47
+ events:
48
+ comments:
49
+ comment_by_followed_user:
50
+ email_intro: "%{author_name} hefur skilið eftir athugasemd í %{resource_title}. Þú getur lesið það á þessari síðu:"
51
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með %{author_name}. Þú getur sleppt þessari notanda frá prófílssíðunni sinni.
52
+ email_subject: Það er nýtt ummæli um %{author_name} í %{resource_title}
53
+ notification_title: Það er nýtt ummæli við <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>.
54
+ comment_by_followed_user_group:
55
+ email_subject: Það er nýtt ummæli um %{author_name} í %{resource_title}
56
+ notification_title: Það er nýtt ummæli við <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>.
57
+ comment_created:
58
+ email_intro: "%{resource_title} hefur verið skrifað ummæli. Þú getur lesið athugasemdina á þessari síðu:"
59
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með "%{resource_title}" eða höfundinum. Þú getur sleppt því frá fyrri tengilinn.
60
+ email_subject: Það er nýtt ummæli frá %{author_name} í %{resource_title}
61
+ notification_title: Það er nýtt ummæli frá <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>
62
+ reply_created:
63
+ email_intro: "%{author_name} hefur svarað ummæli þín í %{resource_title}. Þú getur lesið það á þessari síðu:"
64
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að ummæli þín voru svarað.
65
+ email_subject: "%{author_name} hefur svarað ummæli þín í %{resource_title}"
66
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hefur svarað athugasemd þinni í <a href="%{resource_path}">%{resource_title}</a>
67
+ user_mentioned:
68
+ email_intro: Þú hefur verið nefndur
69
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú hefur verið nefndur í %{resource_title}.
70
+ email_subject: Þú hefur verið nefndur í %{resource_title}
71
+ notification_title: Þú hefur verið nefndur í <a href="%{resource_path}">%{resource_title}</a> af <a href="%{author_path}">%{author_name} %{author_nickname}</a>
72
+ errors:
73
+ messages:
74
+ cannot_have_comments: getur ekki haft athugasemdir
@@ -0,0 +1,76 @@
1
+ is:
2
+ decidim:
3
+ comments:
4
+ comments: Athugasemdir
5
+ components:
6
+ add_comment_form:
7
+ account_message: <a href="%{sign_in_url}">Skráðu þig inn með reikningnum þínum</a> eða <a href="%{sign_up_url}">skráðu þig</a> til að bæta við ummælum þínum.
8
+ form:
9
+ body:
10
+ label: Athugasemd
11
+ placeholder: Hvað finnst þér um þetta?
12
+ form_error: Textinn er krafist og það má ekki vera lengri en %{length} stafir.
13
+ submit: Senda
14
+ user_group_id:
15
+ label: Athugasemd sem
16
+ opinion:
17
+ neutral: Hlutlaus
18
+ remaining_characters: "%{count} stafir eftir"
19
+ remaining_characters_1: "%{count} stafur eftir"
20
+ title: Bæta við athugasemd þinni
21
+ comment:
22
+ alignment:
23
+ against: Gegn
24
+ in_favor: Í hag
25
+ reply: Svara
26
+ report:
27
+ action: Skýrsla
28
+ already_reported: Þetta efni er þegar tilkynnt og það verður endurskoðað af stjórnanda.
29
+ close: Loka
30
+ description: Er þetta efni óviðeigandi?
31
+ details: Önnur athugasemdir
32
+ reasons:
33
+ does_not_belong: Inniheldur ólöglega starfsemi, sjálfsvígshugmyndir, persónulegar upplýsingar eða eitthvað sem þér finnst ekki tilheyra %{organization_name}.
34
+ offensive: Inniheldur kynþáttafordóma, kynhneigð, slurðir, persónulegar árásir, dauðarefsárásir, sjálfsvígstilraunir eða hvers konar hatursmál.
35
+ spam: Inniheldur clickbait, auglýsingar, óþekktarangi eða handritabots.
36
+ comment_order_selector:
37
+ order:
38
+ best_rated: Bestu einkunnir
39
+ most_discussed: Mest rætt
40
+ older: Eldri
41
+ recent: Nýleg
42
+ title: 'Raða eftir:'
43
+ comment_thread:
44
+ title: Samtal við %{authorName}
45
+ comments:
46
+ blocked_comments_warning: Athugasemdir eru gerðar óvirkar á þessum tíma, en þú getur lesið þau fyrri.
47
+ loading: Hleð inn athugasemdir ...
48
+ title: "%{count} athugasemdir"
49
+ events:
50
+ comments:
51
+ comment_by_followed_user:
52
+ email_intro: "%{author_name} hefur skilið eftir athugasemd í %{resource_title}. Þú getur lesið það á þessari síðu:"
53
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með %{author_name}. Þú getur sleppt þessari notanda frá prófílssíðunni sinni.
54
+ email_subject: Það er nýtt ummæli um %{author_name} í %{resource_title}
55
+ notification_title: Það er nýtt ummæli við <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>.
56
+ comment_by_followed_user_group:
57
+ email_subject: Það er nýtt ummæli um %{author_name} í %{resource_title}
58
+ notification_title: Það er nýtt ummæli við <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>.
59
+ comment_created:
60
+ email_intro: "%{resource_title} hefur verið skrifað ummæli. Þú getur lesið athugasemdina á þessari síðu:"
61
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með "%{resource_title}" eða höfundinum. Þú getur sleppt því frá fyrri tengilinn.
62
+ email_subject: Það er nýtt ummæli frá %{author_name} í %{resource_title}
63
+ notification_title: Það er nýtt ummæli frá <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>
64
+ reply_created:
65
+ email_intro: "%{author_name} hefur svarað ummæli þín í %{resource_title}. Þú getur lesið það á þessari síðu:"
66
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að ummæli þín voru svarað.
67
+ email_subject: "%{author_name} hefur svarað ummæli þín í %{resource_title}"
68
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hefur svarað athugasemd þinni í <a href="%{resource_path}">%{resource_title}</a>
69
+ user_mentioned:
70
+ email_intro: Þú hefur verið nefndur
71
+ email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú hefur verið nefndur í %{resource_title}.
72
+ email_subject: Þú hefur verið nefndur í %{resource_title}
73
+ notification_title: Þú hefur verið nefndur í <a href="%{resource_path}">%{resource_title}</a> af <a href="%{author_path}">%{author_name} %{author_nickname}</a>
74
+ errors:
75
+ messages:
76
+ cannot_have_comments: getur ekki haft athugasemdir
@@ -4,6 +4,7 @@ it:
4
4
  decidim/comments/comment_by_followed_user_event: Commento
5
5
  decidim/comments/comment_created_event: Commento
6
6
  decidim/comments/reply_created_event: Risposta al commento
7
+ decidim/comments/user_group_mentioned_event: Citare
7
8
  decidim/comments/user_mentioned_event: Citare
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ it:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Commenti
20
+ comments_count: Conteggio dei Commenti
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nuovo commento al %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ it:
42
44
  against: Contro
43
45
  in_favor: A favore
44
46
  deleted_user: Utente cancellato
47
+ hide_replies: Nascondi risposte
45
48
  reply: Rispondi
46
49
  report:
47
50
  action: Report
@@ -53,7 +56,9 @@ it:
53
56
  does_not_belong: Contiene un'attività illegale, istigazioni al suicidio, minacce, informazioni personali o riservate, oppure vi sono dei contenuti che reputi inappropriati per %{organization_name}.
54
57
  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.
55
58
  spam: Contiene pubblicità, truffe, clickbait ("esca da click") o altro contenuto mirato ad attrarre traffico internet.
56
- title: Segnala un problema
59
+ title: Segnala contenuti inappropriati
60
+ show_replies: Mostra %{replies_count} risposte
61
+ single_comment_link_title: Ottieni link a singolo commento
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Favoriti
@@ -66,8 +71,15 @@ it:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: Non sei in grado di commentare in questo momento, ma puoi leggere quelli precedenti.
68
73
  blocked_comments_warning: I commenti sono disabilitati in questo momento, ma puoi leggere quelli precedenti.
74
+ comment_details_title: Dettagli commento
69
75
  loading: Sto caricando i commenti ...
76
+ single_comment_warning: Puoi controllare il resto dei commenti <a href="%{url}">qui</a>.
77
+ single_comment_warning_title: Stai vedendo un singolo commento
70
78
  title: "%{count} commenti"
79
+ down_vote_button:
80
+ text: Non sono d'accordo con questo commento
81
+ up_vote_button:
82
+ text: Sono d'accordo con questo commento
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ it:
75
87
  email_outro: Hai ricevuto questa notifica perché stai seguendo %{author_name}. Puoi smettere di seguire questo utente dalla pagina del profilo.
76
88
  email_subject: C'è un nuovo commento di %{author_name} in %{resource_title}
77
89
  notification_title: C'è un nuovo commento di <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: 'Il gruppo %{author_name} ha lasciato un commento in %{resource_title}. Puoi leggerlo in questa pagina:'
92
+ email_outro: Hai ricevuto questa notifica perché stai seguendo "%{author_name}". Puoi smettere di seguirlo cliccando sul link precedente.
93
+ email_subject: C'è un nuovo commento di %{author_name} in %{resource_title}
94
+ notification_title: C'è un nuovo commento di <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} è stato commentato. Puoi leggere il commento in questa pagina:"
80
97
  email_outro: Hai ricevuto questa notifica perché stai seguendo "%{resource_title}" o il suo autore. Puoi smettere di seguirlo dal link precedente.
@@ -85,6 +102,11 @@ it:
85
102
  email_outro: Hai ricevuto questa notifica perché il tuo commento è stato risposto.
86
103
  email_subject: "%{author_name} ha risposto il tuo commento in %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha risposto il tuo commento in <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: È stato menzionato un gruppo a cui appartieni
107
+ email_outro: Hai ricevuto questa notifica perché appartieni al gruppo %{group_name} che è stato menzionato in %{resource_title}.
108
+ email_subject: Ti si nomina in %{resource_title} come appartenente a %{group_name}
109
+ notification_title: Ti si nomina in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a> come appartenente a <a href="%{group_path}">%{group_name} %{group_nickname}</a>
88
110
  user_mentioned:
89
111
  email_intro: Sei stato menzionato
90
112
  email_outro: Hai ricevuto questa notifica perché sei stato citato in %{resource_title}.
@@ -0,0 +1,120 @@
1
+ ja:
2
+ activemodel:
3
+ models:
4
+ decidim/comments/comment_by_followed_user_event: コメント
5
+ decidim/comments/comment_created_event: コメント
6
+ decidim/comments/reply_created_event: コメント返信
7
+ decidim/comments/user_group_mentioned_event: メンション
8
+ decidim/comments/user_mentioned_event: メンション
9
+ activerecord:
10
+ models:
11
+ decidim/comments/comment:
12
+ other: コメント
13
+ decidim/comments/comment_vote:
14
+ other: 投票
15
+ decidim:
16
+ comments:
17
+ comments: コメント
18
+ comments_count: コメント数
19
+ last_activity:
20
+ new_comment_at_html: "<span> %{link}に新しいコメント</span>"
21
+ votes:
22
+ create:
23
+ error: コメントに投票中に問題がありました。
24
+ components:
25
+ add_comment_form:
26
+ account_message: <a href="%{sign_in_url}">アカウント</a> または <a href="%{sign_up_url}">サインアップ</a> でコメントを追加します。
27
+ form:
28
+ body:
29
+ label: コメント
30
+ placeholder: これについてどう思いますか?
31
+ form_error: テキストは必須で、 %{length} 文字を超えることはできません。
32
+ submit: 送信
33
+ user_group_id:
34
+ label: 'コメント:'
35
+ opinion:
36
+ neutral: ニュートラル
37
+ remaining_characters: "残り %{count} 文字"
38
+ remaining_characters_1: "残り%{count} 文字"
39
+ title: コメントを追加
40
+ comment:
41
+ alignment:
42
+ against: <unk>
43
+ in_favor: <unk>
44
+ deleted_user: 参加者を削除しました
45
+ hide_replies: 返信を非表示
46
+ reply: 返信
47
+ report:
48
+ action: レポート
49
+ already_reported: このコンテンツはすでに報告されており、管理者が確認します。
50
+ close: 閉じる
51
+ description: このコンテンツは不適切ですか?
52
+ details: 追加コメント
53
+ reasons:
54
+ does_not_belong: 違法行為、自殺の脅威、個人情報、または %{organization_name} に属していないと思われる何かが含まれています。
55
+ offensive: 人種差別、性差別、スラー、個人攻撃、死の脅威、自殺要求やあらゆる形態の憎悪スピーチが含まれています。
56
+ spam: クリックベイト、広告、詐欺やスクリプトボットが含まれています。
57
+ title: 不適切なコンテンツを報告する
58
+ show_replies: '%{replies_count} 件の返信を表示'
59
+ single_comment_link_title: シングルコメントへのリンクを取得
60
+ comment_order_selector:
61
+ order:
62
+ best_rated: 最高評価
63
+ most_discussed: 最も議論されたもの
64
+ older: 古い順
65
+ recent: 最近のもの
66
+ title: '並び順:'
67
+ comment_thread:
68
+ title: '%{authorName} との会話'
69
+ comments:
70
+ blocked_comments_for_user_warning: 現時点ではコメントできませんが、以前のコメントを読むことができます。
71
+ blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
72
+ comment_details_title: コメントの詳細
73
+ loading: コメントを読み込んでいます...
74
+ single_comment_warning: コメントの残りはこちら <a href="%{url}"></a>で確認できます。
75
+ single_comment_warning_title: 単一のコメントが表示されています
76
+ title: "%{count} 件のコメント"
77
+ down_vote_button:
78
+ text: このコメントに同意しない
79
+ up_vote_button:
80
+ text: このコメントに同意します
81
+ events:
82
+ comments:
83
+ comment_by_followed_user:
84
+ email_intro: "%{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:"
85
+ email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
86
+ email_subject: '%{author_name} に %{resource_title} による新しいコメントがあります'
87
+ notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
88
+ comment_by_followed_user_group:
89
+ email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
90
+ email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
91
+ email_subject: '%{author_name} に %{resource_title} による新しいコメントがあります'
92
+ notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
93
+ comment_created:
94
+ email_intro: "%{resource_title} はコメントされました。このページでコメントを読むことができます:"
95
+ email_outro: '"%{resource_title}" またはその著者をフォローしているため、この通知を受け取りました。前のリンクからフォローを解除することができます。'
96
+ email_subject: '%{author_name} に %{resource_title} から新しいコメントがあります'
97
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title}に新しいコメントがあります</a>
98
+ reply_created:
99
+ email_intro: "%{author_name} は %{resource_title}であなたのコメントを返信しました。このページで読むことができます:"
100
+ email_outro: コメントが返信されたため、この通知を受信しました。
101
+ email_subject: "%{author_name} が %{resource_title} であなたのコメントに返信しました"
102
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> が <a href="%{resource_path}">%{resource_title}</a> であなたのコメントに返信しました
103
+ user_group_mentioned:
104
+ email_intro: あなたが所属しているグループがメンションされました
105
+ email_outro: あなたは %{group_name} でメンションされたグループ %{resource_title} のメンバーであるため、この通知を受け取りました。
106
+ email_subject: あなたは %{resource_title} で %{group_name} のメンバーとしてメンションされました
107
+ notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> に <a href="%{author_path}">%{author_name} %{author_nickname}</a> のメンバとして <a href="%{group_path}">%{group_name} %{group_nickname}</a>
108
+ user_mentioned:
109
+ email_intro: あなたはメンションされています
110
+ email_outro: あなたが %{resource_title}でメンションされたため、この通知を受け取りました。
111
+ email_subject: あなたは %{resource_title} でメンションされました
112
+ notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> で <a href="%{author_path}">%{author_name} %{author_nickname}によってメンションされました</a>
113
+ metrics:
114
+ comments:
115
+ description: 出席者によって生成されたコメント数
116
+ object: コメント
117
+ title: コメント
118
+ errors:
119
+ messages:
120
+ cannot_have_comments: コメントを持つことはできません