decidim-comments 0.19.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/comments/bundle.js +41 -41
  3. data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
  4. data/app/cells/decidim/comments/comment_activity_cell.rb +1 -1
  5. data/app/commands/decidim/comments/create_comment.rb +7 -7
  6. data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +9 -0
  7. data/app/events/decidim/comments/comment_event.rb +15 -2
  8. data/app/events/decidim/comments/user_group_mentioned_event.rb +10 -0
  9. data/app/forms/decidim/comments/comment_form.rb +9 -0
  10. data/app/frontend/application/icon.component.tsx +16 -4
  11. data/app/frontend/comments/add_comment_form.component.test.tsx +4 -1
  12. data/app/frontend/comments/add_comment_form.component.tsx +16 -3
  13. data/app/frontend/comments/comment.component.test.tsx +1 -1
  14. data/app/frontend/comments/comment.component.tsx +287 -74
  15. data/app/frontend/comments/comment_order_selector.component.tsx +26 -7
  16. data/app/frontend/comments/comments.component.tsx +65 -8
  17. data/app/frontend/comments/down_vote_button.component.tsx +3 -0
  18. data/app/frontend/comments/up_vote_button.component.tsx +3 -0
  19. data/app/frontend/comments/vote_button.component.tsx +4 -0
  20. data/app/frontend/comments/vote_button_component.test.tsx +14 -8
  21. data/app/frontend/entry.ts +19 -0
  22. data/app/frontend/entry_test.ts +2 -0
  23. data/app/frontend/queries/comments.query.graphql +2 -2
  24. data/app/frontend/support/schema.ts +745 -744
  25. data/app/models/decidim/comments/comment.rb +30 -5
  26. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -6
  27. data/app/queries/decidim/comments/sorted_comments.rb +8 -2
  28. data/app/scrubbers/decidim/comments/user_input_scrubber.rb +20 -0
  29. data/app/services/decidim/comments/new_comment_notification_creator.rb +28 -3
  30. data/app/types/decidim/comments/commentable_interface.rb +2 -1
  31. data/app/types/decidim/comments/commentable_mutation_type.rb +2 -2
  32. data/config/locales/ar.yml +10 -1
  33. data/config/locales/bg-BG.yml +6 -0
  34. data/config/locales/ca.yml +23 -1
  35. data/config/locales/cs.yml +35 -13
  36. data/config/locales/da-DK.yml +1 -0
  37. data/config/locales/de.yml +23 -1
  38. data/config/locales/el-GR.yml +1 -0
  39. data/config/locales/el.yml +122 -0
  40. data/config/locales/en.yml +23 -1
  41. data/config/locales/es-MX.yml +23 -1
  42. data/config/locales/es-PY.yml +23 -1
  43. data/config/locales/es.yml +23 -1
  44. data/config/locales/et-EE.yml +1 -0
  45. data/config/locales/eu.yml +4 -1
  46. data/config/locales/fi-plain.yml +23 -1
  47. data/config/locales/fi.yml +29 -7
  48. data/config/locales/fr-CA.yml +122 -0
  49. data/config/locales/fr.yml +23 -1
  50. data/config/locales/ga-IE.yml +1 -0
  51. data/config/locales/gl.yml +4 -1
  52. data/config/locales/hr-HR.yml +1 -0
  53. data/config/locales/hu.yml +17 -1
  54. data/config/locales/id-ID.yml +4 -1
  55. data/config/locales/is-IS.yml +76 -0
  56. data/config/locales/it.yml +23 -1
  57. data/config/locales/ja-JP.yml +120 -0
  58. data/config/locales/lt-LT.yml +1 -0
  59. data/config/locales/lv-LV.yml +118 -0
  60. data/config/locales/mt-MT.yml +1 -0
  61. data/config/locales/nl.yml +35 -13
  62. data/config/locales/no.yml +118 -0
  63. data/config/locales/pl.yml +57 -35
  64. data/config/locales/pt-BR.yml +5 -2
  65. data/config/locales/pt.yml +47 -25
  66. data/config/locales/ro-RO.yml +124 -0
  67. data/config/locales/ru.yml +12 -1
  68. data/config/locales/sk-SK.yml +116 -0
  69. data/config/locales/sk.yml +120 -0
  70. data/config/locales/sl.yml +4 -0
  71. data/config/locales/sr-CS.yml +20 -0
  72. data/config/locales/sv.yml +25 -3
  73. data/config/locales/tr-TR.yml +4 -1
  74. data/config/locales/uk.yml +4 -1
  75. data/db/migrate/20200320105911_index_foreign_keys_in_decidim_comments_comments.rb +7 -0
  76. data/lib/decidim/comments.rb +1 -0
  77. data/lib/decidim/comments/markdown.rb +55 -0
  78. data/lib/decidim/comments/test/shared_examples/comment_event.rb +11 -1
  79. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +3 -2
  80. data/lib/decidim/comments/version.rb +1 -1
  81. metadata +46 -9
