decidim-comments 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/comments/bundle.js +53 -53
  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 +1 -1
  10. data/app/events/decidim/comments/comment_event.rb +1 -9
  11. data/app/forms/decidim/comments/comment_form.rb +8 -1
  12. data/app/frontend/comments/add_comment_form.component.test.tsx +30 -28
  13. data/app/frontend/comments/add_comment_form.component.tsx +32 -16
  14. data/app/frontend/comments/comment.component.test.tsx +35 -4
  15. data/app/frontend/comments/comment.component.tsx +24 -15
  16. data/app/frontend/comments/comment_thread.component.test.tsx +9 -8
  17. data/app/frontend/comments/comment_thread.component.tsx +3 -1
  18. data/app/frontend/comments/comments.component.test.tsx +17 -14
  19. data/app/frontend/comments/comments.component.tsx +28 -4
  20. data/app/frontend/comments/down_vote_button.component.tsx +24 -9
  21. data/app/frontend/comments/up_vote_button.component.tsx +24 -9
  22. data/app/frontend/mutations/add_comment.mutation.graphql +2 -2
  23. data/app/frontend/mutations/down_vote.mutation.graphql +2 -2
  24. data/app/frontend/mutations/up_vote.mutation.graphql +2 -2
  25. data/app/frontend/queries/comments.query.graphql +2 -2
  26. data/app/frontend/support/schema.ts +1060 -735
  27. data/app/helpers/decidim/comments/comment_cells_helper.rb +33 -0
  28. data/app/models/decidim/comments/comment.rb +80 -21
  29. data/app/models/decidim/comments/seed.rb +1 -1
  30. data/app/types/decidim/comments/commentable_interface.rb +1 -1
  31. data/app/types/decidim/comments/commentable_mutation_type.rb +4 -1
  32. data/config/locales/am-ET.yml +1 -0
  33. data/config/locales/bg.yml +6 -0
  34. data/config/locales/ca.yml +1 -0
  35. data/config/locales/cs.yml +2 -1
  36. data/config/locales/da.yml +1 -0
  37. data/config/locales/de.yml +29 -28
  38. data/config/locales/en.yml +1 -0
  39. data/config/locales/eo.yml +1 -0
  40. data/config/locales/es-MX.yml +1 -0
  41. data/config/locales/es-PY.yml +1 -0
  42. data/config/locales/es.yml +3 -2
  43. data/config/locales/et.yml +1 -0
  44. data/config/locales/fi-plain.yml +1 -0
  45. data/config/locales/fi.yml +2 -1
  46. data/config/locales/fr-CA.yml +2 -1
  47. data/config/locales/fr.yml +2 -1
  48. data/config/locales/gl.yml +13 -0
  49. data/config/locales/hr.yml +1 -0
  50. data/config/locales/hu.yml +1 -1
  51. data/config/locales/is-IS.yml +0 -2
  52. data/config/locales/is.yml +76 -0
  53. data/config/locales/it.yml +1 -0
  54. data/config/locales/ja-JP.yml +2 -2
  55. data/config/locales/ja.yml +121 -0
  56. data/config/locales/ko-KR.yml +1 -0
  57. data/config/locales/ko.yml +1 -0
  58. data/config/locales/lt.yml +1 -0
  59. data/config/locales/{lv-LV.yml → lv.yml} +0 -0
  60. data/config/locales/mt.yml +1 -0
  61. data/config/locales/nl.yml +11 -10
  62. data/config/locales/om-ET.yml +1 -0
  63. data/config/locales/pl.yml +6 -5
  64. data/config/locales/si-LK.yml +1 -0
  65. data/config/locales/so-SO.yml +1 -0
  66. data/config/locales/sv.yml +1 -0
  67. data/config/locales/sw-KE.yml +1 -0
  68. data/config/locales/ti-ER.yml +1 -0
  69. data/config/locales/tr-TR.yml +53 -33
  70. data/config/locales/uk.yml +0 -1
  71. data/config/locales/vi-VN.yml +1 -0
  72. data/config/locales/vi.yml +1 -0
  73. data/config/locales/zh-CN.yml +121 -0
  74. data/config/locales/zh-TW.yml +1 -0
  75. data/db/migrate/20200706123136_make_comments_handle_i18n.rb +41 -0
  76. data/db/migrate/20200828101910_add_commentable_counter_cache_to_comments.rb +9 -0
  77. data/lib/decidim/comments/api/comment_type.rb +5 -1
  78. data/lib/decidim/comments/comment_serializer.rb +7 -2
  79. data/lib/decidim/comments/comment_vote_serializer.rb +5 -1
  80. data/lib/decidim/comments/commentable.rb +11 -0
  81. data/lib/decidim/comments/comments_helper.rb +28 -4
  82. data/lib/decidim/comments/engine.rb +13 -0
  83. data/lib/decidim/comments/mutation_extensions.rb +8 -0
  84. data/lib/decidim/comments/query_extensions.rb +4 -0
  85. data/lib/decidim/comments/test/factories.rb +10 -1
  86. data/lib/decidim/comments/test/shared_examples/comment_event.rb +1 -1
  87. data/lib/decidim/comments/version.rb +1 -1
  88. metadata +42 -14
