decidim-comments 0.20.1 → 0.23.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/comments/bundle.js +65 -65
  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 +28 -8
  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.yml +122 -0
  54. data/config/locales/en.yml +24 -1
  55. data/config/locales/eo.yml +1 -0
  56. data/config/locales/es-MX.yml +24 -1
  57. data/config/locales/es-PY.yml +24 -1
  58. data/config/locales/es.yml +24 -1
  59. data/config/locales/et-EE.yml +1 -0
  60. data/config/locales/et.yml +1 -0
  61. data/config/locales/eu.yml +4 -1
  62. data/config/locales/fi-plain.yml +24 -1
  63. data/config/locales/fi.yml +31 -8
  64. data/config/locales/fr-CA.yml +123 -0
  65. data/config/locales/fr.yml +25 -2
  66. data/config/locales/ga-IE.yml +1 -0
  67. data/config/locales/gl.yml +4 -1
  68. data/config/locales/hr-HR.yml +1 -0
  69. data/config/locales/hr.yml +1 -0
  70. data/config/locales/hu.yml +18 -2
  71. data/config/locales/id-ID.yml +4 -1
  72. data/config/locales/is-IS.yml +3 -3
  73. data/config/locales/is.yml +76 -0
  74. data/config/locales/it.yml +23 -1
  75. data/config/locales/ja-JP.yml +120 -0
  76. data/config/locales/ja.yml +121 -0
  77. data/config/locales/ko-KR.yml +1 -0
  78. data/config/locales/ko.yml +1 -0
  79. data/config/locales/lt-LT.yml +1 -0
  80. data/config/locales/lt.yml +1 -0
  81. data/config/locales/lv.yml +118 -0
  82. data/config/locales/mt-MT.yml +1 -0
  83. data/config/locales/mt.yml +1 -0
  84. data/config/locales/nl.yml +26 -3
  85. data/config/locales/no.yml +24 -2
  86. data/config/locales/om-ET.yml +1 -0
  87. data/config/locales/pl.yml +62 -40
  88. data/config/locales/pt-BR.yml +5 -2
  89. data/config/locales/pt.yml +47 -25
  90. data/config/locales/ro-RO.yml +124 -0
  91. data/config/locales/ru.yml +4 -1
  92. data/config/locales/sk-SK.yml +116 -0
  93. data/config/locales/sk.yml +120 -0
  94. data/config/locales/sl.yml +4 -0
  95. data/config/locales/so-SO.yml +1 -0
  96. data/config/locales/sr-CS.yml +20 -0
  97. data/config/locales/sv.yml +26 -3
  98. data/config/locales/ti-ER.yml +1 -0
  99. data/config/locales/tr-TR.yml +4 -1
  100. data/config/locales/uk.yml +4 -2
  101. data/config/locales/vi-VN.yml +1 -0
  102. data/config/locales/vi.yml +1 -0
  103. data/config/locales/zh-CN.yml +121 -0
  104. data/config/locales/zh-TW.yml +1 -0
  105. data/db/migrate/20200320105911_index_foreign_keys_in_decidim_comments_comments.rb +7 -0
  106. data/db/migrate/20200706123136_make_comments_handle_i18n.rb +41 -0
  107. data/db/migrate/20200828101910_add_commentable_counter_cache_to_comments.rb +9 -0
  108. data/lib/decidim/comments.rb +1 -0
  109. data/lib/decidim/comments/api/comment_type.rb +5 -1
  110. data/lib/decidim/comments/comment_serializer.rb +7 -2
  111. data/lib/decidim/comments/comment_vote_serializer.rb +5 -1
  112. data/lib/decidim/comments/commentable.rb +11 -0
  113. data/lib/decidim/comments/comments_helper.rb +28 -4
  114. data/lib/decidim/comments/engine.rb +13 -0
  115. data/lib/decidim/comments/markdown.rb +55 -0
  116. data/lib/decidim/comments/mutation_extensions.rb +8 -0
  117. data/lib/decidim/comments/query_extensions.rb +4 -0
  118. data/lib/decidim/comments/test/factories.rb +10 -1
  119. data/lib/decidim/comments/test/shared_examples/comment_event.rb +12 -2
  120. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +3 -2
  121. data/lib/decidim/comments/version.rb +1 -1
  122. metadata +71 -10
@@ -4,6 +4,7 @@ ca:
4
4
  decidim/comments/comment_by_followed_user_event: Comentari
