decidim-comments 0.30.1 → 0.31.0.rc1

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 (89) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment/deletion_data.erb +1 -1
  3. data/app/cells/decidim/comments/comment/show.erb +12 -12
  4. data/app/cells/decidim/comments/comment/votes.erb +4 -4
  5. data/app/cells/decidim/comments/comment_cell.rb +1 -3
  6. data/app/cells/decidim/comments/comment_form/comment_as.erb +5 -24
  7. data/app/cells/decidim/comments/comment_form/opinion.erb +3 -3
  8. data/app/cells/decidim/comments/comment_form/show.erb +3 -3
  9. data/app/cells/decidim/comments/comment_form_cell.rb +5 -20
  10. data/app/cells/decidim/comments/comments/order_control.erb +1 -1
  11. data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +2 -2
  12. data/app/commands/decidim/comments/create_comment.rb +3 -5
  13. data/app/events/decidim/comments/comment_event.rb +3 -10
  14. data/app/forms/decidim/comments/comment_form.rb +0 -1
  15. data/app/models/decidim/comments/comment.rb +2 -2
  16. data/app/models/decidim/comments/seed.rb +4 -16
  17. data/app/packs/src/decidim/comments/comments.component.js +0 -7
  18. data/app/packs/src/decidim/comments/comments.component.test.js +4 -16
  19. data/app/packs/src/decidim/comments/comments.js +1 -1
  20. data/app/packs/src/decidim/comments/comments_mobile_modal.js +1 -1
  21. data/app/packs/stylesheets/comments.scss +2 -6
  22. data/app/queries/decidim/comments/sorted_comments.rb +1 -1
  23. data/app/services/decidim/comments/new_comment_notification_creator.rb +2 -27
  24. data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +1 -1
  25. data/app/views/decidim/comments/comments/delete.js.erb +4 -2
  26. data/app/views/decidim/comments/comments/reload.js.erb +0 -1
  27. data/app/views/decidim/comments/comments/update.js.erb +3 -1
  28. data/app/views/decidim/comments/votes/create.js.erb +26 -7
  29. data/config/assets.rb +2 -2
  30. data/config/locales/ar.yml +0 -18
  31. data/config/locales/bg.yml +0 -18
  32. data/config/locales/bs-BA.yml +0 -8
  33. data/config/locales/ca-IT.yml +6 -20
  34. data/config/locales/ca.yml +6 -20
  35. data/config/locales/cs.yml +0 -20
  36. data/config/locales/de.yml +6 -20
  37. data/config/locales/el.yml +0 -18
  38. data/config/locales/en.yml +6 -20
  39. data/config/locales/es-MX.yml +6 -20
  40. data/config/locales/es-PY.yml +6 -20
  41. data/config/locales/es.yml +6 -20
  42. data/config/locales/eu.yml +6 -20
  43. data/config/locales/fi-plain.yml +8 -20
  44. data/config/locales/fi.yml +8 -20
  45. data/config/locales/fr-CA.yml +6 -23
  46. data/config/locales/fr.yml +6 -23
  47. data/config/locales/ga-IE.yml +0 -5
  48. data/config/locales/gl.yml +0 -11
  49. data/config/locales/hu.yml +0 -18
  50. data/config/locales/id-ID.yml +0 -11
  51. data/config/locales/is-IS.yml +0 -5
  52. data/config/locales/it.yml +0 -18
  53. data/config/locales/ja.yml +4 -20
  54. data/config/locales/lb.yml +0 -18
  55. data/config/locales/lt.yml +0 -18
  56. data/config/locales/lv.yml +0 -18
  57. data/config/locales/nl.yml +0 -18
  58. data/config/locales/no.yml +0 -18
  59. data/config/locales/pl.yml +0 -18
  60. data/config/locales/pt-BR.yml +0 -18
  61. data/config/locales/pt.yml +0 -18
  62. data/config/locales/ro-RO.yml +0 -20
  63. data/config/locales/ru.yml +0 -11
  64. data/config/locales/si-LK.yml +0 -2
  65. data/config/locales/sk.yml +0 -18
  66. data/config/locales/sq-AL.yml +0 -2
  67. data/config/locales/sr-CS.yml +0 -9
  68. data/config/locales/sv.yml +0 -20
  69. data/config/locales/tr-TR.yml +0 -18
  70. data/config/locales/uk.yml +0 -6
  71. data/config/locales/zh-CN.yml +0 -18
  72. data/config/locales/zh-TW.yml +0 -18
  73. data/db/migrate/20181003080320_fix_user_groups_ids_in_comments.rb +8 -1
  74. data/lib/decidim/api/comment_type.rb +1 -4
  75. data/lib/decidim/api/commentable_interface.rb +7 -13
  76. data/lib/decidim/api/commentable_mutation_type.rb +2 -3
  77. data/lib/decidim/comments/comment_serializer.rb +0 -4
  78. data/lib/decidim/comments/comment_vote_serializer.rb +0 -4
  79. data/lib/decidim/comments/commentable.rb +4 -0
  80. data/lib/decidim/comments/engine.rb +6 -20
  81. data/lib/decidim/comments/test/factories.rb +1 -1
  82. data/lib/decidim/comments/test/shared_examples/comment_event.rb +1 -10
  83. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +0 -2
  84. data/lib/decidim/comments/version.rb +1 -1
  85. metadata +8 -12
  86. data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +0 -9
  87. data/app/events/decidim/comments/user_group_mentioned_event.rb +0 -10
  88. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +0 -50
  89. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +0 -97
