decidim-comments 0.30.2 → 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 (86) 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_cell.rb +1 -3
  5. data/app/cells/decidim/comments/comment_form/comment_as.erb +5 -24
  6. data/app/cells/decidim/comments/comment_form/show.erb +3 -3
  7. data/app/cells/decidim/comments/comment_form_cell.rb +5 -20
  8. data/app/cells/decidim/comments/comments/order_control.erb +1 -1
  9. data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +2 -2
  10. data/app/commands/decidim/comments/create_comment.rb +3 -5
  11. data/app/events/decidim/comments/comment_event.rb +3 -10
  12. data/app/forms/decidim/comments/comment_form.rb +0 -1
  13. data/app/models/decidim/comments/comment.rb +2 -2
  14. data/app/models/decidim/comments/seed.rb +4 -16
  15. data/app/packs/src/decidim/comments/comments.component.js +0 -7
  16. data/app/packs/src/decidim/comments/comments.component.test.js +4 -16
  17. data/app/packs/src/decidim/comments/comments.js +1 -1
  18. data/app/packs/src/decidim/comments/comments_mobile_modal.js +1 -1
  19. data/app/packs/stylesheets/comments.scss +1 -5
  20. data/app/queries/decidim/comments/sorted_comments.rb +1 -1
  21. data/app/services/decidim/comments/new_comment_notification_creator.rb +2 -27
  22. data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +1 -1
  23. data/app/views/decidim/comments/comments/delete.js.erb +4 -2
  24. data/app/views/decidim/comments/comments/reload.js.erb +0 -1
  25. data/app/views/decidim/comments/comments/update.js.erb +3 -1
  26. data/config/assets.rb +2 -2
  27. data/config/locales/ar.yml +0 -18
  28. data/config/locales/bg.yml +0 -18
  29. data/config/locales/bs-BA.yml +0 -8
  30. data/config/locales/ca-IT.yml +0 -20
  31. data/config/locales/ca.yml +0 -20
  32. data/config/locales/cs.yml +0 -20
  33. data/config/locales/de.yml +0 -20
  34. data/config/locales/el.yml +0 -18
  35. data/config/locales/en.yml +0 -20
  36. data/config/locales/es-MX.yml +0 -20
  37. data/config/locales/es-PY.yml +0 -20
  38. data/config/locales/es.yml +0 -20
  39. data/config/locales/eu.yml +0 -20
  40. data/config/locales/fi-plain.yml +0 -20
  41. data/config/locales/fi.yml +0 -20
  42. data/config/locales/fr-CA.yml +0 -23
  43. data/config/locales/fr.yml +0 -23
  44. data/config/locales/ga-IE.yml +0 -5
  45. data/config/locales/gl.yml +0 -11
  46. data/config/locales/hu.yml +0 -18
  47. data/config/locales/id-ID.yml +0 -11
  48. data/config/locales/is-IS.yml +0 -5
  49. data/config/locales/it.yml +0 -18
  50. data/config/locales/ja.yml +0 -20
  51. data/config/locales/lb.yml +0 -18
  52. data/config/locales/lt.yml +0 -18
  53. data/config/locales/lv.yml +0 -18
  54. data/config/locales/nl.yml +0 -18
  55. data/config/locales/no.yml +0 -18
  56. data/config/locales/pl.yml +0 -18
  57. data/config/locales/pt-BR.yml +0 -18
  58. data/config/locales/pt.yml +0 -18
  59. data/config/locales/ro-RO.yml +0 -20
  60. data/config/locales/ru.yml +0 -11
  61. data/config/locales/si-LK.yml +0 -2
  62. data/config/locales/sk.yml +0 -18
  63. data/config/locales/sq-AL.yml +0 -2
  64. data/config/locales/sr-CS.yml +0 -9
  65. data/config/locales/sv.yml +0 -20
  66. data/config/locales/tr-TR.yml +0 -18
  67. data/config/locales/uk.yml +0 -6
  68. data/config/locales/zh-CN.yml +0 -18
  69. data/config/locales/zh-TW.yml +0 -18
  70. data/db/migrate/20181003080320_fix_user_groups_ids_in_comments.rb +8 -1
  71. data/lib/decidim/api/comment_type.rb +1 -4
  72. data/lib/decidim/api/commentable_interface.rb +7 -13
  73. data/lib/decidim/api/commentable_mutation_type.rb +2 -3
  74. data/lib/decidim/comments/comment_serializer.rb +0 -4
  75. data/lib/decidim/comments/comment_vote_serializer.rb +0 -4
  76. data/lib/decidim/comments/commentable.rb +4 -0
  77. data/lib/decidim/comments/engine.rb +6 -20
  78. data/lib/decidim/comments/test/factories.rb +1 -1
  79. data/lib/decidim/comments/test/shared_examples/comment_event.rb +1 -10
  80. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +0 -2
  81. data/lib/decidim/comments/version.rb +1 -1
  82. metadata +8 -12
  83. data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +0 -9
  84. data/app/events/decidim/comments/user_group_mentioned_event.rb +0 -10
  85. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +0 -50
  86. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +0 -97
