decidim-comments 0.30.0.rc3 → 0.30.0

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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment_cell.rb +1 -0
  3. data/app/cells/decidim/comments/comment_thread/show.erb +1 -1
  4. data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +1 -1
  5. data/app/controllers/decidim/comments/comments_controller.rb +2 -1
  6. data/app/models/decidim/comments/comment.rb +1 -1
  7. data/config/locales/ar.yml +4 -0
  8. data/config/locales/bg.yml +4 -0
  9. data/config/locales/ca-IT.yml +211 -0
  10. data/config/locales/ca.yml +2 -0
  11. data/config/locales/de.yml +3 -1
  12. data/config/locales/el.yml +4 -0
  13. data/config/locales/en.yml +2 -0
  14. data/config/locales/es-MX.yml +2 -0
  15. data/config/locales/es-PY.yml +2 -0
  16. data/config/locales/es.yml +2 -0
  17. data/config/locales/eu.yml +2 -0
  18. data/config/locales/fr-CA.yml +6 -0
  19. data/config/locales/fr.yml +6 -0
  20. data/config/locales/ga-IE.yml +4 -0
  21. data/config/locales/gl.yml +4 -0
  22. data/config/locales/hu.yml +4 -0
  23. data/config/locales/id-ID.yml +4 -0
  24. data/config/locales/it.yml +4 -0
  25. data/config/locales/ja.yml +2 -0
  26. data/config/locales/lb.yml +4 -0
  27. data/config/locales/lt.yml +4 -0
  28. data/config/locales/lv.yml +4 -0
  29. data/config/locales/nl.yml +4 -0
  30. data/config/locales/no.yml +4 -0
  31. data/config/locales/pl.yml +4 -0
  32. data/config/locales/pt-BR.yml +4 -0
  33. data/config/locales/pt.yml +4 -0
  34. data/config/locales/ro-RO.yml +2 -0
  35. data/config/locales/ru.yml +4 -0
  36. data/config/locales/sk.yml +4 -0
  37. data/config/locales/sv.yml +2 -0
  38. data/config/locales/tr-TR.yml +4 -0
  39. data/config/locales/zh-CN.yml +4 -0
  40. data/config/locales/zh-TW.yml +4 -0
  41. data/lib/decidim/comments/version.rb +1 -1
  42. metadata +9 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a40358e7af749683564ddad6183b1865791e9160d8079abb5fb46cae9f9a2cca
4
- data.tar.gz: a788c92219b26b9938b722eb9cf74ddea3cdd305c3dc3e8ac14f60de35de9df3
3
+ metadata.gz: f3f261fa44f97aa2c81eb727232883bc118b141436e33765e92bb68df3ae626e
4
+ data.tar.gz: 68d45a2470e05a27b727bb738cb1df4f6b5158d0aa3b814e3efe4b0cb0ebf3fb
5
5
  SHA512:
6
- metadata.gz: c52ca14295aa00f70c2a0392e927fe07e901b71e77d693a7f64c9af80b86252615ec133edcaa240736295d9c7ba093b4b9f1e45700faa078b5bc2c50a0c8fe35
7
- data.tar.gz: 23ac4765dc828b86c69ef8ef94936d219b4682dec16a7baf0ede50f47930e29f9885d0fcc1ea55ad5271983395777b541ab0fa4dfd52ac2a98be1fec4b0ad6e0
6
+ metadata.gz: e043a900d4ee07f7a5115cfd14c2281a6720e1570d31632a62fbfb3c90de6e2f63edb47e69caf40a90473bc8707cdbca3ec4da270c1d93ae14af0d0c6de2b191
7
+ data.tar.gz: 18de4378a63e323757bb36bd3a6299ef39a76941ba1e127745e86600cbe47273fd8c09b635199a168a09f865ad1cf8b82a71988a8bb9d390be22c851bcc66ad7
@@ -125,6 +125,7 @@ module Decidim
125
125
 
126
126
  def can_reply?
127
127
  return false if two_columns_layout?
128
+ return false if model.depth >= Comment::MAX_DEPTH
128
129
  return true if current_participatory_space && user_has_any_role?(current_user, current_participatory_space)
129
130
 
130
131
  user_signed_in? && accepts_new_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:, top_comment: options[:top_comment]) %>
3
3
  </div>
@@ -11,7 +11,7 @@ module Decidim
11
11
  def cache_hash
12
12
  hash = []
13
13
  hash.push(I18n.locale)
14
- hash.push(model.id)
14
+ hash.push(model.cache_key_with_version)
15
15
  hash.push(current_user.try(:id))
16
16
  hash.join(Decidim.cache_key_separator)
17
17
  end
@@ -54,7 +54,8 @@ module Decidim
54
54
  params.merge(commentable: comment.commentable)
55
55
  ).with_context(
56
56
  current_user:,
57
- current_organization:
57
+ current_organization:,
58
+ current_component:
58
59
  )
59
60
 
60
61
  Decidim::Comments::UpdateComment.call(comment, form) do
@@ -145,7 +145,7 @@ module Decidim
145
145
  if root_commentable.respond_to?(:polymorphic_resource_url)
146
146
  root_commentable.polymorphic_resource_url(url_params)
147
147
  else
148
- ResourceLocatorPresenter.new(root_commentable).url(url_params)
148
+ root_commentable.reported_content_url(url_params)
149
149
  end
150
150
  end
151
151
 
@@ -25,6 +25,10 @@ ar:
25
25
  many: الأصوات
26
26
  other: الأصوات
27
27
  decidim:
28
+ admin:
29
+ admin_log:
30
+ changeset:
31
+ comments: تعليقات
28
32
  comments:
29
33
  admin:
30
34
  shared:
@@ -17,6 +17,10 @@ bg:
17
17
  one: Глас