@@ -20,6 +20,7 @@ fi:
20
20
  comments_count: Kommenttien määrä
21
21
  last_activity:
22
22
  new_comment_at_html: "<span>Uusi kommentti osoitteessa %{link}</span>"
23
+ view: Näytä
23
24
  votes:
24
25
  create:
25
26
  error: Kommentin äänestys epäonnistui.
@@ -109,7 +110,7 @@ fi:
109
110
  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ä
110
111
  user_mentioned:
111
112
  email_intro: Sinut on mainittu
112
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
113
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohteessa %{resource_title}.
113
114
  email_subject: Sinut on mainittu kohdassa %{resource_title}
114
115
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohdassa <a href="%{resource_path}">%{resource_title}</a>
115
116
  metrics:
@@ -16,10 +16,11 @@ fr-CA:
16
16
  other: Votes
17
17
  decidim:
18
18
  comments:
19
- comments: Commentaires
19
+ comments: commentaires
20
20
  comments_count: Nombre de commentaires
21
21
  last_activity:
22
22
  new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
23
+ view: Voir
23
24
  votes:
24
25
  create:
25
26
  error: Une erreur s'est produite lors du vote sur le commentaire.
@@ -16,10 +16,11 @@ fr:
16
16
  other: Votes
17
17
  decidim:
18
18
  comments:
19
- comments: Commentaires
19
+ comments: commentaires
20
20
  comments_count: Nombre de commentaires
21
21
  last_activity:
22
22
  new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
23
+ view: Voir
23
24
  votes:
24
25
  create:
25
26
  error: Une erreur s'est produite lors du vote sur le commentaire.
@@ -17,8 +17,10 @@ gl:
17
17
  decidim:
18
18
  comments:
19
19
  comments: Comentarios
20
+ comments_count: Número de comentarios
20
21
  last_activity:
21
22
  new_comment_at_html: "<span>Novo comentario en %{link}</span>"
23
+ view: Ver
22
24
  votes:
23
25
  create:
24
26
  error: Houbo erros ao votar o comentario.
@@ -43,6 +45,7 @@ gl:
43
45
  against: Contra
44
46
  in_favor: A favor
45
47
  deleted_user: Usuario eliminado
48
+ hide_replies: Ocultar respostas
46
49
  reply: Responder
47
50
  report:
48
51
  action: Informe
@@ -54,6 +57,9 @@ gl:
54
57
  does_not_belong: Contén actividades ilegais, ameazas de suicidio, información persoal ou outra cousa que pensas que non pertence a %{organization_name}.
55
58
  offensive: Contén racismo, sexismo, abuso, ataques persoais, ameazas de morte, solicitudes de suicidio ou calquera tipo de discurso de odio.
56
59
  spam: Contén clic, publicidade, fraudes ou bots de script.
60
+ title: Denunciar contido inapropiado
61
+ show_replies: Amosar %{replies_count} respostas
62
+ single_comment_link_title: Obter ligazón a un único comentario
57
63
  comment_order_selector:
58
64
  order:
59
65
  best_rated: Mellor valorado
@@ -66,8 +72,15 @@ gl:
66
72
  comments:
67
73
  blocked_comments_for_user_warning: Non podes comentar neste momento, pero podes ler os anteriores.
