decidim-comments 0.27.2 → 0.27.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/comments/comment/actions.erb +5 -0
- data/app/cells/decidim/comments/comment/show.erb +3 -3
- data/app/controllers/decidim/comments/comments_controller.rb +10 -2
- data/app/views/decidim/comments/comments/create.js.erb +4 -0
- data/config/locales/ar.yml +65 -2
- data/config/locales/ca.yml +3 -1
- data/config/locales/cs.yml +5 -1
- data/config/locales/de.yml +1 -2
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +3 -1
- data/config/locales/es-MX.yml +3 -1
- data/config/locales/es-PY.yml +3 -1
- data/config/locales/es.yml +3 -1
- data/config/locales/eu.yml +8 -6
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +3 -1
- data/config/locales/fi.yml +3 -1
- data/config/locales/fr-CA.yml +4 -2
- data/config/locales/fr.yml +4 -2
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +55 -1
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +2 -1
- data/config/locales/kaa.yml +1 -0
- data/config/locales/lb.yml +1 -2
- data/config/locales/lt.yml +0 -1
- data/config/locales/lv.yml +1 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +0 -2
- data/config/locales/sk.yml +1 -1
- data/config/locales/sr-CS.yml +0 -1
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/zh-CN.yml +1 -1
- data/config/locales/zh-TW.yml +168 -0
- data/lib/decidim/comments/export.rb +2 -0
- data/lib/decidim/comments/version.rb +1 -1
- metadata +11 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4bbc904fe71b6dd9a6160ddea7fe4877d54462ad8e0a3276178f58beff3cb81
|
4
|
+
data.tar.gz: f8323a1983d94c8d9390e8323efdbf55a3a9ac5bdf00915eb58c6747c2308262
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3952b9fad1631c19871da71fcc7854e1d5905b9106a23c25a09108edba02bcef4a26e6543b8dd48c6faefd1c73d55af08ace2598a9a2e56fc2d1f4a3adc0897
|
7
|
+
data.tar.gz: 0c8b56f9dea01785c1520479328bf60723c5c079e604ed3c160c4e4c70cc689ffb7a5a7ac9bbdad24d7773d64b804ff7b4133ad25a298380fb9ac54e78950ac7
|
@@ -1,4 +1,9 @@
|
|
1
1
|
<div class="comment__actions">
|
2
|
+
<button class="comment__hide muted-link <%= depth.zero? && has_replies_in_children? ? "" : "hide" %>" aria-controls="comment-<%= model.id %>-replies" data-toggle="comment_<%= model.id %>">
|
3
|
+
<%= icon "comment-square", class: "icon--small", role: "img", "aria-hidden": true %>
|
4
|
+
<span class="hide-comment-replies"><%= t("decidim.components.comment.hide_replies") %></span>
|
5
|
+
<span class="show-comment-replies"><%= t("decidim.components.comment.show_replies", count: replies.size, replies_count: replies.size ) %></span>
|
6
|
+
</button>
|
2
7
|
<% if can_reply? %>
|
3
8
|
<button class="comment__reply muted-link" aria-controls="<%= reply_id %>" data-toggle="<%= reply_id %>">
|
4
9
|
<%= icon "pencil", class: "icon--small", role: "img", "aria-hidden": true %> <%= t("decidim.components.comment.reply") %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= content_tag :div, id: "comment_#{model.id}", class: comment_classes, data: { comment_id: model.id } do %>
|
1
|
+
<%= content_tag :div, id: "comment_#{model.id}", class: comment_classes, data: { depth: model.depth, comment_id: model.id, toggler: ".no-comments" } do %>
|
2
2
|
<% if model.hidden? %>
|
3
3
|
<%= render :moderation_data %>
|
4
4
|
<% elsif model.deleted? %>
|
@@ -31,7 +31,7 @@
|
|
31
31
|
<%= votes %>
|
32
32
|
</div>
|
33
33
|
<% end %>
|
34
|
-
<div id="comment-<%= model.id %>-replies">
|
34
|
+
<div id="comment-<%= model.id %>-replies" class="replies">
|
35
35
|
<% if has_replies_in_children? %>
|
36
36
|
<% replies.each do |reply| %>
|
37
37
|
<%= cell("decidim/comments/comment", reply, root_depth: root_depth, order: order, reloaded: reloaded?) %>
|
@@ -39,7 +39,7 @@
|
|
39
39
|
<% end %>
|
40
40
|
</div>
|
41
41
|
<% if can_reply? %>
|
42
|
-
<div class="comment__additionalreply<%= " hide" unless commentable? %>">
|
42
|
+
<div class="comment__additionalreply<%= " hide" unless commentable? %> replies">
|
43
43
|
<button class="comment__reply muted-link" aria-controls="<%= reply_id %>" data-toggle="<%= reply_id %>">
|
44
44
|
<%= icon "pencil", class: "icon--small", role: "img", "aria-hidden": true %> <%= t("decidim.components.comment.reply") %>
|
45
45
|
</button>
|
@@ -13,7 +13,7 @@ module Decidim
|
|
13
13
|
before_action :set_commentable, except: [:destroy, :update]
|
14
14
|
before_action :ensure_commentable!, except: [:destroy, :update]
|
15
15
|
|
16
|
-
helper_method :root_depth, :commentable, :order, :reply?, :reload
|
16
|
+
helper_method :root_depth, :commentable, :order, :reply?, :reload?, :root_comment
|
17
17
|
|
18
18
|
def index
|
19
19
|
enforce_permission_to :read, :comment, commentable: commentable
|
@@ -141,7 +141,7 @@ module Decidim
|
|
141
141
|
end
|
142
142
|
|
143
143
|
def handle_success(comment)
|
144
|
-
@comment = comment
|
144
|
+
@comment = comment.reload
|
145
145
|
@comments_count = case commentable
|
146
146
|
when Decidim::Comments::Comment
|
147
147
|
commentable.root_commentable.comments_count
|
@@ -150,6 +150,14 @@ module Decidim
|
|
150
150
|
end
|
151
151
|
end
|
152
152
|
|
153
|
+
def root_comment
|
154
|
+
@root_comment ||= begin
|
155
|
+
root_comment = comment
|
156
|
+
root_comment = root_comment.commentable while root_comment.commentable.is_a?(Decidim::Comments::Comment)
|
157
|
+
root_comment
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
153
161
|
def commentable_gid
|
154
162
|
case action_name
|
155
163
|
when "create"
|
@@ -7,6 +7,10 @@
|
|
7
7
|
var component = $comments.data("comments");
|
8
8
|
if (inReplyTo) {
|
9
9
|
component.addReply(inReplyTo, commentHtml, true);
|
10
|
+
|
11
|
+
var hideButton = $("#comment_" + <%= root_comment.id %>).find(".comment__hide").first();
|
12
|
+
hideButton.find(".show-comment-replies").first().html('<%= t("decidim.components.comment.show_replies", count: Decidim::Comments::SortedComments.for(root_comment.reload).size) %>');
|
13
|
+
hideButton.removeClass("hide");
|
10
14
|
} else {
|
11
15
|
component.addThread(commentHtml, true);
|
12
16
|
}
|
data/config/locales/ar.yml
CHANGED
@@ -4,6 +4,7 @@ ar:
|
|
4
4
|
models:
|
5
5
|
decidim/comments/comment_by_followed_user_event: تعليق
|
6
6
|
decidim/comments/comment_created_event: تعليق
|
7
|
+
decidim/comments/comment_upvoted_event: تم التصويت للتعليق
|
7
8
|
decidim/comments/reply_created_event: تعليق الرد
|
8
9
|
decidim/comments/user_group_mentioned_event: أشير
|
9
10
|
decidim/comments/user_mentioned_event: أشير
|
@@ -25,9 +26,24 @@ ar:
|
|
25
26
|
other: الأصوات
|
26
27
|
decidim:
|
27
28
|
comments:
|
28
|
-
|
29
|
+
admin:
|
30
|
+
shared:
|
31
|
+
availability_fields:
|
32
|
+
enabled: تم تمكين التعليقات
|
33
|
+
end_time: التعليقات ممكنة حتى
|
34
|
+
start_time: التعليقات ممكنة من
|
35
|
+
comments:
|
36
|
+
create:
|
37
|
+
error: طرأت مشكلة خلال إنشاء التعليق.
|
38
|
+
delete:
|
39
|
+
error: حذف التعليق لم يكن ممكنا.
|
40
|
+
update:
|
41
|
+
error: طرأت مشكلة خلال تحديث التعليق.
|
42
|
+
comments_count: تعداد التعليقات
|
43
|
+
comments_title: تعليقات
|
29
44
|
last_activity:
|
30
45
|
new_comment_at_html: "<span>تعليق جديد على %{link}</span>"
|
46
|
+
view: العرض
|
31
47
|
votes:
|
32
48
|
create:
|
33
49
|
error: حدثت مشكلة في التصويت على التعليق.
|
@@ -43,7 +59,13 @@ ar:
|
|
43
59
|
user_group_id:
|
44
60
|
label: التعليق باسم
|
45
61
|
opinion:
|
62
|
+
label: رأيك حول هذا الموضوع
|
63
|
+
negative: سلبي
|
64
|
+
negative_selected: رأيك في هذا الموضوع سلبي
|
46
65
|
neutral: محايد
|
66
|
+
neutral_selected: رأيك في هذا الموضوع محايد
|
67
|
+
positive: إيجابي
|
68
|
+
positive_selected: رأيك في هذا الموضوع إيجابي
|
47
69
|
remaining_characters: "%{count} الحروف المتبقية"
|
48
70
|
remaining_characters_1: "%{count} حرف اليسار"
|
49
71
|
title: أضف تعليقك
|
@@ -51,10 +73,14 @@ ar:
|
|
51
73
|
alignment:
|
52
74
|
against: ضد
|
53
75
|
in_favor: لصالح
|
76
|
+
confirm_destroy: هل حقا تريد حذف هذا التعليق؟
|
54
77
|
delete: حذف
|
78
|
+
deleted_at: تم حذف التعليق في %{date}
|
55
79
|
deleted_user: مشارك محذوف
|
56
80
|
edit: تعديل
|
81
|
+
edited: تم التعديل
|
57
82
|
hide_replies: إخفاء الردود
|
83
|
+
moderated_at: تمت مراجعة التعليق على %{date}
|
58
84
|
reply: الرد
|
59
85
|
report:
|
60
86
|
action: أبلغ عن
|
@@ -66,7 +92,8 @@ ar:
|
|
66
92
|
does_not_belong: يحتوي على نشاط غير قانوني أو تهديدات انتحارية أو معلومات شخصية أو أي شيء آخر تعتقد أنه لا ينتمي إلى %{organization_name}.
|
67
93
|
offensive: يحتوي على العنصرية والتمييز الجنسي والتشهير والهجمات الشخصية والتهديدات بالقتل أو طلبات الانتحار أو أي شكل من أشكال خطاب الكراهية.
|
68
94
|
spam: يحتوي على clickbait أو الإعلان أو الخدع أو روبوت البرامج النصية.
|
69
|
-
|
95
|
+
title: الإبلاغ عن محتوى غير لائق
|
96
|
+
single_comment_link_title: أحصل على الرابط
|
70
97
|
comment_order_selector:
|
71
98
|
order:
|
72
99
|
best_rated: أفضل تصنيف
|
@@ -77,13 +104,32 @@ ar:
|
|
77
104
|
comment_thread:
|
78
105
|
title: المحادثة مع %{authorName}
|
79
106
|
comments:
|
107
|
+
blocked_comments_for_unauthorized_user_warning: يجب أن تكون عضوا محققا من أجل التعليق حالياً، ولكن يمكنك قراءة ما سبق.
|
80
108
|
blocked_comments_for_user_warning: لا يمكنك التعليق في هذه اللحظة ، ولكن يمكنك قراءة التعليقات السابقة.
|
81
109
|
blocked_comments_warning: التعليقات معطلة في هذا الوقت ، لكن يمكنك قراءة التعليقات السابقة.
|
82
110
|
comment_details_title: تفاصيل التعليق
|
83
111
|
loading: جارٍ تحميل التعليقات ...
|
112
|
+
single_comment_warning: <a href="%{url}"> عرض جميع التعليقات</a>
|
84
113
|
single_comment_warning_title: إنك ترى تعليقا واحدا
|
114
|
+
title:
|
115
|
+
zero: "%{count} تعليقات"
|
116
|
+
one: "%{count} تعليق"
|
117
|
+
two: "%{count} تعليقان"
|
118
|
+
few: "%{count} تعليقات"
|
119
|
+
many: "%{count} تعليقات"
|
120
|
+
other: "%{count} تعليقات"
|
121
|
+
down_vote_button:
|
122
|
+
text: أنا لا أوافق على هذا التعليق
|
85
123
|
edit_comment_modal_form:
|
86
124
|
close: أغلق
|
125
|
+
form:
|
126
|
+
body:
|
127
|
+
label: التعليق
|
128
|
+
placeholder: ما رأيك في هذا؟
|
129
|
+
submit: إرسال
|
130
|
+
title: تعديل تعليقك
|
131
|
+
up_vote_button:
|
132
|
+
text: أنا أوافق على هذا التعليق
|
87
133
|
events:
|
88
134
|
comments:
|
89
135
|
comment_by_followed_user:
|
@@ -92,6 +138,8 @@ ar:
|
|
92
138
|
email_subject: هناك تعليق جديد مِن %{author_name} على %{resource_title}
|
93
139
|
notification_title: هناك تعليق جديد مِن <a href="%{author_path}">%{author_name} %{author_nickname}</a> على <a href="%{resource_path}">%{resource_title}</a>.
|
94
140
|
comment_by_followed_user_group:
|
141
|
+
email_intro: 'المجموعة %{author_name} تركت تعليقا في %{resource_title}. يمكنك قراءته على هذه الصفحة:'
|
142
|
+
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{author_name}. يمكنك إلغاء متابعة هذه المجموعة من صفحتها الأساسية.
|
95
143
|
email_subject: هناك تعليق جديد مِن %{author_name} على %{resource_title}
|
96
144
|
notification_title: هناك تعليق جديد مِن <a href="%{author_path}">%{author_name} %{author_nickname}</a> على <a href="%{resource_path}">%{resource_title}</a>.
|
97
145
|
comment_created:
|
@@ -99,11 +147,26 @@ ar:
|
|
99
147
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع "%{resource_title}" أو مؤلفه. يمكنك إلغاء تتبعه من الرابط السابق.
|
100
148
|
email_subject: هناك تعليق جديد من %{author_name} في %{resource_title}
|
101
149
|
notification_title: هناك تعليق جديد مِن <a href="%{author_path}">%{author_name} %{author_nickname}</a> على <a href="%{resource_path}">%{resource_title}</a>
|
150
|
+
comment_downvoted:
|
151
|
+
email_intro: تم خفض تعليقك في "%{resource_title}". الآن يحتوي على ما مجموعه %{upvotes} أصوات أعلى و %{downvotes} أصوات أدنى.
|
152
|
+
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف هذا التعليق.
|
153
|
+
email_subject: تم خفض تعليقك في "%{resource_title}".
|
154
|
+
notification_title: تم خفض <a href="%{resource_path}">تعليقك </a> في "%{resource_title}". الآن يحتوي على ما مجموعه %{upvotes} أصوات أعلى و %{downvotes} أصوات أدنى.
|
155
|
+
comment_upvoted:
|
156
|
+
email_intro: تم التصويت على تعليقك في "%{resource_title}". الآن يحتوي على ما مجموعه %{upvotes} أصوات أعلى و %{downvotes} أصوات أدنى.
|
157
|
+
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف هذا التعليق.
|
158
|
+
email_subject: تم التصويت للأعلى على تعليقك في "%{resource_title}".
|
159
|
+
notification_title: تم التصويت للأعلى على تعليقك <a href="%{resource_path}"></a> في "%{resource_title}". الآن لديه مجموع %{upvotes} أصوات أعلى و %{downvotes} أصوات أسفل.
|
102
160
|
reply_created:
|
103
161
|
email_intro: "%{author_name} رد على تعليقك في %{resource_title}. يمكنك قراءتها في هذه الصفحة:"
|
104
162
|
email_outro: لقد تلقيت هذا الإشعار لأنه تم الرد على تعليقك.
|
105
163
|
email_subject: "%{author_name} رد على تعليقك في %{resource_title}"
|
106
164
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> رد على تعليقك في <a href="%{resource_path}">%{resource_title}</a>
|
165
|
+
user_group_mentioned:
|
166
|
+
email_intro: تم ذكر مجموعة تنتمي إليها
|
167
|
+
email_outro: لقد تلقيت هذا الإشعار لأنك عضو في المجموعة %{group_name} التي ذكرت في %{resource_title}.
|
168
|
+
email_subject: تم ذكرك في %{resource_title} كعضو في %{group_name}
|
169
|
+
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>
|
107
170
|
user_mentioned:
|
108
171
|
email_intro: لقد ذكرت
|
109
172
|
email_outro: لقد تلقيت هذا الإشعار لأنك ذكرت في %{resource_title}.
|
data/config/locales/ca.yml
CHANGED
@@ -85,7 +85,9 @@ ca:
|
|
85
85
|
offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort, peticions de suïcidi o qualsevol forma de discurs d'odi.
|
86
86
|
spam: Conté "clickbait", publicitat o estafes.
|
87
87
|
title: Notificar contingut inapropiat
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Mostra la resposta
|
90
|
+
other: Mostra les %{count} respostes
|
89
91
|
single_comment_link_title: Obtenir enllaç
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/cs.yml
CHANGED
@@ -89,7 +89,11 @@ cs:
|
|
89
89
|
offensive: Obsahuje rasismus, sexismus, podvody, osobní útoky, hrozby smrti, žádosti o sebevraždu nebo jakoukoli formu projevy nenávisti.
|
90
90
|
spam: Obsahuje clickbait, reklamu, podvody nebo škodlivé skripty.
|
91
91
|
title: Nahlásit nevhodný obsah
|
92
|
-
show_replies:
|
92
|
+
show_replies:
|
93
|
+
one: Zobrazit odpověď
|
94
|
+
few: Zobrazit %{count} odpovědi
|
95
|
+
many: Zobrazit %{count} odpovědí
|
96
|
+
other: Zobrazit %{count} odpovědí
|
93
97
|
single_comment_link_title: Získat odkaz
|
94
98
|
comment_order_selector:
|
95
99
|
order:
|
data/config/locales/de.yml
CHANGED
@@ -32,7 +32,7 @@ de:
|
|
32
32
|
update:
|
33
33
|
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
34
34
|
comments_count: Kommentaranzahl
|
35
|
-
comments_title:
|
35
|
+
comments_title: Bemerkungen
|
36
36
|
last_activity:
|
37
37
|
new_comment_at_html: "<span>Neuer Kommentar unter %{link}</span>"
|
38
38
|
view: Ansicht
|
@@ -85,7 +85,6 @@ de:
|
|
85
85
|
offensive: Enthält Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jegliche Form von Hassreden.
|
86
86
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
87
87
|
title: Ungeeigneten Inhalt melden
|
88
|
-
show_replies: '%{replies_count} Antworten anzeigen'
|
89
88
|
single_comment_link_title: Link erhalten
|
90
89
|
comment_order_selector:
|
91
90
|
order:
|
data/config/locales/el.yml
CHANGED
@@ -77,7 +77,6 @@ el:
|
|
77
77
|
offensive: Περιέχει ρατσισμό, σεξισμό, δυσφημίσεις, προσωπικές επιθέσεις, απειλές θανάτου, αιτήματα αυτοκτονίας ή οποιαδήποτε μορφή ρητορικής μίσους.
|
78
78
|
spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
|
79
79
|
title: Αναφορά ακατάλληλου περιεχομένου
|
80
|
-
show_replies: Εμφάνιση %{replies_count} απαντήσεων
|
81
80
|
single_comment_link_title: Αποκτήστε σύνδεσμο
|
82
81
|
comment_order_selector:
|
83
82
|
order:
|
data/config/locales/en.yml
CHANGED
@@ -85,7 +85,9 @@ en:
|
|
85
85
|
offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
|
86
86
|
spam: Contains clickbait, advertising, scams or script bots.
|
87
87
|
title: Report inappropriate content
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Show reply
|
90
|
+
other: Show %{count} replies
|
89
91
|
single_comment_link_title: Get link
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/es-MX.yml
CHANGED
@@ -85,7 +85,9 @@ es-MX:
|
|
85
85
|
offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
|
86
86
|
spam: Contiene clickbait, publicidad o estafas.
|
87
87
|
title: Notificar contenido inapropiado
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Mostrar la respuesta
|
90
|
+
other: Mostrar las %{count} respuestas
|
89
91
|
single_comment_link_title: Obtener enlace
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/es-PY.yml
CHANGED
@@ -85,7 +85,9 @@ es-PY:
|
|
85
85
|
offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
|
86
86
|
spam: Contiene clickbait, publicidad o estafas.
|
87
87
|
title: Notificar contenido inapropiado
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Mostrar la respuesta
|
90
|
+
other: Mostrar las %{count} respuestas
|
89
91
|
single_comment_link_title: Obtener enlace
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/es.yml
CHANGED
@@ -85,7 +85,9 @@ es:
|
|
85
85
|
offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
|
86
86
|
spam: Contiene clickbait, publicidad o estafas.
|
87
87
|
title: Notificar contenido inapropiado
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Mostrar la respuesta
|
90
|
+
other: Mostrar las %{count} respuestas
|
89
91
|
single_comment_link_title: Obtener enlace
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/eu.yml
CHANGED
@@ -32,7 +32,7 @@ eu:
|
|
32
32
|
update:
|
33
33
|
error: Arazoa gertatu da iruzkina eguneratzean.
|
34
34
|
comments_count: Iruzkin kopurua
|
35
|
-
comments_title:
|
35
|
+
comments_title: Oharrak
|
36
36
|
last_activity:
|
37
37
|
new_comment_at_html: "<span>Iruzkin berria %{link}</span>"
|
38
38
|
view: Bistaratu
|
@@ -85,7 +85,9 @@ eu:
|
|
85
85
|
offensive: Ertan badago arrazakeriarik, sexismorik, irainik, eraso pertsonalik, heriotza-mehatxurik, suizidio-eskaerarik edo beste edozein eratako gorroto-diskurtsorik.
|
86
86
|
spam: Bertan badago clickbait-ik, publizitaterik edo iruzurrik.
|
87
87
|
title: Jakinarazi eduki desegokia
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Erakutsi erantzuna
|
90
|
+
other: Erakutsi %{count} erantzunak
|
89
91
|
single_comment_link_title: Lortu esteka
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
@@ -123,7 +125,7 @@ eu:
|
|
123
125
|
comments:
|
124
126
|
comment_by_followed_user:
|
125
127
|
email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
|
126
|
-
email_outro: Jakinarazpen hau jaso duzu %{author_name} erabiltzailea jarraitzen duzulako.
|
128
|
+
email_outro: Jakinarazpen hau jaso duzu %{author_name} erabiltzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
|
127
129
|
email_subject: '%{author_name} %{resource_title} iruzkin berri bat dago'
|
128
130
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>-en iruzkin berri bat dagon <a href="%{resource_path}">%{resource_title}</a>-an.
|
129
131
|
comment_by_followed_user_group:
|
@@ -133,8 +135,8 @@ eu:
|
|
133
135
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>egileak iruzkin berri bat utzi du <a href="%{resource_path}">%{resource_title}</a>-an.
|
134
136
|
comment_created:
|
135
137
|
email_intro: "%{resource_title} iruzkindu da. Orri honetan iruzkina irakur dezakezu:"
|
136
|
-
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko
|
137
|
-
email_subject: '%{author_name}
|
138
|
+
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
|
139
|
+
email_subject: '%{author_name} ren %{resource_title} iruzkin berri bat dago'
|
138
140
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago
|
139
141
|
comment_downvoted:
|
140
142
|
email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu guztira.
|
@@ -158,7 +160,7 @@ eu:
|
|
158
160
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> k aipatu zaitu hemen <a href="%{resource_path}">%{resource_title}</a> <a href="%{group_path}">%{group_name} %{group_nickname}</a> taldearen kide gisa
|
159
161
|
user_mentioned:
|
160
162
|
email_intro: Aipatu zaituzte
|
161
|
-
email_outro: Jakinarazpena jaso duzu %{resource_title} delakoan aipatu
|
163
|
+
email_outro: Jakinarazpena jaso duzu %{resource_title} delakoan aipatu zaituztelako.
|
162
164
|
email_subject: '%{resource_title} delakoan aipatu zaituzte'
|
163
165
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> <a href="%{author_path}">%{author_name} %{author_nickname}</a> bidez aipatu zaituzte.
|
164
166
|
metrics:
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -85,7 +85,9 @@ fi-pl:
|
|
85
85
|
offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
|
86
86
|
spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
|
87
87
|
title: Ilmoita asiatonta sisältöä
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Näytä vastaus
|
90
|
+
other: Näytä %{count} vastausta
|
89
91
|
single_comment_link_title: Linkki kommenttiin
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/fi.yml
CHANGED
@@ -85,7 +85,9 @@ fi:
|
|
85
85
|
offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
|
86
86
|
spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
|
87
87
|
title: Ilmoita asiatonta sisältöä
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Näytä vastaus
|
90
|
+
other: Näytä %{count} vastausta
|
89
91
|
single_comment_link_title: Linkki kommenttiin
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -32,7 +32,7 @@ fr-CA:
|
|
32
32
|
update:
|
33
33
|
error: Une erreur s'est produite lors de la mise à jour du commentaire.
|
34
34
|
comments_count: Nombre de commentaires
|
35
|
-
comments_title:
|
35
|
+
comments_title: commentaires
|
36
36
|
last_activity:
|
37
37
|
new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
|
38
38
|
view: Voir
|
@@ -85,7 +85,9 @@ fr-CA:
|
|
85
85
|
offensive: Contient des propos contraires à la loi (propos racistes, sexistes, insultes, attaques personnelles, menaces de mort, incitations au suicide ou toute forme de discours de haine,...).
|
86
86
|
spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
|
87
87
|
title: Signaler un contenu inapproprié
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Afficher la réponse
|
90
|
+
other: Afficher %{count} réponses
|
89
91
|
single_comment_link_title: Obtenir le lien
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/fr.yml
CHANGED
@@ -32,7 +32,7 @@ fr:
|
|
32
32
|
update:
|
33
33
|
error: Une erreur s'est produite lors de la mise à jour du commentaire.
|
34
34
|
comments_count: Nombre de commentaires
|
35
|
-
comments_title:
|
35
|
+
comments_title: commentaires
|
36
36
|
last_activity:
|
37
37
|
new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
|
38
38
|
view: Voir
|
@@ -85,7 +85,9 @@ fr:
|
|
85
85
|
offensive: Contient des propos contraires à la loi (propos racistes, sexistes, insultes, attaques personnelles, menaces de mort, incitations au suicide ou toute forme de discours de haine,...).
|
86
86
|
spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
|
87
87
|
title: Signaler un contenu inapproprié
|
88
|
-
show_replies:
|
88
|
+
show_replies:
|
89
|
+
one: Afficher la réponse
|
90
|
+
other: Afficher %{count} réponses
|
89
91
|
single_comment_link_title: Obtenir le lien
|
90
92
|
comment_order_selector:
|
91
93
|
order:
|
data/config/locales/gl.yml
CHANGED
@@ -84,7 +84,6 @@ gl:
|
|
84
84
|
offensive: Contén racismo, sexismo, abuso, ataques persoais, ameazas de morte, solicitudes de suicidio ou calquera tipo de discurso de odio.
|
85
85
|
spam: Contén clic, publicidade, fraudes ou bots de script.
|
86
86
|
title: Denunciar contido inapropiado
|
87
|
-
show_replies: Amosar %{replies_count} respostas
|
88
87
|
single_comment_link_title: Obter ligazón
|
89
88
|
comment_order_selector:
|
90
89
|
order:
|
data/config/locales/hu.yml
CHANGED
@@ -4,6 +4,7 @@ hu:
|
|
4
4
|
models:
|
5
5
|
decidim/comments/comment_by_followed_user_event: Megjegyzés
|
6
6
|
decidim/comments/comment_created_event: Megjegyzés
|
7
|
+
decidim/comments/comment_upvoted_event: Hozzászólás feljebb szavazva
|
7
8
|
decidim/comments/reply_created_event: Hozzászólás válasz
|
8
9
|
decidim/comments/user_group_mentioned_event: Említés
|
9
10
|
decidim/comments/user_mentioned_event: Említés
|
@@ -17,8 +18,22 @@ hu:
|
|
17
18
|
other: Szavazatok
|
18
19
|
decidim:
|
19
20
|
comments:
|
21
|
+
admin:
|
22
|
+
shared:
|
23
|
+
availability_fields:
|
24
|
+
enabled: Hozzászólások engedélyezve
|
25
|
+
end_time: Hozzászólás engedélyezve eddig
|
26
|
+
start_time: A hozzászólások engedélyezve ettől
|
27
|
+
comments:
|
28
|
+
create:
|
29
|
+
error: Hiba történt a hozzászólás létrehozása során.
|
30
|
+
update:
|
31
|
+
error: Hiba történt a hozzászólás frissítése során.
|
32
|
+
comments_count: Hozzászólások száma
|
33
|
+
comments_title: Hozzászólások
|
20
34
|
last_activity:
|
21
35
|
new_comment_at_html: "<span>Új megjegyzés: %{link}</span>"
|
36
|
+
view: Megtekintés
|
22
37
|
votes:
|
23
38
|
create:
|
24
39
|
error: Hiba történt a megjegyzésre való szavazáskor.
|
@@ -34,7 +49,13 @@ hu:
|
|
34
49
|
user_group_id:
|
35
50
|
label: 'Megjegyzés mint:'
|
36
51
|
opinion:
|
52
|
+
label: A témáról alkotott véleménye
|
53
|
+
negative: Negatív
|
54
|
+
negative_selected: A témáról alkotott véleménye negatív
|
37
55
|
neutral: Semleges
|
56
|
+
neutral_selected: A témáról alkotott véleménye semleges
|
57
|
+
positive: Pozitív
|
58
|
+
positive_selected: A témáról alkotott véleménye pozitív
|
38
59
|
remaining_characters: "%{count} karakter maradt"
|
39
60
|
remaining_characters_1: "%{count} karakter maradt"
|
40
61
|
title: Szólj hozzá
|
@@ -42,7 +63,12 @@ hu:
|
|
42
63
|
alignment:
|
43
64
|
against: Ellenzem
|
44
65
|
in_favor: Támogatom
|
66
|
+
confirm_destroy: Biztosan szeretné törölni ezt a hozzászólást?
|
67
|
+
delete: Törlés
|
68
|
+
deleted_at: 'Hozzászólás törölve ekkor: %{date}'
|
45
69
|
deleted_user: Törölt felhasználó
|
70
|
+
edit: Szerkesztés
|
71
|
+
edited: Szerkesztve
|
46
72
|
hide_replies: Válaszok elrejtése
|
47
73
|
moderated_at: Hozzászólás moderálva %{date}
|
48
74
|
reply: Válasz
|
@@ -56,7 +82,8 @@ hu:
|
|
56
82
|
does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz, ami nem tartozik ide: %{organization_name}.'
|
57
83
|
offensive: Rasszizmust, szexizmust, gyalázkodást, személyeskedést, halálos fenyegetést, öngyilkosságra való felhívást vagy gyűlöletbeszédet tartalmaz.
|
58
84
|
spam: Klikkvadászat, reklám, átverés vagy script bot.
|
59
|
-
|
85
|
+
title: Nem megfelelő tartalom bejelentése
|
86
|
+
single_comment_link_title: Link megszerzése
|
60
87
|
comment_order_selector:
|
61
88
|
order:
|
62
89
|
best_rated: Legjobbra értékelt
|
@@ -67,11 +94,28 @@ hu:
|
|
67
94
|
comment_thread:
|
68
95
|
title: 'Beszélgetés vele: %{authorName}'
|
69
96
|
comments:
|
97
|
+
blocked_comments_for_unauthorized_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
|
70
98
|
blocked_comments_for_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
|
71
99
|
blocked_comments_warning: A megjegyzések jelenleg le vannak tiltva, de a korábbiakat elolvashatod.
|
72
100
|
comment_details_title: Megjegyzés részletei
|
73
101
|
loading: Hozzászólások betöltése ...
|
102
|
+
single_comment_warning: <a href="%{url}"><a href="%{url}">Minden hozzászólás megtekintése</a>
|
74
103
|
single_comment_warning_title: Egyetlen megjegyzést látsz
|
104
|
+
title:
|
105
|
+
one: "%{count} hozzászólás"
|
106
|
+
other: "%{count} hozzászólás"
|
107
|
+
down_vote_button:
|
108
|
+
text: Nem értek egyet ezzel a hozzászólással
|
109
|
+
edit_comment_modal_form:
|
110
|
+
close: Bezár
|
111
|
+
form:
|
112
|
+
body:
|
113
|
+
label: Hozzászólás
|
114
|
+
placeholder: Mit gondolsz erről?
|
115
|
+
submit: Elküld
|
116
|
+
title: Hozzászólásod szerkesztése
|
117
|
+
up_vote_button:
|
118
|
+
text: Egyetértek ezzel a hozzászólással
|
75
119
|
events:
|
76
120
|
comments:
|
77
121
|
comment_by_followed_user:
|
@@ -89,6 +133,16 @@ hu:
|
|
89
133
|
email_outro: 'Ezt az értesítést azért kaptad, mert ezt (vagy ennek szerzőjét) követed: "%{resource_title}". Ha szeretnél, a link segítségével leiratkozhatsz.'
|
90
134
|
email_subject: 'Új megjegyzés érkezett ehhez: %{resource_title}, tőle: %{author_name}'
|
91
135
|
notification_title: 'Új megjegyzés tőle: <a href="%{author_path}">%{author_name} %{author_nickname}</a>, ehhez: <a href="%{resource_path}">%{resource_title}</a>'
|
136
|
+
comment_downvoted:
|
137
|
+
email_intro: A hozzászólásod itt %{resource_title} leszavazásra került. Most %{upvotes} szavazat van mellette és %{downvotes} ellene.
|
138
|
+
email_outro: Ezt az értesítést kaptad, mert te vagy a hozzászólás szerzője.
|
139
|
+
email_subject: A hozzászólásod itt %{resource_title} leszavazásra került.
|
140
|
+
notification_title: A hozzászólásod <a href="%{resource_path}"><a href="%{resource_path}"> itt %{resource_title} leszavazásra került. Most %{upvotes} szavazat van mellette és %{downvotes} ellene.
|
141
|
+
comment_upvoted:
|
142
|
+
email_intro: A hozzászólásod itt %{resource_title} felszavazták. Most %{upvotes} szavazat van mellette és %{downvotes} ellene.
|
143
|
+
email_outro: Ezt az értesítést kaptad, mert te vagy a hozzászólás szerzője.
|
144
|
+
email_subject: A hozzászólásod itt %{resource_title} támogató szavazatokat kapott.
|
145
|
+
notification_title: A <a href="%{resource_path}">hozzászólásod</a> itt %{resource_title} támogató szavazatokat kapott. Most %{upvotes} szavazat van mellette és %{downvotes} ellene.
|
92
146
|
reply_created:
|
93
147
|
email_intro: "%{author_name} megjegyzést fűzött ehhez: %{resource_title}. Ezen az oldalon megtalálod:"
|
94
148
|
email_outro: Ezt az értesítést azért kaptad, mert valaki választolt a mejegyzésedre.
|
data/config/locales/id-ID.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -83,7 +83,6 @@ it:
|
|
83
83
|
offensive: Vi sono contenuti razzisti, sessisti, offensivi, attacchi di carattere personale, minacce di morte o altro tipo di minacci, istigazioni al suicidio o altre forme d'odio verbale.
|
84
84
|
spam: Contiene pubblicità, truffe, clickbait ("esca da click") o altro contenuto mirato ad attrarre traffico internet.
|
85
85
|
title: Segnala contenuti inappropriati
|
86
|
-
show_replies: Mostra %{replies_count} risposte
|
87
86
|
single_comment_link_title: Ottieni il link
|
88
87
|
comment_order_selector:
|
89
88
|
order:
|
data/config/locales/ja.yml
CHANGED
@@ -83,7 +83,8 @@ ja:
|
|
83
83
|
offensive: 差別的な内容、誹謗中傷などの不適切な内容が含まれています。
|
84
84
|
spam: 本来の内容に関係が無い広告、詐欺や悪意のある処理などが含まれています。
|
85
85
|
title: 不適切なコンテンツを報告する
|
86
|
-
show_replies:
|
86
|
+
show_replies:
|
87
|
+
other: '%{count} 件の返信を表示'
|
87
88
|
single_comment_link_title: リンク取得
|
88
89
|
comment_order_selector:
|
89
90
|
order:
|
@@ -0,0 +1 @@
|
|
1
|
+
kaa:
|
data/config/locales/lb.yml
CHANGED
@@ -25,7 +25,7 @@ lb:
|
|
25
25
|
update:
|
26
26
|
error: Beim Aktualisieren des Kommentars ist ein Problem aufgetreten.
|
27
27
|
comments_count: Kommentaranzahl
|
28
|
-
comments_title:
|
28
|
+
comments_title: Bemerkungen
|
29
29
|
last_activity:
|
30
30
|
new_comment_at_html: "<span>Neuer Kommentar unter %{link}</span>"
|
31
31
|
view: Ansicht
|
@@ -77,7 +77,6 @@ lb:
|
|
77
77
|
offensive: Enthält Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jegliche Form von Hassreden.
|
78
78
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
79
79
|
title: Ungeeigneten Inhalt melden
|
80
|
-
show_replies: '%{replies_count} Antworten anzeigen'
|
81
80
|
single_comment_link_title: Link ufroen
|
82
81
|
comment_order_selector:
|
83
82
|
order:
|
data/config/locales/lt.yml
CHANGED
@@ -89,7 +89,6 @@ lt:
|
|
89
89
|
offensive: Pateikiamoje informacijoje yra rasizmo, seksizmo, keiksmažodžių, asmeninių atakų, grasinimų ar kitokios neapykantos kalbos.
|
90
90
|
spam: Pateikiamoje informacijoje yra reklamos, antraščių mąsalo ar apgavysčių.
|
91
91
|
title: Pranešti apie netinkamą turinį
|
92
|
-
show_replies: Rodyti %{replies_count} atsakymus
|
93
92
|
single_comment_link_title: Gauti nuorodą
|
94
93
|
comment_order_selector:
|
95
94
|
order:
|
data/config/locales/lv.yml
CHANGED
@@ -19,6 +19,7 @@ lv:
|
|
19
19
|
other: Balsis
|
20
20
|
decidim:
|
21
21
|
comments:
|
22
|
+
comments_title: Komentāri
|
22
23
|
last_activity:
|
23
24
|
new_comment_at_html: "<span>Jauns komentārs %{link}</span>"
|
24
25
|
votes:
|
@@ -57,7 +58,6 @@ lv:
|
|
57
58
|
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
59
|
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
60
|
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
61
|
comment_order_selector:
|
62
62
|
order:
|
63
63
|
best_rated: Vislabāk novērtētie
|
data/config/locales/nl.yml
CHANGED
@@ -85,7 +85,6 @@ nl:
|
|
85
85
|
offensive: Bevat racisme, seksisme, laster, persoonlijke aanvallen, bedreigingen met de dood, zelfmoord verzoeken of enige vorm van haatzaaien.
|
86
86
|
spam: Bevat clickbait, reclame, oplichting of script bots.
|
87
87
|
title: Meld ongepaste inhoud
|
88
|
-
show_replies: Toon %{replies_count} reacties
|
89
88
|
single_comment_link_title: Haal link op
|
90
89
|
comment_order_selector:
|
91
90
|
order:
|
data/config/locales/no.yml
CHANGED
@@ -83,7 +83,6 @@
|
|
83
83
|
offensive: Inneholder rasisme, sexisme, banning, persjonangrep, dødstrusler, selvmords forespørsler eller all form for hatefullt språk.
|
84
84
|
spam: Inneholder klikkagn, reklame, svindel eller manus-roboter.
|
85
85
|
title: Rapporter upassende innhold
|
86
|
-
show_replies: Vis %{replies_count} svar
|
87
86
|
single_comment_link_title: Få lenke
|
88
87
|
comment_order_selector:
|
89
88
|
order:
|
data/config/locales/pl.yml
CHANGED
@@ -85,7 +85,6 @@ pl:
|
|
85
85
|
offensive: Promuje rasizm, seksizm, nienawiść, ataki osobiste, groźby śmierci, groźby samobójcze jakąkolwiek formę mowy nienawiści.
|
86
86
|
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
87
87
|
title: Zgłoś niewłaściwą treść
|
88
|
-
show_replies: Pokaż %{replies_count} odpowiedzi
|
89
88
|
single_comment_link_title: Pobierz link
|
90
89
|
comment_order_selector:
|
91
90
|
order:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -77,7 +77,6 @@ pt-BR:
|
|
77
77
|
offensive: Contém racismo, sexismo, insultos, ataques pessoais, ameaças de morte, pedidos de suicídio ou qualquer tipo de discurso de ódio.
|
78
78
|
spam: Contém clickbait, publicidade, fraudes ou script bots.
|
79
79
|
title: Reportar conteúdo impróprio
|
80
|
-
show_replies: Mostrar %{replies_count} respostas
|
81
80
|
single_comment_link_title: Obter o link
|
82
81
|
comment_order_selector:
|
83
82
|
order:
|
data/config/locales/pt.yml
CHANGED
@@ -83,7 +83,6 @@ pt:
|
|
83
83
|
offensive: Contém racismo, sexismo, insultos, ataques pessoais, ameaças de morte, pedidos de suicídio ou qualquer tipo de discurso de ódio.
|
84
84
|
spam: Contém clickbait, publicidade, fraudes ou robots de scripts.
|
85
85
|
title: Reportar conteúdo impróprio
|
86
|
-
show_replies: Mostrar %{replies_count} respostas
|
87
86
|
single_comment_link_title: Obter ligação
|
88
87
|
comment_order_selector:
|
89
88
|
order:
|
data/config/locales/ro-RO.yml
CHANGED
@@ -87,7 +87,6 @@ ro:
|
|
87
87
|
offensive: Conține rasism, sexism, insulte, atacuri personale, amenințări cu moartea, cereri de sinucidere sau orice formă de discurs de incitare la ură.
|
88
88
|
spam: Conține clickbait, publicitate, escrocherii sau script rulat de roboți.
|
89
89
|
title: Raportează conținut nepotrivit
|
90
|
-
show_replies: Arată %{replies_count} răspunsuri
|
91
90
|
single_comment_link_title: Obţine link
|
92
91
|
comment_order_selector:
|
93
92
|
order:
|
data/config/locales/ru.yml
CHANGED
data/config/locales/si-LK.yml
CHANGED
data/config/locales/sk.yml
CHANGED
@@ -21,6 +21,7 @@ sk:
|
|
21
21
|
other: Hlasy
|
22
22
|
decidim:
|
23
23
|
comments:
|
24
|
+
comments_title: Komentáre
|
24
25
|
last_activity:
|
25
26
|
new_comment_at_html: "<span>Nový komentár na %{link}</span>"
|
26
27
|
votes:
|
@@ -59,7 +60,6 @@ sk:
|
|
59
60
|
does_not_belong: Obsahuje ilegálnu činnosť, vyhrážky, osobné informácie, alebo niečo ďalšie, o čom si myslíte, že nepatrí na %{organization_name}.
|
60
61
|
offensive: Obsahuje rasizmus, sexizmus, urážky, osobné útoky, vyhrážky alebo inú podobu nenávistného prejavu.
|
61
62
|
spam: Obsahuje clickbait, reklamy, scam alebo je to skriptovací robot.
|
62
|
-
show_replies: Zobraziť %{replies_count} odpovedí
|
63
63
|
comment_order_selector:
|
64
64
|
order:
|
65
65
|
best_rated: Najlepšie hodnotené
|
data/config/locales/sr-CS.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -85,7 +85,6 @@ sv:
|
|
85
85
|
offensive: Innehåller rasism, sexism, skällsord, personliga attacker, dödshot, uppmaningar att begå självmord eller någon form av hatpropaganda.
|
86
86
|
spam: Innehåller clickbait, reklam, bedrägerier eller skriptrobotar.
|
87
87
|
title: Rapportera olämpligt innehåll
|
88
|
-
show_replies: Visa %{replies_count} svar
|
89
88
|
single_comment_link_title: Hämta länk
|
90
89
|
comment_order_selector:
|
91
90
|
order:
|
data/config/locales/tr-TR.yml
CHANGED
@@ -62,7 +62,6 @@ tr:
|
|
62
62
|
offensive: Irkçılık, cinsiyetçilik, hakaretler, kişisel saldırılar, ölüm tehditleri, intihar talepleri veya herhangi bir nefret söylemi içerir.
|
63
63
|
spam: Clickbait, reklam, dolandırıcılık veya script botları içerir.
|
64
64
|
title: Uygunsuz içerik bildir
|
65
|
-
show_replies: '%{replies_count} yanıtı göster'
|
66
65
|
comment_order_selector:
|
67
66
|
order:
|
68
67
|
best_rated: En çok oy alan
|
data/config/locales/zh-CN.yml
CHANGED
@@ -16,6 +16,7 @@ zh-CN:
|
|
16
16
|
decidim:
|
17
17
|
comments:
|
18
18
|
comments_count: 评论计数
|
19
|
+
comments_title: 评论
|
19
20
|
last_activity:
|
20
21
|
new_comment_at_html: "<span>在 %{link}的新评论</span>"
|
21
22
|
view: 查看
|
@@ -56,7 +57,6 @@ zh-CN:
|
|
56
57
|
offensive: 包括种族主义、性别主义、污泥、个人攻击、死亡威胁、自杀请求或任何形式的仇恨言论。
|
57
58
|
spam: 包含点击、广告、骗子或脚本机器人。
|
58
59
|
title: 报告不恰当的内容
|
59
|
-
show_replies: 显示 %{replies_count} 个回复
|
60
60
|
comment_order_selector:
|
61
61
|
order:
|
62
62
|
best_rated: 最佳评分
|
data/config/locales/zh-TW.yml
CHANGED
@@ -1 +1,169 @@
|
|
1
|
+
---
|
1
2
|
zh-TW:
|
3
|
+
activemodel:
|
4
|
+
models:
|
5
|
+
decidim/comments/comment_by_followed_user_event: 評論
|
6
|
+
decidim/comments/comment_created_event: 評論
|
7
|
+
decidim/comments/comment_upvoted_event: 評論已獲得讚同
|
8
|
+
decidim/comments/reply_created_event: 評論回覆
|
9
|
+
decidim/comments/user_group_mentioned_event: 提及
|
10
|
+
decidim/comments/user_mentioned_event: 提及
|
11
|
+
activerecord:
|
12
|
+
models:
|
13
|
+
decidim/comments/comment:
|
14
|
+
other: 評論
|
15
|
+
decidim/comments/comment_vote:
|
16
|
+
other: 投票
|
17
|
+
decidim:
|
18
|
+
comments:
|
19
|
+
admin:
|
20
|
+
shared:
|
21
|
+
availability_fields:
|
22
|
+
enabled: 啟用評論功能
|
23
|
+
end_time: 留言可用至
|
24
|
+
start_time: 留言可用自
|
25
|
+
comments:
|
26
|
+
create:
|
27
|
+
error: 創建評論時出現問題。
|
28
|
+
delete:
|
29
|
+
error: 該評論無法被刪除。
|
30
|
+
update:
|
31
|
+
error: 更新評論時出現問題。
|
32
|
+
comments_count: 評論次數
|
33
|
+
comments_title: 評論
|
34
|
+
last_activity:
|
35
|
+
new_comment_at_html: "<span>在 %{link} 上發布了新評論</span>"
|
36
|
+
view: 檢視
|
37
|
+
votes:
|
38
|
+
create:
|
39
|
+
error: 投票評論時發生問題。
|
40
|
+
components:
|
41
|
+
add_comment_form:
|
42
|
+
account_message: <a href="%{sign_in_url}">登入您的帳戶</a>或<a href="%{sign_up_url}">註冊</a>以新增您的評論。
|
43
|
+
form:
|
44
|
+
body:
|
45
|
+
label: 評論
|
46
|
+
placeholder: 你有什麼想法?
|
47
|
+
form_error: 文字為必填欄位,且不可超過 %{length} 個字元。
|
48
|
+
submit: 發送
|
49
|
+
user_group_id:
|
50
|
+
label: 評論者:
|
51
|
+
opinion:
|
52
|
+
label: 關於此議題,您的意見
|
53
|
+
negative: 負面
|
54
|
+
negative_selected: 您對此主題的看法為負面
|
55
|
+
neutral: 中性
|
56
|
+
neutral_selected: 您對此主題的看法是中立的
|
57
|
+
positive: 正面
|
58
|
+
positive_selected: 您對此主題的看法是正面的
|
59
|
+
remaining_characters: "剩餘%{count} 個字元"
|
60
|
+
remaining_characters_1: "剩餘%{count} 個字元"
|
61
|
+
title: 新增您的評論
|
62
|
+
comment:
|
63
|
+
alignment:
|
64
|
+
against: 反對
|
65
|
+
in_favor: 贊成
|
66
|
+
confirm_destroy: 你確定要刪除此評論?
|
67
|
+
delete: 刪除
|
68
|
+
deleted_at: 評論已在 %{date} 刪除
|
69
|
+
deleted_user: 已刪除的參與者
|
70
|
+
edit: 編輯
|
71
|
+
edited: 已編輯
|
72
|
+
hide_replies: 隱藏答覆
|
73
|
+
moderated_at: 評論在%{date} 被審核
|
74
|
+
reply: 回覆
|
75
|
+
report:
|
76
|
+
action: 報告
|
77
|
+
already_reported: 此內容已被舉報,將由管理員進行審查。
|
78
|
+
close: 關閉
|
79
|
+
description: 評論於 %{date} 被審核
|
80
|
+
details: 附加評論
|
81
|
+
reasons:
|
82
|
+
does_not_belong: 包含非法活動、自殺威脅、個人資訊或其他您認為不適合在%{organization_name} 上的內容。
|
83
|
+
offensive: 包含種族主義、性別歧視、辱罵、人身攻擊、死亡威脅、自殺要求或任何形式的仇恨言論
|
84
|
+
spam: 包含點閱率誘導、廣告、詐騙或自動腳本。
|
85
|
+
title: 檢舉不當內容
|
86
|
+
show_replies:
|
87
|
+
other: 顯示 %{count} 則回覆
|
88
|
+
single_comment_link_title: 取得連結
|
89
|
+
comment_order_selector:
|
90
|
+
order:
|
91
|
+
best_rated: 最佳評分
|
92
|
+
most_discussed: 最多討論
|
93
|
+
older: 較早的
|
94
|
+
recent: 最近
|
95
|
+
title: '排序方式:'
|
96
|
+
comment_thread:
|
97
|
+
title: 與 %{authorName} 的對話
|
98
|
+
comments:
|
99
|
+
blocked_comments_for_unauthorized_user_warning: 目前需要驗證您的身份才能發表評論,但您可以閱讀先前的評論。
|
100
|
+
blocked_comments_for_user_warning: 目前您無法發表評論,但您可以閱讀先前的評論。
|
101
|
+
blocked_comments_warning: 目前無法發表評論,但您可以閱讀先前的評論。
|
102
|
+
comment_details_title: 評論詳細資料
|
103
|
+
loading: 正在加載評論…
|
104
|
+
single_comment_warning: <a href="%{url}">查看所有評論</a>
|
105
|
+
single_comment_warning_title: 您正在查看單一評論
|
106
|
+
title:
|
107
|
+
other: "%{count} 則評論"
|
108
|
+
down_vote_button:
|
109
|
+
text: 我不同意此評論
|
110
|
+
edit_comment_modal_form:
|
111
|
+
close: 關閉
|
112
|
+
form:
|
113
|
+
body:
|
114
|
+
label: 評論
|
115
|
+
placeholder: 你有什麼想法?
|
116
|
+
submit: 發送
|
117
|
+
title: 編輯您的評論
|
118
|
+
up_vote_button:
|
119
|
+
text: 我同意此評論
|
120
|
+
events:
|
121
|
+
comments:
|
122
|
+
comment_by_followed_user:
|
123
|
+
email_intro: "%{author_name} 在%{resource_title} 留下了一則評論。您可以在此頁面上閱讀它:"
|
124
|
+
email_outro: 您收到此通知是因為您正在關注%{author_name}。您可以從他們的個人資料頁面取消關注該用戶。
|
125
|
+
email_subject: '%{author_name} 在%{resource_title} 發表了一則新的評論'
|
126
|
+
notification_title: 在<a href="%{resource_path}">%{resource_title}</a>中,<a href="%{author_path}">%{author_name} %{author_nickname}</a>有了一個新的評論。
|
127
|
+
comment_by_followed_user_group:
|
128
|
+
email_intro: '%{author_name} 群組在%{resource_title} 中留下了一則評論。您可以在此頁面中閱讀它:'
|
129
|
+
email_outro: 您收到此通知是因為您正在關注%{author_name}。您可以從其個人資料頁面取消關注此群組。
|
130
|
+
email_subject: '%{author_name} 在%{resource_title} 發表了一則新的評論'
|
131
|
+
notification_title: 在<a href="%{resource_path}">%{resource_title}</a>中,<a href="%{author_path}">%{author_name} %{author_nickname}</a>有了一個新的評論。
|
132
|
+
comment_created:
|
133
|
+
email_intro: "%{resource_title} 已被評論。您可以在此頁面中閱讀評論:"
|
134
|
+
email_outro: 您收到此通知是因為您正在關注「%{resource_title}」或其作者。您可以從上面的連結取消關注。
|
135
|
+
email_subject: '%{resource_title}」有新的評論來自 %{author_name}'
|
136
|
+
notification_title: 在 <a href="%{resource_path}">%{resource_title}</a>有新的評論來自 <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
137
|
+
comment_downvoted:
|
138
|
+
email_intro: 您在「%{resource_title}」的評論已經倒讚。它現在的評分是 %{upvotes} 個讚和 %{downvotes} 個倒讚。
|
139
|
+
email_outro: 您收到此通知是因為您是此評論的作者。
|
140
|
+
email_subject: 您在「%{resource_title}」的評論已經被倒讚。
|
141
|
+
notification_title: 你在「%{resource_title}」的<a href="%{resource_path}">評論</a>已被負評。現在它的評分是 %{upvotes} 個讚和 %{downvotes} 個倒讚。
|
142
|
+
comment_upvoted:
|
143
|
+
email_intro: 你在「%{resource_title}」的評論已收到讚。現在它的評分是 %{upvotes} 個讚和 %{downvotes} 個倒讚。
|
144
|
+
email_outro: 您收到此通知是因為您是此評論的作者。
|
145
|
+
email_subject: 你在 "%{resource_title}" 中的評論已經收到讚。
|
146
|
+
notification_title: 你在 "<a href="%{resource_path}">resource_title</a>" 中的評論已經收到讚,現在它總共有 %{upvotes} 個讚和 %{downvotes} 個倒讚。
|
147
|
+
reply_created:
|
148
|
+
email_intro: "%{author_name} 已回覆你在%{resource_title} 中的評論。你可以在此頁面上閱讀:"
|
149
|
+
email_outro: 你收到此通知是因為有人回覆了你的評論。
|
150
|
+
email_subject: "%{author_name} 回覆了你在 %{resource_title} 中的評論。"
|
151
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> 在 <a href="%{resource_path}">%{resource_title}</a> 中回覆了你的評論。
|
152
|
+
user_group_mentioned:
|
153
|
+
email_intro: 你所屬的群組被提及了
|
154
|
+
email_outro: 你收到了這個通知,因為你是 %{group_name} 的成員,而該小組在 %{resource_title} 中被提及。
|
155
|
+
email_subject: 你作為 %{group_name} 的成員在 %{resource_title} 中被提及
|
156
|
+
notification_title: 你作為<a href="%{group_path}">%{group_name} %{group_nickname}</a>的成員,被<a href="%{author_path}">%{author_name} %{author_nickname}</a>在<a href="%{resource_path}">%{resource_title}</a>中提及
|
157
|
+
user_mentioned:
|
158
|
+
email_intro: 您已被提及
|
159
|
+
email_outro: 您收到了此通知,因為您被提及在 %{resource_title} 中。
|
160
|
+
email_subject: 您被提及在 %{resource_title} 中
|
161
|
+
notification_title: 您被 <a href="%{author_path}">%{author_name} %{author_nickname}</a> 在 <a href="%{resource_path}">%{resource_title}</a> 中提及。
|
162
|
+
metrics:
|
163
|
+
comments:
|
164
|
+
description: 參與者產生的評論數量
|
165
|
+
object: 評論
|
166
|
+
title: 評論
|
167
|
+
errors:
|
168
|
+
messages:
|
169
|
+
cannot_have_comments: 無法留言
|
@@ -13,6 +13,8 @@ module Decidim
|
|
13
13
|
def comments_for_resource(resource_class, component)
|
14
14
|
Comment
|
15
15
|
.where(decidim_root_commentable_id: resource_class.where(component: component))
|
16
|
+
.not_deleted
|
17
|
+
.not_hidden
|
16
18
|
.where(decidim_root_commentable_type: resource_class.to_s)
|
17
19
|
end
|
18
20
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-comments
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.27.
|
4
|
+
version: 0.27.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-
|
13
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-core
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.27.
|
21
|
+
version: 0.27.3
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.27.
|
28
|
+
version: 0.27.3
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: redcarpet
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,28 +52,28 @@ dependencies:
|
|
52
52
|
requirements:
|
53
53
|
- - '='
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 0.27.
|
55
|
+
version: 0.27.3
|
56
56
|
type: :development
|
57
57
|
prerelease: false
|
58
58
|
version_requirements: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - '='
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.27.
|
62
|
+
version: 0.27.3
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
64
|
name: decidim-dev
|
65
65
|
requirement: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - '='
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.27.
|
69
|
+
version: 0.27.3
|
70
70
|
type: :development
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - '='
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 0.27.
|
76
|
+
version: 0.27.3
|
77
77
|
description: Pluggable comments system for some components.
|
78
78
|
email:
|
79
79
|
- josepjaume@gmail.com
|
@@ -189,6 +189,7 @@ files:
|
|
189
189
|
- config/locales/et-EE.yml
|
190
190
|
- config/locales/et.yml
|
191
191
|
- config/locales/eu.yml
|
192
|
+
- config/locales/fa-IR.yml
|
192
193
|
- config/locales/fi-pl.yml
|
193
194
|
- config/locales/fi-plain.yml
|
194
195
|
- config/locales/fi.yml
|
@@ -207,6 +208,7 @@ files:
|
|
207
208
|
- config/locales/it.yml
|
208
209
|
- config/locales/ja.yml
|
209
210
|
- config/locales/ka-GE.yml
|
211
|
+
- config/locales/kaa.yml
|
210
212
|
- config/locales/ko-KR.yml
|
211
213
|
- config/locales/ko.yml
|
212
214
|
- config/locales/lb-LU.yml
|
@@ -308,7 +310,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
308
310
|
- !ruby/object:Gem::Version
|
309
311
|
version: '0'
|
310
312
|
requirements: []
|
311
|
-
rubygems_version: 3.
|
313
|
+
rubygems_version: 3.2.22
|
312
314
|
signing_key:
|
313
315
|
specification_version: 4
|
314
316
|
summary: Decidim comments module
|