18
18
  other: Гласове
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Коментари
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -0,0 +1,211 @@
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
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Comentaris
24
+ comments:
25
+ admin:
26
+ shared:
27
+ availability_fields:
28
+ enabled: Comentaris habilitats
29
+ end_time: Comentaris habilitats fins al
30
+ start_time: Comentaris habilitats des de
31
+ comment_thread:
32
+ accessibility_label: Fil de comentaris iniciat per %{full_name} el %{date}
33
+ comments:
34
+ create:
35
+ error: S'ha produït un error en crear el comentari.
36
+ delete:
37
+ error: El comentari no s'ha pogut eliminar.
38
+ update:
39
+ error: S'ha produït un error en actualitzar el comentari.
40
+ comments_title: Comentari
41
+ last_activity:
42
+ new_comment: 'Nou comentari:'
43
+ votes:
44
+ create:
45
+ error: S'ha produït un error en votar el comentari.
46
+ components:
47
+ add_comment_form:
48
+ account_message: Inicia sessió o crea un compte per afegir el teu comentari.
49
+ add_comment: Afegir un comentari
50
+ form:
51
+ body:
52
+ label: Comentari
53
+ placeholder: Què en penses d'això?
54
+ form_error: El text és necessari i no pot ser més llarg de %{length}.
55
+ submit_reply: Publicar resposta
56
+ submit_root_comment: Publicar comentari
57
+ user_group_id:
58
+ label: Comentar com a
59
+ your_profile: El teu perfil
60
+ opinion:
61
+ label: La teva opinió sobre aquest tema
62
+ negative: Negativa
63
+ negative_selected: La teva opinió sobre aquest tema és negativa
64
+ neutral: Neutral
65
+ neutral_selected: La teva opinió sobre aquest tema és neutral
66
+ positive: Positiva
67
+ positive_selected: La teva opinió sobre aquest tema és positiva
68
+ remaining_characters: "Queden %{count} caràcters"
69
+ remaining_characters_1: "Queda %{count} caràcter"
70
+ title: Deixa el teu comentari
71
+ comment:
72
+ alignment:
73
+ against: En contra
74
+ in_favor: A favor
75
+ answers:
76
+ one: "%{count} resposta"
77
+ other: "%{count} respuestas"
78
+ cancel_reply: Cancel·lar resposta
79
+ comment_label: Comentari %{comment_id}
80
+ comment_label_reply: Comentari %{comment_id} (respon al comentari %{parent_comment_id})
81
+ confirm_destroy: Segur que vols esborrar aquest comentari?
82
+ controls_label: Controls de comentaris
83
+ delete: Esborrar
84
+ deleted_at: Comentari esborrat el %{date}
85
+ deleted_user: Participant eliminada
86
+ edit: Editar
87
+ edited: Editat
88
+ hide_replies:
89
+ one: Amagar resposta
90
+ other: Amagar %{count} respostes
91
+ moderated_at: Comentari moderat el %{date}
92
+ reply: Respondre
93
+ report:
94
+ action: Denúncia
95
+ already_reported: Aquest contingut ja ha estat denunciat i serà revisat per una administradora.
96
+ close: Tancar
97
+ description: Aquest contingut és inapropiat?
98
+ details: Comentaris addicionals
99
+ reasons:
100
+ 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}.
101
+ offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort, peticions de suïcidi o qualsevol forma de discurs d'odi.
102
+ spam: Conté "clickbait", publicitat o estafes.
103
+ title: Notificar contingut inapropiat
104
+ show_replies:
105
+ one: Mostra la resposta
106
+ other: Mostra les %{count} respostes
107
+ single_comment_link_title: Obtenir enllaç
108
+ sort_by: 'Ordenar per: '
109
+ comment_order_selector:
110
+ order:
111
+ best_rated: Més ben valorats
112
+ most_discussed: Més discutit
113
+ older: Més antic
114
+ recent: Recent
115
+ title: 'Ordenar per:'
116
+ comments:
117
+ against: En contra
118
+ blocked_comments_for_unauthorized_user_warning: Has d'estar verificat abans de poder fer comentaris, però pots llegir els comentaris anteriors.
119
+ blocked_comments_for_user_warning: No pots fer comentaris en aquest moment, però pots llegir els anteriors.
120
+ blocked_comments_warning: Els comentaris estan deshabilitats en aquests moments, només les administradores poden respondre o publicar-ne de nous.
121
+ comment_details_title: Detalls del comentari
122
+ in_favor: A favor
123
+ loading: Carregant els comentaris ...
124
+ single_comment_warning: <a href="%{url}">Mostra tots els comentaris</a>
125
+ single_comment_warning_title: Estàs veient un sol comentari
126
+ title:
127
+ one: "%{count} comentari"
128
+ other: "%{count} comentaris"
129
+ top_comment_label: Més ben valorat
130
+ down_vote_button:
131
+ text: No estic d'acord amb aquest comentari
132
+ edit_comment_modal_form:
133
+ close: Tancar
134
+ form:
135
+ body:
136
+ label: Comentar
137
+ placeholder: Què opines sobre això?
138
+ submit: Enviar
139
+ title: Edita el teu comentari
140
+ up_vote_button:
141
+ text: Estic d'acord amb aquest comentari
142
+ download_your_data:
143
+ help:
144
+ comment_votes:
145
+ comment: La id del comentari que es va valorar
146
+ created_at: La data i l'hora en què es va valorar aquest comentari
147
+ id: La id de la valoració del comentari
148
+ updated_at: La data i l'hora de la darrera actualització de la valoració d'aquest comentari
149
+ weight: El pes de la valoració (1 a favor, -1 en contra)
150
+ comments:
151
+ alignment: Si aquest comentari va ser a favor, en contra o neutral
152
+ author: El nom d'usuària de la participant que va fer aquest comentari
153
+ body: El comentari pròpiament
154
+ commentable_id: L'identificador únic d'allò que es podia comentar
155
+ commentable_type: La tipologia d'allò sobre el que es va fer el comentari (si va ser un resultat, una proposta, etc.)
156
+ created_at: La data en què es va crear aquest comentari
157
+ depth: El lloc on es troba aquest comentari a la terna de comentaris (si és una resposta a un comentari, o la resposta d'una resposta)
158
+ id: L'identificador d'aquest comentari
159
+ locale: La configuració regional (idioma) que la participant tenia en deixar aquest comentari
160
+ root_commentable_url: L'URL (adreça web) del recurs que enllaça amb aquest comentari
161
+ user_group: El nom del grup d'usuàries que va fer aquest comentari (si n'hi ha)
162
+ events:
163
+ comments:
164
+ comment_by_followed_user:
165
+ email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
166
+ 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.
167
+ email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
168
+ 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>.
169
+ comment_by_followed_user_group:
170
+ email_intro: '%{author_name} ha deixat un comentari a%{resource_title}. Pots llegir-lo en aquesta pàgina:'
171
+ email_outro: Reps aquesta notificació perquè segueixes a "%{author_name}". Pots deixar de seguir aquest grup des de la seva pàgina de perfil.
172
+ email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
173
+ 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>.
174
+ comment_created:
175
+ email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
176
+ 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.
177
+ email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
178
+ 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>
179
+ comment_downvoted:
180
+ 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.
181
+ email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
182
+ email_subject: El teu comentari a "%{resource_title}" ha rebut un vot negatiu.
183
+ 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.
184
+ comment_upvoted:
185
+ 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.
186
+ email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
187
+ email_subject: El teu comentari a "%{resource_title}" ha rebut un vot positiu.
188
+ 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.
189
+ reply_created:
190
+ email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
191
+ email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
192
+ email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
193
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
194
+ user_group_mentioned:
195
+ email_intro: Un grup al qual pertanys ha estat esmentat
196
+ email_outro: Has rebut aquesta notificació perquè formes part del grup "%{group_name}" que ha estat esmentat a %{resource_title}.
197
+ email_subject: T'han esmentat a %{resource_title} com a membre de %{group_name}
198
+ 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>
199
+ user_mentioned:
200
+ email_intro: Has estat esmentada
201
+ email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
202
+ email_subject: Has estat esmentada a %{resource_title}
203
+ notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
204
+ metrics:
205
+ comments:
206
+ description: Nombre de comentaris generats per les participants
207
+ object: comentaris
208
+ title: Comentaris
209
+ errors:
210
+ messages:
211
+ cannot_have_comments: no es poden fer comentaris
@@ -28,6 +28,8 @@ ca:
28
28
  enabled: Comentaris habilitats
29
29
  end_time: Comentaris habilitats fins al
30
30
  start_time: Comentaris habilitats des de
31
+ comment_thread:
32
+ accessibility_label: Fil de comentaris iniciat per %{full_name} el %{date}
31
33
  comments:
32
34
  create:
33
35
  error: S'ha produït un error en crear el comentari.
@@ -20,7 +20,7 @@ de:
20
20
  admin:
21
21
  admin_log:
22
22
  changeset:
23
- comments: Kommentare
23
+ comments: Bemerkungen
24
24
  comments:
25
25
  admin:
26
26
  shared:
@@ -28,6 +28,8 @@ de:
28
28
  enabled: Kommentare aktiviert
29
29
  end_time: Kommentare aktiviert bis
30
30
  start_time: Kommentare aktiviert von
31
+ comment_thread:
32
+ accessibility_label: Kommentar-Thread gestartet von %{full_name} am %{date}
31
33
  comments:
32
34
  create:
33
35
  error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
@@ -17,6 +17,10 @@ el:
17
17
  one: Ψηφοφορία
18
18
  other: Ψήφοι
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Σχόλια
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -28,6 +28,8 @@ en:
28
28
  enabled: Comments enabled
29
29
  end_time: Comments enabled until
30
30
  start_time: Comments enabled from
31
+ comment_thread:
32
+ accessibility_label: Comment thread started by %{full_name} on %{date}
31
33
  comments:
32
34
  create:
33
35
  error: There was a problem creating the comment.
@@ -28,6 +28,8 @@ es-MX:
28
28
  enabled: Comentarios habilitados
29
29
  end_time: Comentarios habilitados hasta
30
30
  start_time: Comentarios habilitados desde
31
+ comment_thread:
32
+ accessibility_label: Hilo de comentario iniciado por %{full_name} el %{date}
31
33
  comments:
32
34
  create:
33
35
  error: Se ha producido un error al crear el comentario.
@@ -28,6 +28,8 @@ es-PY:
28
28
  enabled: Comentarios habilitados
29
29
  end_time: Comentarios habilitados hasta
30
30
  start_time: Comentarios habilitados desde
31
+ comment_thread:
32
+ accessibility_label: Hilo de comentario iniciado por %{full_name} el %{date}
31
33
  comments:
32
34
  create:
33
35
  error: Se ha producido un error al crear el comentario.
@@ -28,6 +28,8 @@ es:
28
28
  enabled: Comentarios habilitados
29
29
  end_time: Comentarios habilitados hasta
30
30
  start_time: Comentarios habilitados desde
31
+ comment_thread:
32
+ accessibility_label: Hilo de comentario iniciado por %{full_name} el %{date}
31
33
  comments:
32
34
  create:
33
35
  error: Se ha producido un error al crear el comentario.
@@ -28,6 +28,8 @@ eu:
28
28
  enabled: Iruzkinak gaituta
29
29
  end_time: Iruzkinak noiz arte gaituta
30
30
  start_time: Iruzkinak noiztik aktibatuta
31
+ comment_thread:
32
+ accessibility_label: '%{full_name} -k %{date} -(e)an hasitako iruzkin-haria'
31
33
  comments:
32
34
  create:
33
35
  error: Arazo bat egon da iruzkina sortzean.
@@ -17,6 +17,10 @@ fr-CA:
17
17
  one: Vote
18
18
  other: Votes
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: commentaires
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -24,6 +28,8 @@ fr-CA:
24
28
  enabled: Commentaires activés
25
29
  end_time: Commentaires activés jusqu'à
26
30
  start_time: Commentaires activés depuis
31
+ comment_thread:
32
+ accessibility_label: Fil de commentaires démarré par %{full_name} le %{date}
27
33
  comments:
28
34
  create:
29
35
  error: Une erreur s'est produite lors de la création du commentaire.
@@ -17,6 +17,10 @@ fr:
17
17
  one: Vote
18
18
  other: Votes
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: commentaires
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -24,6 +28,8 @@ fr:
24
28
  enabled: Commentaires activés
25
29
  end_time: Commentaires activés jusqu'à
26
30
  start_time: Commentaires activés depuis
31
+ comment_thread:
32
+ accessibility_label: Fil de commentaires démarré par %{full_name} le %{date}
27
33
  comments:
28
34
  create:
29
35
  error: Une erreur s'est produite lors de la création du commentaire.
@@ -15,6 +15,10 @@ ga:
15
15
  many: Vótaí
16
16
  other: Vótaí
17
17
  decidim:
18
+ admin:
19
+ admin_log:
20
+ changeset:
21
+ comments: Tráchtanna
18
22
  components:
19
23
  add_comment_form:
20
24
  form:
@@ -16,6 +16,10 @@ gl:
16
16
  one: Vota
17
17
  other: Votos
18
18
  decidim:
19
+ admin:
20
+ admin_log:
21
+ changeset:
22
+ comments: Comentarios
19
23
  comments:
20
24
  admin:
21
25
  shared:
@@ -17,6 +17,10 @@ hu:
17
17
  one: Szavazat
18
18
  other: Szavazatok
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Hozzászólások
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -14,6 +14,10 @@ id:
14
14
  decidim/comments/comment_vote:
15
15
  other: Voting
16
16
  decidim:
17
+ admin:
18
+ admin_log:
19
+ changeset:
20
+ comments: Komentar
17
21
  comments:
18
22
  votes:
19
23
  create:
@@ -16,6 +16,10 @@ it:
16
16
  one: Votazione
17
17
  other: voti
18
18
  decidim:
19
+ admin:
20
+ admin_log:
21
+ changeset:
22
+ comments: Commenti
19
23
  comments:
20
24
  admin:
21
25
  shared:
@@ -26,6 +26,8 @@ ja:
26
26
  enabled: コメントを有効にする
27
27
  end_time: 次の時点までのコメントを有効にする
28
28
  start_time: 次の時点からコメントを有効にする
29
+ comment_thread:
30
+ accessibility_label: '%{full_name} が %{date} に開始したコメントスレッド'
29
31
  comments:
30
32
  create:
31
33
  error: コメントの登録に問題がありました。
@@ -16,6 +16,10 @@ lb:
16
16
  one: Abstimmung
17
17
  other: Stimmen
18
18
  decidim:
19
+ admin:
20
+ admin_log:
21
+ changeset:
22
+ comments: Bemerkungen
19
23
  comments:
20
24
  comments:
21
25
  create:
@@ -21,6 +21,10 @@ lt:
21
21
  many: Balsai
22
22
  other: Balsai
23
23
  decidim:
24
+ admin:
25
+ admin_log:
26
+ changeset:
27
+ comments: Komentarai
24
28
  comments:
25
29
  admin:
26
30
  shared:
@@ -18,6 +18,10 @@ lv:
18
18
  one: Balsot
19
19
  other: Balsis
20
20
  decidim:
21
+ admin:
22
+ admin_log:
23
+ changeset:
24
+ comments: Komentāri
21
25
  comments:
22
26
  votes:
23
27
  create:
@@ -17,6 +17,10 @@ nl:
17
17
  one: Stem
18
18
  other: Stemmen
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Reacties
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -16,6 +16,10 @@
16
16
  one: Stemme
17
17
  other: Stemmer
18
18
  decidim:
19
+ admin:
20
+ admin_log:
21
+ changeset:
22
+ comments: Kommentarer
19
23
  comments:
