decidim-comments 0.21.0 → 0.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/comments/bundle.js +32 -32
- data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
- data/app/cells/decidim/comments/comment_activity_cell.rb +1 -1
- data/app/commands/decidim/comments/create_comment.rb +7 -7
- data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +9 -0
- data/app/events/decidim/comments/comment_event.rb +15 -2
- data/app/events/decidim/comments/user_group_mentioned_event.rb +10 -0
- data/app/forms/decidim/comments/comment_form.rb +9 -0
- data/app/frontend/application/icon.component.tsx +16 -4
- data/app/frontend/comments/add_comment_form.component.test.tsx +1 -1
- data/app/frontend/comments/add_comment_form.component.tsx +2 -2
- data/app/frontend/comments/comment.component.test.tsx +1 -1
- data/app/frontend/comments/comment.component.tsx +194 -73
- data/app/frontend/comments/comment_order_selector.component.tsx +26 -7
- data/app/frontend/comments/down_vote_button.component.tsx +3 -0
- data/app/frontend/comments/up_vote_button.component.tsx +3 -0
- data/app/frontend/comments/vote_button.component.tsx +4 -0
- data/app/frontend/comments/vote_button_component.test.tsx +14 -8
- data/app/models/decidim/comments/comment.rb +2 -2
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -6
- data/app/services/decidim/comments/new_comment_notification_creator.rb +28 -3
- data/app/types/decidim/comments/commentable_mutation_type.rb +2 -2
- data/config/locales/ar.yml +4 -1
- data/config/locales/bg-BG.yml +6 -0
- data/config/locales/ca.yml +18 -2
- data/config/locales/cs.yml +29 -13
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/de.yml +23 -1
- data/config/locales/el.yml +121 -0
- data/config/locales/en.yml +17 -1
- data/config/locales/es-MX.yml +17 -1
- data/config/locales/es-PY.yml +17 -1
- data/config/locales/es.yml +17 -1
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/eu.yml +4 -1
- data/config/locales/fi-plain.yml +17 -1
- data/config/locales/fi.yml +23 -7
- data/config/locales/fr-CA.yml +122 -0
- data/config/locales/fr.yml +23 -1
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +4 -1
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hu.yml +11 -1
- data/config/locales/id-ID.yml +4 -1
- data/config/locales/is-IS.yml +3 -1
- data/config/locales/it.yml +20 -1
- data/config/locales/ja-JP.yml +120 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lv-LV.yml +118 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/nl.yml +19 -1
- data/config/locales/no.yml +18 -2
- data/config/locales/pl.yml +57 -35
- data/config/locales/pt-BR.yml +5 -2
- data/config/locales/pt.yml +47 -25
- data/config/locales/ro-RO.yml +124 -0
- data/config/locales/ru.yml +4 -1
- data/config/locales/sk-SK.yml +116 -0
- data/config/locales/sk.yml +120 -0
- data/config/locales/sl.yml +4 -0
- data/config/locales/sr-CS.yml +20 -0
- data/config/locales/sv.yml +25 -3
- data/config/locales/tr-TR.yml +4 -1
- data/config/locales/uk.yml +4 -1
- data/db/migrate/20200320105911_index_foreign_keys_in_decidim_comments_comments.rb +7 -0
- data/lib/decidim/comments/test/shared_examples/comment_event.rb +11 -1
- data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +3 -2
- data/lib/decidim/comments/version.rb +1 -1
- metadata +26 -8
@@ -0,0 +1,120 @@
|
|
1
|
+
ja:
|
2
|
+
activemodel:
|
3
|
+
models:
|
4
|
+
decidim/comments/comment_by_followed_user_event: コメント
|
5
|
+
decidim/comments/comment_created_event: コメント
|
6
|
+
decidim/comments/reply_created_event: コメント返信
|
7
|
+
decidim/comments/user_group_mentioned_event: メンション
|
8
|
+
decidim/comments/user_mentioned_event: メンション
|
9
|
+
activerecord:
|
10
|
+
models:
|
11
|
+
decidim/comments/comment:
|
12
|
+
other: コメント
|
13
|
+
decidim/comments/comment_vote:
|
14
|
+
other: 投票
|
15
|
+
decidim:
|
16
|
+
comments:
|
17
|
+
comments: コメント
|
18
|
+
comments_count: コメント数
|
19
|
+
last_activity:
|
20
|
+
new_comment_at_html: "<span> %{link}に新しいコメント</span>"
|
21
|
+
votes:
|
22
|
+
create:
|
23
|
+
error: コメントに投票中に問題がありました。
|
24
|
+
components:
|
25
|
+
add_comment_form:
|
26
|
+
account_message: <a href="%{sign_in_url}">アカウント</a> または <a href="%{sign_up_url}">サインアップ</a> でコメントを追加します。
|
27
|
+
form:
|
28
|
+
body:
|
29
|
+
label: コメント
|
30
|
+
placeholder: これについてどう思いますか?
|
31
|
+
form_error: テキストは必須で、 %{length} 文字を超えることはできません。
|
32
|
+
submit: 送信
|
33
|
+
user_group_id:
|
34
|
+
label: 'コメント:'
|
35
|
+
opinion:
|
36
|
+
neutral: ニュートラル
|
37
|
+
remaining_characters: "残り %{count} 文字"
|
38
|
+
remaining_characters_1: "残り%{count} 文字"
|
39
|
+
title: コメントを追加
|
40
|
+
comment:
|
41
|
+
alignment:
|
42
|
+
against: 反対
|
43
|
+
in_favor: 賛成
|
44
|
+
deleted_user: 参加者を削除しました
|
45
|
+
hide_replies: 返信を非表示
|
46
|
+
reply: 返信
|
47
|
+
report:
|
48
|
+
action: レポート
|
49
|
+
already_reported: このコンテンツはすでに報告されており、管理者が確認します。
|
50
|
+
close: 閉じる
|
51
|
+
description: このコンテンツは不適切ですか?
|
52
|
+
details: 追加コメント
|
53
|
+
reasons:
|
54
|
+
does_not_belong: 違法行為、自殺の脅威、個人情報、または %{organization_name} に属していないと思われる何かが含まれています。
|
55
|
+
offensive: 人種差別、性差別、スラー、個人攻撃、死の脅威、自殺要求やあらゆる形態の憎悪スピーチが含まれています。
|
56
|
+
spam: クリックベイト、広告、詐欺やスクリプトボットが含まれています。
|
57
|
+
title: 不適切なコンテンツを報告する
|
58
|
+
show_replies: '%{replies_count} 件の返信を表示'
|
59
|
+
single_comment_link_title: シングルコメントへのリンクを取得
|
60
|
+
comment_order_selector:
|
61
|
+
order:
|
62
|
+
best_rated: 最高評価
|
63
|
+
most_discussed: 最も議論されたもの
|
64
|
+
older: 古い順
|
65
|
+
recent: 最近のもの
|
66
|
+
title: '並び順:'
|
67
|
+
comment_thread:
|
68
|
+
title: '%{authorName} との会話'
|
69
|
+
comments:
|
70
|
+
blocked_comments_for_user_warning: 現時点ではコメントできませんが、以前のコメントを読むことができます。
|
71
|
+
blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
|
72
|
+
comment_details_title: コメントの詳細
|
73
|
+
loading: コメントを読み込んでいます...
|
74
|
+
single_comment_warning: コメントの残りはこちら <a href="%{url}"></a>で確認できます。
|
75
|
+
single_comment_warning_title: 単一のコメントが表示されています
|
76
|
+
title: "%{count} 件のコメント"
|
77
|
+
down_vote_button:
|
78
|
+
text: このコメントに同意しない
|
79
|
+
up_vote_button:
|
80
|
+
text: このコメントに同意します
|
81
|
+
events:
|
82
|
+
comments:
|
83
|
+
comment_by_followed_user:
|
84
|
+
email_intro: "%{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:"
|
85
|
+
email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
|
86
|
+
email_subject: '%{author_name} に %{resource_title} による新しいコメントがあります'
|
87
|
+
notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
|
88
|
+
comment_by_followed_user_group:
|
89
|
+
email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
|
90
|
+
email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
|
91
|
+
email_subject: '%{author_name} に %{resource_title} による新しいコメントがあります'
|
92
|
+
notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
|
93
|
+
comment_created:
|
94
|
+
email_intro: "%{resource_title} はコメントされました。このページでコメントを読むことができます:"
|
95
|
+
email_outro: '"%{resource_title}" またはその著者をフォローしているため、この通知を受け取りました。前のリンクからフォローを解除することができます。'
|
96
|
+
email_subject: '%{author_name} に %{resource_title} から新しいコメントがあります'
|
97
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title}に新しいコメントがあります</a>
|
98
|
+
reply_created:
|
99
|
+
email_intro: "%{author_name} は %{resource_title}であなたのコメントを返信しました。このページで読むことができます:"
|
100
|
+
email_outro: コメントが返信されたため、この通知を受信しました。
|
101
|
+
email_subject: "%{author_name} が %{resource_title} であなたのコメントに返信しました"
|
102
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> が <a href="%{resource_path}">%{resource_title}</a> であなたのコメントに返信しました
|
103
|
+
user_group_mentioned:
|
104
|
+
email_intro: あなたが所属しているグループがメンションされました
|
105
|
+
email_outro: あなたは %{group_name} でメンションされたグループ %{resource_title} のメンバーであるため、この通知を受け取りました。
|
106
|
+
email_subject: あなたは %{resource_title} で %{group_name} のメンバーとしてメンションされました
|
107
|
+
notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> に <a href="%{author_path}">%{author_name} %{author_nickname}</a> のメンバとして <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
108
|
+
user_mentioned:
|
109
|
+
email_intro: あなたはメンションされています
|
110
|
+
email_outro: あなたが %{resource_title}でメンションされたため、この通知を受け取りました。
|
111
|
+
email_subject: あなたは %{resource_title} でメンションされました
|
112
|
+
notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> で <a href="%{author_path}">%{author_name} %{author_nickname}によってメンションされました</a>
|
113
|
+
metrics:
|
114
|
+
comments:
|
115
|
+
description: 出席者によって生成されたコメント数
|
116
|
+
object: コメント
|
117
|
+
title: コメント
|
118
|
+
errors:
|
119
|
+
messages:
|
120
|
+
cannot_have_comments: コメントを持つことはできません
|
@@ -0,0 +1 @@
|
|
1
|
+
lt:
|
@@ -0,0 +1,118 @@
|
|
1
|
+
lv:
|
2
|
+
activemodel:
|
3
|
+
models:
|
4
|
+
decidim/comments/comment_by_followed_user_event: Komentēt
|
5
|
+
decidim/comments/comment_created_event: Komentēt
|
6
|
+
decidim/comments/reply_created_event: Atbildēt uz komentāru
|
7
|
+
decidim/comments/user_group_mentioned_event: Pieminēt
|
8
|
+
decidim/comments/user_mentioned_event: Pieminēt
|
9
|
+
activerecord:
|
10
|
+
models:
|
11
|
+
decidim/comments/comment:
|
12
|
+
zero: Komentāri
|
13
|
+
one: Komentēt
|
14
|
+
other: Komentāri
|
15
|
+
decidim/comments/comment_vote:
|
16
|
+
zero: Balsis
|
17
|
+
one: Balsot
|
18
|
+
other: Balsis
|
19
|
+
decidim:
|
20
|
+
comments:
|
21
|
+
comments: Komentāri
|
22
|
+
last_activity:
|
23
|
+
new_comment_at_html: "<span>Jauns komentārs %{link}</span>"
|
24
|
+
votes:
|
25
|
+
create:
|
26
|
+
error: Balsojot par komentāru, radās problēma.
|
27
|
+
components:
|
28
|
+
add_comment_form:
|
29
|
+
account_message: <a href="%{sign_in_url}">Pierakstieties, izmantojot savu kontu</a> vai <a href="%{sign_up_url}"> reģistrējieties, </a>, lai pievienotu komentāru.
|
30
|
+
form:
|
31
|
+
body:
|
32
|
+
label: Komentēt
|
33
|
+
placeholder: Ko tu domā par šo?
|
34
|
+
form_error: Šis teksts ir nepieciešams, un tas nedrīkst būt garāks par %{length} rakstzīmēm.
|
35
|
+
submit: Sūtīt
|
36
|
+
user_group_id:
|
37
|
+
label: Komentēt kā
|
38
|
+
opinion:
|
39
|
+
neutral: Neitrāls
|
40
|
+
remaining_characters: "Palikušas %{count} rakstzīmes"
|
41
|
+
remaining_characters_1: "Palikusi %{count} rakstzīme"
|
42
|
+
title: Pievienot savu komentāru
|
43
|
+
comment:
|
44
|
+
alignment:
|
45
|
+
against: Pret
|
46
|
+
in_favor: Par
|
47
|
+
deleted_user: Dzēsts dalībnieks
|
48
|
+
hide_replies: Slēpt atbildes
|
49
|
+
reply: Atbildēt
|
50
|
+
report:
|
51
|
+
action: Ziņot
|
52
|
+
already_reported: Par šo saturu jau ir ziņots, un administrators to pārskatīs.
|
53
|
+
close: Aizvērt
|
54
|
+
description: Vai šis saturs ir neatbilstīgs?
|
55
|
+
details: Papildu komentāri
|
56
|
+
reasons:
|
57
|
+
does_not_belong: Satur nelikumīgas darbības, pašnāvības draudus, personisku informāciju vai kaut ko citu, kam, jūsuprāt, nav vietas %{organization_name}.
|
58
|
+
offensive: Satur rasismu, seksismu, lamuvārdus, personiskus uzbrukumus, nāves draudus, ierosinājumus veikt pašnāvību vai jebkāda veida naida runu.
|
59
|
+
spam: Satur klikšķu ēsmu (clickbait), reklāmu, krāpšanu vai skriptu robotprogrammatūru.
|
60
|
+
show_replies: Rādīt %{replies_count} atbildes
|
61
|
+
single_comment_link_title: Iegūt saiti uz atsevišķu komentāru
|
62
|
+
comment_order_selector:
|
63
|
+
order:
|
64
|
+
best_rated: Vislabāk novērtētie
|
65
|
+
most_discussed: Visvairāk apspriestie
|
66
|
+
older: Vecāki
|
67
|
+
recent: Nesenie
|
68
|
+
title: 'Sakārtot pēc:'
|
69
|
+
comment_thread:
|
70
|
+
title: Saruna ar %{authorName}
|
71
|
+
comments:
|
72
|
+
blocked_comments_for_user_warning: Pašlaik jūs nevarat komentēt, bet jūs varat izlasīt iepriekšējos komentārus.
|
73
|
+
blocked_comments_warning: Komentāri šobrīd ir atspējoti, bet jūs varat lasīt iepriekšējos komentārus.
|
74
|
+
comment_details_title: Komentāra informācija
|
75
|
+
loading: Notiek komentāru ielāde ...
|
76
|
+
single_comment_warning: Pārējos komentārus varat aplūkot <a href="%{url}">šeit</a>.
|
77
|
+
single_comment_warning_title: Jūs redzat vienu komentāru
|
78
|
+
title: "%{count} komentāri"
|
79
|
+
events:
|
80
|
+
comments:
|
81
|
+
comment_by_followed_user:
|
82
|
+
email_intro: "%{author_name} ir atstājis komentāru %{resource_title}. Jūs to varat izlasīt šajā lapā:"
|
83
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{author_name}. Jūs varat atsekot šim lietotājam viņa profila lapā.
|
84
|
+
email_subject: '%{resource_title} ir jauns%{author_name} komentārs'
|
85
|
+
notification_title: <a href="%{author_path}">%{author_name}%{author_nickname}</a> ir jauns komentārs <a href="%{resource_path}">%{resource_title}</a>.
|
86
|
+
comment_by_followed_user_group:
|
87
|
+
email_intro: 'Grupa %{author_name} ir atstājusi komentāru %{resource_title}. Jūs to varat izlasīt šajā lapā:'
|
88
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{author_name}. Jūs varat atsekot šai grupai no tās profila lapas.
|
89
|
+
email_subject: '%{resource_title} ir jauns%{author_name} komentārs'
|
90
|
+
notification_title: <a href="%{author_path}">%{author_name}%{author_nickname}</a> ir jauns komentārs <a href="%{resource_path}">%{resource_title}</a>.
|
91
|
+
comment_created:
|
92
|
+
email_intro: "%{resource_title} ir komentēts. Jūs varat izlasīt komentāru šajā lapā:"
|
93
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat "%{resource_title}" vai tā autoram. Jūs varat atsekot tam no iepriekšējās saites.
|
94
|
+
email_subject: '%{resource_title} ir jauns %{author_name} komentārs'
|
95
|
+
notification_title: <a href="%{author_path}">%{author_name}%{author_nickname}</a> ir jauns komentārs <a href="%{resource_path}">%{resource_title}</a>
|
96
|
+
reply_created:
|
97
|
+
email_intro: "%{author_name} atbildēja uz jūsu komentāru %{resource_title}. Jūs to varat izlasīt šajā lapā:"
|
98
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo kāds atbildēja uz jūsu komentāru.
|
99
|
+
email_subject: "%{author_name} atbildēja uz jūsu komentāru %{resource_title}"
|
100
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> atbildēja uz jūsu komentāru <a href="%{resource_path}">%{resource_title}</a>
|
101
|
+
user_group_mentioned:
|
102
|
+
email_intro: Tika pieminēta grupa, kurai jūs piederat
|
103
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo esat grupas %{group_name} dalībnieks, kura tika pieminēta %{resource_title}.
|
104
|
+
email_subject: Jūs esat pieminēts %{resource_title} kā %{group_name} dalībnieks
|
105
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> jūs <a href="%{author_path}">%{author_name}%{author_nickname}</a> pieminēja kā <a href="%{group_path}">%{group_name}%{group_nickname}</a> dalībnieku
|
106
|
+
user_mentioned:
|
107
|
+
email_intro: Jūs esat pieminēts
|
108
|
+
email_outro: Jūs saņēmāt šo paziņojumu, jo esat pieminēts %{resource_title}.
|
109
|
+
email_subject: Jūs esat pieminēts %{resource_title}
|
110
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> jūs pieminēja <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
111
|
+
metrics:
|
112
|
+
comments:
|
113
|
+
description: Dalībnieku izveidoto komentāru skaits
|
114
|
+
object: komentāri
|
115
|
+
title: Komentāri
|
116
|
+
errors:
|
117
|
+
messages:
|
118
|
+
cannot_have_comments: nevar komentēt
|
@@ -0,0 +1 @@
|
|
1
|
+
mt:
|
data/config/locales/nl.yml
CHANGED
@@ -4,6 +4,7 @@ nl:
|
|
4
4
|
decidim/comments/comment_by_followed_user_event: Commentaar
|
5
5
|
decidim/comments/comment_created_event: Commentaar
|
6
6
|
decidim/comments/reply_created_event: Reactie antwoord
|
7
|
+
decidim/comments/user_group_mentioned_event: Vermelding
|
7
8
|
decidim/comments/user_mentioned_event: Vermelding
|
8
9
|
activerecord:
|
9
10
|
models:
|
@@ -16,6 +17,7 @@ nl:
|
|
16
17
|
decidim:
|
17
18
|
comments:
|
18
19
|
comments: Opmerkingen
|
20
|
+
comments_count: Aantal reacties
|
19
21
|
last_activity:
|
20
22
|
new_comment_at_html: "<span>Nieuwe opmerking op %{link}</span>"
|
21
23
|
votes:
|
@@ -42,6 +44,7 @@ nl:
|
|
42
44
|
against: Tegen
|
43
45
|
in_favor: Voor
|
44
46
|
deleted_user: Verwijderde deelnemer
|
47
|
+
hide_replies: Antwoorden verbergen
|
45
48
|
reply: Antwoord
|
46
49
|
report:
|
47
50
|
action: Melden
|
@@ -53,7 +56,8 @@ nl:
|
|
53
56
|
does_not_belong: Bevat illegale activiteit, zelfmoord bedreigingen, persoonlijke gegevens, of iets anders dat je denkt dat hoort niet op %{organization_name}.
|
54
57
|
offensive: Bevat racisme, seksisme, laster, persoonlijke aanvallen, bedreigingen met de dood, zelfmoord verzoeken of enige vorm van haatzaaien.
|
55
58
|
spam: Bevat clickbait, reclame, oplichting of script bots.
|
56
|
-
title: Meld
|
59
|
+
title: Meld ongepaste inhoud
|
60
|
+
show_replies: Toon %{replies_count} reacties
|
57
61
|
single_comment_link_title: Krijg link naar enkele reactie
|
58
62
|
comment_order_selector:
|
59
63
|
order:
|
@@ -72,6 +76,10 @@ nl:
|
|
72
76
|
single_comment_warning: U kunt de rest van de opmerkingen <a href="%{url}">hier</a> controleren.
|
73
77
|
single_comment_warning_title: Je ziet een enkele reactie
|
74
78
|
title: "%{count} reacties"
|
79
|
+
down_vote_button:
|
80
|
+
text: Ik ben het niet eens met deze opmerking.
|
81
|
+
up_vote_button:
|
82
|
+
text: Ik ben het eens met deze opmerking.
|
75
83
|
events:
|
76
84
|
comments:
|
77
85
|
comment_by_followed_user:
|
@@ -79,6 +87,11 @@ nl:
|
|
79
87
|
email_outro: Je hebt deze melding ontvangen omdat je %{author_name}volgt. Je kan deze gebruiker ontvolgen via zijn profielpagina.
|
80
88
|
email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
|
81
89
|
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
|
+
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_outro: Je hebt deze melding ontvangen omdat je %{author_name}volgt. Je kan stoppen met deze groep te volgen via de profielpagina.
|
93
|
+
email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
|
94
|
+
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>.
|
82
95
|
comment_created:
|
83
96
|
email_intro: "%{resource_title} heeft een reactie ontvangen. Je kan de opmerking op deze pagina lezen:"
|
84
97
|
email_outro: Je hebt deze melding ontvangen omdat je '%{resource_title}' of de auteur ervan volgt. Ontvolgen kan door te klikken op de vorige link.
|
@@ -89,6 +102,11 @@ nl:
|
|
89
102
|
email_outro: Je hebt deze melding ontvangen omdat je reactie beantwoord is.
|
90
103
|
email_subject: "%{author_name} heeft op je comment gereageerd in %{resource_title}"
|
91
104
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> heeft gereageerd op je opmerking in <a href="%{resource_path}">%{resource_title}</a>
|
105
|
+
user_group_mentioned:
|
106
|
+
email_intro: Een groep waartoe u behoort is genoemd
|
107
|
+
email_outro: Je hebt deze melding ontvangen omdat je lid bent van de groep %{group_name} die is genoemd in %{resource_title}.
|
108
|
+
email_subject: U bent genoemd in %{resource_title} als lid van %{group_name}
|
109
|
+
notification_title: U bent genoemd in <a href="%{resource_path}">%{resource_title}</a> door <a href="%{author_path}">%{author_name} %{author_nickname}</a> als lid van <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
92
110
|
user_mentioned:
|
93
111
|
email_intro: Iemand heeft je getagd
|
94
112
|
email_outro: Je hebt deze melding ontvangen omdat je bent getagd in %{resource_title}.
|
data/config/locales/no.yml
CHANGED
@@ -4,6 +4,7 @@
|
|
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: Kommenter svar
|
7
|
+
decidim/comments/user_group_mentioned_event: Omtal
|
7
8
|
decidim/comments/user_mentioned_event: Omtal
|
8
9
|
activerecord:
|
9
10
|
models:
|
@@ -16,6 +17,7 @@
|
|
16
17
|
decidim:
|
17
18
|
comments:
|
18
19
|
comments: Kommentarer
|
20
|
+
comments_count: Antall kommentarer
|
19
21
|
last_activity:
|
20
22
|
new_comment_at_html: "<span>Ny kommentar på %{link}</span>"
|
21
23
|
votes:
|
@@ -36,7 +38,7 @@
|
|
36
38
|
neutral: Nøytral
|
37
39
|
remaining_characters: "%{count} tegn igjen"
|
38
40
|
remaining_characters_1: "%{count} tegn igjen"
|
39
|
-
title: Legg til
|
41
|
+
title: Legg til kommentar
|
40
42
|
comment:
|
41
43
|
alignment:
|
42
44
|
against: Imot
|
@@ -54,7 +56,7 @@
|
|
54
56
|
does_not_belong: Inneholder ulovlig aktivitet, selvmordstrusler, personlig informasjon eller noe annet du mener ikke hører hjemme på %{organization_name}.
|
55
57
|
offensive: Inneholder rasisme, sexisme, banning, persjonangrep, dødstrusler, selvmords forespørsler eller all form for hatefullt språk.
|
56
58
|
spam: Inneholder klikkagn, reklame, svindel eller manus-roboter.
|
57
|
-
title: Rapporter
|
59
|
+
title: Rapporter upassende innhold
|
58
60
|
show_replies: Vis %{replies_count} svar
|
59
61
|
single_comment_link_title: Få lenke til enkeltkommentar
|
60
62
|
comment_order_selector:
|
@@ -74,6 +76,10 @@
|
|
74
76
|
single_comment_warning: Du kan sjekke resten av kommentarene <a href="%{url}">her</a>.
|
75
77
|
single_comment_warning_title: Du ser en enkelt kommentar
|
76
78
|
title: "%{count} kommentarer"
|
79
|
+
down_vote_button:
|
80
|
+
text: Jeg er uenig med denne kommentaren
|
81
|
+
up_vote_button:
|
82
|
+
text: Jeg er enig med denne kommentaren
|
77
83
|
events:
|
78
84
|
comments:
|
79
85
|
comment_by_followed_user:
|
@@ -81,6 +87,11 @@
|
|
81
87
|
email_outro: Du har mottatt denne varslingen fordi du følger %{author_name}. Du kan slutte å følge denne brukeren fra dems profil side.
|
82
88
|
email_subject: Det er en ny kommentar av %{author_name} i %{resource_title}
|
83
89
|
notification_title: Det er en ny kommentar av <a href="%{author_path}">%{author_name} %{author_nickname}</a> i <a href="%{resource_path}">%{resource_title}</a>.
|
90
|
+
comment_by_followed_user_group:
|
91
|
+
email_intro: '%{author_name} har lagt igjen en kommentar i %{resource_title}. Du kan lese den på denne siden:'
|
92
|
+
email_outro: Du har mottatt denne varslingen fordi du følger %{author_name}. Du kan slutte å følge denne brukeren fra deres profilside.
|
93
|
+
email_subject: Det er en ny kommentar av %{author_name} i %{resource_title}
|
94
|
+
notification_title: Det er en ny kommentar av <a href="%{author_path}">%{author_name} %{author_nickname}</a> i <a href="%{resource_path}">%{resource_title}</a>.
|
84
95
|
comment_created:
|
85
96
|
email_intro: "%{resource_title} har blitt kommentert. Du kan lese kommentaren på denne siden:"
|
86
97
|
email_outro: Du har mottatt denne varslingen fordi du følger "%{resource_title}" eller dens forfatter. Du kan slutte å følge den fra den forrige lenken.
|
@@ -91,6 +102,11 @@
|
|
91
102
|
email_outro: Du har mottatt denne varslingen fordi din kommentar er besvart.
|
92
103
|
email_subject: "%{author_name} har svart kommentaren din i %{resource_title}"
|
93
104
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> har svart kommentaren din i <a href="%{resource_path}">%{resource_title}</a>
|
105
|
+
user_group_mentioned:
|
106
|
+
email_intro: En gruppe du er medlem av har blitt nevnt
|
107
|
+
email_outro: Du får denne varslingen fordi du er medlem av gruppen %{group_name}, som har blitt nevnt i%{resource_title}.
|
108
|
+
email_subject: Du har blitt nevnt i %{resource_title} som medlem av %{group_name}
|
109
|
+
notification_title: Du har blitt nevnt i <a href="%{resource_path}"> %{resource_title} av <a href="%{author_path}">%{author_name}%{author_nickname} som medlem av <a href="%{group_path}">%{group_name}%{group_nickname}
|
94
110
|
user_mentioned:
|
95
111
|
email_intro: Du har blitt nevnt
|
96
112
|
email_outro: Du har mottatt denne varslingen fordi du er nevnt i %{resource_title}.
|
data/config/locales/pl.yml
CHANGED
@@ -4,6 +4,7 @@ pl:
|
|
4
4
|
decidim/comments/comment_by_followed_user_event: Komentarz
|
5
5
|
decidim/comments/comment_created_event: Komentarz
|
6
6
|
decidim/comments/reply_created_event: Odpowiedź na komentarz
|
7
|
+
decidim/comments/user_group_mentioned_event: Wzmianka
|
7
8
|
decidim/comments/user_mentioned_event: Wzmianka
|
8
9
|
activerecord:
|
9
10
|
models:
|
@@ -13,15 +14,16 @@ pl:
|
|
13
14
|
many: Komentarze
|
14
15
|
other: Komentarze
|
15
16
|
decidim/comments/comment_vote:
|
16
|
-
one:
|
17
|
-
few:
|
17
|
+
one: Głos
|
18
|
+
few: Głosów
|
18
19
|
many: Głosy
|
19
20
|
other: Głosy
|
20
21
|
decidim:
|
21
22
|
comments:
|
22
23
|
comments: Komentarze
|
24
|
+
comments_count: Liczba komentarzy
|
23
25
|
last_activity:
|
24
|
-
new_comment_at_html: "<span>Nowy komentarz
|
26
|
+
new_comment_at_html: "<span>Nowy komentarz do %{link}</span>"
|
25
27
|
votes:
|
26
28
|
create:
|
27
29
|
error: Podczas głosowania komentarza wystąpiły błędy.
|
@@ -32,68 +34,88 @@ pl:
|
|
32
34
|
body:
|
33
35
|
label: Komentarz
|
34
36
|
placeholder: Co o tym myślisz?
|
35
|
-
form_error: Tekst jest wymagany
|
37
|
+
form_error: 'Tekst jest wymagany. Maksymalna liczba znaków to: %{length}.'
|
36
38
|
submit: Wysłać
|
37
39
|
user_group_id:
|
38
|
-
label:
|
40
|
+
label: Komentuj jako
|
39
41
|
opinion:
|
40
42
|
neutral: Neutralny
|
41
43
|
remaining_characters: "Pozostało %{count} znaków"
|
42
|
-
remaining_characters_1: "
|
44
|
+
remaining_characters_1: "Pozostał %{count} znak"
|
43
45
|
title: Dodaj swój komentarz
|
44
46
|
comment:
|
45
47
|
alignment:
|
46
48
|
against: Przeciwko
|
47
49
|
in_favor: Na korzyść
|
48
50
|
deleted_user: Usunięty użytkownik
|
49
|
-
|
51
|
+
hide_replies: Ukryj odpowiedzi
|
52
|
+
reply: Odpowiedz
|
50
53
|
report:
|
51
|
-
action:
|
52
|
-
already_reported: Ta treść została już zgłoszona i zostanie
|
53
|
-
close:
|
54
|
+
action: Zgłoś
|
55
|
+
already_reported: Ta treść została już zgłoszona i zostanie sprawdzona przez administratora.
|
56
|
+
close: Zamknij
|
54
57
|
description: Czy ta treść jest nieodpowiednia?
|
55
58
|
details: Dodatkowe komentarze
|
56
59
|
reasons:
|
57
|
-
does_not_belong: Zawiera nielegalną działalność,
|
58
|
-
offensive: Zawiera rasizm, seksizm,
|
59
|
-
spam: Zawiera
|
60
|
-
title: Zgłoś
|
60
|
+
does_not_belong: Zawiera nielegalną działalność, groźby samobójcze, informacje osobiste lub coś innego, co według Ciebie nie powinno pojawić się w %{organization_name}.
|
61
|
+
offensive: Zawiera rasizm, seksizm, kłamstwa, ataki osobiste, groźby śmierci, prośby samobójcze lub jakąkolwiek formę mowy o nienawiści.
|
62
|
+
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
63
|
+
title: Zgłoś niewłaściwą treść
|
64
|
+
show_replies: Pokaż %{replies_count} odpowiedzi
|
65
|
+
single_comment_link_title: Pobierz link do pojedynczego komentarza
|
61
66
|
comment_order_selector:
|
62
67
|
order:
|
63
|
-
best_rated:
|
68
|
+
best_rated: Najlepiej oceniane
|
64
69
|
most_discussed: Najbardziej dyskutowane
|
65
|
-
older:
|
66
|
-
recent:
|
67
|
-
title: '
|
70
|
+
older: Najstarsze
|
71
|
+
recent: Najnowsze
|
72
|
+
title: 'Sortuj według:'
|
68
73
|
comment_thread:
|
69
74
|
title: Rozmowa z %{authorName}
|
70
75
|
comments:
|
71
|
-
blocked_comments_for_user_warning: Nie możesz teraz komentować, ale możesz przeczytać poprzednie.
|
76
|
+
blocked_comments_for_user_warning: Nie możesz teraz komentować, ale możesz przeczytać poprzednie komentarze.
|
72
77
|
blocked_comments_warning: Komentarze są w tej chwili wyłączone, ale możesz przeczytać poprzednie.
|
78
|
+
comment_details_title: Szczegóły komentarza
|
73
79
|
loading: Ładowanie komentarzy ...
|
80
|
+
single_comment_warning: Resztę komentarzy możesz sprawdzić <a href="%{url}">tutaj</a>.
|
81
|
+
single_comment_warning_title: Wyświetlasz teraz pojedynczy komentarz
|
74
82
|
title: "%{count} komentarzy"
|
83
|
+
down_vote_button:
|
84
|
+
text: Nie zgadzam się z tym komentarzem
|
85
|
+
up_vote_button:
|
86
|
+
text: Zgadzam się z tym komentarzem
|
75
87
|
events:
|
76
88
|
comments:
|
77
89
|
comment_by_followed_user:
|
78
|
-
email_intro: "%{author_name} dodał
|
79
|
-
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{author_name}. Możesz
|
80
|
-
email_subject: Jest nowy komentarz
|
81
|
-
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
90
|
+
email_intro: "%{author_name} dodał(a) komentarz do %{resource_title}. Możesz przeczytać go na tej stronie:"
|
91
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{author_name}. Możesz usunąć użytkownika z obserwowanych na jego stronie profilowej.
|
92
|
+
email_subject: Jest nowy komentarz dodany przez %{author_name} do %{resource_title}
|
93
|
+
notification_title: Pojawił się nowy komentarz dodany przez <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>.
|
94
|
+
comment_by_followed_user_group:
|
95
|
+
email_intro: 'Grupa %{author_name} dodała komentarz do %{resource_title}. Możesz go przeczytać na tej stronie:'
|
96
|
+
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz %{author_name}. Możesz przestać obserwować tę grupę z poziomu jej strony profilowej.
|
97
|
+
email_subject: Jest nowy komentarz dodany przez %{author_name} do %{resource_title}
|
98
|
+
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>.
|
82
99
|
comment_created:
|
83
100
|
email_intro: "%{resource_title} został skomentowany. Możesz przeczytać komentarz na tej stronie:"
|
84
|
-
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować
|
85
|
-
email_subject: Jest nowy komentarz od %{author_name}
|
86
|
-
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
101
|
+
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować po kliknięciu w poprzedni link.
|
102
|
+
email_subject: Jest nowy komentarz od %{author_name} do %{resource_title}
|
103
|
+
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>
|
87
104
|
reply_created:
|
88
|
-
email_intro: "%{author_name} odpowiedział na Twój komentarz
|
89
|
-
email_outro: Otrzymałeś to powiadomienie, ponieważ Twój komentarz
|
90
|
-
email_subject: "%{author_name} odpowiedział na Twój komentarz
|
91
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> odpowiedział na Twój komentarz
|
105
|
+
email_intro: "%{author_name} odpowiedział na Twój komentarz do %{resource_title}. Możesz przeczytać go na tej stronie:"
|
106
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ odpowiedziano na Twój komentarz.
|
107
|
+
email_subject: "%{author_name} odpowiedział(a) na Twój komentarz do %{resource_title}"
|
108
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> odpowiedział(a) na Twój komentarz do <a href="%{resource_path}">%{resource_title}</a>
|
109
|
+
user_group_mentioned:
|
110
|
+
email_intro: Wspomniano o grupie, do której należysz
|
111
|
+
email_outro: Otrzymujesz to powiadomienie, ponieważ jesteś członkiem grupy %{group_name}, o której wspomniano w %{resource_title}.
|
112
|
+
email_subject: Wspomniano o Tobie w %{resource_title} jako o członku %{group_name}
|
113
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> wspomniał(a) o Tobie w <a href="%{resource_path}">%{resource_title}</a> jako o członku <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
92
114
|
user_mentioned:
|
93
|
-
email_intro:
|
94
|
-
email_outro: Otrzymałeś to powiadomienie, ponieważ wspomniano o
|
95
|
-
email_subject:
|
96
|
-
notification_title:
|
115
|
+
email_intro: Wspomniano o Tobie
|
116
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ wspomniano o Tobie w %{resource_title}.
|
117
|
+
email_subject: Wspomniano o Tobie w %{resource_title}
|
118
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> wspomniał(a) o Tobie w <a href="%{resource_path}">%{resource_title}</a>
|
97
119
|
metrics:
|
98
120
|
comments:
|
99
121
|
description: Liczba komentarzy wygenerowanych przez użytkowników
|
@@ -101,4 +123,4 @@ pl:
|
|
101
123
|
title: Komentarze
|
102
124
|
errors:
|
103
125
|
messages:
|
104
|
-
cannot_have_comments:
|
126
|
+
cannot_have_comments: nie może mieć komentarzy
|