@@ -6,7 +6,6 @@ en:
6
6
  decidim/comments/comment_created_event: Comment
7
7
  decidim/comments/comment_upvoted_event: Comment upvoted
8
8
  decidim/comments/reply_created_event: Comment reply
9
- decidim/comments/user_group_mentioned_event: Mention
10
9
  decidim/comments/user_mentioned_event: Mention
11
10
  activerecord:
12
11
  models:
@@ -54,9 +53,6 @@ en:
54
53
  form_error: The text is required and it cannot be longer than %{length} characters.
55
54
  submit_reply: Publish reply
56
55
  submit_root_comment: Publish comment
57
- user_group_id:
58
- label: Comment as
59
- your_profile: Your profile
60
56
  opinion:
61
57
  label: Your opinion about this topic
62
58
  negative: Negative
@@ -128,6 +124,9 @@ en:
128
124
  other: "%{count} comments"
129
125
  top_comment_label: Most upvoted
130
126
  down_vote_button:
127
+ label:
128
+ one: Dislike button. %{count} dislike
129
+ other: Dislike button. %{count} dislikes
131
130
  text: I disagree with this comment
132
131
  edit_comment_modal_form:
133
132
  close: Close
@@ -138,6 +137,9 @@ en:
138
137
  submit: Send
139
138
  title: Edit your comment
140
139
  up_vote_button:
140
+ label:
141
+ one: Like button. %{count} like
142
+ other: Like button. %{count} likes
141
143
  text: I agree with this comment
142
144
  download_your_data:
143
145
  help:
@@ -158,7 +160,6 @@ en:
158
160
  id: The id for this comment
159
161
  locale: The locale (language) that the participant had when leaving this comment
160
162
  root_commentable_url: The URL of the resource that ties to this comment
161
- user_group: The name of the user group that made this comment (if any)
162
163
  events:
163
164
  comments:
164
165
  comment_by_followed_user:
@@ -166,11 +167,6 @@ en:
166
167
  email_outro: You have received this notification because you are following %{author_name}. You can unfollow this user from their profile page.
167
168
  email_subject: There is a new comment by %{author_name} in %{resource_title}
168
169
  notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
169
- comment_by_followed_user_group:
170
- email_intro: 'The group %{author_name} has left a comment in %{resource_title}. You can read it in this page:'
171
- email_outro: You have received this notification because you are following %{author_name}. You can unfollow this group from its profile page.
172
- email_subject: There is a new comment by %{author_name} in %{resource_title}
173
- notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
174
170
  comment_created:
175
171
  email_intro: "%{resource_title} has been commented. You can read the comment in this page:"
176
172
  email_outro: You have received this notification because you are following "%{resource_title}" or its author. You can unfollow it from the previous link.
@@ -191,21 +187,11 @@ en:
191
187
  email_outro: You have received this notification because your comment was replied.
192
188
  email_subject: "%{author_name} has replied your comment in %{resource_title}"
193
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
194
- user_group_mentioned:
195
- email_intro: A group you belong to has been mentioned
196
- email_outro: You have received this notification because you are a member of the group %{group_name} that has been mentioned in %{resource_title}.
197
- email_subject: You have been mentioned in %{resource_title} as a member of %{group_name}
198
- notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a> as a member of <a href="%{group_path}">%{group_name} %{group_nickname}</a>
199
190
  user_mentioned:
200
191
  email_intro: You have been mentioned
201
192
  email_outro: You have received this notification because you have been mentioned in %{resource_title}.
202
193
  email_subject: You have been mentioned in %{resource_title}
203
194
  notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a>
204
- metrics:
205
- comments:
206
- description: Number of comments generated by participants
207
- object: comments
208
- title: Comments
209
195
  errors:
210
196
  messages:
211
197
  cannot_have_comments: cannot have comments
@@ -6,7 +6,6 @@ es-MX:
6
6
  decidim/comments/comment_created_event: Comentario
7
7
  decidim/comments/comment_upvoted_event: Comentario valorado positivamente
8
8
  decidim/comments/reply_created_event: Respuesta al comentario
9
- decidim/comments/user_group_mentioned_event: Mencionar
10
9
  decidim/comments/user_mentioned_event: Mencionar
11
10
  activerecord:
12
11
  models:
@@ -54,9 +53,6 @@ es-MX:
54
53
  form_error: El texto es necesario y no puede ser más largo de %{length}.
55
54
  submit_reply: Publicar respuesta
56
55
  submit_root_comment: Publicar comentario
57
- user_group_id:
58
- label: Comentar como
59
- your_profile: Tu perfil
60
56
  opinion:
61
57
  label: Tu opinión sobre este tema
62
58
  negative: Negativa
@@ -128,6 +124,9 @@ es-MX:
128
124
  other: "%{count} comentarios"
129
125
  top_comment_label: Mejor valorado
130
126
  down_vote_button:
127
+ label:
128
+ one: Botón "No me gusta". %{count} "no me gusta"
129
+ other: Botón "No me gusta". %{count} "no me gusta"
131
130
  text: No estoy de acuerdo con este comentario
132
131
  edit_comment_modal_form:
133
132
  close: Cerrar
@@ -138,6 +137,9 @@ es-MX:
138
137
  submit: Enviar
139
138
  title: Edita tu comentario
140
139
  up_vote_button:
140
+ label:
141
+ one: Botón "Me gusta". %{count} "me gusta"
142
+ other: Botón "Me gusta". %{count} "me gusta"
141
143
  text: Estoy de acuerdo con este comentario
142
144
  download_your_data:
143
145
  help:
@@ -158,7 +160,6 @@ es-MX:
158
160
  id: El identificador de este comentario
159
161
  locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
160
162
  root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
161
- user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
162
163
  events:
163
164
  comments:
164
165
  comment_by_followed_user:
@@ -166,11 +167,6 @@ es-MX:
166
167
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
167
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
168
169
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
169
- comment_by_followed_user_group:
170
- email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puede leerlo en esta página:'
171
- email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo des de su página de perfil.
172
- email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
173
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
174
170
  comment_created:
175
171
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
176
172
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
@@ -191,21 +187,11 @@ es-MX:
191
187
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
192
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
193
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
194
- user_group_mentioned:
195
- email_intro: Se ha mencionado un grupo al que perteneces
196
- email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
197
- email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
198
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> te ha mencionado en <a href="%{resource_path}">%{resource_title}</a> como miembro de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
199
190
  user_mentioned:
200
191
  email_intro: Has sido mencionado
201
192
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
202
193
  email_subject: Has sido mencionado en %{resource_title}
203
194
  notification_title: Has sido mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
204
- metrics:
205
- comments:
206
- description: Número de comentarios generados por los usuarios
207
- object: comentarios
208
- title: Comentarios
209
195
  errors:
210
196
  messages:
211
197
  cannot_have_comments: no se pueden hacer comentarios
@@ -6,7 +6,6 @@ es-PY:
6
6
  decidim/comments/comment_created_event: Comentario
7
7
  decidim/comments/comment_upvoted_event: Comentario valorado positivamente
8
8
  decidim/comments/reply_created_event: Respuesta al comentario
9
- decidim/comments/user_group_mentioned_event: Mencionar
10
9
  decidim/comments/user_mentioned_event: Mencionar
11
10
  activerecord:
12
11
  models:
@@ -54,9 +53,6 @@ es-PY:
54
53
  form_error: El texto es necesario y no puede ser más largo de %{length}.
55
54
  submit_reply: Publicar respuesta
56
55
  submit_root_comment: Publicar comentario
57
- user_group_id:
58
- label: Comentar como
59
- your_profile: Tu perfil
60
56
  opinion:
61
57
  label: Tu opinión sobre este tema
62
58
  negative: Negativa
@@ -128,6 +124,9 @@ es-PY:
128
124
  other: "%{count} comentarios"
129
125
  top_comment_label: Mejor valorado
130
126
  down_vote_button:
127
+ label:
128
+ one: Botón "No me gusta". %{count} "no me gusta"
129
+ other: Botón "No me gusta". %{count} "no me gusta"
131
130
  text: No estoy de acuerdo con este comentario
132
131
  edit_comment_modal_form:
133
132
  close: Cerrar
@@ -138,6 +137,9 @@ es-PY:
138
137
  submit: Enviar
139
138
  title: Edita tu comentario
140
139
  up_vote_button:
140
+ label:
141
+ one: Botón "Me gusta". %{count} "me gusta"
142
+ other: Botón "Me gusta". %{count} "me gusta"
141
143
  text: Estoy de acuerdo con este comentario
142
144
  download_your_data:
143
145
  help:
@@ -158,7 +160,6 @@ es-PY:
158
160
  id: El identificador de este comentario
159
161
  locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
160
162
  root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
161
- user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
162
163
  events:
163
164
  comments:
164
165
  comment_by_followed_user:
@@ -166,11 +167,6 @@ es-PY:
166
167
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
167
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
168
169
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
169
- comment_by_followed_user_group:
170
- email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puede leerlo en esta página:'
171
- email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo des de su página de perfil.
172
- email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
173
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
174
170
  comment_created:
175
171
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
176
172
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
@@ -191,21 +187,11 @@ es-PY:
191
187
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
192
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
193
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
194
- user_group_mentioned:
195
- email_intro: Se ha mencionado un grupo al que perteneces
196
- email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
197
- email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
198
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> te ha mencionado en <a href="%{resource_path}">%{resource_title}</a> como miembro de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
199
190
  user_mentioned:
200
191
  email_intro: Has sido mencionado
201
192
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
202
193
  email_subject: Has sido mencionado en %{resource_title}
203
194
  notification_title: Has sido mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
204
- metrics:
205
- comments:
206
- description: Número de comentarios generados por los usuarios.
207
- object: comentarios
208
- title: Comentarios
209
195
  errors:
210
196
  messages:
211
197
  cannot_have_comments: no se pueden hacer comentarios
@@ -6,7 +6,6 @@ es:
6
6
  decidim/comments/comment_created_event: Comentario
7
7
  decidim/comments/comment_upvoted_event: Comentario valorado positivamente
8
8
  decidim/comments/reply_created_event: Respuesta al comentario
9
- decidim/comments/user_group_mentioned_event: Mencionar
10
9
  decidim/comments/user_mentioned_event: Mencionar
11
10
  activerecord:
12
11
  models:
@@ -54,9 +53,6 @@ es:
54
53
  form_error: El texto es necesario y no puede ser más largo de %{length} caracteres.
55
54
  submit_reply: Publicar respuesta
56
55
  submit_root_comment: Publicar comentario
57
- user_group_id:
58
- label: Comentar como
59
- your_profile: Tu perfil
60
56
  opinion:
61
57
  label: Tu opinión sobre este tema
62
58
  negative: Negativa
@@ -128,6 +124,9 @@ es:
128
124
  other: "%{count} comentarios"
129
125
  top_comment_label: Mejor valorado
130
126
  down_vote_button:
127
+ label:
128
+ one: Botón "No me gusta". %{count} "no me gusta"
129
+ other: Botón "No me gusta". %{count} "no me gusta"
131
130
  text: No estoy de acuerdo con este comentario
132
131
  edit_comment_modal_form:
133
132
  close: Cerrar
@@ -138,6 +137,9 @@ es:
138
137
  submit: Enviar
139
138
  title: Edita tu comentario
140
139
  up_vote_button:
140
+ label:
141
+ one: Botón "Me gusta". %{count} "me gusta"
142
+ other: Botón "Me gusta". %{count} "me gusta"
141
143
  text: Estoy de acuerdo con este comentario
142
144
  download_your_data:
143
145
  help:
@@ -158,7 +160,6 @@ es:
158
160
  id: El identificador de este comentario
159
161
  locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
160
162
  root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
161
- user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
162
163
  events:
163
164
  comments:
164
165
  comment_by_followed_user:
@@ -166,11 +167,6 @@ es:
166
167
  email_outro: Has recibido esta notificación porque sigues a "%{author_name}". Puedes dejar de seguir a esta participante desde su página de perfil.
167
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
168
169
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
169
- comment_by_followed_user_group:
170
- email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:'
171
- email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo desde su página de perfil.
172
- email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
173
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
174
170
  comment_created:
175
171
  email_intro: "Alguien ha dejado un comentario en \"%{resource_title}\". Puedes leer el comentario a través del siguiente enlace:"
176
172
  email_outro: Has recibido esta notificación porque estás siguiendo el comentario "%{resource_title}" o a su autora. Puedes dejar de seguirla desde el enlace anterior.
@@ -191,21 +187,11 @@ es:
191
187
  email_outro: Has recibido esta notificación porque han respondido a tu comentario.
192
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
193
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
194
- user_group_mentioned:
195
- email_intro: Se ha mencionado un grupo al que perteneces
196
- email_outro: Has recibido esta notificación porque formas parte del grupo "%{group_name}" que ha sido mencionado en "%{resource_title}".
197
- email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
198
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> te ha mencionado en <a href="%{resource_path}">%{resource_title}</a> como miembro de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
199
190
  user_mentioned:
200
191
  email_intro: Has sido mencionada
201
192
  email_outro: Has recibido esta notificación porque te han mencionado en el comentario "%{resource_title}".
202
193
  email_subject: Has sido mencionada en %{resource_title}
203
194
  notification_title: Has sido mencionada en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
204
- metrics:
205
- comments:
206
- description: Número de comentarios generados por las participantes
207
- object: comentarios
208
- title: Comentarios
209
195
  errors:
210
196
  messages:
211
197
  cannot_have_comments: no se pueden hacer comentarios
@@ -6,7 +6,6 @@ eu:
6
6
  decidim/comments/comment_created_event: Iruzkina
7
7
  decidim/comments/comment_upvoted_event: Iruzkina positiboki baloratua
8
8
  decidim/comments/reply_created_event: Iruzkinaren erantzuna
9
- decidim/comments/user_group_mentioned_event: Aipamena
10
9
  decidim/comments/user_mentioned_event: Aipamena
11
10
  activerecord:
12
11
  models:
@@ -54,9 +53,6 @@ eu:
54
53
  form_error: Testua behar da, eta ezin du izan %{length} karaktere baino gehiago.
55
54
  submit_reply: Erantzuna argitaratu
56
55
  submit_root_comment: Iruzkina argitaratu
57
- user_group_id:
58
- label: 'Egin iruzkina honako honen gisa:'
59
- your_profile: Zure profila
60
56
  opinion:
61
57
  label: Zure iritzia gai honi buruz
62
58
  negative: Negatiboa
@@ -128,6 +124,9 @@ eu:
128
124
  other: "%{count} iruzkin"
129
125
  top_comment_label: Bozkatuenak
130
126
  down_vote_button:
127
+ label:
128
+ one: Ez dut atsegin botoia. %{count} ez-atsegin
129
+ other: Ez dut atsegin botoia. %{count} ez-atsegin
131
130
  text: Ez nago ados iruzkin honekin
132
131
  edit_comment_modal_form:
133
132
  close: Itxi
@@ -138,6 +137,9 @@ eu:
138
137
  submit: Bidali
139
138
  title: Editatu zure iruzkina
140
139
  up_vote_button:
140
+ label:
141
+ one: Atsegin dut botoia. %{count} atsegin dut
142
+ other: Atsegin dut botoia. %{count} atsegin dut
141
143
  text: Ados nago iruzkin honekin
142
144
  download_your_data:
143
145
  help:
@@ -158,7 +160,6 @@ eu:
158
160
  id: Identifikazioa iruzkin honetarako
159
161
  locale: Parte-hartzaileak iruzkin hau uztean erabili du tokiko hizkuntza
160
162
  root_commentable_url: Iruzkin honekin lotzen den baliabidearen URLa (web helbidea)
161
- user_group: Iruzkin hau egin duen partaide-taldearen izena (baldin badago)
162
163
  events:
163
164
  comments:
164
165
  comment_by_followed_user:
@@ -166,11 +167,6 @@ eu:
166
167
  email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
167
168
  email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
168
169
  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>.'
169
- comment_by_followed_user_group:
170
- email_intro: '%{author_name} taldeak iruzkin bat utzi du hemen: %{resource_title}. Orrialde honetan irakur dezakezu:'
171
- email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
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>.'
174
170
  comment_created:
175
171
  email_intro: "Norbaitek iruzkin bat egin du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
176
172
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
@@ -191,21 +187,11 @@ eu:
191
187
  email_outro: Jakinarazpen hau jaso duzu zure iruzkinak erantzuna izan duelako.
192
188
  email_subject: "%{author_name} parte-hartzaileak zure iruzkina erantzun du hemen: %{resource_title}"
193
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio hemen <a href="%{resource_path}">%{resource_title}</a>
194
- user_group_mentioned:
195
- email_intro: Zure talde bat aipatu dute
196
- email_outro: '%{resource_title}-an aipatutako %{group_name} taldeko kidea zarelako jaso duzu jakinarazpen hau.'
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
199
190
  user_mentioned:
200
191
  email_intro: Aipatu zaituzte
201
192
  email_outro: 'Jakinarazpen hau jaso duzu hemen: %{resource_title} aipatu zaituztelako.'
202
193
  email_subject: 'Hemen: %{resource_title} aipatu zaituzte'
203
194
  notification_title: 'Hemen: <a href="%{group_path}">%{group_name} %{group_nickname}</a> egile honek: <a href="%{author_path}">%{author_name} %{author_nickname}</a> aipatu zaitu'
204
- metrics:
205
- comments:
206
- description: Parte-hatzaileek sortutako iruzkin kopurua
207
- object: iruzkinak
208
- title: Iruzkinak
209
195
  errors:
210
196
  messages:
211
197
  cannot_have_comments: ezin zaio iruzkinik egin
@@ -6,7 +6,6 @@ fi-pl:
6
6
  decidim/comments/comment_created_event: Kommentti
7
7
  decidim/comments/comment_upvoted_event: Kommenttia äänestettiin
8
8
  decidim/comments/reply_created_event: Vastaus kommentiin
9
- decidim/comments/user_group_mentioned_event: Maininta
10
9
  decidim/comments/user_mentioned_event: Maininta
11
10
  activerecord:
12
11
  models:
@@ -28,6 +27,8 @@ fi-pl:
28
27
  enabled: Kommentointi sallittu
29
28
  end_time: Kommentointi sallittu aikarajaan saakka
30
29
  start_time: Kommentointi sallittu alkaen
30
+ comment_thread:
31
+ accessibility_label: Kommenttiketju aloitettu %{date} henkilön %{full_name} toimesta
31
32
  comments:
32
33
  create:
33
34
  error: Kommentin luotaessa tapahtui virhe.
@@ -52,9 +53,6 @@ fi-pl:
52
53
  form_error: Teksti vaaditaan ja se ei voi olla pidempi kuin %{length} merkkiä.
53
54
  submit_reply: Julkaise vastaus
54
55
  submit_root_comment: Julkaise kommentti
55
- user_group_id:
56
- label: Kommentoi käyttäjänä
57
- your_profile: Oma profiilisi
58
56
  opinion:
59
57
  label: Mielipiteesi tästä aiheesta
60
58
  negative: Negatiivinen
@@ -126,6 +124,9 @@ fi-pl:
126
124
  other: "%{count} kommenttia"
127
125
  top_comment_label: Eniten ääniä saaneet ensin
128
126
  down_vote_button:
127
+ label:
128
+ one: Eri mieltä osoittava painike. %{count} henkilö on asiasta eri mieltä
129
+ other: Eri mieltä osoittava painike. %{count} henkilöä on asiasta eri mieltä
129
130
  text: Olen eri mieltä tämän kommentin kanssa
130
131
  edit_comment_modal_form:
131
132
  close: Sulje
@@ -136,6 +137,9 @@ fi-pl:
136
137
  submit: Lähetä
137
138
  title: Muokkaa kommenttiasi
138
139
  up_vote_button:
140
+ label:
141
+ one: Tykkäyspainike. %{count} tykkäys
142
+ other: Tykkäyspainike. %{count} tykkäystä
139
143
  text: Olen samaa mieltä tämän kommentin kanssa
140
144
  download_your_data:
141
145
  help:
@@ -156,7 +160,6 @@ fi-pl:
156
160
  id: Kommentin yksilöivä tunniste
157
161
  locale: Kommentoijan valitsema kieliasetus sivustolla
158
162
  root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
159
- user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
160
163
  events:
161
164
  comments:
162
165
  comment_by_followed_user:
@@ -164,11 +167,6 @@ fi-pl:
164
167
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
165
168
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
166
169
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>.
167
- comment_by_followed_user_group:
168
- email_intro: '%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:'
169
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
170
- email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
171
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>.
172
170
  comment_created:
173
171
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
174
172
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
@@ -189,21 +187,11 @@ fi-pl:
189
187
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
190
188
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
191
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
192
- user_group_mentioned:
193
- email_intro: Ryhmä, jonka jäsen olet, on mainittu
194
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
195
- email_subject: Sinut on mainittu kohteessa %{resource_title} ryhmän %{group_name} jäsenenä
196
- notification_title: Käyttäjä <a href="%{author_path}">%{author_name}%{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a> ryhmän <a href="%{group_path}">%{group_name} %{group_nickname}</a> jäsenenä
197
190
  user_mentioned:
198
191
  email_intro: Sinut on mainittu
199
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
200
193
  email_subject: Sinut on mainittu kohdassa %{resource_title}
201
194
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohdassa <a href="%{resource_path}">%{resource_title}</a>
202
- metrics:
203
- comments:
204
- description: Käyttäjien kirjoittamien kommenttien määrä
205
- object: kommentit
206
- title: Kommentit
207
195
  errors:
208
196
  messages:
209
197
  cannot_have_comments: ei voi sisältää kommentteja
@@ -6,7 +6,6 @@ fi:
6
6
  decidim/comments/comment_created_event: Kommentti
7
7
  decidim/comments/comment_upvoted_event: Kommenttia äänestettiin
8
8
  decidim/comments/reply_created_event: Vastaus kommentiin
9
- decidim/comments/user_group_mentioned_event: Maininta
10
9
  decidim/comments/user_mentioned_event: Maininta
11
10
  activerecord:
12
11
  models:
@@ -28,6 +27,8 @@ fi:
28
27
  enabled: Kommentointi sallittu
29
28
  end_time: Kommentointi sallittu aikarajaan saakka
30
29
  start_time: Kommentointi sallittu alkaen
30
+ comment_thread:
31
+ accessibility_label: Kommenttiketju aloitettu %{date} henkilön %{full_name} toimesta
31
32
  comments:
32
33
  create:
33
34
  error: Kommentin luonti epäonnistui.
@@ -52,9 +53,6 @@ fi:
52
53
  form_error: Teksti vaaditaan ja se ei voi olla pidempi kuin %{length} merkkiä.
53
54
  submit_reply: Julkaise vastaus
54
55
  submit_root_comment: Julkaise kommentti
55
- user_group_id:
56
- label: Kommentoi käyttäjänä
57
- your_profile: Oma profiilisi
58
56
  opinion:
59
57
  label: Mielipiteesi tästä aiheesta
60
58
  negative: Negatiivinen
@@ -126,6 +124,9 @@ fi:
126
124
  other: "%{count} kommenttia"
127
125
  top_comment_label: Eniten ääniä saaneet ensin
128
126
  down_vote_button:
127
+ label:
128
+ one: Eri mieltä osoittava painike. %{count} henkilö on asiasta eri mieltä
129
+ other: Eri mieltä osoittava painike. %{count} henkilöä on asiasta eri mieltä
129
130
  text: Olen eri mieltä tämän kommentin kanssa
130
131
  edit_comment_modal_form:
131
132
  close: Sulje
@@ -136,6 +137,9 @@ fi:
136
137
  submit: Lähetä
137
138
  title: Muokkaa kommenttiasi
138
139
  up_vote_button:
140
+ label:
141
+ one: Tykkäyspainike. %{count} tykkäys
142
+ other: Tykkäyspainike. %{count} tykkäystä
139
143
  text: Olen samaa mieltä tämän kommentin kanssa
140
144
  download_your_data:
141
145
  help:
@@ -156,7 +160,6 @@ fi:
156
160
  id: Kommentin yksilöivä tunniste
157
161
  locale: Kommentoijan valitsema kieliasetus sivustolla
158
162
  root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
159
- user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
160
163
  events:
161
164
  comments:
162
165
  comment_by_followed_user:
@@ -164,11 +167,6 @@ fi:
164
167
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat osallistujaa %{author_name}. Voit perua seuraamisen kyseisen osallistujan profiilisivulta.
165
168
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
166
169
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>.
167
- comment_by_followed_user_group:
168
- email_intro: '%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:'
169
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
170
- email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
171
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>.
172
170
  comment_created:
173
171
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin sivulta:"
174
172
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
@@ -189,21 +187,11 @@ fi:
189
187
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
190
188
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
191
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
192
- user_group_mentioned:
193
- email_intro: Ryhmä, jonka jäsen olet, on mainittu
194
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
195
- email_subject: Sinut on mainittu kohteessa %{resource_title} ryhmän %{group_name} jäsenenä
196
- notification_title: Käyttäjä <a href="%{author_path}">%{author_name}%{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a> ryhmän <a href="%{group_path}">%{group_name} %{group_nickname}</a> jäsenenä
197
190
  user_mentioned:
198
191
  email_intro: Sinut on mainittu
199
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohteessa %{resource_title}.
200
193
  email_subject: Sinut on mainittu kohdassa %{resource_title}
201
194
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
202
- metrics:
203
- comments:
204
- description: Käyttäjien kirjoittamien kommenttien määrä
205
- object: kommentit
206
- title: Kommentit
207
195
  errors:
208
196
  messages:
209
197
  cannot_have_comments: ei voi sisältää kommentteja
@@ -6,7 +6,6 @@ fr-CA:
6
6
  decidim/comments/comment_created_event: Commentaire
7
7
  decidim/comments/comment_upvoted_event: Vote favorable
8
8
  decidim/comments/reply_created_event: Réponse à un commentaire
9
- decidim/comments/user_group_mentioned_event: Mention
10
9
  decidim/comments/user_mentioned_event: Mention
11
10
  activerecord:
12
11
  models:
@@ -54,9 +53,6 @@ fr-CA:
54
53
  form_error: Le texte est requis et ne doit pas dépasser %{length} caractères.
55
54
  submit_reply: Publier la réponse
56
55
  submit_root_comment: Publier le commentaire
57
- user_group_id:
58
- label: Commenter en tant que
59
- your_profile: Votre profil
60
56
  opinion:
61
57
  label: Votre avis sur ce sujet
62
58
  negative: Négatif
@@ -125,6 +121,9 @@ fr-CA:
125
121
  one: "%{count} commentaire"
126
122
  other: "%{count} commentaires"
127
123
  down_vote_button:
124
+ label:
125
+ one: Bouton "Je n'aime pas". %{count} "je n'aime pas"
126
+ other: Bouton "Je n'aime pas". %{count} "je n'aime pas"
128
127
  text: Je ne suis pas d'accord avec ce commentaire
129
128
  edit_comment_modal_form:
130
129
  close: Fermer
@@ -135,11 +134,10 @@ fr-CA:
135
134
  submit: Envoyer
136
135
  title: Modifier votre commentaire
137
136
  up_vote_button:
137
+ label:
138
+ one: Bouton "J'aime". %{count} "J'aime"
139
+ other: Bouton "J'aime". %{count} "J'aime"
138
140
  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)
143
141
  events:
144
142
  comments:
145
143
  comment_by_followed_user:
@@ -147,11 +145,6 @@ fr-CA:
147
145
  email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
148
146
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
149
147
  notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
150
- comment_by_followed_user_group:
151
- email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
152
- email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
153
- email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
154
- notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
155
148
  comment_created:
156
149
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
157
150
  email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Vous pouvez vous désabonner à partir du lien précédant.
@@ -172,21 +165,11 @@ fr-CA:
172
165
  email_outro: Vous venez de recevoir une notification à votre commentaire.
173
166
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
174
167
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
175
- user_group_mentioned:
176
- email_intro: Un groupe auquel vous appartenez a été mentionné
177
- email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
178
- email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
179
- notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a> en tant que membre de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
180
168
  user_mentioned:
181
169
  email_intro: Vous avez été mentionné
182
170
  email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}.
183
171
  email_subject: Vous avez été mentionné dans %{resource_title}
184
172
  notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a>
185
- metrics:
186
- comments:
187
- description: Nombre de commentaires générés par les utilisateurs
188
- object: commentaires
189
- title: commentaires
190
173
  errors:
191
174
  messages:
192
175
  cannot_have_comments: ne peut pas avoir de commentaires