decidim-comments 0.30.0.rc2 → 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 (45) 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/comments/order_control.erb +1 -0
  5. data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +1 -1
  6. data/app/controllers/decidim/comments/comments_controller.rb +2 -1
  7. data/app/models/decidim/comments/comment.rb +1 -1
  8. data/app/packs/stylesheets/comments.scss +1 -1
  9. data/config/locales/ar.yml +4 -0
  10. data/config/locales/bg.yml +4 -0
  11. data/config/locales/ca-IT.yml +211 -0
  12. data/config/locales/ca.yml +2 -0
  13. data/config/locales/de.yml +3 -1
  14. data/config/locales/el.yml +4 -0
  15. data/config/locales/en.yml +2 -0
  16. data/config/locales/es-MX.yml +2 -0
  17. data/config/locales/es-PY.yml +2 -0
  18. data/config/locales/es.yml +2 -0
  19. data/config/locales/eu.yml +13 -11
  20. data/config/locales/fi.yml +1 -1
  21. data/config/locales/fr-CA.yml +10 -0
  22. data/config/locales/fr.yml +10 -0
  23. data/config/locales/ga-IE.yml +4 -0
  24. data/config/locales/gl.yml +4 -0
  25. data/config/locales/hu.yml +4 -0
  26. data/config/locales/id-ID.yml +4 -0
  27. data/config/locales/it.yml +4 -0
  28. data/config/locales/ja.yml +2 -0
  29. data/config/locales/lb.yml +4 -0
  30. data/config/locales/lt.yml +5 -1
  31. data/config/locales/lv.yml +4 -0
  32. data/config/locales/nl.yml +4 -0
  33. data/config/locales/no.yml +4 -0
  34. data/config/locales/pl.yml +5 -1
  35. data/config/locales/pt-BR.yml +4 -0
  36. data/config/locales/pt.yml +4 -0
  37. data/config/locales/ro-RO.yml +2 -0
  38. data/config/locales/ru.yml +4 -0
  39. data/config/locales/sk.yml +4 -0
  40. data/config/locales/sv.yml +2 -0
  41. data/config/locales/tr-TR.yml +5 -1
  42. data/config/locales/zh-CN.yml +4 -0
  43. data/config/locales/zh-TW.yml +4 -0
  44. data/lib/decidim/comments/version.rb +1 -1
  45. metadata +9 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb40996252f4e4cb64d027138674787502b34a18c405d184ca558e186e8bbe7c
4
- data.tar.gz: 2db190655973980f5f19dc7bd86f6a851233f5576000e477ebefc5236047021f
3
+ metadata.gz: f3f261fa44f97aa2c81eb727232883bc118b141436e33765e92bb68df3ae626e
4
+ data.tar.gz: 68d45a2470e05a27b727bb738cb1df4f6b5158d0aa3b814e3efe4b0cb0ebf3fb
5
5
  SHA512:
6
- metadata.gz: 431b90cf74ee88738a6ec9a75cea2fbcdfc0b8e493d6a3102ea41a9b54a7afd1ee475d56cf0ce7e283e8e67f2d47e93a62df664be23d1d9399d5eee2a36c7f32
7
- data.tar.gz: 3e7c59e8c7babe67931e32a9ba5f9b2683dd72ae9de2f4fb9c01d58bd48761d0ea80f61a0ff70071e4e2a15402bd502da4dc5db123a2c7d64a347393c83500ec
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>
@@ -16,6 +16,7 @@
16
16
  <% end %>
17
17
  </select>
18
18
  </div>
19
+ <% order = "older" if order.nil? %>
19
20
  <div class="hidden md:block">
20
21
  <label for="order" class="comments-label-dropdown"><%= t("decidim.components.comment.sort_by") %></label>
21
22
  <select id="order" aria-label="<%= t("decidim.components.comment.sort_by") %>" data-desktop-order-comment-select="true">
@@ -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
 
@@ -466,7 +466,7 @@
466
466
  }
467
467
 
468
468
  .publish-comment-button {
469
- @apply md:relative fixed inset-x-0 bottom-0 z-30 md:z-0 flex flex-row items-center md:items-end md:justify-end font-semibold justify-around bg-white md:bg-transparent gap-4 md:gap-0 p-4 md:p-0 shadow-inner md:shadow-none first:[&>*]:grow md:first:[&>*]:grow-0 h-14 md:h-fit first:[&>button]:py-3;
469
+ @apply ml-auto md:relative fixed inset-x-0 bottom-0 z-30 md:z-0 flex flex-row items-center md:items-end md:justify-end font-semibold justify-around bg-white md:bg-transparent gap-4 md:gap-0 p-4 md:p-0 shadow-inner md:shadow-none first:[&>*]:grow md:first:[&>*]:grow-0 h-14 md:h-fit first:[&>button]:py-3;
470
470
  }
471
471
 