@@ -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
@@ -164,7 +160,6 @@ es:
164
160
  id: El identificador de este comentario
165
161
  locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
166
162
  root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
167
- user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
168
163
  events:
169
164
  comments:
170
165
  comment_by_followed_user:
@@ -172,11 +167,6 @@ es:
172
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.
173
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
174
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>.
175
- comment_by_followed_user_group:
176
- email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:'
177
- email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo desde su página de perfil.
178
- email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
179
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
180
170
  comment_created:
181
171
  email_intro: "Alguien ha dejado un comentario en \"%{resource_title}\". Puedes leer el comentario a través del siguiente enlace:"
182
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.
@@ -197,21 +187,11 @@ es:
197
187
  email_outro: Has recibido esta notificación porque han respondido a tu comentario.
198
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
199
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>
200
- user_group_mentioned:
201
- email_intro: Se ha mencionado un grupo al que perteneces
202
- email_outro: Has recibido esta notificación porque formas parte del grupo "%{group_name}" que ha sido mencionado en "%{resource_title}".
203
- email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
204
- 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>
205
190
  user_mentioned:
206
191
  email_intro: Has sido mencionada
207
192
  email_outro: Has recibido esta notificación porque te han mencionado en el comentario "%{resource_title}".
208
193
  email_subject: Has sido mencionada en %{resource_title}
209
194
  notification_title: Has sido mencionada en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
210
- metrics:
211
- comments:
212
- description: Número de comentarios generados por las participantes
213
- object: comentarios
214
- title: Comentarios
215
195
  errors:
216
196
  messages:
217
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
@@ -164,7 +160,6 @@ eu:
164
160
  id: Identifikazioa iruzkin honetarako
165
161
  locale: Parte-hartzaileak iruzkin hau uztean erabili du tokiko hizkuntza
166
162
  root_commentable_url: Iruzkin honekin lotzen den baliabidearen URLa (web helbidea)
167
- user_group: Iruzkin hau egin duen partaide-taldearen izena (baldin badago)
168
163
  events:
169
164
  comments:
170
165
  comment_by_followed_user:
@@ -172,11 +167,6 @@ eu:
172
167
  email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
173
168
  email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
174
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>.'
175
- comment_by_followed_user_group:
176
- email_intro: '%{author_name} taldeak iruzkin bat utzi du hemen: %{resource_title}. Orrialde honetan irakur dezakezu:'
177
- email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
178
- email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
179
- 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>.'
180
170
  comment_created:
181
171
  email_intro: "Norbaitek iruzkin bat egin du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
182
172
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
@@ -197,21 +187,11 @@ eu:
197
187
  email_outro: Jakinarazpen hau jaso duzu zure iruzkinak erantzuna izan duelako.
198
188
  email_subject: "%{author_name} parte-hartzaileak zure iruzkina erantzun du hemen: %{resource_title}"
199
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>
200
- user_group_mentioned:
201
- email_intro: Zure talde bat aipatu dute
202
- email_outro: '%{resource_title}-an aipatutako %{group_name} taldeko kidea zarelako jaso duzu jakinarazpen hau.'
203
- email_subject: Hemen %{resource_title} aipatu zaituzte %{group_name} taldeko kide gisa
204
- 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
205
190
  user_mentioned:
206
191
  email_intro: Aipatu zaituzte
207
192
  email_outro: 'Jakinarazpen hau jaso duzu hemen: %{resource_title} aipatu zaituztelako.'
208
193
  email_subject: 'Hemen: %{resource_title} aipatu zaituzte'
209
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'
210
- metrics:
211
- comments:
212
- description: Parte-hatzaileek sortutako iruzkin kopurua
213
- object: iruzkinak
214
- title: Iruzkinak
215
195
  errors:
216
196
  messages:
217
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:
@@ -54,9 +53,6 @@ fi-pl:
54
53
  form_error: Teksti vaaditaan ja se ei voi olla pidempi kuin %{length} merkkiä.
55
54
  submit_reply: Julkaise vastaus
56
55
  submit_root_comment: Julkaise kommentti
57
- user_group_id:
58
- label: Kommentoi käyttäjänä
59
- your_profile: Oma profiilisi
60
56
  opinion:
61
57
  label: Mielipiteesi tästä aiheesta
62
58
  negative: Negatiivinen
@@ -164,7 +160,6 @@ fi-pl:
164
160
  id: Kommentin yksilöivä tunniste
165
161
  locale: Kommentoijan valitsema kieliasetus sivustolla
166
162
  root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
167
- user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
168
163
  events:
169
164
  comments:
170
165
  comment_by_followed_user:
@@ -172,11 +167,6 @@ fi-pl:
172
167
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
173
168
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
174
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>.
175
- comment_by_followed_user_group:
176
- email_intro: '%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:'
177
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
178
- email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
179
- 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>.
180
170
  comment_created:
181
171
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
182
172
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
@@ -197,21 +187,11 @@ fi-pl:
197
187
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
198
188
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
199
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
200
- user_group_mentioned:
201
- email_intro: Ryhmä, jonka jäsen olet, on mainittu
202
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
203
- email_subject: Sinut on mainittu kohteessa %{resource_title} ryhmän %{group_name} jäsenenä
204
- 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ä
205
190
  user_mentioned:
206
191
  email_intro: Sinut on mainittu
207
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
208
193
  email_subject: Sinut on mainittu kohdassa %{resource_title}
209
194
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohdassa <a href="%{resource_path}">%{resource_title}</a>
210
- metrics:
211
- comments:
212
- description: Käyttäjien kirjoittamien kommenttien määrä
213
- object: kommentit
214
- title: Kommentit
215
195
  errors:
216
196
  messages:
217
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:
@@ -54,9 +53,6 @@ fi:
54
53
  form_error: Teksti vaaditaan ja se ei voi olla pidempi kuin %{length} merkkiä.
55
54
  submit_reply: Julkaise vastaus
56
55
  submit_root_comment: Julkaise kommentti
57
- user_group_id:
58
- label: Kommentoi käyttäjänä
59
- your_profile: Oma profiilisi
60
56
  opinion:
61
57
  label: Mielipiteesi tästä aiheesta
62
58
  negative: Negatiivinen
@@ -164,7 +160,6 @@ fi:
164
160
  id: Kommentin yksilöivä tunniste
165
161
  locale: Kommentoijan valitsema kieliasetus sivustolla
166
162
  root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
167
- user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
168
163
  events:
169
164
  comments:
170
165
  comment_by_followed_user:
@@ -172,11 +167,6 @@ fi:
172
167
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat osallistujaa %{author_name}. Voit perua seuraamisen kyseisen osallistujan profiilisivulta.
173
168
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
174
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>.
175
- comment_by_followed_user_group:
176
- email_intro: '%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:'
177
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
178
- email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
179
- 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>.
180
170
  comment_created:
181
171
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin sivulta:"
182
172
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
@@ -197,21 +187,11 @@ fi:
197
187
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
198
188
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
199
189
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
200
- user_group_mentioned:
201
- email_intro: Ryhmä, jonka jäsen olet, on mainittu
202
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
203
- email_subject: Sinut on mainittu kohteessa %{resource_title} ryhmän %{group_name} jäsenenä
204
- 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ä
205
190
  user_mentioned:
206
191
  email_intro: Sinut on mainittu
207
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohteessa %{resource_title}.
208
193
  email_subject: Sinut on mainittu kohdassa %{resource_title}
209
194
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
210
- metrics:
211
- comments:
212
- description: Käyttäjien kirjoittamien kommenttien määrä
213
- object: kommentit
214
- title: Kommentit
215
195
  errors:
216
196
  messages:
217
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
@@ -142,10 +138,6 @@ fr-CA:
142
138
  one: Bouton "J'aime". %{count} "J'aime"
143
139
  other: Bouton "J'aime". %{count} "J'aime"
144
140
  text: Je suis d'accord avec ce commentaire
145
- download_your_data:
146
- help:
147
- comments:
148
- user_group: Le nom du groupe d'utilisateurs qui a fait ce commentaire (le cas échéant)
149
141
  events:
150
142
  comments:
151
143
  comment_by_followed_user:
@@ -153,11 +145,6 @@ fr-CA:
153
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.
154
146
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
155
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>.
156
- comment_by_followed_user_group:
157
- email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
158
- 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.
159
- email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
160
- 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>.
161
148
  comment_created:
162
149
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
163
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.
@@ -178,21 +165,11 @@ fr-CA:
178
165
  email_outro: Vous venez de recevoir une notification à votre commentaire.
179
166
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
180
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>
181
- user_group_mentioned:
182
- email_intro: Un groupe auquel vous appartenez a été mentionné
183
- email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
184
- email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
185
- 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>
186
168
  user_mentioned:
187
169
  email_intro: Vous avez été mentionné
188
170
  email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}.
189
171
  email_subject: Vous avez été mentionné dans %{resource_title}
190
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>
191
- metrics:
192
- comments:
193
- description: Nombre de commentaires générés par les utilisateurs
194
- object: commentaires
195
- title: commentaires
196
173
  errors:
197
174
  messages:
198
175
  cannot_have_comments: ne peut pas avoir de commentaires
@@ -6,7 +6,6 @@ fr:
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:
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: Que pensez-vous de cela ?
62
58
  negative: Négatif
@@ -142,10 +138,6 @@ fr:
142
138
  one: Bouton "J'aime". %{count} "J'aime"
143
139
  other: Bouton "J'aime". %{count} "J'aime"
144
140
  text: Je suis d'accord avec ce commentaire
145
- download_your_data:
146
- help:
147
- comments:
148
- user_group: Le nom du groupe d'utilisateurs qui a fait ce commentaire (le cas échéant)
149
141
  events:
150
142
  comments:
151
143
  comment_by_followed_user:
@@ -153,11 +145,6 @@ fr:
153
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, ou bien vous rendre dans l'onglet “Mon compte” > “Paramètres des notifications”.
154
146
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
155
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>.
156
- comment_by_followed_user_group:
157
- email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
158
- email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de ce groupe utilisateur depuis sa page de profil, ou bien vous rendre dans l'onglet “Mon compte” > “Paramètres des notifications”.
159
- email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
160
- 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>.
161
148
  comment_created:
162
149
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
163
150
  email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
@@ -178,21 +165,11 @@ fr:
178
165
  email_outro: Vous avez reçu cette notification parce que votre commentaire a reçu une réponse. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
179
166
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
180
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>
181
- user_group_mentioned:
182
- email_intro: Un groupe auquel vous appartenez a été mentionné
183
- email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
184
- email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
185
- 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>
186
168
  user_mentioned:
187
169
  email_intro: Vous avez été mentionné
188
170
  email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
189
171
  email_subject: Vous avez été mentionné dans %{resource_title}
190
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>
191
- metrics:
192
- comments:
193
- description: Nombre de commentaires générés par les utilisateurs
194
- object: commentaires
195
- title: commentaires
196
173
  errors:
197
174
  messages:
198
175
  cannot_have_comments: ne peut pas avoir de commentaires
@@ -4,7 +4,6 @@ ga:
4
4
  models:
5
5
  decidim/comments/comment_by_followed_user_event: Trácht
6
6
  decidim/comments/comment_created_event: Trácht
7
- decidim/comments/user_group_mentioned_event: Luaigh
8
7
  decidim/comments/user_mentioned_event: Luaigh
9
8
  activerecord:
10
9
  models:
@@ -47,7 +46,3 @@ ga:
47
46
  body:
48
47
  label: Trácht
49
48
  submit: Seol
50
- metrics:
51
- comments:
52
- object: tráchtanna
53
- title: Tráchtanna
@@ -5,7 +5,6 @@ gl:
5
5
  decidim/comments/comment_by_followed_user_event: Comentario
6
6
  decidim/comments/comment_created_event: Comentario
7
7
  decidim/comments/reply_created_event: Comentario de resposta
8
- decidim/comments/user_group_mentioned_event: Mención
9
8
  decidim/comments/user_mentioned_event: Mención
10
9
  activerecord:
11
10
  models:
@@ -41,8 +40,6 @@ gl:
41
40
  body:
42
41
  label: Comentario
43
42
  placeholder: Que vos parece?
44
- user_group_id:
45
- label: Comentar como
46
43
  opinion:
47
44
  label: A túa opinión canto a este tema
48
45
  negative: Negativa
@@ -113,9 +110,6 @@ gl:
113
110
  email_outro: Recibiches esta notificación porque estás seguindo %{author_name}. Podes deixar de seguir este usuario desde a súa páxina de perfil.
114
111
  email_subject: Hai un novo comentario por %{author_name} en %{resource_title}
115
112
  notification_title: Hai un novo comentario <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
116
- comment_by_followed_user_group:
117
- email_subject: Hai un novo comentario por %{author_name} en %{resource_title}
118
- notification_title: Hai un novo comentario <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
119
113
  comment_created:
120
114
  email_intro: "Comentouse %{resource_title} . Podes ler o comentario nesta páxina:"
121
115
  email_outro: Recibiches esta notificación porque estás seguindo "%{resource_title}" ou o seu autor. Podes deixar de seguir desde a ligazón anterior.
@@ -131,8 +125,3 @@ gl:
131
125
  email_outro: Recibiches esta notificación porque foi mencionado en %{resource_title}.
132
126
  email_subject: Foi mencionado en %{resource_title}
133
127
  notification_title: Foi mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
134
- metrics:
135
- comments:
136
- description: Número de comentarios xerados polos usuarios
137
- object: comentarios
138
- title: Comentarios
@@ -6,7 +6,6 @@ hu:
6
6
  decidim/comments/comment_created_event: Megjegyzés
7
7
  decidim/comments/comment_upvoted_event: Hozzászólás feljebb szavazva
8
8
  decidim/comments/reply_created_event: Hozzászólás válasz
9
- decidim/comments/user_group_mentioned_event: Említés
10
9
  decidim/comments/user_mentioned_event: Említés
11
10
  activerecord:
12
11
  models:
@@ -50,8 +49,6 @@ hu:
50
49
  form_error: Kötelező kitölteni, és nem lehet hosszabb, mint %{length} karakter.
51
50
  submit_reply: Válasz publikálása
52
51
  submit_root_comment: Megjegyzés publikálása
53
- user_group_id:
54
- label: 'Megjegyzés mint:'
55
52
  opinion:
56
53
  label: A témáról alkotott véleménye
57
54
  negative: Negatív
@@ -124,11 +121,6 @@ hu:
124
121
  email_outro: 'Ezt az értesítést azért kaptad, mert ezt követed: "%{author_name}". Leiratkozás az előző link segítségével.'
125
122
  email_subject: '%{author_name} új megjegyzése itt: %{resource_title}'
126
123
  notification_title: 'Új megjegyzés: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a>.'
127
- comment_by_followed_user_group:
128
- email_intro: 'A csoport %{author_name} megjegyzést hagyott itt: %{resource_title}. Ezen az oldalon megtalálod:'
129
- email_outro: 'Ezt az értesítést azért kaptad, mert követed: "%{author_name}". Leiratkozáshoz látogasd meg ezt a csoportod a profiloldaláról.'
130
- email_subject: '%{author_name} új megjegyzése itt: %{resource_title}'
131
- notification_title: 'Új megjegyzés: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a>.'
132
124
  comment_created:
133
125
  email_intro: "A \"%{resource_title}\" témához megjegyzést fűzött valaki. Itt tudod elolvasni:"
134
126
  email_outro: 'Ezt az értesítést azért kaptad, mert ezt (vagy ennek szerzőjét) követed: "%{resource_title}". Ha szeretnél, a link segítségével leiratkozhatsz.'
@@ -149,21 +141,11 @@ hu:
149
141
  email_outro: Ezt az értesítést azért kaptad, mert valaki választolt a mejegyzésedre.
150
142
  email_subject: "%{author_name} megjegyzést tett a kommentedhez itt: %{resource_title}"
151
143
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> válaszolt a megjegyzésedre itt: <a href="%{resource_path}">%{resource_title}</a>'
152
- user_group_mentioned:
153
- email_intro: Említettek egy csoportot, amelybe tartozol
154
- email_outro: Azért kapta ezt az értesítést, mert tagja annak a(z) %{group_name} csoportnak, amelyet a(z) %{resource_title} megemlített.
155
- email_subject: A(z) %{resource_title} -ban említettek, a(z) %{group_name} tagjaként
156
- notification_title: A(z) <a href="%{resource_path}">%{resource_title}</a> -ban a <a href="%{author_path}">%{author_name} %{author_nickname}</a> megemlített a(z) <a href="%{group_path}">%{group_name} %{group_nickname} </a> tagjaként
157
144
  user_mentioned:
158
145
  email_intro: Valaki említette a neved
159
146
  email_outro: Ezt az értesítést azért kaptad, mert korábban megemlítettek a(z) "%{resource_title}" témában.
160
147
  email_subject: Megemlítettek a(z) %{resource_title} témában
161
148
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> megemlített itt: <a href="%{resource_path}">%{resource_title}</a>'
162
- metrics:
163
- comments:
164
- description: A felhasználók által generált megjegyzések száma
165
- object: Hozzászólások
166
- title: Hozzászólások
167
149
  errors:
168
150
  messages:
169
151
  cannot_have_comments: nem adhat hozzá hozzászólásokat
@@ -5,7 +5,6 @@ id:
5
5
  decidim/comments/comment_by_followed_user_event: Komentar
6
6
  decidim/comments/comment_created_event: Komentar
7
7
  decidim/comments/reply_created_event: Balasan komentar
8
- decidim/comments/user_group_mentioned_event: Menyebut
9
8
  decidim/comments/user_mentioned_event: Menyebut
10
9
  activerecord:
11
10
  models:
@@ -28,8 +27,6 @@ id:
28
27
  body:
29
28
  label: Komentar
30
29
  placeholder: Apa yang Anda pikirkan tentang ini?
31
- user_group_id:
32
- label: Beri komentar sebagai
33
30
  opinion:
34
31
  neutral: Netral
35
32
  remaining_characters: "%{count} karakter tersisa"
@@ -67,9 +64,6 @@ id:
67
64
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{author_name}. Anda dapat berhenti mengikuti pengguna ini dari halaman profil mereka.
68
65
  email_subject: Ada komentar baru dengan %{author_name} in %{resource_title}
69
66
  notification_title: Ada komentar baru oleh <a href="%{author_path}">%{author_name} %{author_nickname}</a> di <a href="%{resource_path}">%{resource_title}</a>.
70
- comment_by_followed_user_group:
71
- email_subject: Ada komentar baru dengan %{author_name} in %{resource_title}
72
- notification_title: Ada komentar baru oleh <a href="%{author_path}">%{author_name} %{author_nickname}</a> di <a href="%{resource_path}">%{resource_title}</a>.
73
67
  comment_created:
74
68
  email_intro: "%{resource_title} telah dikomentari. Anda dapat membaca komentar di halaman ini:"
75
69
  email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti "%{resource_title}" atau penulisnya. Anda dapat berhenti mengikutinya dari tautan sebelumnya.
@@ -85,8 +79,3 @@ id:
85
79
  email_outro: Anda telah menerima pemberitahuan ini karena Anda telah disebutkan dalam %{resource_title}.