@@ -0,0 +1 @@
1
+ et:
@@ -4,6 +4,7 @@ eu:
4
4
  decidim/comments/comment_by_followed_user_event: Iruzkina
5
5
  decidim/comments/comment_created_event: Iruzkina
6
6
  decidim/comments/reply_created_event: Iruzkinaren erantzuna
7
+ decidim/comments/user_group_mentioned_event: Aipatu
7
8
  decidim/comments/user_mentioned_event: Aipatu
8
9
  activerecord:
9
10
  models:
@@ -53,7 +54,6 @@ eu:
53
54
  does_not_belong: Bertan badago legez kontrako jardunik, suizidio-mehatxurik, informazio pertsonalik edo beste zernahi, zure ustez %{organization_name}-ri ez dagokionik.
54
55
  offensive: Ertan badago arrazakeriarik, sexismorik, irainik, eraso pertsonalik, heriotza-mehatxurik, suizidio-eskaerarik edo beste edozein eratako gorroto-diskurtsorik.
55
56
  spam: Bertan badago clickbait-ik, publizitaterik edo iruzurrik.
56
- title: Salatu arazo bat
57
57
  comment_order_selector:
58
58
  order:
59
59
  best_rated: Balorazio hoberenak
@@ -75,6 +75,9 @@ eu:
75
75
  email_outro: Jakinarazpena jaso duzu %{author_name}jarraituz gero. Erabiltzaile hau bere profileko orrialdetik jarrai dezakezu.
76
76
  email_subject: '%{author_name} %{resource_title} iruzkin berri bat dago'
77
77
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago.
78
+ comment_by_followed_user_group:
79
+ email_subject: '%{author_name} %{resource_title} iruzkin berri bat dago'
80
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago.
78
81
  comment_created:
79
82
  email_intro: "%{resource_title} iruzkindu da. Orri honetan iruzkina irakur dezakezu:"
80
83
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
@@ -4,6 +4,7 @@ fi-pl:
4
4
  decidim/comments/comment_by_followed_user_event: Kommentti
5
5
  decidim/comments/comment_created_event: Kommentti
6
6
  decidim/comments/reply_created_event: Vastaus kommentiin
7
+ decidim/comments/user_group_mentioned_event: Maininta
7
8
  decidim/comments/user_mentioned_event: Maininta
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ fi-pl:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Kommentit
20
+ comments_count: Kommenttien määrä
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Uusi kommentti osoitteessa %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ fi-pl:
42
44
  against: Vastaan
43
45
  in_favor: Puolesta
44
46
  deleted_user: Poistettu käyttäjä
47
+ hide_replies: Piilota vastaukset
45
48
  reply: Vastaa
46
49
  report:
47
50
  action: Tee ilmoitus
@@ -53,7 +56,9 @@ fi-pl:
53
56
  does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan organisaatioon %{organization_name}.
54
57
  offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
55
58
  spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
56
- title: Ilmoita ongelmasta
59
+ title: Ilmoita asiatonta sisältöä
60
+ show_replies: Näytä %{replies_count} vastausta
61
+ single_comment_link_title: Hae linkki yksittäiseen kommenttiin
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Parhaiksi arvioidut
@@ -66,8 +71,15 @@ fi-pl:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
68
73
  blocked_comments_warning: Kommentit on poistettu käytöstä tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
74
+ comment_details_title: Kommentin yksityiskohdat
69
75
  loading: Ladataan kommentteja ...
76
+ single_comment_warning: Voit katsoa loput kommentit <a href="%{url}">täältä</a>.
77
+ single_comment_warning_title: Näet yhden kommentin
70
78
  title: "%{count} kommenttia"
79
+ down_vote_button:
80
+ text: Olen eri mieltä tämän kommentin kanssa
81
+ up_vote_button:
82
+ text: Olen samaa mieltä tämän kommentin kanssa
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ fi-pl:
75
87
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
76
88
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
77
89
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:'
92
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
93
+ email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
94
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
80
97
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
@@ -85,6 +102,11 @@ fi-pl:
85
102
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
86
103
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Ryhmä, jonka jäsen olet, on mainittu
107
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
108
+ email_subject: Sinut on mainittu kohteessa %{resource_title} ryhmän %{group_name} jäsenenä
109
+ notification_title: Käyttäjä <a href="%{author_path}">%{author_name}%{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a> ryhmän <a href="%{group_path}">%{group_name} %{group_nickname}</a> jäsenenä
88
110
  user_mentioned:
89
111
  email_intro: Sinut on mainittu
90
112
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
@@ -4,6 +4,7 @@ fi:
4
4
  decidim/comments/comment_by_followed_user_event: Kommentti
5
5
  decidim/comments/comment_created_event: Kommentti
6
6
  decidim/comments/reply_created_event: Vastaus kommentiin
7
+ decidim/comments/user_group_mentioned_event: Maininta
7
8
  decidim/comments/user_mentioned_event: Maininta
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ fi:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Kommentit
20
+ comments_count: Kommenttien määrä
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Uusi kommentti osoitteessa %{link}</span>"
21
23
  votes:
@@ -42,18 +44,21 @@ fi:
42
44
  against: Vastaan
43
45
  in_favor: Puolesta
44
46
  deleted_user: Poistettu käyttäjä
47
+ hide_replies: Piilota vastaukset
45
48
  reply: Vastaa
46
49
  report:
47
50
  action: Tee ilmoitus
48
51
  already_reported: Tämä sisältö on jo ilmoitettu ja ylläpitäjä tutkii sen.
49
52
  close: Sulje
50
- description: Onko tämä sisältö epäasiallista?
53
+ description: Onko tämä sisältö sopimatonta?
51
54
  details: Lisätiedot
52
55
  reasons:
53
56
  does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan organisaatioon %{organization_name}.
54
57
  offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
55
58
  spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
56
- title: Ilmoita ongelmasta
59
+ title: Ilmoita asiatonta sisältöä
60
+ show_replies: Näytä %{replies_count} vastausta
61
+ single_comment_link_title: Hae linkki yksittäiseen kommenttiin
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Parhaiksi arvioidut
@@ -66,25 +71,42 @@ fi:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
68
73
  blocked_comments_warning: Kommentit on poistettu käytöstä tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
74
+ comment_details_title: Kommentin yksityiskohdat
69
75
  loading: Ladataan kommentteja ...
76
+ single_comment_warning: Voit katsoa loput kommentit <a href="%{url}">täältä</a>.
77
+ single_comment_warning_title: Näet yhden kommentin
70
78
  title: "%{count} kommenttia"
79
+ down_vote_button:
80
+ text: Olen eri mieltä tämän kommentin kanssa
81
+ up_vote_button:
82
+ text: Olen samaa mieltä tämän kommentin kanssa
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
74
- email_intro: "%{author_name} on jättänyt kommentin %{resource_title}. Voit lukea sen tällä sivulla:"
86
+ email_intro: "%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:"
75
87
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
76
- email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
77
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>.
88
+ email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
89
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:'
92
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
93
+ email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
94
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
80
97
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
81
- email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
82
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>
98
+ email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
99
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>
83
100
  reply_created:
84
101
  email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
85
102
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
86
103
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Ryhmä, jonka jäsen olet, on mainittu
107
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
108
+ email_subject: Sinut on mainittu kohteessa %{resource_title} ryhmän %{group_name} jäsenenä
109
+ notification_title: Käyttäjä <a href="%{author_path}">%{author_name}%{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a> ryhmän <a href="%{group_path}">%{group_name} %{group_nickname}</a> jäsenenä
88
110
  user_mentioned:
89
111
  email_intro: Sinut on mainittu
90
112
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
@@ -0,0 +1,122 @@
1
+ fr-CA:
2
+ activemodel:
3
+ models:
4
+ decidim/comments/comment_by_followed_user_event: Commentaire
5
+ decidim/comments/comment_created_event: Commentaire
6
+ decidim/comments/reply_created_event: Réponse à un commentaire
7
+ decidim/comments/user_group_mentioned_event: Mention
8
+ decidim/comments/user_mentioned_event: Mention
9
+ activerecord:
10
+ models:
11
+ decidim/comments/comment:
12
+ one: Commentaire
13
+ other: Commentaires
14
+ decidim/comments/comment_vote:
15
+ one: Vote
16
+ other: Votes
17
+ decidim:
18
+ comments:
19
+ comments: Commentaires
20
+ comments_count: Nombre de commentaires
21
+ last_activity:
22
+ new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
23
+ votes:
24
+ create:
25
+ error: Une erreur s'est produite lors du vote sur le commentaire.
26
+ components:
27
+ add_comment_form:
28
+ account_message: Pour ajouter votre commentaire <a href="%{sign_in_url}"> connectez-vous avec votre compte</a> ou <a href="%{sign_up_url}">inscrivez-vous</a>.
29
+ form:
30
+ body:
31
+ label: Commentaire
32
+ placeholder: Que pensez-vous de cela ?
33
+ form_error: Le texte est requis et ne peut pas dépasser %{length} caractères.
34
+ submit: Publier
35
+ user_group_id:
36
+ label: Commenter en tant que
37
+ opinion:
38
+ neutral: Neutre
39
+ remaining_characters: "%{count} caractères restants"
40
+ remaining_characters_1: "%{count} caractère restant"
41
+ title: Ajoutez votre commentaire
42
+ comment:
43
+ alignment:
44
+ against: Contre
45
+ in_favor: Pour
46
+ deleted_user: Utilisateur supprimé
47
+ hide_replies: Cacher les réponses
48
+ reply: Répondre
49
+ report:
50
+ action: Signaler
51
+ already_reported: Ce contenu a déjà été signalé et il sera examiné par un administrateur.
52
+ close: Fermer
53
+ description: Ce contenu est-il inapproprié ?
54
+ details: Commentaires additionnels
55
+ reasons:
56
+ does_not_belong: Contient d’autres types de contenus qui vous semblent inappropriés à %{organization_name} (activités illégales, menaces suicidaires, informations personnelles,...).
57
+ 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,...).
58
+ spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
59
+ title: Signaler un contenu inapproprié
60
+ show_replies: Afficher %{replies_count} réponses
61
+ single_comment_link_title: Obtenir un lien vers un seul commentaire
62
+ comment_order_selector:
63
+ order:
64
+ best_rated: Les mieux notés
65
+ most_discussed: Les plus débattus
66
+ older: Les plus anciens
67
+ recent: Les plus récents
68
+ title: 'Classement par :'
69
+ comment_thread:
70
+ title: Conversation avec %{authorName}
71
+ comments:
72
+ blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
73
+ blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
74
+ comment_details_title: Détails du commentaire
75
+ loading: Chargement des commentaires ...
76
+ single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
77
+ single_comment_warning_title: Vous ne voyez qu'un seul commentaire
78
+ title: "%{count} commentaires"
79
+ down_vote_button:
80
+ text: Je ne suis pas d'accord avec ce commentaire
81
+ up_vote_button:
82
+ text: Je suis d'accord avec ce commentaire
83
+ events:
84
+ comments:
85
+ comment_by_followed_user:
86
+ email_intro: "%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :"
87
+ 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.
88
+ email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
89
+ 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>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
92
+ 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.
93
+ email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
94
+ 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>.
95
+ comment_created:
96
+ email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
97
+ 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.
98
+ email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
99
+ notification_title: Un nouveau commentaire de <a href="%{author_path}">%{author_name} %{author_nickname}</a> vient d'être publié dans <a href="%{resource_path}">%{resource_title}</a>
100
+ reply_created:
101
+ email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
102
+ email_outro: Vous venez de recevoir une notification à votre commentaire.
103
+ email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
104
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Un groupe auquel vous appartenez a été mentionné
107
+ email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
108
+ email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
109
+ 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>
110
+ user_mentioned:
111
+ email_intro: Vous avez été mentionné
112
+ email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}.
113
+ email_subject: Vous avez été mentionné dans %{resource_title}
114
+ notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a>
115
+ metrics:
116
+ comments:
117
+ description: Nombre de commentaires générés par les utilisateurs
118
+ object: commentaires
119
+ title: commentaires
120
+ errors:
121
+ messages:
122
+ cannot_have_comments: ne peut pas être commenté
@@ -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:
@@ -16,6 +17,7 @@ fr:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Commentaires
20
+ comments_count: Nombre de commentaires
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ fr:
42
44
  against: Contre
43
45
  in_favor: Pour
44
46
  deleted_user: Utilisateur supprimé
47
+ hide_replies: Cacher les réponses
45
48
  reply: Répondre
46
49
  report:
47
50
  action: Signaler
@@ -53,7 +56,9 @@ fr:
53
56
  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
57
  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
58
  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
59
+ title: Signaler un contenu inapproprié
60
+ show_replies: Afficher %{replies_count} réponses
61
+ single_comment_link_title: Obtenir un lien vers un seul commentaire
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Les mieux notés
@@ -66,8 +71,15 @@ fr:
66
71
  comments:
67
72
  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
73
  blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
74
+ comment_details_title: Détails du commentaire
69
75
  loading: Chargement des commentaires ...
76
+ single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
77
+ single_comment_warning_title: Vous ne voyez qu'un seul commentaire
70
78
  title: "%{count} commentaires"
79
+ down_vote_button:
80
+ text: Je ne suis pas d'accord avec ce commentaire
81
+ up_vote_button:
82
+ text: Je suis d'accord avec ce commentaire
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ fr:
75
87
  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
88
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
77
89
  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>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
92
+ 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.
93
+ email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
94
+ 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
95
  comment_created:
79
96
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
80
97
  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 +102,11 @@ fr:
85
102
  email_outro: Vous venez de recevoir une notification à votre commentaire.
86
103
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Un groupe auquel vous appartenez a été mentionné
107
+ email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
108
+ email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
109
+ 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
110
  user_mentioned:
89
111
  email_intro: Vous avez été mentionné
90
112
  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:
@@ -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:
@@ -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.