68
74
  blocked_comments_warning: Os comentarios están desactivados neste momento, pero podes ler os anteriores.
75
+ comment_details_title: Detalles do comentario
69
76
  loading: Cargando comentarios ...
77
+ single_comment_warning: Podes revisar os comentarios restantes <a href="%{url}">aquí</a>.
78
+ single_comment_warning_title: Estás a ver un único comentario
70
79
  title: "%{count} comentarios"
80
+ down_vote_button:
81
+ text: Non estou de acordo con este comentario
82
+ up_vote_button:
83
+ text: Estou de acordo con este comentario
71
84
  events:
72
85
  comments:
73
86
  comment_by_followed_user:
@@ -0,0 +1 @@
1
+ hr:
@@ -16,7 +16,7 @@ hu:
16
16
  other: Szavazatok
17
17
  decidim:
18
18
  comments:
19
- comments: Megjegyzések
19
+ comments: Hozzászólások
20
20
  last_activity:
21
21
  new_comment_at_html: "<span>Új megjegyzés: %{link}</span>"
22
22
  votes:
@@ -1,7 +1,5 @@
1
1
  is-IS:
2
2
  decidim:
3
- comments:
4
- comments: Athugasemdir
5
3
  components:
6
4
  add_comment_form:
7
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.
@@ -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
@@ -20,6 +20,7 @@ it:
20
20
  comments_count: Conteggio dei Commenti
21
21
  last_activity:
22
22
  new_comment_at_html: "<span>Nuovo commento al %{link}</span>"
23
+ view: Visualizza
23
24
  votes:
24
25
  create:
25
26
  error: Ci sono stati errori durante la votazione del commento.
@@ -39,8 +39,8 @@ ja:
39
39
  title: コメントを追加
40
40
  comment:
41
41
  alignment:
42
- against: 反対
43
- in_favor: 賛成
42
+ against: <unk>
43
+ in_favor: <unk>
44
44
  deleted_user: 参加者を削除しました
45
45
  hide_replies: 返信を非表示
46
46
  reply: 返信
