decidim-comments 0.27.3 → 0.27.5
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_form_cell.rb +2 -2
- data/config/environment.rb +3 -0
- data/config/locales/de.yml +4 -1
- data/config/locales/el.yml +13 -1
- data/config/locales/eu.yml +22 -22
- data/config/locales/fr-CA.yml +1 -1
- data/config/locales/fr.yml +1 -1
- data/config/locales/hu.yml +1 -1
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/ja.yml +4 -4
- data/config/locales/lt.yml +6 -1
- data/config/locales/lv.yml +0 -1
- data/config/locales/pl.yml +9 -0
- data/config/locales/pt-BR.yml +2 -0
- data/config/locales/ro-RO.yml +4 -0
- data/config/locales/ru.yml +0 -1
- data/config/locales/si-LK.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sq-AL.yml +1 -0
- data/config/locales/sv.yml +3 -0
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/lib/decidim/comments/comment_serializer.rb +1 -1
- data/lib/decidim/comments/comment_vote_serializer.rb +1 -1
- 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: f9358ab00be362546c8204c5b2ffc107f1d710fdf0cbabdc87b2bbd3b43d9391
|
|
4
|
+
data.tar.gz: 651e755e4d6d217445f3ea245ccccdde990fe47d5e8f965a61716c5d2a7c9ba9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4d11d18533c35dc3b3844db27eb5dede7ee92174fae244f11ec581c5546afb61927a936976fd9c75db349662a3e11112fd730fd01dfd0e96af1a1d3828b139b
|
|
7
|
+
data.tar.gz: 711efd02fb29aa17f83c50ad16f8913d252402907ef12355d6db63fddfbd72102f2f292b96b545e3f3b15049b5e5e71d50271ec0719538eb316989ce593f4df9
|
|
@@ -84,13 +84,13 @@ module Decidim
|
|
|
84
84
|
def component_comments_max_length
|
|
85
85
|
return unless model.component&.settings.respond_to?(:comments_max_length)
|
|
86
86
|
|
|
87
|
-
model.component.settings.comments_max_length if model.component.settings.comments_max_length.positive?
|
|
87
|
+
model.component.settings.comments_max_length if model.component.settings.comments_max_length.to_i.positive?
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
def organization_comments_max_length
|
|
91
91
|
return unless organization
|
|
92
92
|
|
|
93
|
-
organization.comments_max_length if organization.comments_max_length.positive?
|
|
93
|
+
organization.comments_max_length if organization.comments_max_length.to_i.positive?
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
def organization
|
data/config/locales/de.yml
CHANGED
|
@@ -65,7 +65,7 @@ de:
|
|
|
65
65
|
alignment:
|
|
66
66
|
against: Gegen
|
|
67
67
|
in_favor: Zugunsten
|
|
68
|
-
confirm_destroy:
|
|
68
|
+
confirm_destroy: Sind Sie sich sicher, dass Sie diesen Kommentar löschen möchten?
|
|
69
69
|
delete: Löschen
|
|
70
70
|
deleted_at: Kommentar gelöscht am %{date}
|
|
71
71
|
deleted_user: Gelöschter Benutzer
|
|
@@ -85,6 +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:
|
|
89
|
+
one: Antwort anzeigen
|
|
90
|
+
other: '%{count} Antworten anzeigen'
|
|
88
91
|
single_comment_link_title: Link erhalten
|
|
89
92
|
comment_order_selector:
|
|
90
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,6 +85,9 @@ el:
|
|
|
77
85
|
offensive: Περιέχει ρατσισμό, σεξισμό, δυσφημίσεις, προσωπικές επιθέσεις, απειλές θανάτου, αιτήματα αυτοκτονίας ή οποιαδήποτε μορφή ρητορικής μίσους.
|
|
78
86
|
spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
|
|
79
87
|
title: Αναφορά ακατάλληλου περιεχομένου
|
|
88
|
+
show_replies:
|
|
89
|
+
one: Εμφάνιση απάντησης
|
|
90
|
+
other: Εμφάνιση %{count} απαντήσεων
|
|
80
91
|
single_comment_link_title: Αποκτήστε σύνδεσμο
|
|
81
92
|
comment_order_selector:
|
|
82
93
|
order:
|
|
@@ -93,6 +104,7 @@ el:
|
|
|
93
104
|
blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
|
|
94
105
|
comment_details_title: Λεπτομέρειες σχολίων
|
|
95
106
|
loading: Φόρτωση σχολίων...
|
|
107
|
+
single_comment_warning: <a href="%{url}">Δείτε όλα τα σχόλια</a>
|
|
96
108
|
single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
|
|
97
109
|
title:
|
|
98
110
|
one: "%{count} σχόλιο"
|
data/config/locales/eu.yml
CHANGED
|
@@ -4,7 +4,7 @@ eu:
|
|
|
4
4
|
models:
|
|
5
5
|
decidim/comments/comment_by_followed_user_event: Iruzkina
|
|
6
6
|
decidim/comments/comment_created_event: Iruzkina
|
|
7
|
-
decidim/comments/comment_upvoted_event: Iruzkina
|
|
7
|
+
decidim/comments/comment_upvoted_event: Iruzkina positiboki baloratua
|
|
8
8
|
decidim/comments/reply_created_event: Iruzkinaren erantzuna
|
|
9
9
|
decidim/comments/user_group_mentioned_event: Aipamena
|
|
10
10
|
decidim/comments/user_mentioned_event: Aipamena
|
|
@@ -26,19 +26,19 @@ eu:
|
|
|
26
26
|
start_time: Iruzkinak noiztik aktibatuta
|
|
27
27
|
comments:
|
|
28
28
|
create:
|
|
29
|
-
error:
|
|
29
|
+
error: Arazo bat egon da iruzkina sortzean.
|
|
30
30
|
delete:
|
|
31
31
|
error: Iruzkina ezin izan da ezabatu.
|
|
32
32
|
update:
|
|
33
|
-
error:
|
|
33
|
+
error: Arazo bat ego da iruzkina eguneratzean.
|
|
34
34
|
comments_count: Iruzkin kopurua
|
|
35
|
-
comments_title:
|
|
35
|
+
comments_title: Iruzkinak
|
|
36
36
|
last_activity:
|
|
37
|
-
new_comment_at_html: "<span>
|
|
37
|
+
new_comment_at_html: "<span>Beste iruzkin bat hemen: %{link}</span>"
|
|
38
38
|
view: Bistaratu
|
|
39
39
|
votes:
|
|
40
40
|
create:
|
|
41
|
-
error: Arazo bat
|
|
41
|
+
error: Arazo bat egon da iruzkina bozkatzean.
|
|
42
42
|
components:
|
|
43
43
|
add_comment_form:
|
|
44
44
|
account_message: <a href="%{sign_in_url}">Hasi saioa zure kontuarekin</a> o <a href="%{sign_up_url}">erregistratu</a> zure iruzkina txertatzeko.
|
|
@@ -60,7 +60,7 @@ eu:
|
|
|
60
60
|
positive_selected: Zure iritzia gai honi buruz positiboa da
|
|
61
61
|
remaining_characters: "%{count} karaktere geratzen dira"
|
|
62
62
|
remaining_characters_1: "karaktere %{count} geratzen da"
|
|
63
|
-
title:
|
|
63
|
+
title: Gehitu zure iruzkina
|
|
64
64
|
comment:
|
|
65
65
|
alignment:
|
|
66
66
|
against: Aurka
|
|
@@ -68,7 +68,7 @@ eu:
|
|
|
68
68
|
confirm_destroy: Ziur zaude iruzkin hau ezabatu nahi duzula?
|
|
69
69
|
delete: Ezabatu
|
|
70
70
|
deleted_at: Iruzkina ezabatu da data honetan %{date}
|
|
71
|
-
deleted_user: Parte
|
|
71
|
+
deleted_user: Parte-hartzailea ezabatua
|
|
72
72
|
edit: Editatu
|
|
73
73
|
edited: Editatuta
|
|
74
74
|
hide_replies: Ezkutatu erantzunak
|
|
@@ -91,7 +91,7 @@ eu:
|
|
|
91
91
|
single_comment_link_title: Lortu esteka
|
|
92
92
|
comment_order_selector:
|
|
93
93
|
order:
|
|
94
|
-
best_rated: Balorazio
|
|
94
|
+
best_rated: Balorazio onenak
|
|
95
95
|
most_discussed: Eztabaidatuenak
|
|
96
96
|
older: Zaharrenak
|
|
97
97
|
recent: Berrienak
|
|
@@ -126,18 +126,18 @@ eu:
|
|
|
126
126
|
comment_by_followed_user:
|
|
127
127
|
email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
|
|
128
128
|
email_outro: Jakinarazpen hau jaso duzu %{author_name} erabiltzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
|
|
129
|
-
email_subject: '%{author_name}
|
|
130
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a
|
|
129
|
+
email_subject: '%{author_name} k beste iruzkin bat egin du hemen: %{resource_title}'
|
|
130
|
+
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>-an.'
|
|
131
131
|
comment_by_followed_user_group:
|
|
132
132
|
email_intro: '%{author_name} k iruzkin bat utzi du hemen %{resource_title}. Orrialde honetan irakur dezakezu:'
|
|
133
133
|
email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
|
|
134
|
-
email_subject: '%{author_name} egileak iruzkin berri bat utzi du %{resource_title}
|
|
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
|
+
email_subject: '%{author_name} egileak iruzkin berri bat utzi du hemen: %{resource_title}'
|
|
135
|
+
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a>egileak iruzkin berri bat utzi du hemen: <a href="%{resource_path}">%{resource_title}</a>-an.'
|
|
136
136
|
comment_created:
|
|
137
|
-
email_intro: "%{resource_title} iruzkindu da. Orri honetan
|
|
137
|
+
email_intro: "%{resource_title} iruzkindu da. Orri honetan irakur dezakezu iruzkina:"
|
|
138
138
|
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
|
|
139
|
-
email_subject: '%{author_name}
|
|
140
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a
|
|
139
|
+
email_subject: '%{author_name} k beste iruzkin berri bat egin du hemen: %{resource_title}'
|
|
140
|
+
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a></a>'
|
|
141
141
|
comment_downvoted:
|
|
142
142
|
email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu guztira.
|
|
143
143
|
email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
|
|
@@ -149,9 +149,9 @@ eu:
|
|
|
149
149
|
email_subject: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da.
|
|
150
150
|
notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an positiboki bozkatu da. Orain guztira %{upvotes} botos positibo eta %{downvotes} boto negatibo dituzu.
|
|
151
151
|
reply_created:
|
|
152
|
-
email_intro: "%{author_name} zure iruzkina erantzun du %{resource_title}
|
|
152
|
+
email_intro: "%{author_name} k zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
|
|
153
153
|
email_outro: Jakinarazpen hau jaso duzu zure iruzkina erantzun delako.
|
|
154
|
-
email_subject: "%{author_name}-k zure iruzkina erantzun du %{resource_title}
|
|
154
|
+
email_subject: "%{author_name}-k zure iruzkina erantzun du hemen: %{resource_title}"
|
|
155
155
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio <a href="%{resource_path}">%{resource_title}</a>
|
|
156
156
|
user_group_mentioned:
|
|
157
157
|
email_intro: Zure talde bat aipatu dute
|
|
@@ -160,14 +160,14 @@ eu:
|
|
|
160
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
|
|
161
161
|
user_mentioned:
|
|
162
162
|
email_intro: Aipatu zaituzte
|
|
163
|
-
email_outro:
|
|
164
|
-
email_subject: '%{resource_title}
|
|
165
|
-
notification_title: <a href="%{
|
|
163
|
+
email_outro: 'Jakinarazpen hau jaso duzu hemen: %{resource_title} aipatu zaituztelako.'
|
|
164
|
+
email_subject: 'Hemen: %{resource_title} aipatu zaituzte'
|
|
165
|
+
notification_title: 'Hemen: <a href="%{group_path}">%{group_name} %{group_nickname}</a> egile honek: <a href="%{author_path}">%{author_name} %{author_nickname}</a> aipatu zaitu'
|
|
166
166
|
metrics:
|
|
167
167
|
comments:
|
|
168
168
|
description: Erabiltzaileek sortutako iruzkin kopurua
|
|
169
169
|
object: iruzkinak
|
|
170
|
-
title:
|
|
170
|
+
title: Iruzkinak
|
|
171
171
|
errors:
|
|
172
172
|
messages:
|
|
173
173
|
cannot_have_comments: ezin zaio iruzkinik egin
|
data/config/locales/fr-CA.yml
CHANGED
data/config/locales/fr.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/id-ID.yml
CHANGED
data/config/locales/is-IS.yml
CHANGED
data/config/locales/ja.yml
CHANGED
|
@@ -88,10 +88,10 @@ ja:
|
|
|
88
88
|
single_comment_link_title: リンク取得
|
|
89
89
|
comment_order_selector:
|
|
90
90
|
order:
|
|
91
|
-
best_rated:
|
|
92
|
-
most_discussed:
|
|
91
|
+
best_rated: 評価の高い順
|
|
92
|
+
most_discussed: 議論数の多い順
|
|
93
93
|
older: 古い順
|
|
94
|
-
recent:
|
|
94
|
+
recent: 新しい順
|
|
95
95
|
title: '並び順:'
|
|
96
96
|
comment_thread:
|
|
97
97
|
title: '%{authorName} との会話'
|
|
@@ -130,7 +130,7 @@ ja:
|
|
|
130
130
|
email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
|
|
131
131
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> より <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>.
|
|
132
132
|
comment_created:
|
|
133
|
-
email_intro: "%{resource_title}
|
|
133
|
+
email_intro: "%{resource_title} にコメントがありました。このページでコメントを読むことができます:"
|
|
134
134
|
email_outro: '"%{resource_title}" 、またはその参加者をフォローしているためこの通知を受け取りました。前のリンクからフォローを解除することができます。'
|
|
135
135
|
email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
|
|
136
136
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>
|
data/config/locales/lt.yml
CHANGED
|
@@ -51,7 +51,7 @@ lt:
|
|
|
51
51
|
label: Komentaras
|
|
52
52
|
placeholder: Ką manote apie tai?
|
|
53
53
|
form_error: Tekstas būtinais ir negali viršyti %{length} simbolių.
|
|
54
|
-
submit:
|
|
54
|
+
submit: Siųsti
|
|
55
55
|
user_group_id:
|
|
56
56
|
label: Komentuoti kaip
|
|
57
57
|
opinion:
|
|
@@ -89,6 +89,11 @@ lt:
|
|
|
89
89
|
offensive: Pateikiamoje informacijoje yra rasizmo, seksizmo, keiksmažodžių, asmeninių atakų, grasinimų ar kitokios neapykantos kalbos.
|
|
90
90
|
spam: Pateikiamoje informacijoje yra reklamos, antraščių mąsalo ar apgavysčių.
|
|
91
91
|
title: Pranešti apie netinkamą turinį
|
|
92
|
+
show_replies:
|
|
93
|
+
one: Rodyti atsakymą
|
|
94
|
+
few: Rodyti %{count} atsakymus
|
|
95
|
+
many: Rodyti %{count} atsakymus
|
|
96
|
+
other: Rodyti %{count} atsakymus
|
|
92
97
|
single_comment_link_title: Gauti nuorodą
|
|
93
98
|
comment_order_selector:
|
|
94
99
|
order:
|
data/config/locales/lv.yml
CHANGED
data/config/locales/pl.yml
CHANGED
|
@@ -4,6 +4,7 @@ pl:
|
|
|
4
4
|
models:
|
|
5
5
|
decidim/comments/comment_by_followed_user_event: Komentarz
|
|
6
6
|
decidim/comments/comment_created_event: Komentarz
|
|
7
|
+
decidim/comments/comment_upvoted_event: Polubiono komentarz
|
|
7
8
|
decidim/comments/reply_created_event: Odpowiedź na komentarz
|
|
8
9
|
decidim/comments/user_group_mentioned_event: Wzmianka
|
|
9
10
|
decidim/comments/user_mentioned_event: Wzmianka
|
|
@@ -24,6 +25,8 @@ pl:
|
|
|
24
25
|
admin:
|
|
25
26
|
shared:
|
|
26
27
|
availability_fields:
|
|
28
|
+
enabled: Komentarze włączone
|
|
29
|
+
end_time: Komentarze włączone do
|
|
27
30
|
start_time: Komentowanie możliwe od
|
|
28
31
|
comments:
|
|
29
32
|
create:
|
|
@@ -85,6 +88,11 @@ pl:
|
|
|
85
88
|
offensive: Promuje rasizm, seksizm, nienawiść, ataki osobiste, groźby śmierci, groźby samobójcze jakąkolwiek formę mowy nienawiści.
|
|
86
89
|
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
|
87
90
|
title: Zgłoś niewłaściwą treść
|
|
91
|
+
show_replies:
|
|
92
|
+
one: Pokaż odpowiedź
|
|
93
|
+
few: Pokaż %{count} odpowiedzi
|
|
94
|
+
many: Pokaż %{count} odpowiedzi
|
|
95
|
+
other: Pokaż %{count} odpowiedzi
|
|
88
96
|
single_comment_link_title: Pobierz link
|
|
89
97
|
comment_order_selector:
|
|
90
98
|
order:
|
|
@@ -101,6 +109,7 @@ pl:
|
|
|
101
109
|
blocked_comments_warning: Komentarze są w tej chwili wyłączone, ale możesz przeczytać poprzednie.
|
|
102
110
|
comment_details_title: Szczegóły komentarza
|
|
103
111
|
loading: Ładowanie komentarzy ...
|
|
112
|
+
single_comment_warning: <a href="%{url}">Zobacz wszystkie komentarze</a>
|
|
104
113
|
single_comment_warning_title: Wyświetlasz teraz pojedynczy komentarz
|
|
105
114
|
title:
|
|
106
115
|
one: "%{count} komentarz"
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -4,6 +4,7 @@ pt-BR:
|
|
|
4
4
|
models:
|
|
5
5
|
decidim/comments/comment_by_followed_user_event: Comente
|
|
6
6
|
decidim/comments/comment_created_event: Comentário
|
|
7
|
+
decidim/comments/comment_upvoted_event: Comentário valorizado positivamente
|
|
7
8
|
decidim/comments/reply_created_event: Resposta
|
|
8
9
|
decidim/comments/user_group_mentioned_event: Mencionar
|
|
9
10
|
decidim/comments/user_mentioned_event: Mencionar
|
|
@@ -65,6 +66,7 @@ pt-BR:
|
|
|
65
66
|
edit: Editar
|
|
66
67
|
edited: Editado
|
|
67
68
|
hide_replies: Ocultar respostas
|
|
69
|
+
moderated_at: Comentário moderado em %{date}
|
|
68
70
|
reply: Resposta
|
|
69
71
|
report:
|
|
70
72
|
action: Relatório
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -87,6 +87,10 @@ ro:
|
|
|
87
87
|
offensive: Conține rasism, sexism, insulte, atacuri personale, amenințări cu moartea, cereri de sinucidere sau orice formă de discurs de incitare la ură.
|
|
88
88
|
spam: Conține clickbait, publicitate, escrocherii sau script rulat de roboți.
|
|
89
89
|
title: Raportează conținut nepotrivit
|
|
90
|
+
show_replies:
|
|
91
|
+
one: Arată răspunsul
|
|
92
|
+
few: Arată %{count} răspunsuri
|
|
93
|
+
other: Arată %{count} răspunsuri
|
|
90
94
|
single_comment_link_title: Obţine link
|
|
91
95
|
comment_order_selector:
|
|
92
96
|
order:
|
data/config/locales/ru.yml
CHANGED
data/config/locales/si-LK.yml
CHANGED
data/config/locales/sk.yml
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sq:
|
data/config/locales/sv.yml
CHANGED
|
@@ -85,6 +85,9 @@ sv:
|
|
|
85
85
|
offensive: Innehåller rasism, sexism, skällsord, personliga attacker, dödshot, uppmaningar att begå självmord eller någon form av hatpropaganda.
|
|
86
86
|
spam: Innehåller clickbait, reklam, bedrägerier eller skriptrobotar.
|
|
87
87
|
title: Rapportera olämpligt innehåll
|
|
88
|
+
show_replies:
|
|
89
|
+
one: Visa svar
|
|
90
|
+
other: Visa %{count} svar
|
|
88
91
|
single_comment_link_title: Hämta länk
|
|
89
92
|
comment_order_selector:
|
|
90
93
|
order:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
th:
|
data/config/locales/tr-TR.yml
CHANGED
data/config/locales/uk.yml
CHANGED
data/config/locales/zh-CN.yml
CHANGED
|
@@ -33,7 +33,7 @@ module Decidim
|
|
|
33
33
|
|
|
34
34
|
def root_commentable_url
|
|
35
35
|
@root_commentable_url ||= if resource.root_commentable.respond_to?(:polymorphic_resource_url)
|
|
36
|
-
resource.root_commentable.polymorphic_resource_url
|
|
36
|
+
resource.root_commentable.polymorphic_resource_url({})
|
|
37
37
|
else
|
|
38
38
|
ResourceLocatorPresenter.new(resource.root_commentable).url
|
|
39
39
|
end
|
|
@@ -38,7 +38,7 @@ module Decidim
|
|
|
38
38
|
|
|
39
39
|
def root_commentable_url
|
|
40
40
|
@root_commentable_url ||= if resource.comment.root_commentable.respond_to?(:polymorphic_resource_url)
|
|
41
|
-
resource.comment.root_commentable.polymorphic_resource_url
|
|
41
|
+
resource.comment.root_commentable.polymorphic_resource_url({})
|
|
42
42
|
else
|
|
43
43
|
ResourceLocatorPresenter.new(resource.comment.root_commentable).url
|
|
44
44
|
end
|
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-comments
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.27.
|
|
4
|
+
version: 0.27.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
8
8
|
- Marc Riera Casals
|
|
9
9
|
- Oriol Gual Oliva
|
|
10
|
-
autorequire:
|
|
10
|
+
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-
|
|
13
|
+
date: 2023-12-20 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-core
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.27.
|
|
21
|
+
version: 0.27.5
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.27.
|
|
28
|
+
version: 0.27.5
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: redcarpet
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,28 +52,28 @@ dependencies:
|
|
|
52
52
|
requirements:
|
|
53
53
|
- - '='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.27.
|
|
55
|
+
version: 0.27.5
|
|
56
56
|
type: :development
|
|
57
57
|
prerelease: false
|
|
58
58
|
version_requirements: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
60
|
- - '='
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.27.
|
|
62
|
+
version: 0.27.5
|
|
63
63
|
- !ruby/object:Gem::Dependency
|
|
64
64
|
name: decidim-dev
|
|
65
65
|
requirement: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - '='
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 0.27.
|
|
69
|
+
version: 0.27.5
|
|
70
70
|
type: :development
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - '='
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: 0.27.
|
|
76
|
+
version: 0.27.5
|
|
77
77
|
description: Pluggable comments system for some components.
|
|
78
78
|
email:
|
|
79
79
|
- josepjaume@gmail.com
|
|
@@ -167,6 +167,7 @@ files:
|
|
|
167
167
|
- app/views/decidim/comments/votes/create.js.erb
|
|
168
168
|
- app/views/decidim/comments/votes/error.js.erb
|
|
169
169
|
- config/assets.rb
|
|
170
|
+
- config/environment.rb
|
|
170
171
|
- config/locales/am-ET.yml
|
|
171
172
|
- config/locales/ar-SA.yml
|
|
172
173
|
- config/locales/ar.yml
|
|
@@ -233,9 +234,11 @@ files:
|
|
|
233
234
|
- config/locales/sk.yml
|
|
234
235
|
- config/locales/sl.yml
|
|
235
236
|
- config/locales/so-SO.yml
|
|
237
|
+
- config/locales/sq-AL.yml
|
|
236
238
|
- config/locales/sr-CS.yml
|
|
237
239
|
- config/locales/sv.yml
|
|
238
240
|
- config/locales/sw-KE.yml
|
|
241
|
+
- config/locales/th-TH.yml
|
|
239
242
|
- config/locales/ti-ER.yml
|
|
240
243
|
- config/locales/tr-TR.yml
|
|
241
244
|
- config/locales/uk.yml
|
|
@@ -295,7 +298,7 @@ homepage: https://github.com/decidim/decidim
|
|
|
295
298
|
licenses:
|
|
296
299
|
- AGPL-3.0
|
|
297
300
|
metadata: {}
|
|
298
|
-
post_install_message:
|
|
301
|
+
post_install_message:
|
|
299
302
|
rdoc_options: []
|
|
300
303
|
require_paths:
|
|
301
304
|
- lib
|
|
@@ -310,8 +313,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
310
313
|
- !ruby/object:Gem::Version
|
|
311
314
|
version: '0'
|
|
312
315
|
requirements: []
|
|
313
|
-
rubygems_version: 3.
|
|
314
|
-
signing_key:
|
|
316
|
+
rubygems_version: 3.4.22
|
|
317
|
+
signing_key:
|
|
315
318
|
specification_version: 4
|
|
316
319
|
summary: Decidim comments module
|
|
317
320
|
test_files: []
|