5
5
  decidim/comments/comment_created_event: Comentari
6
6
  decidim/comments/reply_created_event: Resposta al comentari
7
+ decidim/comments/user_group_mentioned_event: Mencionar
7
8
  decidim/comments/user_mentioned_event: Mencionar
8
9
  activerecord:
9
10
  models:
@@ -16,8 +17,10 @@ ca:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Comentaris
20
+ comments_count: Número de comentaris
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nou comentari a %{link}</span>"
23
+ view: Mostrar
21
24
  votes:
22
25
  create:
23
26
  error: S'ha produït un error en votar el comentari.
@@ -42,6 +45,7 @@ ca:
42
45
  against: En contra
43
46
  in_favor: A favor
44
47
  deleted_user: Participant eliminada
48
+ hide_replies: Oculta les respostes
45
49
  reply: Respondre
46
50
  report:
47
51
  action: Denúncia
@@ -53,7 +57,9 @@ ca:
53
57
  does_not_belong: Conté activitat il·legal, amenaces de suïcidi, informació personal, o qualsevol altra cosa que creguis que no pertany a %{organization_name}.
54
58
  offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort, peticions de suïcidi o qualsevol forma de discurs d'odi.
55
59
  spam: Conté "clickbait", publicitat o estafes.
56
- title: Denúncia un problema
60
+ title: Notificar contingut inapropiat
61
+ show_replies: Mostra %{replies_count} respostes
62
+ single_comment_link_title: Aconsegueix l'enllaç al comentari
57
63
  comment_order_selector:
58
64
  order:
59
65
  best_rated: Més ben valorats
@@ -66,8 +72,15 @@ ca:
66
72
  comments:
67
73
  blocked_comments_for_user_warning: No pots fer comentaris en aquest moment, però pots llegir els anteriors.
68
74
  blocked_comments_warning: Els comentaris estan desactivats en aquest moment, però pots llegir els anteriors.
75
+ comment_details_title: Detalls del comentari
69
76
  loading: Carregant els comentaris ...
77
+ single_comment_warning: Pots revisar la resta de comentaris <a href="%{url}">aquí</a>.
78
+ single_comment_warning_title: Estàs veient un sol comentari
70
79
  title: "%{count} comentaris"
80
+ down_vote_button:
81
+ text: No estic d'acord amb aquest comentari
82
+ up_vote_button:
83
+ text: Estic d'acord amb aquest comentari
71
84
  events:
72
85
  comments:
73
86
  comment_by_followed_user:
@@ -75,6 +88,11 @@ ca:
75
88
  email_outro: Has rebut aquesta notificació perquè estàs seguint %{author_name}. Pots deixar de seguir a aquesta participant des de la seva pàgina de perfil.
76
89
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
77
90
  notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
91
+ comment_by_followed_user_group:
92
+ email_intro: '%{author_name} ha deixat un comentari a%{resource_title}. Pots llegir-lo en aquesta pàgina:'
93
+ email_outro: Reps aquesta notificació perquè segueixes a %{author_name}. Pots deixar de seguir aquest grup des de la seva pàgina de perfil.
94
+ email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
95
+ notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
78
96
  comment_created:
79
97
  email_intro: "S'ha comentat %{resource_title}. Pots llegir el comentari d'aquesta pàgina:"
80
98
  email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
@@ -85,6 +103,11 @@ ca:
85
103
  email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
86
104
  email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
87
105
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
106
+ user_group_mentioned:
107
+ email_intro: Un grup al qual pertanys ha estat esmentat
108
+ email_outro: Has rebut aquesta notificació perquè formes part del grup %{group_name} que ha estat esmentat a %{resource_title}.
109
+ email_subject: T'han esmentat a %{resource_title} com a membre de %{group_name}
110
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> t'ha esmentat com a membre de <a href="%{group_path}">%{group_name} %{group_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>
88
111
  user_mentioned:
89
112
  email_intro: Has estat esmentada
90
113
  email_outro: Has rebut aquesta notificació perquè has estat esmentada a %{resource_title}.
@@ -4,7 +4,8 @@ cs:
4
4
  decidim/comments/comment_by_followed_user_event: Komentář
5
5
  decidim/comments/comment_created_event: Komentář
6
6
  decidim/comments/reply_created_event: Odpověď na komentář
7
- decidim/comments/user_mentioned_event: Zmínit se
7
+ decidim/comments/user_group_mentioned_event: Zmínka
8
+ decidim/comments/user_mentioned_event: Zmínka
8
9
  activerecord:
9
10
  models:
10
11
  decidim/comments/comment:
@@ -13,65 +14,77 @@ cs:
13
14
  many: Komentáře
14
15
  other: Komentáře
15
16
  decidim/comments/comment_vote:
16
- one: Hlasování
17
+ one: Hlasovat
17
18
  few: Hlasy
18
19
  many: Hlasy
19
20
  other: Hlasy
20
21
  decidim:
21
22
  comments:
22
23
  comments: Komentáře
24
+ comments_count: Počet komentářů
23
25
  last_activity:
24
26
  new_comment_at_html: "<span>Nový komentář v %{link}</span>"
27
+ view: Zobrazit
25
28
  votes:
26
29
  create:
27
- error: Při hlasování se vyskytly chyby.
30
+ error: Při hlasování o komentáři došlo k chybě.
28
31
  components:
29
32
  add_comment_form:
30
- account_message: <a href="%{sign_in_url}">Přihlaste se svým účtem</a> nebo <a href="%{sign_up_url}">přihlaste se</a> a přidejte svůj komentář.
33
+ account_message: <a href="%{sign_in_url}">Přihlaste se pomocí svého účtu</a> nebo se <a href="%{sign_up_url}">zaregistrujte</a> a přidejte svůj komentář.
31
34
  form:
32
35
  body:
33
36
  label: Komentář
34
37
  placeholder: Co si o tom myslíš?
35
38
  form_error: Text je povinný a nesmí být delší než %{length} znaků.
36
- submit: Poslat
39
+ submit: Odeslat
37
40
  user_group_id:
38
41
  label: Komentovat jako
39
42
  opinion:
40
43
  neutral: Neutrální
41
44
  remaining_characters: "Zbývá %{count} znaků"
42
- remaining_characters_1: "Zbývá %{count} znaků"
45
+ remaining_characters_1: "Zbývá %{count} znak"
43
46
  title: Přidejte svůj komentář
44
47
  comment:
45
48
  alignment:
46
49
  against: Proti
47
50
  in_favor: Ve prospěch
48
- deleted_user: Vymazaný uživatel
51
+ deleted_user: Vymazaný účastník
52
+ hide_replies: Skrýt odpovědi
49
53
  reply: Odpověď
50
54
  report:
51
55
  action: Zpráva
52
- already_reported: Tento obsah je již nahlášen a bude kontrolován administrátorem.
56
+ already_reported: Tento obsah je již nahlášen a bude přezkoumán administrátorem.
53
57
  close: Zavřít
54
58
  description: Je tento obsah nevhodný?
55
59
  details: Další komentáře
56
60
  reasons:
57
61
  does_not_belong: Obsahuje nezákonnou činnost, sebevražedné hrozby, osobní informace nebo něco jiného, o kterém si myslíte, že nepatří na %{organization_name}.
58
62
  offensive: Obsahuje rasismus, sexismus, podvody, osobní útoky, hrozby smrti, žádosti o sebevraždu nebo jakoukoli formu projevy nenávisti.
59
- spam: Obsahuje clickbait, reklama, podvody nebo skripty.
60
- title: Nahlásit problém
63
+ spam: Obsahuje clickbait, reklamu, podvody nebo škodlivé skripty.
64
+ title: Nahlásit nevhodný obsah
65
+ show_replies: Zobrazit %{replies_count} odpovědí
66
+ single_comment_link_title: Získat odkaz na jeden komentář
61
67
  comment_order_selector:
62
68
  order:
63
69
  best_rated: Nejlépe hodnocené
64
70
  most_discussed: Nejdiskutovanější
65
71
  older: Starší
66
- recent: Nedávno
72
+ recent: Nedávné
67
73
  title: 'Seřadit podle:'
68
74
  comment_thread:
69
75
  title: Konverzace s číslem %{authorName}
70
76
  comments:
71
- blocked_comments_for_user_warning: V tuto chvíli nemůžete komentovat, ale můžete si přečíst předchozí.
72
- blocked_comments_warning: Komentáře jsou v tuto chvíli zakázány, ale můžete si přečíst předchozí.
77
+ blocked_comments_for_user_warning: Momentálně nemůžete komentovat, ale můžete si přečíst ty předchozí.
78
+ blocked_comments_warning: Komentáře jsou momentálně zakázány, ale můžete si přečíst ty předchozí.
79
+ comment_details_title: Podrobnosti komentáře
73
80
  loading: Načítání komentářů ...
81
+ single_comment_warning: Můžete zkontrolovat zbytek komentářů <a href="%{url}">zde</a>.
82
+ single_comment_warning_title: Vidíte jeden komentář
74
83
  title: "%{count} komentářů"
84
+ down_vote_button:
85
+ text: Nesouhlasím s tímto komentářem
86
+ up_vote_button:
87
+ text: Souhlasím s tímto komentářem
75
88
  events:
76
89
  comments:
77
90
  comment_by_followed_user:
@@ -79,6 +92,11 @@ cs:
79
92
  email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{author_name}. Tento uživatel můžete zrušit ze své profilové stránky.
80
93
  email_subject: K dispozici je nový komentář %{author_name} v %{resource_title}
81
94
  notification_title: K dispozici je nový komentář <a href="%{author_path}">%{author_name} %{author_nickname}</a> v <a href="%{resource_path}">%{resource_title}</a>.
95
+ comment_by_followed_user_group:
96
+ email_intro: 'Skupina %{author_name} zanechala komentář v %{resource_title}. Můžete si jej přečíst na této stránce:'
97
+ email_outro: Obdrželi jste toto oznámení, protože sledujete %{author_name}. Můžete zrušit sledování této skupiny na její profilové stránce.
98
+ email_subject: K dispozici je nový komentář %{author_name} v %{resource_title}
99
+ notification_title: K dispozici je nový komentář <a href="%{author_path}">%{author_name} %{author_nickname}</a> v <a href="%{resource_path}">%{resource_title}</a>.
82
100
  comment_created:
83
101
  email_intro: "%{resource_title} bylo komentováno. Můžete si přečíst komentář na této stránce:"
84
102
  email_outro: Toto oznámení jste obdrželi, protože jste sledovali "%{resource_title}" nebo jeho autora. Můžete jej odhlásit od předchozího odkazu.
@@ -89,6 +107,11 @@ cs:
89
107
  email_outro: Toto oznámení jste obdrželi, protože váš komentář byl zodpovězen.
90
108
  email_subject: "%{author_name} odpověděl váš komentář v %{resource_title}"
91
109
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> odpověděl / a svůj komentář v <a href="%{resource_path}">%{resource_title}</a>
110
+ user_group_mentioned:
111
+ email_intro: Byla zmíněna skupina, do které patříte
112
+ email_outro: Obdrželi jste toto oznámení, protože jste členem skupiny %{group_name}, která byla zmíněna v %{resource_title}.
113
+ email_subject: Byl jste zmíněn v %{resource_title} jako člen %{group_name}
114
+ notification_title: Byli jste zmíněni v <a href="%{resource_path}">%{resource_title}</a> od <a href="%{author_path}">%{author_name} %{author_nickname}</a> jako člen <a href="%{group_path}">%{group_name} %{group_nickname}</a>
92
115
  user_mentioned:
93
116
  email_intro: Byl jste zmíněn
94
117
  email_outro: Toto oznámení jste obdrželi, protože jste byli uvedeni v %{resource_title}.
@@ -0,0 +1 @@
1
+ da:
@@ -0,0 +1 @@
1
+ da:
@@ -4,6 +4,7 @@ de:
4
4
  decidim/comments/comment_by_followed_user_event: Kommentar
5
5
  decidim/comments/comment_created_event: Kommentar
6
6
  decidim/comments/reply_created_event: Kommentarantwort
7
+ decidim/comments/user_group_mentioned_event: Erwähnen
7
8
  decidim/comments/user_mentioned_event: Erwähnen
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ de:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Bemerkungen
20
+ comments_count: Kommentaranzahl
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Neuer Kommentar unter %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ de:
42
44
  against: Gegen
43
45
  in_favor: Zugunsten
44
46
  deleted_user: Gelöschter Benutzer
47
+ hide_replies: Antworten ausblenden
45
48
  reply: Antworten
46
49
  report:
47
50
  action: Bericht
@@ -53,7 +56,9 @@ de:
53
56
  does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name}.
54
57
  offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jede Form von Hassreden.
55
58
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
56
- title: Ein Problem melden
59
+ title: Ungeeigneten Inhalt melden
60
+ show_replies: '%{replies_count} Antworten anzeigen'
61
+ single_comment_link_title: Verknüpfung zu einzelnem Kommentar erhalten
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Am besten bewertet
@@ -66,8 +71,15 @@ de:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: Sie können momentan nichts kommentieren, aber Sie können die vorherigen lesen.
68
73
  blocked_comments_warning: Kommentare sind zu diesem Zeitpunkt deaktiviert, aber Sie können die vorherigen lesen.
74
+ comment_details_title: Kommentarinformationen
69
75
  loading: Kommentare werden geladen ...
76
+ single_comment_warning: Sie können die restlichen Kommentare <a href="%{url}">hier</a> prüfen.
77
+ single_comment_warning_title: Ihnen wird ein einzelner Kommentar angezeigt
70
78
  title: "%{count} Kommentare"
79
+ down_vote_button:
80
+ text: Ich bin mit diesem Kommentar nicht einverstanden
81
+ up_vote_button:
82
+ text: Ich stimme diesem Kommentar zu
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ de:
75
87
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name}. Sie können diesen Benutzer von seiner Profilseite aus nicht mehr anzeigen.
76
88
  email_subject: Es gibt einen neuen Kommentar von %{author_name} in %{resource_title}
77
89
  notification_title: Es gibt einen neuen Kommentar von <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: 'Die Gruppe %{author_name} hat einen Kommentar in %{resource_title} hinterlassen. Sie können es auf dieser Seite lesen:'
92
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Sie können diese Gruppe von ihrer Profilseite aus deabonnieren.
93
+ email_subject: Es gibt einen neuen Kommentar von %{author_name} in %{resource_title}
94
+ notification_title: Es gibt einen neuen Kommentar von <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} wurde kommentiert. Sie können den Kommentar auf dieser Seite lesen:"
80
97
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" oder seinem Autor folgen. Sie können es aus dem vorherigen Link entfernen.
@@ -85,6 +102,11 @@ de:
85
102
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
86
103
  email_subject: "%{author_name} hat Ihren Kommentar in %{resource_title}geantwortet"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a>geantwortet
105
+ user_group_mentioned:
106
+ email_intro: Eine Ihrer Gruppen wurde erwähnt
107
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Mitglied der Gruppe %{group_name} sind, die in %{resource_title} erwähnt wurde.
108
+ email_subject: Sie wurden in %{resource_title} als Mitglied von %{group_name} erwähnt
109
+ notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> als ein Mitglied von <a href="%{group_path}">%{group_name} %{group_nickname}</a> erwähnt
88
110
  user_mentioned:
89
111
  email_intro: Du wurdest erwähnt
90
112
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title}.
@@ -0,0 +1,122 @@
1
+ el:
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
+ one: Σχόλιο
13
+ other: Σχόλια
14
+ decidim/comments/comment_vote:
15
+ one: Ψηφοφορία
16
+ other: Ψήφοι
17
+ decidim:
18
+ comments:
19
+ comments: Σχόλια
20
+ comments_count: Αριθμός σχολίων
21
+ last_activity:
22
+ new_comment_at_html: "<span>Νέο σχόλιο στο %{link}</span>"
23
+ votes:
24
+ create:
25
+ error: Υπήρξε ένα πρόβλημα κατά την ψηφοφορία του σχολίου.
26
+ components:
27
+ add_comment_form:
28
+ account_message: <a href="%{sign_in_url}">Είσοδος με τον λογαριασμό σας</a> ή <a href="%{sign_up_url}">εγγραφείτε</a> για να προσθέσετε το σχόλιό σας.
29
+ form:
30
+ body:
31
+ label: Σχόλιο
32
+ placeholder: Ποια είναι η γνώμη σας για αυτό;
33
+ form_error: Το κείμενο απαιτείται και δεν μπορεί να υπερβαίνει τους %{length} χαρακτήρες.
34
+ submit: Αποστολή
35
+ user_group_id:
36
+ label: Σχόλιο ως
37
+ opinion:
38
+ neutral: Ούτε ικανοποιημένος/η ούτε δυσαρεστημένος/η
39
+ remaining_characters: "%{count} χαρακτήρες απομένουν"
40
+ remaining_characters_1: "%{count} χαρακτήρας απομένει"
41
+ title: Προσθέστε το σχόλιό σας
42
+ comment:
43
+ alignment:
44
+ against: Κατά
45
+ in_favor: Υπέρ
46
+ deleted_user: Διαγραμμένος συμμετέχων
47
+ hide_replies: Απόκρυψη απαντήσεων
48
+ reply: Απάντηση
49
+ report:
50
+ action: Αναφορά
51
+ already_reported: Αυτό το περιεχόμενο έχει ήδη αναφερθεί και θα ελεγχθεί από έναν διαχειριστή.
52
+ close: Κλείσιμο
53
+ description: Αυτό το περιεχόμενο είναι ακατάλληλο;
54
+ details: Πρόσθετα σχόλια
55
+ reasons:
56
+ does_not_belong: Περιέχει παράνομη δραστηριότητα, απειλές αυτοκτονίας, προσωπικά στοιχεία ή κάτι άλλο που πιστεύετε ότι δεν ανήκει στον οργανισμό %{organization_name}.
57
+ offensive: Περιέχει ρατσισμό, σεξισμό, δυσφημίσεις, προσωπικές επιθέσεις, απειλές θανάτου, αιτήματα αυτοκτονίας ή οποιαδήποτε μορφή ρητορικής μίσους.
58
+ spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
59
+ title: Αναφορά ακατάλληλου περιεχομένου
60
+ show_replies: Εμφάνιση %{replies_count} απαντήσεων
61
+ single_comment_link_title: Λήψη συνδέσμου για ένα μόνο σχόλιο
62
+ comment_order_selector:
63
+ order:
64
+ best_rated: Με την καλύτερη βαθμολογία
65
+ most_discussed: Πιο συζητημένα
66
+ older: Παλαιότερα
67
+ recent: Πρόσφατα
68
+ title: 'Ταξινόμηση κατά:'
69
+ comment_thread:
70
+ title: Συζήτηση με τον συντάκτη %{authorName}
71
+ comments:
72
+ blocked_comments_for_user_warning: Δεν μπορείτε να σχολιάσετε αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
73
+ blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
74
+ comment_details_title: Λεπτομέρειες σχολίων
75
+ loading: Φόρτωση σχολίων...
76
+ single_comment_warning: Μπορείτε να δείτε τα υπόλοιπα σχόλια <a href="%{url}">εδώ</a>.
77
+ single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
78
+ title: "%{count} σχόλια"
79
+ down_vote_button:
80
+ text: Δεν συμφωνώ με αυτό το σχόλιο
81
+ up_vote_button:
82
+ text: Συμφωνώ με αυτό το σχόλιο
83
+ events:
84
+ comments:
85
+ comment_by_followed_user:
86
+ email_intro: "Ο συντάκτης %{author_name} έκανε ένα σχόλιο στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
87
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_name}. Μπορείτε να σταματήσετε να ακολουθείτε αυτόν τον χρήστη από τη σελίδα προφίλ του.
88
+ email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
89
+ notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: 'Η ομάδα %{author_name} έκανε ένα σχόλιο στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:'
92
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_name}. Μπορείτε να σταματήσετε να ακολουθείτε αυτήν την ομάδα από τη σελίδα προφίλ της.
93
+ email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
94
+ notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>.
95
+ comment_created:
96
+ email_intro: "Το στοιχείο %{resource_title} έχει σχολιαστεί. Μπορείτε να διαβάσετε το σχόλιο σε αυτήν τη σελίδα:"
97
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε το στοιχείο «%{resource_title}» ή τον συντάκτη του. Μπορείτε να σταματήσετε να την ακολουθείτε από τον προηγούμενο σύνδεσμο.
98
+ email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
99
+ notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη<a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
100
+ reply_created:
101
+ email_intro: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
102
+ email_outro: Λάβατε αυτήν την ειδοποίηση, επειδή το σχόλιό σας απαντήθηκε.
103
+ email_subject: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}"
104
+ notification_title: Ο συντάκτης <a href="%{author_path}">%{author_name} %{author_nickname}</a> απάντησε στο σχόλιό σας στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Έγινε αναφορά σε μια ομάδα στην οποία ανήκετε
107
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε μέλος της ομάδας %{group_name} που αναφέρθηκε στο στοιχείο %{resource_title}.
108
+ email_subject: Έγινε αναφορά σε εσάς στο στοιχείο %{resource_title} ως μέλος της ομάδας %{group_name}
109
+ 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>
110
+ user_mentioned:
111
+ email_intro: Έγινε αναφορά σε εσάς
112
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή έγινε αναφορά σε εσάς στο στοιχείο %{resource_title}.
113
+ email_subject: Έγινε αναφορά σε εσάς στο στοιχείο %{resource_title}
114
+ notification_title: Έγινε αναφορά σε εσάς στο στοιχείο <a href="%{resource_path}">%{resource_title}</a> από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a>
115
+ metrics:
116
+ comments:
117
+ description: Αριθμός σχολίων που δημιουργήθηκαν από συμμετέχοντες
118
+ object: σχόλια
119
+ title: Σχόλια
120
+ errors:
121
+ messages:
122
+ cannot_have_comments: δεν μπορεί να έχει σχόλια
@@ -5,6 +5,7 @@ en:
5
5
  decidim/comments/comment_by_followed_user_event: Comment