@@ -0,0 +1,121 @@
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
+ view: 表示
22
+ votes:
23
+ create:
24
+ error: コメントに投票中に問題がありました。
25
+ components:
26
+ add_comment_form:
27
+ account_message: <a href="%{sign_in_url}">ログイン</a> または <a href="%{sign_up_url}">新規登録</a> することでコメントできます。
28
+ form:
29
+ body:
30
+ label: コメント
31
+ placeholder: これについてどう思いますか?
32
+ form_error: テキストは必須で、 %{length} 文字を超えることはできません。
33
+ submit: 送信
34
+ user_group_id:
35
+ label: 'コメント:'
36
+ opinion:
37
+ neutral: 中立
38
+ remaining_characters: "残り %{count} 文字"
39
+ remaining_characters_1: "残り%{count} 文字"
40
+ title: コメントを追加
41
+ comment:
42
+ alignment:
43
+ against: 反対
44
+ in_favor: 賛成
45
+ deleted_user: 退会者
46
+ hide_replies: 返信を非表示
47
+ reply: 返信
48
+ report:
49
+ action: レポート
50
+ already_reported: このコンテンツはすでに報告されており、管理者が確認します。
51
+ close: 閉じる
52
+ description: このコンテンツは不適切ですか?
53
+ details: 追加コメント
54
+ reasons:
55
+ does_not_belong: 違法行為、個人情報、または %{organization_name} に属していないと思われる内容が含まれています。
56
+ offensive: 差別的な内容、誹謗中傷などの不適切な内容が含まれています。
57
+ spam: 本来の内容に関係が無い広告、詐欺や悪意のある処理などが含まれています。
58
+ title: 不適切なコンテンツを報告する
59
+ show_replies: '%{replies_count} 件の返信を表示'
60
+ single_comment_link_title: シングルコメントへのリンクを取得
61
+ comment_order_selector:
62
+ order:
63
+ best_rated: 最高評価
64
+ most_discussed: 最も議論されたもの
65
+ older: 古い順
66
+ recent: 最近のもの
67
+ title: '並び順:'
68
+ comment_thread:
69
+ title: '%{authorName} との会話'
70
+ comments:
71
+ blocked_comments_for_user_warning: 現時点ではコメントできませんが、以前のコメントを読むことができます。
72
+ blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
73
+ comment_details_title: コメントの詳細
74
+ loading: コメントを読み込んでいます...
75
+ single_comment_warning: コメントの残りはこちら <a href="%{url}"></a>で確認できます。
76
+ single_comment_warning_title: 単一のコメントが表示されています
77
+ title: "%{count} 件のコメント"
78
+ down_vote_button:
79
+ text: このコメントに同意しません
80
+ up_vote_button:
81
+ text: このコメントに同意します
82
+ events:
83
+ comments:
84
+ comment_by_followed_user:
85
+ email_intro: "%{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:"
86
+ email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
87
+ email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
88
+ 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>.
89
+ comment_by_followed_user_group:
90
+ email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
91
+ email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
92
+ email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
93
+ 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>.
94
+ comment_created:
95
+ email_intro: "%{resource_title} はコメントされました。このページでコメントを読むことができます:"
96
+ email_outro: '"%{resource_title}" 、またはその参加者をフォローしているためこの通知を受け取りました。前のリンクからフォローを解除することができます。'
97
+ email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
98
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>
99
+ reply_created:
100
+ email_intro: "%{author_name} は %{resource_title}であなたのコメントを返信しました。このページで読むことができます:"
101
+ email_outro: コメントが返信されたため、この通知を受信しました。
102
+ email_subject: "%{author_name} が %{resource_title} であなたのコメントに返信しました"
103
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> が <a href="%{resource_path}">%{resource_title}</a> であなたのコメントに返信しました
104
+ user_group_mentioned:
105
+ email_intro: あなたが所属しているグループがメンションされました
106
+ email_outro: あなたは %{group_name} でメンションされたグループ %{resource_title} のメンバーであるため、この通知を受け取りました。
107
+ email_subject: あなたは %{resource_title} で %{group_name} のメンバーとしてメンションされました
108
+ 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>
109
+ user_mentioned:
110
+ email_intro: あなたはメンションされています
111
+ email_outro: あなたが %{resource_title}でメンションされたため、この通知を受け取りました。
112
+ email_subject: あなたは %{resource_title} でメンションされました
113
+ notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> で <a href="%{author_path}">%{author_name} %{author_nickname}によってメンションされました</a>
114
+ metrics:
115
+ comments:
116
+ description: 出席者によって生成されたコメント数
117
+ object: コメント
118
+ title: コメント
119
+ errors:
120
+ messages:
121
+ cannot_have_comments: コメントを持つことはできません
@@ -0,0 +1 @@
1
+ ko:
@@ -0,0 +1 @@
1
+ ko:
@@ -0,0 +1 @@
1
+ lt:
File without changes
@@ -0,0 +1 @@
1
+ mt:
@@ -16,10 +16,11 @@ nl:
16
16
  other: Stemmen
17
17
  decidim:
18
18
  comments:
19
- comments: Opmerkingen
19
+ comments: Reacties
20
20
  comments_count: Aantal reacties
21
21
  last_activity:
22
22
  new_comment_at_html: "<span>Nieuwe opmerking op %{link}</span>"
23
+ view: Bekijk
23
24
  votes:
24
25
  create:
25
26
  error: Er is een probleem opgetreden bij het stemmen op de opmerking.
@@ -29,7 +30,7 @@ nl:
29
30
  form:
30
31
  body:
31
32
  label: Reactie
32
- placeholder: Wat vind u hierover?
33
+ placeholder: Wat wil je hierover zeggen?
33
34
  form_error: De tekst is verplicht en het kan niet langer zijn dan %{length} tekens.
34
35
  submit: Verzenden
35
36
  user_group_id:
@@ -38,7 +39,7 @@ nl:
38
39
  neutral: Neutraal
39
40
  remaining_characters: "%{count} tekens over"
40
41
  remaining_characters_1: "%{count} teken over"
41
- title: Voeg uw reactie toe
42
+ title: Voeg je reactie toe
42
43
  comment:
43
44
  alignment:
44
45
  against: Tegen
@@ -71,15 +72,15 @@ nl:
71
72
  comments:
72
73
  blocked_comments_for_user_warning: U kunt op dit moment geen opmerkingen maken, maar u kunt de vorige wel lezen.
