decidim-comments 0.27.2 → 0.27.4
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 +10 -2
- data/app/views/decidim/comments/comments/create.js.erb +4 -0
- data/config/environment.rb +0 -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 +4 -2
- data/config/locales/el.yml +13 -2
- 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 +5 -3
- data/config/locales/fr.yml +5 -3
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +56 -2
- data/config/locales/id-ID.yml +1 -1
- data/config/locales/is-IS.yml +0 -1
- 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 +1 -2
- data/config/locales/lv.yml +1 -2
- 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 +4 -1
- data/config/locales/ru.yml +1 -1
- data/config/locales/si-LK.yml +0 -3
- data/config/locales/sk.yml +1 -2
- data/config/locales/sr-CS.yml +0 -1
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +0 -2
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +1 -2
- 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 +15 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98316c17e51a4805c01a6e83a9e1a2ad76a5859b0013e9b78c569c49644da50c
|
|
4
|
+
data.tar.gz: 05ed7977b512e18df994f8b4a88665ed0889debfacb57f991486bc78b4962f44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5af106aa754874a212337f353d8bdddde35e09f6894dd678cb85353de237e1cf681e9914b189fdddf1c8f7e8e4dd86fb7301879426641cc1b09de0aaa6d7f660
|
|
7
|
+
data.tar.gz: 828e037c123045bfa0bed0e39a65891a0f67eb39f712d03a74d11f512d533721b4fbf63c49d7b76e5686951c90c8cc241e58aca0e23a50b0958e519d0bb5117a
|
|
@@ -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
|
}
|
|
File without changes
|
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,9 @@ 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:
|
|
88
|
+
show_replies:
|
|
89
|
+
one: Antwort anzeigen
|
|
90
|
+
other: '%{count} Antworten anzeigen'
|
|
89
91
|
single_comment_link_title: Link erhalten
|
|
90
92
|
comment_order_selector:
|
|
91
93
|
order:
|
data/config/locales/el.yml
CHANGED
|
@@ -4,6 +4,7 @@ el:
|
|
|
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: Αναφορά
|
|
@@ -17,6 +18,12 @@ el:
|
|
|
17
18
|
other: Ψήφοι
|
|
18
19
|
decidim:
|
|
19
20
|
comments:
|
|
21
|
+
admin:
|
|
22
|
+
shared:
|
|
23
|
+
availability_fields:
|
|
24
|
+
enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
25
|
+
end_time: Τα σχόλια ενεργοποιήθηκαν μέχρι
|
|
26
|
+
start_time: Τα σχόλια ενεργοποιήθηκαν από
|
|
20
27
|
comments:
|
|
21
28
|
create:
|
|
22
29
|
error: Υπήρξε ένα πρόβλημα στη δημιουργία του σχολίου.
|
|
@@ -60,11 +67,12 @@ el:
|
|
|
60
67
|
in_favor: Υπέρ
|
|
61
68
|
confirm_destroy: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σχόλιο;
|
|
62
69
|
delete: Διαγραφή
|
|
63
|
-
deleted_at:
|
|
70
|
+
deleted_at: Το σχόλιο διεγράφη στις %{date}
|
|
64
71
|
deleted_user: Διαγραμμένος συμμετέχων
|
|
65
72
|
edit: Επεξεργασία
|
|
66
73
|
edited: Επεξεργασμένο
|
|
67
74
|
hide_replies: Απόκρυψη απαντήσεων
|
|
75
|
+
moderated_at: Σχόλιο διαχειρίστηκε στις %{date}
|
|
68
76
|
reply: Απάντηση
|
|
69
77
|
report:
|
|
70
78
|
action: Αναφορά
|
|
@@ -77,7 +85,9 @@ el:
|
|
|
77
85
|
offensive: Περιέχει ρατσισμό, σεξισμό, δυσφημίσεις, προσωπικές επιθέσεις, απειλές θανάτου, αιτήματα αυτοκτονίας ή οποιαδήποτε μορφή ρητορικής μίσους.
|
|
78
86
|
spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
|
|
79
87
|
title: Αναφορά ακατάλληλου περιεχομένου
|
|
80
|
-
show_replies:
|
|
88
|
+
show_replies:
|
|
89
|
+
one: Εμφάνιση απάντησης
|
|
90
|
+
other: Εμφάνιση %{count} απαντήσεων
|
|
81
91
|
single_comment_link_title: Αποκτήστε σύνδεσμο
|
|
82
92
|
comment_order_selector:
|
|
83
93
|
order:
|
|
@@ -94,6 +104,7 @@ el:
|
|
|
94
104
|
blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
|
|
95
105
|
comment_details_title: Λεπτομέρειες σχολίων
|
|
96
106
|
loading: Φόρτωση σχολίων...
|
|
107
|
+
single_comment_warning: <a href="%{url}">Δείτε όλα τα σχόλια</a>
|
|
97
108
|
single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
|
|
98
109
|
title:
|
|
99
110
|
one: "%{count} σχόλιο"
|
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
|
|
@@ -47,7 +47,7 @@ fr-CA:
|
|
|
47
47
|
label: Commentaire
|
|
48
48
|
placeholder: Que pensez-vous de cela ?
|
|
49
49
|
form_error: Le texte est requis et ne peut pas dépasser %{length} caractères.
|
|
50
|
-
submit:
|
|
50
|
+
submit: Envoyer
|
|
51
51
|
user_group_id:
|
|
52
52
|
label: Commenter en tant que
|
|
53
53
|
opinion:
|
|
@@ -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
|
|
@@ -47,7 +47,7 @@ fr:
|
|
|
47
47
|
label: Commentaire
|
|
48
48
|
placeholder: Que pensez-vous de cela ?
|
|
49
49
|
form_error: Le texte est requis et ne peut pas dépasser %{length} caractères.
|
|
50
|
-
submit:
|
|
50
|
+
submit: Envoyer
|
|
51
51
|
user_group_id:
|
|
52
52
|
label: Commenter en tant que
|
|
53
53
|
opinion:
|
|
@@ -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:
|