6
6
  decidim/comments/comment_created_event: Comment
7
7
  decidim/comments/reply_created_event: Comment reply
8
+ decidim/comments/user_group_mentioned_event: Mention
8
9
  decidim/comments/user_mentioned_event: Mention
9
10
  activerecord:
10
11
  models:
@@ -17,8 +18,10 @@ en:
17
18
  decidim:
18
19
  comments:
19
20
  comments: Comments
21
+ comments_count: Comments count
20
22
  last_activity:
21
23
  new_comment_at_html: "<span>New comment at %{link}</span>"
24
+ view: View
22
25
  votes:
23
26
  create:
24
27
  error: There was a problem voting the comment.
@@ -43,6 +46,7 @@ en:
43
46
  against: Against
44
47
  in_favor: In favor
45
48
  deleted_user: Deleted participant
49
+ hide_replies: Hide replies
46
50
  reply: Reply
47
51
  report:
48
52
  action: Report
@@ -54,7 +58,9 @@ en:
54
58
  does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think doesn't belong on %{organization_name}.
55
59
  offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
56
60
  spam: Contains clickbait, advertising, scams or script bots.
57
- title: Report a problem
61
+ title: Report inappropriate content
62
+ show_replies: Show %{replies_count} replies
63
+ single_comment_link_title: Get link to single comment
58
64
  comment_order_selector:
59
65
  order:
60
66
  best_rated: Best rated
@@ -67,8 +73,15 @@ en:
67
73
  comments:
68
74
  blocked_comments_for_user_warning: You are not able to comment at this moment, but you can read the previous ones.
69
75
  blocked_comments_warning: Comments are disabled at this time, but you can read the previous ones.
76
+ comment_details_title: Comment details
70
77
  loading: Loading comments ...
78
+ single_comment_warning: You can check the rest of the comments <a href="%{url}">here</a>.
79
+ single_comment_warning_title: You are seeing a single comment
71
80
  title: "%{count} comments"
81
+ down_vote_button:
82
+ text: I disagree with this comment
83
+ up_vote_button:
84
+ text: I agree with this comment
72
85
  events:
73
86
  comments:
74
87
  comment_by_followed_user:
@@ -76,6 +89,11 @@ en:
76
89
  email_outro: You have received this notification because you are following %{author_name}. You can unfollow this user from their profile page.
77
90
  email_subject: There is a new comment by %{author_name} in %{resource_title}
78
91
  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>.
92
+ comment_by_followed_user_group:
93
+ email_intro: 'The group %{author_name} has left a comment in %{resource_title}. You can read it in this page:'
94
+ email_outro: You have received this notification because you are following %{author_name}. You can unfollow this group from its profile page.
95
+ email_subject: There is a new comment by %{author_name} in %{resource_title}
96
+ 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>.
79
97
  comment_created:
80
98
  email_intro: "%{resource_title} has been commented. You can read the comment in this page:"
81
99
  email_outro: You have received this notification because you are following "%{resource_title}" or its author. You can unfollow it from the previous link.
@@ -86,6 +104,11 @@ en:
86
104
  email_outro: You have received this notification because your comment was replied.
87
105
  email_subject: "%{author_name} has replied your comment in %{resource_title}"
88
106
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
107
+ user_group_mentioned:
108
+ email_intro: A group you belong to has been mentioned
109
+ email_outro: You have received this notification because you are a member of the group %{group_name} that has been mentioned in %{resource_title}.
110
+ email_subject: You have been mentioned in %{resource_title} as a member of %{group_name}
111
+ notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a> as a member of <a href="%{group_path}">%{group_name} %{group_nickname}</a>
89
112
  user_mentioned:
90
113
  email_intro: You have been mentioned
91
114
  email_outro: You have received this notification because you have been mentioned in %{resource_title}.