472
472
  .fullscreen {
@@ -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.
@@ -119,7 +121,7 @@ eu:
119
121
  comment_details_title: Iruzkinaren xehetasunak
120
122
  in_favor: Alde
121
123
  loading: Iruzkinak kargatzen...
122
- single_comment_warning: <a href="%{url}">k erakusten ditu iruzkin guztiak</a>
124
+ single_comment_warning: <a href="%{url}"> iruzkin guztiak ikusgai </a>
123
125
  single_comment_warning_title: Iruzkin bakar bat ikusten ari zara
124
126
  title:
125
127
  one: "Iruzkin bat"
@@ -163,17 +165,17 @@ eu:
163
165
  email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
164
166
  email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
165
167
  email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
166
- 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.'
168
+ 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>.'
167
169
  comment_by_followed_user_group:
168
- email_intro: '%{author_name} k iruzkin bat utzi du hemen %{resource_title}. Orrialde honetan irakur dezakezu:'
170
+ email_intro: '%{author_name} taldeak iruzkin bat utzi du hemen: %{resource_title}. Orrialde honetan irakur dezakezu:'
169
171
  email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
170
- email_subject: '%{author_name} egileak iruzkin berri bat utzi du hemen: %{resource_title}'
171
- 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.'
172
+ email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
173
+ 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>.'
172
174
  comment_created:
173
- email_intro: "%{resource_title} iruzkindu da. Orri honetan irakur dezakezu iruzkina:"
175
+ email_intro: "Norbaitek iruzkin bat egin du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
174
176
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
175
177
  email_subject: '%{author_name} egileak beste iruzkin berri bat egin du hemen: %{resource_title}'
176
- 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>'
178
+ 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>'
177
179
  comment_downvoted:
178
180
  email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} babes positibo eta %{downvotes} boto negatibo dituzu guztira.
179
181
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
@@ -186,14 +188,14 @@ eu:
186
188
  notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an norbaiten gustukoa izan da. Orain guztira %{upvotes} atsegin eta %{downvotes} ezatsegin dituzu.
187
189
  reply_created:
188
190
  email_intro: "%{author_name} egileak zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
189
- email_outro: Jakinarazpen hau jaso duzu zure iruzkina erantzun delako.
190
- email_subject: "%{author_name} k zure iruzkina erantzun du hemen: %{resource_title}"
191
+ email_outro: Jakinarazpen hau jaso duzu zure iruzkinak erantzuna izan duelako.
192
+ email_subject: "%{author_name} parte-hartzaileak zure iruzkina erantzun du hemen: %{resource_title}"
191
193
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio hemen <a href="%{resource_path}">%{resource_title}</a>
192
194
  user_group_mentioned:
193
195
  email_intro: Zure talde bat aipatu dute
194
196
  email_outro: '%{resource_title}-an aipatutako %{group_name} taldeko kidea zarelako jaso duzu jakinarazpen hau.'
195
- email_subject: Hemen %{resource_title} aipatu zaituzte %{group_name} taldearen kide gisa
196
- 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
197
+ email_subject: Hemen %{resource_title} aipatu zaituzte %{group_name} taldeko kide gisa
198
+ 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
197
199
  user_mentioned:
198
200
  email_intro: Aipatu zaituzte
199
201
  email_outro: 'Jakinarazpen hau jaso duzu hemen: %{resource_title} aipatu zaituztelako.'
@@ -98,7 +98,7 @@ fi:
98
98
  does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan %{organization_name} -palveluun.
99
99
  offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
100
100
  spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
101
- title: Ilmoita asiatonta sisältöä
101
+ title: Ilmoita epäasiallista sisältöä
102
102
  show_replies:
103
103
  one: Näytä vastaus
104
104
  other: Näytä %{count} vastausta
@@ -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.
@@ -130,6 +136,10 @@ fr-CA:
130
136
  title: Modifier votre commentaire
131
137
  up_vote_button:
132
138
  text: Je suis d'accord avec ce commentaire
139
+ download_your_data:
140
+ help:
141
+ comments:
142
+ user_group: Le nom du groupe d'utilisateurs qui a fait ce commentaire (le cas échéant)
133
143
  events:
134
144
  comments:
135
145
  comment_by_followed_user:
@@ -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.
@@ -130,6 +136,10 @@ fr:
130
136
  title: Modifier votre commentaire
131
137
  up_vote_button:
132
138
  text: Je suis d'accord avec ce commentaire
139
+ download_your_data:
140
+ help:
141
+ comments:
142
+ user_group: Le nom du groupe d'utilisateurs qui a fait ce commentaire (le cas échéant)
133
143
  events:
134
144
  comments:
135
145
  comment_by_followed_user:
@@ -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:
@@ -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: Paminėjimas
9
+ decidim/comments/user_group_mentioned_event: Paminėti
10
10
  decidim/comments/user_mentioned_event: Paminėti
11
11
  activerecord:
12
12
  models:
@@ -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:
@@ -138,7 +142,7 @@ pl:
138
142
  email_intro: 'Grupa %{author_name} dodała komentarz do %{resource_title}. Możesz go przeczytać na tej stronie:'
139
143
  email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz %{author_name}. Możesz przestać obserwować tę grupę z poziomu jej strony profilowej.
140
144
  email_subject: Jest nowy komentarz dodany przez %{author_name} do %{resource_title}
141
- notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>.
145
+ 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>.
142
146
  comment_created:
143
147
  email_intro: "Nowy komentarz: %{resource_title}. Możesz go przeczytać na tej stronie:"
144
148
  email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować po kliknięciu w poprzedni link.
@@ -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:
@@ -84,7 +88,7 @@ tr:
84
88
  comment_by_followed_user_group:
85
89
  email_intro: '%{author_name} grubu %{resource_title} alanında bir yorum bıraktı. Bu sayfada okuyabilirsiniz:'
86
90
  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.
87
- email_subject: '%{author_name}, %{resource_title} alanında yeni bir yorum yaptı'
91
+ email_subject: '%{author_name} %{resource_title} alanında yeni bir yorum yaptı'
88
92
  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.
89
93
  comment_created:
90
94
  email_intro: "%{resource_title} alanında yorum yapıldı. Bu sayfadaki yorumu okuyabilirsiniz:"
@@ -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.rc2"
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.rc2
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-03 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.rc2
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.rc2
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.rc2
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.rc2
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.rc2
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.rc2
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