decidim-comments 0.26.5 → 0.26.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment/actions.erb +5 -0
  3. data/app/cells/decidim/comments/comment/show.erb +3 -3
  4. data/app/controllers/decidim/comments/comments_controller.rb +15 -9
  5. data/app/views/decidim/comments/comments/create.js.erb +4 -0
  6. data/config/environment.rb +0 -0
  7. data/config/locales/ar.yml +65 -2
  8. data/config/locales/ca.yml +3 -1
  9. data/config/locales/cs.yml +5 -1
  10. data/config/locales/de.yml +4 -2
  11. data/config/locales/el.yml +13 -2
  12. data/config/locales/en.yml +3 -1
  13. data/config/locales/es-MX.yml +3 -1
  14. data/config/locales/es-PY.yml +3 -1
  15. data/config/locales/es.yml +3 -1
  16. data/config/locales/eu.yml +8 -6
  17. data/config/locales/fa-IR.yml +1 -0
  18. data/config/locales/fi-plain.yml +3 -1
  19. data/config/locales/fi.yml +3 -1
  20. data/config/locales/fr-CA.yml +5 -3
  21. data/config/locales/fr.yml +5 -3
  22. data/config/locales/gl.yml +0 -1
  23. data/config/locales/hu.yml +56 -2
  24. data/config/locales/id-ID.yml +1 -1
  25. data/config/locales/is-IS.yml +0 -1
  26. data/config/locales/it.yml +0 -1
  27. data/config/locales/ja.yml +2 -1
  28. data/config/locales/kaa.yml +1 -0
  29. data/config/locales/lb.yml +1 -2
  30. data/config/locales/lt.yml +1 -2
  31. data/config/locales/lv.yml +1 -2
  32. data/config/locales/nl.yml +0 -1
  33. data/config/locales/no.yml +0 -1
  34. data/config/locales/pl.yml +0 -1
  35. data/config/locales/pt-BR.yml +0 -1
  36. data/config/locales/pt.yml +0 -1
  37. data/config/locales/ro-RO.yml +4 -1
  38. data/config/locales/ru.yml +1 -1
  39. data/config/locales/si-LK.yml +0 -3
  40. data/config/locales/sk.yml +1 -2
  41. data/config/locales/sr-CS.yml +0 -1
  42. data/config/locales/sv.yml +0 -1
  43. data/config/locales/tr-TR.yml +0 -2
  44. data/config/locales/uk.yml +0 -1
  45. data/config/locales/zh-CN.yml +1 -2
  46. data/config/locales/zh-TW.yml +167 -0
  47. data/lib/decidim/comments/export.rb +2 -0
  48. data/lib/decidim/comments/version.rb +1 -1
  49. metadata +11 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3adbf8d666c112916e4b0ebe2ffe1c3fe06ac01003fc1c880440dacc217cc0e
4
- data.tar.gz: f43fbf0243eaac9be33b516fd141435a320d260d6c53f81be9fb3b6df06aea32
3
+ metadata.gz: a7c703693e277e548e8ce98c7bc505cd94d228231314b1ce10bd07c13472300c
4
+ data.tar.gz: af1a1ab54be577a20732a0759f159492e0984152ec9f30e4426ca2fa134e17e9
5
5
  SHA512:
6
- metadata.gz: 750aac563961013cc21d9cfe281d48b467ee72302b1b8e790feb09ac6ec16de01693dd0bf6939a4013af5153e2cdd7a4b9fd55fac7224653355626df1f5453b2
7
- data.tar.gz: b3ef5198c3a5a8de79f14e5503646b8d61b63e070af9bc0f53b05661fd4e4dbe54e9e0e736ed227c53adbcbdfcdeb181c56d82cd10b23fbfbb99427b43777740
6
+ metadata.gz: 476f10c4cafe7e703b0ea8d01cca3af29b4a4f26da954bbafc1d00a4e5b7daedc6965dc94d8bb85cf451dfc81e0fe01c2f816ec44fc194c35b791ed42a46c77e
7
+ data.tar.gz: 7bca67a880ef726826d302b018557d9ab17678c6f6158239fcd549701cc18a4be400ba6c8861dc651628a92d0ec4da06d547f159289c0dfc95150e4a6042cfa1
@@ -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 %>&nbsp;
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 %>&nbsp;<%= 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 %>&nbsp;<%= 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 = begin
140
- case commentable
141
- when Decidim::Comments::Comment
142
- commentable.root_commentable.comments_count
143
- else
144
- commentable.comments_count
145
- end
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
  }