20
24
  admin:
21
25
  shared:
@@ -21,6 +21,10 @@ pl:
21
21
  many: Głosy
22
22
  other: Głosy
23
23
  decidim:
24
+ admin:
25
+ admin_log:
26
+ changeset:
27
+ comments: Komentarze
24
28
  comments:
25
29
  admin:
26
30
  shared:
@@ -17,6 +17,10 @@ pt-BR:
17
17
  one: Voto
18
18
  other: Votos
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Comentários
20
24
  comments:
21
25
  comments:
22
26
  create:
@@ -16,6 +16,10 @@ pt:
16
16
  one: Voto
17
17
  other: Votos
18
18
  decidim:
19
+ admin:
20
+ admin_log:
21
+ changeset:
22
+ comments: Comentários
19
23
  comments:
20
24
  admin:
21
25
  shared:
@@ -30,6 +30,8 @@ ro:
30
30
  enabled: Comentarii activate
31
31
  end_time: Comentarii activate până la
32
32
  start_time: Comentarii activate de la
33
+ comment_thread:
34
+ accessibility_label: Comentariile au fost inițiate de %{full_name} începând cu %{date}
33
35
  comments:
34
36
  create:
35
37
  error: A apărut o problemă la crearea comentariului.
@@ -20,6 +20,10 @@ ru:
20
20
  many: Голосов
21
21
  other: Голосов
22
22
  decidim:
23
+ admin:
24
+ admin_log:
25
+ changeset:
26
+ comments: Комментарии
23
27
  comments:
24
28
  votes:
25
29
  create:
@@ -20,6 +20,10 @@ sk:
20
20
  many: Hlasy
21
21
  other: Hlasy
22
22
  decidim:
23
+ admin:
24
+ admin_log:
25
+ changeset:
26
+ comments: Komentáre
23
27
  comments:
24
28
  votes:
25
29
  create:
@@ -28,6 +28,8 @@ sv:
28
28
  enabled: Aktivera kommentarer
29
29
  end_time: Kommentarer aktiverade till och med
30
30
  start_time: Kommentarer aktiverade från och med
31
+ comment_thread:
32
+ accessibility_label: Kommentartråden startad av %{full_name} den %{date}
31
33
  comments:
32
34
  create:
33
35
  error: Det gick inte att skapa kommentaren.
@@ -16,6 +16,10 @@ tr:
16
16
  one: Oy ver
17
17
  other: oy
18
18
  decidim:
19
+ admin:
20
+ admin_log:
21
+ changeset:
22
+ comments: Yorumlar
19
23
  comments:
20
24
  comments:
21
25
  create:
@@ -14,6 +14,10 @@ zh-CN:
14
14
  decidim/comments/comment_vote:
15
15
  other: 所得票数
16
16
  decidim:
17
+ admin:
18
+ admin_log:
19
+ changeset:
20
+ comments: 评论
17
21
  comments:
18
22
  votes:
19
23
  create:
@@ -15,6 +15,10 @@ zh-TW:
15
15
  decidim/comments/comment_vote:
16
16
  other: 投票
17
17
  decidim:
18
+ admin:
19
+ admin_log:
20
+ changeset:
21
+ comments: 評論
18
22
  comments:
19
23
  admin:
20
24
  shared:
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-comments version.
5
5
  module Comments
6
6
  def self.version
7
- "0.30.0.rc3"
7
+ "0.30.0"
8
8
  end
9
9
  end
10
10
  end
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.30.0.rc3
4
+ version: 0.30.0
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-03-19 00:00:00.000000000 Z
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.30.0.rc3
21
+ version: 0.30.0
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.30.0.rc3
28
+ version: 0.30.0
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.30.0.rc3
55
+ version: 0.30.0
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.30.0.rc3
62
+ version: 0.30.0
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.30.0.rc3
69
+ version: 0.30.0
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.30.0.rc3
76
+ version: 0.30.0
77
77
  description: Pluggable comments system for some components.
78
78
  email:
79
79
  - josepjaume@gmail.com
@@ -181,6 +181,7 @@ files:
181
181
  - config/locales/bg.yml
182
182
  - config/locales/bn-BD.yml
183
183
  - config/locales/bs-BA.yml
184
+ - config/locales/ca-IT.yml
184
185
  - config/locales/ca.yml
185
186
  - config/locales/cs-CZ.yml
186
187
  - config/locales/cs.yml