decidim-comments 0.29.2 → 0.29.3
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_cell.rb +8 -0
- data/app/cells/decidim/comments/comment_thread/show.erb +1 -1
- data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +1 -1
- data/app/controllers/decidim/comments/comments_controller.rb +2 -1
- data/app/models/decidim/comments/comment.rb +1 -1
- data/config/locales/ca-IT.yml +178 -0
- data/config/locales/ca.yml +2 -0
- data/config/locales/de.yml +2 -0
- data/config/locales/en.yml +2 -0
- data/config/locales/es-MX.yml +2 -0
- data/config/locales/es-PY.yml +2 -0
- data/config/locales/es.yml +2 -0
- data/config/locales/eu.yml +24 -22
- data/config/locales/fi.yml +1 -1
- data/config/locales/fr-CA.yml +2 -0
- data/config/locales/fr.yml +2 -0
- data/config/locales/it.yml +1 -0
- data/config/locales/ja.yml +2 -0
- data/config/locales/lt.yml +1 -1
- data/config/locales/pl.yml +1 -1
- data/config/locales/ro-RO.yml +58 -56
- data/config/locales/sv.yml +2 -0
- data/config/locales/tr-TR.yml +1 -1
- data/lib/decidim/comments/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d3bf31067d9c3f95c93946db7b2069e11f2074a125abd5306c59aa043b0201d
|
4
|
+
data.tar.gz: 3d15947b6f6a12afe04c218a31e2f4c8f24d28c99eeb72d82355ea1ca001b862
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81cad4916eb7e5d0a84918ceaf471f9fe9168666d1dfc823dda644cd9cb26817b039842e5f69b1d50fa415b9442d58b1fa8e831ab62de85b5b33ce7793b512d8
|
7
|
+
data.tar.gz: d7afb716ed31968beab5c46c0de89c30727f02978c53e55df7020a44593470067acfa162e987459b8d0a856e82a3e2b8ccbdadd2ce0cef4fbaef7a276c56c3a3
|
@@ -5,6 +5,7 @@ module Decidim
|
|
5
5
|
# A cell to display a single comment.
|
6
6
|
class CommentCell < Decidim::ViewModel
|
7
7
|
include Decidim::ResourceHelper
|
8
|
+
include Decidim::UserRoleChecker
|
8
9
|
include Cell::ViewModel::Partial
|
9
10
|
|
10
11
|
delegate :current_user, :user_signed_in?, to: :controller
|
@@ -95,6 +96,9 @@ module Decidim
|
|
95
96
|
end
|
96
97
|
|
97
98
|
def can_reply?
|
99
|
+
return false if model.depth >= Comment::MAX_DEPTH
|
100
|
+
return true if current_participatory_space && user_has_any_role?(current_user, current_participatory_space)
|
101
|
+
|
98
102
|
user_signed_in? && accepts_new_comments? &&
|
99
103
|
root_commentable.user_allowed_to_comment?(current_user)
|
100
104
|
end
|
@@ -207,6 +211,10 @@ module Decidim
|
|
207
211
|
root_commentable.try(:component)
|
208
212
|
end
|
209
213
|
|
214
|
+
def current_participatory_space
|
215
|
+
current_component&.participatory_space
|
216
|
+
end
|
217
|
+
|
210
218
|
def vote_button_to(path, params, &)
|
211
219
|
# actions are linked to objects belonging to a component
|
212
220
|
# To apply :comment permission, the modal authorizer should be refactored to allow participatory spaces-level comments
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<div class="comment-thread" role="region">
|
1
|
+
<div class="comment-thread" role="region" aria-label="<%= t("accessibility_label", scope: "decidim.comments.comment_thread", full_name: model.author&.name, date: l(model.created_at, format: :decidim_short)) %>">
|
2
2
|
<%= cell("decidim/comments/comment", model, root_depth: model.depth, order:) %>
|
3
3
|
</div>
|
@@ -141,7 +141,7 @@ module Decidim
|
|
141
141
|
if root_commentable.respond_to?(:polymorphic_resource_url)
|
142
142
|
root_commentable.polymorphic_resource_url(url_params)
|
143
143
|
else
|
144
|
-
|
144
|
+
root_commentable.reported_content_url(url_params)
|
145
145
|
end
|
146
146
|
end
|
147
147
|
|
@@ -0,0 +1,178 @@
|
|
1
|
+
---
|
2
|
+
ca-IT:
|
3
|
+
activemodel:
|
4
|
+
models:
|
5
|
+
decidim/comments/comment_by_followed_user_event: Comentari
|
6
|
+
decidim/comments/comment_created_event: Comentari
|
7
|
+
decidim/comments/comment_upvoted_event: Comentari valorat positivament
|
8
|
+
decidim/comments/reply_created_event: Resposta al comentari
|
9
|
+
decidim/comments/user_group_mentioned_event: Mencionar
|
10
|
+
decidim/comments/user_mentioned_event: Mencionar
|
11
|
+
activerecord:
|
12
|
+
models:
|
13
|
+
decidim/comments/comment:
|
14
|
+
one: Comentari
|
15
|
+
other: Comentaris
|
16
|
+
decidim/comments/comment_vote:
|
17
|
+
one: Vot
|
18
|
+
other: Vots
|
19
|
+
decidim:
|
20
|
+
comments:
|
21
|
+
admin:
|
22
|
+
shared:
|
23
|
+
availability_fields:
|
24
|
+
enabled: Comentaris habilitats
|
25
|
+
end_time: Comentaris habilitats fins al
|
26
|
+
start_time: Comentaris habilitats des de
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Fil de comentaris iniciat per %{full_name} el %{date}
|
29
|
+
comments:
|
30
|
+
create:
|
31
|
+
error: S'ha produït un error en crear el comentari.
|
32
|
+
delete:
|
33
|
+
error: El comentari no s'ha pogut eliminar.
|
34
|
+
update:
|
35
|
+
error: S'ha produït un error en actualitzar el comentari.
|
36
|
+
comments_title: Comentari
|
37
|
+
last_activity:
|
38
|
+
new_comment: 'Nou comentari:'
|
39
|
+
votes:
|
40
|
+
create:
|
41
|
+
error: S'ha produït un error en votar el comentari.
|
42
|
+
components:
|
43
|
+
add_comment_form:
|
44
|
+
account_message: <a href="%{sign_in_url}">Inicia sessió</a> o <a href="%{sign_up_url}">crea un compte</a> per afegir el teu comentari.
|
45
|
+
form:
|
46
|
+
body:
|
47
|
+
label: Comentari
|
48
|
+
placeholder: Què en penses d'això?
|
49
|
+
form_error: El text és necessari i no pot ser més llarg de %{length}.
|
50
|
+
submit_reply: Publicar resposta
|
51
|
+
submit_root_comment: Publicar comentari
|
52
|
+
user_group_id:
|
53
|
+
label: Comentar com a
|
54
|
+
opinion:
|
55
|
+
label: La teva opinió sobre aquest tema
|
56
|
+
negative: Negativa
|
57
|
+
negative_selected: La teva opinió sobre aquest tema és negativa
|
58
|
+
neutral: Neutral
|
59
|
+
neutral_selected: La teva opinió sobre aquest tema és neutral
|
60
|
+
positive: Positiva
|
61
|
+
positive_selected: La teva opinió sobre aquest tema és positiva
|
62
|
+
remaining_characters: "Queden %{count} caràcters"
|
63
|
+
remaining_characters_1: "Queda %{count} caràcter"
|
64
|
+
title: Deixa el teu comentari
|
65
|
+
comment:
|
66
|
+
alignment:
|
67
|
+
against: En contra
|
68
|
+
in_favor: A favor
|
69
|
+
cancel_reply: Cancel·lar resposta
|
70
|
+
comment_label: Comentari %{comment_id}
|
71
|
+
comment_label_reply: Comentari %{comment_id} (respon al comentari %{parent_comment_id})
|
72
|
+
confirm_destroy: Segur que vols esborrar aquest comentari?
|
73
|
+
controls_label: Controls de comentaris
|
74
|
+
delete: Esborrar
|
75
|
+
deleted_at: Comentari esborrat el %{date}
|
76
|
+
deleted_user: Participant eliminada
|
77
|
+
edit: Editar
|
78
|
+
edited: Editat
|
79
|
+
hide_replies:
|
80
|
+
one: Amagar resposta
|
81
|
+
other: Amagar %{count} respostes
|
82
|
+
moderated_at: Comentari moderat el %{date}
|
83
|
+
reply: Respondre
|
84
|
+
report:
|
85
|
+
action: Denúncia
|
86
|
+
already_reported: Aquest contingut ja ha estat denunciat i serà revisat per una administradora.
|
87
|
+
close: Tancar
|
88
|
+
description: Aquest contingut és inapropiat?
|
89
|
+
details: Comentaris addicionals
|
90
|
+
reasons:
|
91
|
+
does_not_belong: Conté activitat il·legal, amenaces de suïcidi, informació personal, o qualsevol altra cosa que creguis que no pertany a %{organization_name}.
|
92
|
+
offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort, peticions de suïcidi o qualsevol forma de discurs d'odi.
|
93
|
+
spam: Conté "clickbait", publicitat o estafes.
|
94
|
+
title: Notificar contingut inapropiat
|
95
|
+
show_replies:
|
96
|
+
one: Mostra la resposta
|
97
|
+
other: Mostra les %{count} respostes
|
98
|
+
single_comment_link_title: Obtenir enllaç
|
99
|
+
comment_order_selector:
|
100
|
+
order:
|
101
|
+
best_rated: Més ben valorats
|
102
|
+
most_discussed: Més discutit
|
103
|
+
older: Més antic
|
104
|
+
recent: Recent
|
105
|
+
title: 'Ordenar per:'
|
106
|
+
comments:
|
107
|
+
blocked_comments_for_unauthorized_user_warning: Has d'estar verificat abans de poder fer comentaris, però pots llegir els comentaris anteriors.
|
108
|
+
blocked_comments_for_user_warning: No pots fer comentaris en aquest moment, però pots llegir els anteriors.
|
109
|
+
blocked_comments_warning: Els comentaris estan desactivats en aquest moment, però pots llegir els anteriors.
|
110
|
+
comment_details_title: Detalls del comentari
|
111
|
+
loading: Carregant els comentaris ...
|
112
|
+
single_comment_warning: <a href="%{url}">Mostra tots els comentaris</a>
|
113
|
+
single_comment_warning_title: Estàs veient un sol comentari
|
114
|
+
title:
|
115
|
+
one: "%{count} comentari"
|
116
|
+
other: "%{count} comentaris"
|
117
|
+
down_vote_button:
|
118
|
+
text: No estic d'acord amb aquest comentari
|
119
|
+
edit_comment_modal_form:
|
120
|
+
close: Tancar
|
121
|
+
form:
|
122
|
+
body:
|
123
|
+
label: Comentar
|
124
|
+
placeholder: Què opines sobre això?
|
125
|
+
submit: Enviar
|
126
|
+
title: Edita el teu comentari
|
127
|
+
up_vote_button:
|
128
|
+
text: Estic d'acord amb aquest comentari
|
129
|
+
events:
|
130
|
+
comments:
|
131
|
+
comment_by_followed_user:
|
132
|
+
email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
|
133
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{author_name}". Pots deixar de seguir a aquesta participant des de la seva pàgina de perfil.
|
134
|
+
email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
|
135
|
+
notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
|
136
|
+
comment_by_followed_user_group:
|
137
|
+
email_intro: '%{author_name} ha deixat un comentari a%{resource_title}. Pots llegir-lo en aquesta pàgina:'
|
138
|
+
email_outro: Reps aquesta notificació perquè segueixes a "%{author_name}". Pots deixar de seguir aquest grup des de la seva pàgina de perfil.
|
139
|
+
email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
|
140
|
+
notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
|
141
|
+
comment_created:
|
142
|
+
email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
|
143
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
|
144
|
+
email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
|
145
|
+
notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
|
146
|
+
comment_downvoted:
|
147
|
+
email_intro: El teu comentari a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
148
|
+
email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
|
149
|
+
email_subject: El teu comentari a "%{resource_title}" ha rebut un vot negatiu.
|
150
|
+
notification_title: El teu <a href="%{resource_path}">comentari</a> a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
151
|
+
comment_upvoted:
|
152
|
+
email_intro: El teu comentari a "%{resource_title}" ha rebut un vot positiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
153
|
+
email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
|
154
|
+
email_subject: El teu comentari a "%{resource_title}" ha rebut un vot positiu.
|
155
|
+
notification_title: El teu <a href="%{resource_path}">comentari</a> a "%{resource_title}" ha rebut un vot positiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
156
|
+
reply_created:
|
157
|
+
email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
|
158
|
+
email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
|
159
|
+
email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
|
160
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
|
161
|
+
user_group_mentioned:
|
162
|
+
email_intro: Un grup al qual pertanys ha estat esmentat
|
163
|
+
email_outro: Has rebut aquesta notificació perquè formes part del grup "%{group_name}" que ha estat esmentat a %{resource_title}.
|
164
|
+
email_subject: T'han esmentat a %{resource_title} com a membre de %{group_name}
|
165
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> t'ha esmentat com a membre de <a href="%{group_path}">%{group_name} %{group_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>
|
166
|
+
user_mentioned:
|
167
|
+
email_intro: Has estat esmentada
|
168
|
+
email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
|
169
|
+
email_subject: Has estat esmentada a %{resource_title}
|
170
|
+
notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
171
|
+
metrics:
|
172
|
+
comments:
|
173
|
+
description: Nombre de comentaris generats per les participants
|
174
|
+
object: comentaris
|
175
|
+
title: Comentaris
|
176
|
+
errors:
|
177
|
+
messages:
|
178
|
+
cannot_have_comments: no es poden fer comentaris
|
data/config/locales/ca.yml
CHANGED
@@ -24,6 +24,8 @@ ca:
|
|
24
24
|
enabled: Comentaris habilitats
|
25
25
|
end_time: Comentaris habilitats fins al
|
26
26
|
start_time: Comentaris habilitats des de
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Fil de comentaris iniciat per %{full_name} el %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: S'ha produït un error en crear el comentari.
|
data/config/locales/de.yml
CHANGED
@@ -24,6 +24,8 @@ de:
|
|
24
24
|
enabled: Kommentare aktiviert
|
25
25
|
end_time: Kommentare aktiviert bis
|
26
26
|
start_time: Kommentare aktiviert von
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Kommentar-Thread gestartet von %{full_name} am %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
data/config/locales/en.yml
CHANGED
@@ -24,6 +24,8 @@ en:
|
|
24
24
|
enabled: Comments enabled
|
25
25
|
end_time: Comments enabled until
|
26
26
|
start_time: Comments enabled from
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Comment thread started by %{full_name} on %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: There was a problem creating the comment.
|
data/config/locales/es-MX.yml
CHANGED
@@ -24,6 +24,8 @@ es-MX:
|
|
24
24
|
enabled: Comentarios habilitados
|
25
25
|
end_time: Comentarios habilitados hasta
|
26
26
|
start_time: Comentarios habilitados desde
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Hilo de comentario iniciado por %{full_name} el %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Se ha producido un error al crear el comentario.
|
data/config/locales/es-PY.yml
CHANGED
@@ -24,6 +24,8 @@ es-PY:
|
|
24
24
|
enabled: Comentarios habilitados
|
25
25
|
end_time: Comentarios habilitados hasta
|
26
26
|
start_time: Comentarios habilitados desde
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Hilo de comentario iniciado por %{full_name} el %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Se ha producido un error al crear el comentario.
|
data/config/locales/es.yml
CHANGED
@@ -24,6 +24,8 @@ es:
|
|
24
24
|
enabled: Comentarios habilitados
|
25
25
|
end_time: Comentarios habilitados hasta
|
26
26
|
start_time: Comentarios habilitados desde
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Hilo de comentario iniciado por %{full_name} el %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Se ha producido un error al crear el comentario.
|
data/config/locales/eu.yml
CHANGED
@@ -24,6 +24,8 @@ eu:
|
|
24
24
|
enabled: Iruzkinak gaituta
|
25
25
|
end_time: Iruzkinak noiz arte gaituta
|
26
26
|
start_time: Iruzkinak noiztik aktibatuta
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: '%{full_name} -k %{date} -(e)an hasitako iruzkin-haria'
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Arazo bat egon da iruzkina sortzean.
|
@@ -81,13 +83,13 @@ eu:
|
|
81
83
|
reply: Erantzuna
|
82
84
|
report:
|
83
85
|
action: Salatu
|
84
|
-
already_reported: Eduki
|
86
|
+
already_reported: Eduki horren berri eman da eta administratzaile batek berrikusiko du.
|
85
87
|
close: Itxi
|
86
88
|
description: Eduki hau desegokia da?
|
87
89
|
details: Iruzkin gehigarriak
|
88
90
|
reasons:
|
89
91
|
does_not_belong: Bertan badago legez kontrako jardunik, suizidio-mehatxurik, informazio pertsonalik edo beste zernahi, zure ustez %{organization_name}-ri ez dagokionik.
|
90
|
-
offensive:
|
92
|
+
offensive: Arrazakeria, sexismoa, laidoak, eraso pertsonalak, heriotza-mehatxuak, suizidio eskaerak edo gorrotozko edozein diskurtso.
|
91
93
|
spam: Bertan badago clickbait-ik, publizitaterik edo iruzurrik.
|
92
94
|
title: Jakinarazi eduki desegokia
|
93
95
|
show_replies:
|
@@ -102,12 +104,12 @@ eu:
|
|
102
104
|
recent: Berrienak
|
103
105
|
title: 'Ordenatu honen arabera:'
|
104
106
|
comments:
|
105
|
-
blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan
|
107
|
+
blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkin bat egiteko, baina aurreko iruzkinak irakur ditzakezu.
|
106
108
|
blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
|
107
109
|
blocked_comments_warning: Iruzkinak desgaituta daude une honetan, baina aurrekoak irakur ditzakezu.
|
108
110
|
comment_details_title: Iruzkinaren xehetasunak
|
109
111
|
loading: Iruzkinak kargatzen...
|
110
|
-
single_comment_warning: <a href="%{url}">
|
112
|
+
single_comment_warning: <a href="%{url}"> iruzkin guztiak ikusgai </a>
|
111
113
|
single_comment_warning_title: Iruzkin bakar bat ikusten ari zara
|
112
114
|
title:
|
113
115
|
one: "Iruzkin bat"
|
@@ -129,38 +131,38 @@ eu:
|
|
129
131
|
comment_by_followed_user:
|
130
132
|
email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
|
131
133
|
email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
|
132
|
-
email_subject: '%{author_name}
|
133
|
-
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
134
|
+
email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
|
135
|
+
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>.'
|
134
136
|
comment_by_followed_user_group:
|
135
|
-
email_intro: '%{author_name}
|
137
|
+
email_intro: '%{author_name} taldeak iruzkin bat utzi du hemen: %{resource_title}. Orrialde honetan irakur dezakezu:'
|
136
138
|
email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
|
137
|
-
email_subject: '%{author_name} egileak iruzkin
|
138
|
-
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
139
|
+
email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
|
140
|
+
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>.'
|
139
141
|
comment_created:
|
140
|
-
email_intro: "%{resource_title}
|
142
|
+
email_intro: "Norbaitek iruzkin bat egin du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
|
141
143
|
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
|
142
|
-
email_subject: '%{author_name}
|
143
|
-
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
144
|
+
email_subject: '%{author_name} egileak beste iruzkin berri bat egin du hemen: %{resource_title}'
|
145
|
+
notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>'
|
144
146
|
comment_downvoted:
|
145
147
|
email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} babes positibo eta %{downvotes} boto negatibo dituzu guztira.
|
146
148
|
email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
|
147
|
-
email_subject: Zure iruzkina hemen "%{resource_title}"
|
148
|
-
notification_title: Zure <a href="%{resource_path}">
|
149
|
+
email_subject: Zure iruzkina hemen "%{resource_title}" ez da norbaiten gustukoa izan.
|
150
|
+
notification_title: Zure <a href="%{resource_path}">iruzkinak</a> hemen "%{resource_title}" kontrako botoa izan du. Orain guztira %{upvotes} aldeko eta %{downvotes} kontrako boto dituzu.
|
149
151
|
comment_upvoted:
|
150
|
-
email_intro: Zure iruzkina hemen "%{resource_title}"
|
152
|
+
email_intro: Zure iruzkina hemen "%{resource_title}" norbaiten gustukoa izan da. Orain guztira %{upvotes} atsegin eta %{downvotes} ezatsegin dituzu.
|
151
153
|
email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
|
152
|
-
email_subject: Zure iruzkina hemen "%{resource_title}"
|
153
|
-
notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an
|
154
|
+
email_subject: Zure iruzkina hemen "%{resource_title}" norbaiten gustukoa izan da.
|
155
|
+
notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an norbaiten gustukoa izan da. Orain guztira %{upvotes} atsegin eta %{downvotes} ezatsegin dituzu.
|
154
156
|
reply_created:
|
155
157
|
email_intro: "%{author_name} egileak zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
|
156
|
-
email_outro: Jakinarazpen hau jaso duzu zure
|
157
|
-
email_subject: "%{author_name}
|
158
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio <a href="%{resource_path}">%{resource_title}</a>
|
158
|
+
email_outro: Jakinarazpen hau jaso duzu zure iruzkinak erantzuna izan duelako.
|
159
|
+
email_subject: "%{author_name} parte-hartzaileak zure iruzkina erantzun du hemen: %{resource_title}"
|
160
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio hemen <a href="%{resource_path}">%{resource_title}</a>
|
159
161
|
user_group_mentioned:
|
160
162
|
email_intro: Zure talde bat aipatu dute
|
161
163
|
email_outro: '%{resource_title}-an aipatutako %{group_name} taldeko kidea zarelako jaso duzu jakinarazpen hau.'
|
162
|
-
email_subject: Hemen %{resource_title} aipatu zaituzte %{group_name}
|
163
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
164
|
+
email_subject: Hemen %{resource_title} aipatu zaituzte %{group_name} taldeko kide gisa
|
165
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak aipatu zaitu, hemen <a href="%{resource_path}">%{resource_title}</a> <a href="%{group_path}">%{group_name} %{group_nickname}</a> taldeko kide gisa
|
164
166
|
user_mentioned:
|
165
167
|
email_intro: Aipatu zaituzte
|
166
168
|
email_outro: 'Jakinarazpen hau jaso duzu hemen: %{resource_title} aipatu zaituztelako.'
|
data/config/locales/fi.yml
CHANGED
@@ -89,7 +89,7 @@ fi:
|
|
89
89
|
does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan %{organization_name} -palveluun.
|
90
90
|
offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
|
91
91
|
spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
|
92
|
-
title: Ilmoita
|
92
|
+
title: Ilmoita epäasiallista sisältöä
|
93
93
|
show_replies:
|
94
94
|
one: Näytä vastaus
|
95
95
|
other: Näytä %{count} vastausta
|
data/config/locales/fr-CA.yml
CHANGED
@@ -24,6 +24,8 @@ fr-CA:
|
|
24
24
|
enabled: Commentaires activés
|
25
25
|
end_time: Commentaires activés jusqu'à
|
26
26
|
start_time: Commentaires activés depuis
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Fil de commentaires démarré par %{full_name} le %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Une erreur s'est produite lors de la création du commentaire.
|
data/config/locales/fr.yml
CHANGED
@@ -24,6 +24,8 @@ fr:
|
|
24
24
|
enabled: Commentaires activés
|
25
25
|
end_time: Commentaires activés jusqu'à
|
26
26
|
start_time: Commentaires activés depuis
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Fil de commentaires démarré par %{full_name} le %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Une erreur s'est produite lors de la création du commentaire.
|
data/config/locales/it.yml
CHANGED
@@ -33,6 +33,7 @@ it:
|
|
33
33
|
error: Ci sono stati errori durante la votazione del commento.
|
34
34
|
components:
|
35
35
|
add_comment_form:
|
36
|
+
account_message: <a href="%{sign_in_url}">Accedi</a> oppure <a href="%{sign_up_url}">crea un account</a> per aggiungere un tuo commento.
|
36
37
|
form:
|
37
38
|
body:
|
38
39
|
label: Commenta
|
data/config/locales/ja.yml
CHANGED
data/config/locales/lt.yml
CHANGED
@@ -6,7 +6,7 @@ lt:
|
|
6
6
|
decidim/comments/comment_created_event: Komentarai
|
7
7
|
decidim/comments/comment_upvoted_event: Komentaras palaikytas
|
8
8
|
decidim/comments/reply_created_event: Atsakymas į komentarą
|
9
|
-
decidim/comments/user_group_mentioned_event:
|
9
|
+
decidim/comments/user_group_mentioned_event: Paminėti
|
10
10
|
decidim/comments/user_mentioned_event: Paminėti
|
11
11
|
activerecord:
|
12
12
|
models:
|
data/config/locales/pl.yml
CHANGED
@@ -140,7 +140,7 @@ pl:
|
|
140
140
|
email_intro: 'Grupa %{author_name} dodała komentarz do %{resource_title}. Możesz go przeczytać na tej stronie:'
|
141
141
|
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz %{author_name}. Możesz przestać obserwować tę grupę z poziomu jej strony profilowej.
|
142
142
|
email_subject: Jest nowy komentarz dodany przez %{author_name} do %{resource_title}
|
143
|
-
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>.
|
143
|
+
notification_title: Pojawił się nowy komentarz dodany przez <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>.
|
144
144
|
comment_created:
|
145
145
|
email_intro: "Nowy komentarz: %{resource_title}. Możesz go przeczytać na tej stronie:"
|
146
146
|
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować po kliknięciu w poprzedni link.
|
data/config/locales/ro-RO.yml
CHANGED
@@ -3,11 +3,11 @@ ro:
|
|
3
3
|
activemodel:
|
4
4
|
models:
|
5
5
|
decidim/comments/comment_by_followed_user_event: Comentariu
|
6
|
-
decidim/comments/comment_created_event:
|
7
|
-
decidim/comments/comment_upvoted_event: Comentariu votat
|
6
|
+
decidim/comments/comment_created_event: Comentariu
|
7
|
+
decidim/comments/comment_upvoted_event: Comentariu votat favorabil
|
8
8
|
decidim/comments/reply_created_event: Răspuns la comentariu
|
9
|
-
decidim/comments/user_group_mentioned_event:
|
10
|
-
decidim/comments/user_mentioned_event:
|
9
|
+
decidim/comments/user_group_mentioned_event: Menționați
|
10
|
+
decidim/comments/user_mentioned_event: Menționați
|
11
11
|
activerecord:
|
12
12
|
models:
|
13
13
|
decidim/comments/comment:
|
@@ -26,6 +26,8 @@ ro:
|
|
26
26
|
enabled: Comentarii activate
|
27
27
|
end_time: Comentarii activate până la
|
28
28
|
start_time: Comentarii activate de la
|
29
|
+
comment_thread:
|
30
|
+
accessibility_label: Comentariile au fost inițiate de %{full_name} începând cu %{date}
|
29
31
|
comments:
|
30
32
|
create:
|
31
33
|
error: A apărut o problemă la crearea comentariului.
|
@@ -45,20 +47,20 @@ ro:
|
|
45
47
|
form:
|
46
48
|
body:
|
47
49
|
label: Comentariu
|
48
|
-
placeholder: Ce părere
|
50
|
+
placeholder: Ce părere aveți despre asta?
|
49
51
|
form_error: Textul este obligatoriu și nu poate fi mai lung de %{length} caractere.
|
50
52
|
submit_reply: Publicați răspuns
|
51
53
|
submit_root_comment: Publicați comentariu
|
52
54
|
user_group_id:
|
53
55
|
label: Comentați în calitate de
|
54
56
|
opinion:
|
55
|
-
label: Opinia
|
57
|
+
label: Opinia dumneavoastră despre acest subiect
|
56
58
|
negative: Negativ
|
57
|
-
negative_selected: Opinia
|
59
|
+
negative_selected: Opinia dumneavoastră despre acest subiect este negativă
|
58
60
|
neutral: Neutru
|
59
|
-
neutral_selected: Opinia
|
61
|
+
neutral_selected: Opinia dumneavoastră despre acest subiect este neutră
|
60
62
|
positive: Pozitiv
|
61
|
-
positive_selected: Opinia
|
63
|
+
positive_selected: Opinia dumneavoastră despre acest subiect este pozitivă
|
62
64
|
remaining_characters: "%{count} caractere rămase"
|
63
65
|
remaining_characters_1: "%{count} caracter rămas"
|
64
66
|
title: Adaugați comentariul dumneavoastră
|
@@ -66,12 +68,12 @@ ro:
|
|
66
68
|
alignment:
|
67
69
|
against: Împotrivă
|
68
70
|
in_favor: Pentru
|
69
|
-
cancel_reply:
|
71
|
+
cancel_reply: Anulați răspunsul
|
70
72
|
comment_label: Comentariu %{comment_id}
|
71
73
|
comment_label_reply: Comentariu %{comment_id} (răspuns la comentariul %{parent_comment_id})
|
72
74
|
confirm_destroy: Sigur doriți să ștergeți acest comentariu?
|
73
|
-
controls_label:
|
74
|
-
delete:
|
75
|
+
controls_label: Controale comentariu
|
76
|
+
delete: Ștergeți
|
75
77
|
deleted_at: Comentariu șters pe %{date}
|
76
78
|
deleted_user: Participant șters
|
77
79
|
edit: Actualizare
|
@@ -81,23 +83,23 @@ ro:
|
|
81
83
|
few: Ascundeți %{count} răspunsuri
|
82
84
|
other: Ascundeți %{count} răspunsuri
|
83
85
|
moderated_at: Comentariu moderat pe %{date}
|
84
|
-
reply:
|
86
|
+
reply: Răspundeți
|
85
87
|
report:
|
86
|
-
action:
|
88
|
+
action: Raportați
|
87
89
|
already_reported: Acest conținut este deja raportat și va fi revizuit de către un administrator.
|
88
|
-
close:
|
89
|
-
description:
|
90
|
-
details:
|
90
|
+
close: Închideți
|
91
|
+
description: Acest conținut este neadecvat?
|
92
|
+
details: Observații suplimentare
|
91
93
|
reasons:
|
92
94
|
does_not_belong: Conține activitate ilegală, amenințări cu sinuciderea, informații personale sau altceva ce consideri că nu aparține de %{organization_name}.
|
93
95
|
offensive: Conține rasism, sexism, insulte, atacuri personale, amenințări cu moartea, cereri de sinucidere sau orice formă de discurs de incitare la ură.
|
94
96
|
spam: Conține clickbait, publicitate, escrocherii sau script rulat de roboți.
|
95
97
|
title: Raportați conținut nepotrivit
|
96
98
|
show_replies:
|
97
|
-
one:
|
98
|
-
few:
|
99
|
-
other:
|
100
|
-
single_comment_link_title:
|
99
|
+
one: Arătați răspunsul
|
100
|
+
few: Arătați %{count} răspunsuri
|
101
|
+
other: Arătați %{count} răspunsuri
|
102
|
+
single_comment_link_title: Obțineți linkul
|
101
103
|
comment_order_selector:
|
102
104
|
order:
|
103
105
|
best_rated: Cele mai apreciate
|
@@ -106,13 +108,13 @@ ro:
|
|
106
108
|
recent: Recente
|
107
109
|
title: 'Ordonare după:'
|
108
110
|
comments:
|
109
|
-
blocked_comments_for_unauthorized_user_warning: Trebuie să
|
110
|
-
blocked_comments_for_user_warning: Nu
|
111
|
+
blocked_comments_for_unauthorized_user_warning: Trebuie să fiți verificat pentru a face comentarii în acest moment, dar le puteți citi pe cele anterioare.
|
112
|
+
blocked_comments_for_user_warning: Nu puteți comenta în acest moment, dar le puteți citi pe cele anterioare.
|
111
113
|
blocked_comments_warning: Comentariile sunt dezactivate în acest moment, dar le poți citi pe cele anterioare.
|
112
114
|
comment_details_title: Detaliile comentariului
|
113
|
-
loading:
|
114
|
-
single_comment_warning: <a href="%{url}">
|
115
|
-
single_comment_warning_title:
|
115
|
+
loading: Comentariile se încarcă ...
|
116
|
+
single_comment_warning: <a href="%{url}">Vedeți toate comentariile</a>
|
117
|
+
single_comment_warning_title: Puteți vedea un singur comentariu
|
116
118
|
title:
|
117
119
|
one: "%{count} comentariu"
|
118
120
|
few: "%{count} comentarii"
|
@@ -120,57 +122,57 @@ ro:
|
|
120
122
|
down_vote_button:
|
121
123
|
text: Nu sunt de acord cu acest comentariu
|
122
124
|
edit_comment_modal_form:
|
123
|
-
close:
|
125
|
+
close: Închideți
|
124
126
|
form:
|
125
127
|
body:
|
126
128
|
label: Comentariu
|
127
|
-
placeholder: Ce părere
|
128
|
-
submit:
|
129
|
-
title:
|
129
|
+
placeholder: Ce părere aveţi despre asta?
|
130
|
+
submit: Actualizați
|
131
|
+
title: Modificați comentariul dumneavoastră
|
130
132
|
up_vote_button:
|
131
133
|
text: Sunt de acord cu acest comentariu
|
132
134
|
events:
|
133
135
|
comments:
|
134
136
|
comment_by_followed_user:
|
135
|
-
email_intro: "%{author_name} a lăsat un comentariu în %{resource_title}. Îl
|
136
|
-
email_outro:
|
137
|
+
email_intro: "%{author_name} a lăsat un comentariu în %{resource_title}. Îl puteți citi pe această pagină:"
|
138
|
+
email_outro: Ați primit această notificare deoarece urmăriți activitatea lui %{author_name}. Puteți să nu urmăriți acest utilizator de pe pagina lui de profil.
|
137
139
|
email_subject: Există un nou comentariu de la %{author_name} pentru %{resource_title}
|
138
140
|
notification_title: Există un comentariu nou de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>.
|
139
141
|
comment_by_followed_user_group:
|
140
|
-
email_intro: 'Grupul %{author_name} a lăsat un comentariu pentru %{resource_title}. Îl
|
141
|
-
email_outro:
|
142
|
+
email_intro: 'Grupul %{author_name} a lăsat un comentariu pentru %{resource_title}. Îl puteți citi în această pagină:'
|
143
|
+
email_outro: Ați primit această notificare deoarece urmăriți activitate lui %{author_name}. Puteți să nu urmăriți acest grup de pe pagina sa de profil.
|
142
144
|
email_subject: Există un nou comentariu de la %{author_name} pentru %{resource_title}
|
143
145
|
notification_title: Există un comentariu nou de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>.
|
144
146
|
comment_created:
|
145
147
|
email_intro: "%{resource_title} a primit un comentariu. Poți citi comentariul pe această pagină:"
|
146
148
|
email_outro: Ați primit această notificare deoarece urmăriți „%{resource_title}” sau pe autorii săi. Puteți anula abonarea de la link-ul anterior.
|
147
|
-
email_subject: Există un nou
|
148
|
-
notification_title: Există un nou
|
149
|
+
email_subject: Există un comentariu nou de la %{author_name} pentru %{resource_title}
|
150
|
+
notification_title: Există un comentariu nou de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>
|
149
151
|
comment_downvoted:
|
150
|
-
email_intro: Comentariul
|
151
|
-
email_outro:
|
152
|
-
email_subject: Comentariul
|
153
|
-
notification_title: Comentariul
|
152
|
+
email_intro: Comentariul dumneavoastră pentru "%{resource_title}" a primit un vot nefavorabil. Acesta are acum un total de %{upvotes} voturi favorabile și %{downvotes} voturi nefavorabile.
|
153
|
+
email_outro: Ați primit această notificare deoarece sunteți autorul acestui comentariu.
|
154
|
+
email_subject: Comentariul dumneavoastră pentru "%{resource_title}" a primit un vot nefavorabil.
|
155
|
+
notification_title: Comentariul dumneavoastră <a href="%{resource_path}"></a> pentru "%{resource_title}" a primit un vot nefavorabil. Acum are un total de %{upvotes} voturi favorabile și %{downvotes} voturi nefavorabile.
|
154
156
|
comment_upvoted:
|
155
|
-
email_intro: Comentariul
|
156
|
-
email_outro:
|
157
|
-
email_subject: Comentariul
|
158
|
-
notification_title: Comentariul
|
157
|
+
email_intro: Comentariul dumneavoastră pentru "%{resource_title}" a primit un vot favorabil. Acesta are acum un total de %{upvotes} voturi favorabile și %{downvotes} voturi nefavorabile.
|
158
|
+
email_outro: Ați primit această notificare deoarece sunteți autorul acestui comentariu.
|
159
|
+
email_subject: Comentariul dumneavoastră pentru "%{resource_title}" a primit un vot favorabil.
|
160
|
+
notification_title: Comentariul dumneavoastră <a href="%{resource_path}"></a> în "%{resource_title}" a primit un vot favorabil. Acum are un total de %{upvotes} voturi favorabile și %{downvotes} voturi nefavorabile.
|
159
161
|
reply_created:
|
160
|
-
email_intro: "%{author_name} a răspuns la comentariul
|
161
|
-
email_outro:
|
162
|
-
email_subject: "%{author_name} a răspuns la comentariul
|
163
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a răspuns la comentariul
|
162
|
+
email_intro: "%{author_name} a răspuns la comentariul dumneavoastră pentru %{resource_title}. Îl poți citi în această pagină:"
|
163
|
+
email_outro: Ați primit această notificare deoarece comentariul dumneavoastră a fost răspuns.
|
164
|
+
email_subject: "%{author_name} a răspuns la comentariul dumneavoastră pentru %{resource_title}"
|
165
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a răspuns la comentariul dumneavoastră pentru <a href="%{resource_path}">%{resource_title}</a>
|
164
166
|
user_group_mentioned:
|
165
|
-
email_intro: Un grup
|
166
|
-
email_outro:
|
167
|
-
email_subject: Ai fost menționat în %{resource_title} ca membru al %{group_name}
|
168
|
-
notification_title: Ai fost menționat în <a href="%{resource_path}">%{resource_title}</a> de <a href="%{author_path}">%{author_name} %{author_nickname}</a> ca membru al <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
167
|
+
email_intro: Un grup căruia îi aparțineți a fost menționat
|
168
|
+
email_outro: Ați primit această notificare deoarece sunteți un membru al grupului %{group_name} care a fost menționat în %{resource_title}.
|
169
|
+
email_subject: Ai fost menționat(ă) în %{resource_title} ca membru al %{group_name}
|
170
|
+
notification_title: Ai fost menționat(ă) în <a href="%{resource_path}">%{resource_title}</a> de <a href="%{author_path}">%{author_name} %{author_nickname}</a> ca membru al <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
169
171
|
user_mentioned:
|
170
|
-
email_intro:
|
171
|
-
email_outro:
|
172
|
-
email_subject:
|
173
|
-
notification_title:
|
172
|
+
email_intro: Ați fost menționat(ă)
|
173
|
+
email_outro: Ați primit această notificare deoarece ați fost menționat(ă) în %{resource_title}.
|
174
|
+
email_subject: Ați fost menționat(ă) în %{resource_title}
|
175
|
+
notification_title: Ați fost menționat(ă) în <a href="%{resource_path}">%{resource_title}</a> de către <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
174
176
|
metrics:
|
175
177
|
comments:
|
176
178
|
description: Numărul de comentarii generate de participanți
|
data/config/locales/sv.yml
CHANGED
@@ -24,6 +24,8 @@ sv:
|
|
24
24
|
enabled: Aktivera kommentarer
|
25
25
|
end_time: Kommentarer aktiverade till och med
|
26
26
|
start_time: Kommentarer aktiverade från och med
|
27
|
+
comment_thread:
|
28
|
+
accessibility_label: Kommentartråden startad av %{full_name} den %{date}
|
27
29
|
comments:
|
28
30
|
create:
|
29
31
|
error: Det gick inte att skapa kommentaren.
|
data/config/locales/tr-TR.yml
CHANGED
@@ -85,7 +85,7 @@ tr:
|
|
85
85
|
comment_by_followed_user_group:
|
86
86
|
email_intro: '%{author_name} grubu %{resource_title} alanında bir yorum bıraktı. Bu sayfada okuyabilirsiniz:'
|
87
87
|
email_outro: Bu bildirimi %{author_name} adlı yazarı takip ettiğiniz için aldınız. Bu grubu profil sayfasından takip etmeyi bırakabilirsiniz.
|
88
|
-
email_subject: '%{author_name}
|
88
|
+
email_subject: '%{author_name} %{resource_title} alanında yeni bir yorum yaptı'
|
89
89
|
notification_title: <a href="%{resource_path}">%{resource_title} </a> içinde <a href="%{author_path}">%{author_name} %{author_nickname} </a> tarafından yeni bir yorum var.
|
90
90
|
comment_created:
|
91
91
|
email_intro: "%{resource_title} alanında yorum yapıldı. Bu sayfadaki yorumu okuyabilirsiniz:"
|
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.29.
|
4
|
+
version: 0.29.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-
|
13
|
+
date: 2025-04-29 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.29.
|
21
|
+
version: 0.29.3
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.29.
|
28
|
+
version: 0.29.3
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: redcarpet
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,28 +52,28 @@ dependencies:
|
|
52
52
|
requirements:
|
53
53
|
- - '='
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 0.29.
|
55
|
+
version: 0.29.3
|
56
56
|
type: :development
|
57
57
|
prerelease: false
|
58
58
|
version_requirements: !ruby/object:Gem::Requirement
|
59
59
|
requirements:
|
60
60
|
- - '='
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.29.
|
62
|
+
version: 0.29.3
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
64
|
name: decidim-dev
|
65
65
|
requirement: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - '='
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.29.
|
69
|
+
version: 0.29.3
|
70
70
|
type: :development
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - '='
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 0.29.
|
76
|
+
version: 0.29.3
|
77
77
|
description: Pluggable comments system for some components.
|
78
78
|
email:
|
79
79
|
- josepjaume@gmail.com
|
@@ -175,6 +175,7 @@ files:
|
|
175
175
|
- config/locales/bg.yml
|
176
176
|
- config/locales/bn-BD.yml
|
177
177
|
- config/locales/bs-BA.yml
|
178
|
+
- config/locales/ca-IT.yml
|
178
179
|
- config/locales/ca.yml
|
179
180
|
- config/locales/cs-CZ.yml
|
180
181
|
- config/locales/cs.yml
|