File without changes
@@ -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
- comments_title: التعليقات
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
- show_replies: اظهر الردود الـ %{replies_count}
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}.
@@ -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: Mostra %{replies_count} respostes
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:
@@ -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: Zobrazit %{replies_count} odpovědí
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:
@@ -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: Kommentare
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,9 @@ 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'
87
+ show_replies:
88
+ one: Antwort anzeigen
89
+ other: '%{count} Antworten anzeigen'
88
90
  single_comment_link_title: Link erhalten
89
91
  comment_order_selector:
90
92
  order:
@@ -3,6 +3,7 @@ el:
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: Αναφορά
@@ -16,6 +17,12 @@ el:
16
17
  other: Ψήφοι
17
18
  decidim:
18
19
  comments:
20
+ admin:
21
+ shared:
22
+ availability_fields:
23
+ enabled: Τα σχόλια ενεργοποιήθηκαν
24
+ end_time: Τα σχόλια ενεργοποιήθηκαν μέχρι
25
+ start_time: Τα σχόλια ενεργοποιήθηκαν από
19
26
  comments:
20
27
  create:
21
28
  error: Υπήρξε ένα πρόβλημα στη δημιουργία του σχολίου.
@@ -59,11 +66,12 @@ el:
59
66
  in_favor: Υπέρ
60
67
  confirm_destroy: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σχόλιο;
61
68
  delete: Διαγραφή
62
- deleted_at: Σχόλιο διεγράφη στις %{date}
69
+ deleted_at: Το σχόλιο διεγράφη στις %{date}
63
70
  deleted_user: Διαγραμμένος συμμετέχων
64
71
  edit: Επεξεργασία
65
72
  edited: Επεξεργασμένο
66
73
  hide_replies: Απόκρυψη απαντήσεων
74
+ moderated_at: Σχόλιο διαχειρίστηκε στις %{date}
67
75
  reply: Απάντηση
68
76
  report:
69
77
  action: Αναφορά
@@ -76,7 +84,9 @@ el:
76
84
  offensive: Περιέχει ρατσισμό, σεξισμό, δυσφημίσεις, προσωπικές επιθέσεις, απειλές θανάτου, αιτήματα αυτοκτονίας ή οποιαδήποτε μορφή ρητορικής μίσους.
77
85
  spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
78
86
  title: Αναφορά ακατάλληλου περιεχομένου
79
- show_replies: Εμφάνιση %{replies_count} απαντήσεων
87
+ show_replies:
88
+ one: Εμφάνιση απάντησης
89
+ other: Εμφάνιση %{count} απαντήσεων
80
90
  single_comment_link_title: Αποκτήστε σύνδεσμο
81
91
  comment_order_selector:
82
92
  order:
@@ -93,6 +103,7 @@ el:
93
103
  blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
94
104
  comment_details_title: Λεπτομέρειες σχολίων
95
105
  loading: Φόρτωση σχολίων...
106
+ single_comment_warning: <a href="%{url}">Δείτε όλα τα σχόλια</a>
96
107
  single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
97
108
  title:
98
109
  one: "%{count} σχόλιο"
@@ -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: Show %{replies_count} 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:
@@ -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: Mostrar %{replies_count} respuestas
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:
@@ -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: Mostrar %{replies_count} respuestas
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:
@@ -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: Mostrar %{replies_count} respuestas
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:
@@ -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: Iruzkinak
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: Erakutsi %{replies_count} erantzun
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. Erabiltzaile horri profil-orrialdetik ez jarraitu.
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 esteka estekan jarrai dezakezu.
136
- email_subject: '%{author_name} (r) en %{resource_title} iruzkin berri bat dago'
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 duzulako.
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:
@@ -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: Näytä %{replies_count} vastausta
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:
@@ -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: Näytä %{replies_count} vastausta
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:
@@ -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: Commentaires
34
+ comments_title: commentaires
35
35
  last_activity:
36
36
  new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
37
37
  view: Voir
@@ -46,7 +46,7 @@ fr-CA:
46
46
  label: Commentaire
47
47
  placeholder: Que pensez-vous de cela ?
48
48
  form_error: Le texte est requis et ne peut pas dépasser %{length} caractères.
49
- submit: Publier
49
+ submit: Envoyer
50
50
  user_group_id:
51
51
  label: Commenter en tant que
52
52
  opinion:
@@ -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: Afficher %{replies_count} réponses
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:
@@ -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: Commentaires
34
+ comments_title: commentaires
35
35
  last_activity:
36
36
  new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
37
37
  view: Voir
@@ -46,7 +46,7 @@ fr:
46
46
  label: Commentaire
47
47
  placeholder: Que pensez-vous de cela ?
48
48
  form_error: Le texte est requis et ne peut pas dépasser %{length} caractères.
49
- submit: Publier
49
+ submit: Envoyer
50
50
  user_group_id:
51
51
  label: Commenter en tant que
52
52
  opinion:
@@ -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: Afficher %{replies_count} réponses
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:
@@ -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: