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