73
74
  blocked_comments_warning: Reacties zijn op dit moment uitgeschakeld, maar je kan de vorige berichten lezen.
74
- comment_details_title: Opmerking details
75
+ comment_details_title: Reactieonderdelen
75
76
  loading: Reacties laden...
76
- single_comment_warning: U kunt de rest van de opmerkingen <a href="%{url}">hier</a> controleren.
77
+ single_comment_warning: U kunt de rest van de reacties <a href="%{url}">hier</a> controleren.
77
78
  single_comment_warning_title: Je ziet een enkele reactie
78
79
  title: "%{count} reacties"
79
80
  down_vote_button:
80
- text: Ik ben het niet eens met deze opmerking.
81
+ text: Ik ben het niet eens met deze reactie
81
82
  up_vote_button:
82
- text: Ik ben het eens met deze opmerking.
83
+ text: Ik ben het eens met deze reactie
83
84
  events:
84
85
  comments:
85
86
  comment_by_followed_user:
@@ -88,7 +89,7 @@ nl:
88
89
  email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
89
90
  notification_title: Er is een nieuwe reactie van <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
90
91
  comment_by_followed_user_group:
91
- email_intro: 'De groep %{author_name} heeft een opmerking achtergelaten in %{resource_title}. Je kunt het op deze pagina lezen:'
92
+ email_intro: 'De groep %{author_name} heeft een reactie achtergelaten in %{resource_title}. Je kunt het op deze pagina lezen:'
92
93
  email_outro: Je hebt deze melding ontvangen omdat je %{author_name}volgt. Je kan stoppen met deze groep te volgen via de profielpagina.
93
94
  email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
94
95
  notification_title: Er is een nieuwe reactie van <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
@@ -115,8 +116,8 @@ nl:
115
116
  metrics:
116
117
  comments:
117
118
  description: Aantal reacties gegenereerd door deelnemers
118
- object: opmerkingen
119
- title: Opmerkingen
119
+ object: reacties
120
+ title: Reacties
120
121
  errors:
121
122
  messages:
122
123
  cannot_have_comments: Kan geen reacties hebben
@@ -0,0 +1 @@
1
+ om:
@@ -24,9 +24,10 @@ pl:
24
24
  comments_count: Liczba komentarzy
25
25
  last_activity:
26
26
  new_comment_at_html: "<span>Nowy komentarz do %{link}</span>"
27
+ view: Zobacz
27
28
  votes:
28
29
  create:
29
- error: Podczas głosowania komentarza wystąpiły błędy.
30
+ error: Podczas dodawania komentarza wystąpił błąd.
30
31
  components:
31
32
  add_comment_form:
32
33
  account_message: <a href="%{sign_in_url}">Zaloguj się na swoje konto</a> lub <a href="%{sign_up_url}">zarejestruj się</a>, aby dodać komentarz.
@@ -35,7 +36,7 @@ pl:
35
36
  label: Komentarz
36
37
  placeholder: Co o tym myślisz?
37
38
  form_error: 'Tekst jest wymagany. Maksymalna liczba znaków to: %{length}.'
38
- submit: Wysłać
39
+ submit: Wyślij
39
40
  user_group_id:
40
41
  label: Komentuj jako
41
42
  opinion:
@@ -45,8 +46,8 @@ pl:
45
46
  title: Dodaj swój komentarz
46
47
  comment:
47
48
  alignment:
48
- against: Przeciwko
49
- in_favor: Na korzyść
49
+ against: Negatywny
50
+ in_favor: Pozytywny
50
51
  deleted_user: Usunięty użytkownik
51
52
  hide_replies: Ukryj odpowiedzi
52
53
  reply: Odpowiedz
@@ -97,7 +98,7 @@ pl:
97
98
  email_subject: Jest nowy komentarz dodany przez %{author_name} do %{resource_title}
98
99
  notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>.
99
100
  comment_created:
100
- email_intro: "%{resource_title} został skomentowany. Możesz przeczytać komentarz na tej stronie:"
101
+ email_intro: "Nowy komentarz: %{resource_title}. Możesz go przeczytać na tej stronie:"
101
102
  email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować po kliknięciu w poprzedni link.
102
103
  email_subject: Jest nowy komentarz od %{author_name} do %{resource_title}
103
104
  notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>