86
80
  email_subject: Anda telah disebutkan dalam %{resource_title}
87
81
  notification_title: Anda telah disebutkan dalam <a href="%{resource_path}">%{resource_title}</a> oleh <a href="%{author_path}">%{author_name} %{author_nickname}</a>
88
- metrics:
89
- comments:
90
- description: Jumlah komentar yang dihasilkan oleh peserta
91
- object: komentar
92
- title: Komentar
@@ -7,8 +7,6 @@ is:
7
7
  body:
8
8
  label: Athugasemd
9
9
  placeholder: Hvað finnst þér um þetta?
10
- user_group_id:
11
- label: Athugasemd sem
12
10
  opinion:
13
11
  neutral: Hlutlaus
14
12
  remaining_characters: "%{count} stafir eftir"
@@ -44,9 +42,6 @@ is:
44
42
  email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með %{author_name}. Þú getur sleppt þessari notanda frá prófílssíðunni sinni.
45
43
  email_subject: Það er nýtt ummæli um %{author_name} í %{resource_title}
46
44
  notification_title: Það er nýtt ummæli við <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>.
47
- comment_by_followed_user_group:
48
- email_subject: Það er nýtt ummæli um %{author_name} í %{resource_title}
49
- notification_title: Það er nýtt ummæli við <a href="%{author_path}">%{author_name} %{author_nickname}</a> í <a href="%{resource_path}">%{resource_title}</a>.
50
45
  comment_created:
51
46
  email_intro: "%{resource_title} hefur verið skrifað ummæli. Þú getur lesið athugasemdina á þessari síðu:"
52
47
  email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með "%{resource_title}" eða höfundinum. Þú getur sleppt því frá fyrri tengilinn.
@@ -5,7 +5,6 @@ it:
5
5
  decidim/comments/comment_by_followed_user_event: Commento
6
6
  decidim/comments/comment_created_event: Commento
7
7
  decidim/comments/reply_created_event: Risposta al commento
8
- decidim/comments/user_group_mentioned_event: Citare
9
8
  decidim/comments/user_mentioned_event: Citare
10
9
  activerecord:
11
10
  models:
@@ -41,8 +40,6 @@ it:
41
40
  body:
42
41
  label: Commenta
43
42
  placeholder: Cosa ne pensi?
44
- user_group_id:
45
- label: Commenta come
46
43
  opinion:
47
44
  label: La tua opinione su questo argomento
48
45
  negative: Negativo
@@ -113,11 +110,6 @@ it:
113
110
  email_outro: Hai ricevuto questa notifica perché stai seguendo %{author_name}. Puoi smettere di seguire questo utente dalla pagina del profilo.
114
111
  email_subject: C'è un nuovo commento di %{author_name} in %{resource_title}
115
112
  notification_title: C'è un nuovo commento di <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
116
- comment_by_followed_user_group:
117
- email_intro: 'Il gruppo %{author_name} ha lasciato un commento in %{resource_title}. Puoi leggerlo in questa pagina:'
118
- email_outro: Hai ricevuto questa notifica perché stai seguendo "%{author_name}". Puoi smettere di seguirlo cliccando sul link precedente.
119
- email_subject: C'è un nuovo commento di %{author_name} in %{resource_title}
120
- notification_title: C'è un nuovo commento di <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
121
113
  comment_created:
122
114
  email_intro: "%{resource_title} è stato commentato. Puoi leggere il commento in questa pagina:"
123
115
  email_outro: Hai ricevuto questa notifica perché stai seguendo "%{resource_title}" o il suo autore. Puoi smettere di seguirlo dal link precedente.
@@ -138,18 +130,8 @@ it:
138
130
  email_outro: Hai ricevuto questa notifica perché il tuo commento è stato risposto.
139
131
  email_subject: "%{author_name} ha risposto il tuo commento in %{resource_title}"
140
132
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha risposto il tuo commento in <a href="%{resource_path}">%{resource_title}</a>
141
- user_group_mentioned:
142
- email_intro: È stato menzionato un gruppo a cui appartieni
143
- email_outro: Hai ricevuto questa notifica perché appartieni al gruppo %{group_name} che è stato menzionato in %{resource_title}.
144
- email_subject: Ti si nomina in %{resource_title} come appartenente a %{group_name}
145
- notification_title: Ti si nomina in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a> come appartenente a <a href="%{group_path}">%{group_name} %{group_nickname}</a>
146
133
  user_mentioned:
147
134
  email_intro: Sei stato menzionato
148
135
  email_outro: Hai ricevuto questa notifica perché sei stato citato in %{resource_title}.
149
136
  email_subject: Sei stato menzionato in %{resource_title}
150
137
  notification_title: Sei stato citato in <a href="%{resource_path}">%{resource_title}</a> di <a href="%{author_path}">%{author_name} %{author_nickname}</a>
151
- metrics:
152
- comments:
153
- description: Numero di commenti generati dagli utenti
154
- object: Commenti
155
- title: Commenti
@@ -6,7 +6,6 @@ ja:
6
6
  decidim/comments/comment_created_event: コメント
7
7
  decidim/comments/comment_upvoted_event: 賛成票のあったコメント
8
8
  decidim/comments/reply_created_event: コメント返信
9
- decidim/comments/user_group_mentioned_event: メンション
10
9
  decidim/comments/user_mentioned_event: メンション
11
10
  activerecord:
12
11
  models:
@@ -52,9 +51,6 @@ ja:
52
51
  form_error: テキストは必須で、 %{length} 文字を超えることはできません。
53
52
  submit_reply: 返信を公開
54
53
  submit_root_comment: コメントを公開
55
- user_group_id:
56
- label: 'コメント:'
57
- your_profile: あなたのプロフィール
58
54
  opinion:
59
55
  label: このトピックに関するあなたの意見
60
56
  negative: 否定的
@@ -156,7 +152,6 @@ ja:
156
152
  id: コメントのID
157
153
  locale: コメントを残した参加者の使っていたロケール(言語)
158
154
  root_commentable_url: コメントに関連するリソースの URL
159
- user_group: コメントを作成したユーザーグループの名前 (もしあれば)
160
155
  events:
161
156
  comments:
162
157
  comment_by_followed_user:
@@ -164,11 +159,6 @@ ja:
164
159
  email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
165
160
  email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
166
161
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> より <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>.
167
- comment_by_followed_user_group:
168
- email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
169
- email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
170
- email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
171
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> より <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>.
172
162
  comment_created:
173
163
  email_intro: "%{resource_title} にコメントがありました。このページでコメントを読むことができます:"
174
164
  email_outro: '"%{resource_title}" 、またはその参加者をフォローしているためこの通知を受け取りました。前のリンクからフォローを解除することができます。'
@@ -189,21 +179,11 @@ ja:
189
179
  email_outro: コメントが返信されたため、この通知を受信しました。
190
180
  email_subject: "%{author_name} が %{resource_title} であなたのコメントに返信しました"
191
181
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> が <a href="%{resource_path}">%{resource_title}</a> であなたのコメントに返信しました
192
- user_group_mentioned:
193
- email_intro: あなたが所属しているグループがメンションされました
194
- email_outro: あなたは %{group_name} でメンションされたグループ %{resource_title} のメンバーであるため、この通知を受け取りました。
195
- email_subject: あなたは %{resource_title} で %{group_name} のメンバーとしてメンションされました
196
- notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> に <a href="%{author_path}">%{author_name} %{author_nickname}</a> のメンバとして <a href="%{group_path}">%{group_name} %{group_nickname}</a>
197
182
  user_mentioned:
198
183
  email_intro: あなたはメンションされています
199
184
  email_outro: あなたが %{resource_title}でメンションされたため、この通知を受け取りました。
200
185
  email_subject: あなたは %{resource_title} でメンションされました
201
186
  notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> で <a href="%{author_path}">%{author_name} %{author_nickname}によってメンションされました</a>
202
- metrics:
203
- comments:
204
- description: 出席者によって生成されたコメント数
205
- object: コメント
206
- title: コメント
207
187
  errors:
208
188
  messages:
209
189
  cannot_have_comments: コメントを持つことはできません