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 @@ 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
@@ -125,6 +121,9 @@ fr:
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:
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:
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, ou bien vous rendre dans l'onglet “Mon compte” > “Paramètres des notifications”.
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 ce groupe utilisateur depuis sa page de profil, ou bien vous rendre dans l'onglet “Mon compte” > “Paramètres des notifications”.
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. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
@@ -172,21 +165,11 @@ fr:
172
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”.
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}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
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
@@ -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: 否定的
@@ -122,6 +118,8 @@ ja:
122
118
  other: "%{count} 件のコメント"
123
119
  top_comment_label: Upvoteの多い順
124
120
  down_vote_button:
121
+ label:
122
+ other: よくないねボタン。 %{count} よくないね
125
123
  text: このコメントに同意しません
126
124
  edit_comment_modal_form:
127
125
  close: 閉じる
@@ -132,6 +130,8 @@ ja:
132
130
  submit: 送信
133
131
  title: コメントを編集
134
132
  up_vote_button:
133
+ label:
134
+ other: いいねボタン。 %{count} いいね
135
135
  text: このコメントに同意します
136
136
  download_your_data:
137
137
  help:
@@ -152,7 +152,6 @@ ja:
152
152
  id: コメントのID
153
153
  locale: コメントを残した参加者の使っていたロケール(言語)
154
154
  root_commentable_url: コメントに関連するリソースの URL
155
- user_group: コメントを作成したユーザーグループの名前 (もしあれば)
156
155
  events:
157
156
  comments:
158
157
  comment_by_followed_user:
@@ -160,11 +159,6 @@ ja:
160
159
  email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
161
160
  email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
162
161
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> より <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>.
163
- comment_by_followed_user_group:
164
- email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
165
- email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
166
- email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
167
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> より <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>.
168
162
  comment_created:
169
163
  email_intro: "%{resource_title} にコメントがありました。このページでコメントを読むことができます:"
170
164
  email_outro: '"%{resource_title}" 、またはその参加者をフォローしているためこの通知を受け取りました。前のリンクからフォローを解除することができます。'
@@ -185,21 +179,11 @@ ja:
185
179
  email_outro: コメントが返信されたため、この通知を受信しました。
186
180
  email_subject: "%{author_name} が %{resource_title} であなたのコメントに返信しました"
187
181
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> が <a href="%{resource_path}">%{resource_title}</a> であなたのコメントに返信しました
188
- user_group_mentioned:
189
- email_intro: あなたが所属しているグループがメンションされました
190
- email_outro: あなたは %{group_name} でメンションされたグループ %{resource_title} のメンバーであるため、この通知を受け取りました。
191
- email_subject: あなたは %{resource_title} で %{group_name} のメンバーとしてメンションされました
192
- 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>
193
182
  user_mentioned:
194
183
  email_intro: あなたはメンションされています
195
184
  email_outro: あなたが %{resource_title}でメンションされたため、この通知を受け取りました。
196
185
  email_subject: あなたは %{resource_title} でメンションされました
197
186
  notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> で <a href="%{author_path}">%{author_name} %{author_nickname}によってメンションされました</a>
198
- metrics:
199
- comments:
200
- description: 出席者によって生成されたコメント数
201
- object: コメント
202
- title: コメント
203
187
  errors:
204
188
  messages:
205
189
  cannot_have_comments: コメントを持つことはできません
@@ -5,7 +5,6 @@ lb:
5
5
  decidim/comments/comment_by_followed_user_event: Kommentar
6
6
  decidim/comments/comment_created_event: Kommentar
7
7
  decidim/comments/reply_created_event: Kommentar Äntwert
8
- decidim/comments/user_group_mentioned_event: Erwähnen
9
8
  decidim/comments/user_mentioned_event: Erwähnen
10
9
  activerecord:
11
10
  models:
@@ -35,8 +34,6 @@ lb:
35
34
  body:
36
35
  label: Kommentar
37
36
  placeholder: Was denken Sie darüber?
38
- user_group_id:
39
- label: Kommentieren als
40
37
  opinion:
41
38
  label: Ihre Meinung zu diesem Thema
42
39
  negative: Negativ
@@ -105,11 +102,6 @@ lb:
105
102
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie die Profil-Seite dieses Benutzers.
106
103
  email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
107
104
  notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> zu <a href="%{resource_path}">%{resource_title}</a>.
108
- comment_by_followed_user_group:
109
- email_intro: 'Die Gruppe %{author_name} hat einen Kommentar in %{resource_title} hinterlassen. Sie können diesen auf dieser Seite lesen:'
110
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie die Profil-Seite dieser Gruppe.
111
- email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
112
- notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> zu <a href="%{resource_path}">%{resource_title}</a>.
113
105
  comment_created:
114
106
  email_intro: "%{resource_title} wurde kommentiert. Sie können den Kommentar auf dieser Seite lesen:"
115
107
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" oder seinem Autor folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
@@ -130,18 +122,8 @@ lb:
130
122
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
131
123
  email_subject: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet"
132
124
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat auf Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a> geantwortet
133
- user_group_mentioned:
134
- email_intro: Eine Ihrer Gruppen wurde erwähnt
135
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Mitglied der Gruppe %{group_name} sind, die in %{resource_title} erwähnt wurde.
136
- email_subject: Sie wurden in %{resource_title} als Mitglied von %{group_name} erwähnt
137
- notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> als ein Mitglied von <a href="%{group_path}">%{group_name} %{group_nickname}</a> erwähnt
138
125
  user_mentioned:
139
126
  email_intro: Sie wurden erwähnt
140
127
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title} erwähnt wurden.
141
128
  email_subject: Sie wurden in %{resource_title} erwähnt
142
129
  notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> erwähnt
143
- metrics:
144
- comments:
145
- description: Anzahl der von Benutzern generierten Kommentare
146
- object: Bemerkungen
147
- title: Bemerkungen
@@ -6,7 +6,6 @@ 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ėti
10
9
  decidim/comments/user_mentioned_event: Paminėti
11
10
  activerecord:
12
11
  models:
@@ -54,8 +53,6 @@ lt:
54
53
  form_error: Tekstas būtinais ir negali viršyti %{length} simbolių.
55
54
  submit_reply: Skelbti atsakymą
56
55
  submit_root_comment: Skelbti komentarą
57
- user_group_id:
58
- label: Komentuoti kaip
59
56
  opinion:
60
57
  label: Jūsų nuomonė šiuo klausimu
61
58
  negative: Negatyvi
@@ -135,11 +132,6 @@ lt:
135
132
  email_outro: Gavote šį pranešimą nes sekate %{author_name}. Galite pasirinkti nebesekti šio naudotojo jo profilio puslapyje.
136
133
  email_subject: Naujas komentaras %{resource_title} iš %{author_name}
137
134
  notification_title: Naujas komentaras <a href="%{resource_path}">%{resource_title}</a> iš <a href="%{author_path}">%{author_name}%{author_nickname}</a>.
138
- comment_by_followed_user_group:
139
- email_intro: 'Grupė %{author_name} paliko komentarą po %{resource_title}. Galite jį perskaityti šiame puslapyje:'
140
- email_outro: Šį pranešimą gavote dėl to, kad sekate %{author_name}. Jūs galite nebesekti šios grupės pasirinkdami šį nustatymą jos profilio puslapyje.
141
- email_subject: Naujas komentaras %{resource_title} iš %{author_name}
142
- notification_title: Naujas komentaras <a href="%{resource_path}">%{resource_title}</a> iš <a href="%{author_path}">%{author_name}%{author_nickname}</a>.
143
135
  comment_created:
144
136
  email_intro: "%{resource_title} pateiktas komentaras. Komentarą galite perskaityti šiame puslapyje:"
145
137
  email_outro: Šį pranešimą gavote dėl to, kad sekate „%{resource_title}“ arba jo autorių. Jūs galite jo nebesekti spustelėdami aukščiau esančią nuorodą.
@@ -160,21 +152,11 @@ lt:
160
152
  email_outro: Gavote šį pranešimą nes į Jūsų komentarą buvo atsakyta.
161
153
  email_subject: "%{author_name} atsakė į komentarą %{resource_title}"
162
154
  notification_title: <a href="%{author_path}">%{author_name}%{author_nickname}</a> atsakė į komentarą <a href="%{resource_path}">%{resource_title}</a>
163
- user_group_mentioned:
164
- email_intro: Grupė, kuriai priklausote, buvo paminėta
165
- email_outro: Gavote šį pranešimą nes esate %{resource_title} paminėtos grupės %{group_name} narė(-ys).
166
- email_subject: Buvote paminėtas %{resource_title} kaip %{group_name} narys
167
- notification_title: Buvote paminėtas <a href="%{resource_path}">%{resource_title} <a href="%{author_path}">%{author_name}%{author_nickname}</a> kaip <a href="%{group_path}">%{group_name}%{group_nickname}</a> narį
168
155
  user_mentioned:
169
156
  email_intro: Buvote paminėta(-s)
170
157
  email_outro: Gavote šį pranešimą nes buvote paminėta(-s) %{resource_title}.
171
158
  email_subject: Buvote paminėta(-s) %{resource_title}
172
159
  notification_title: Buvote paminėta(-s) <a href="%{resource_path}"> %{resource_title}</a><a href="%{author_path}">%{author_name}%{author_nickname}</a>
173
- metrics:
174
- comments:
175
- description: Komentarų sugeneruotų dalyvių skaičius
176
- object: komentarai
177
- title: Komentarai
178
160
  errors:
179
161
  messages:
180
162
  cannot_have_comments: negali turėti komentarų
@@ -5,7 +5,6 @@ lv:
5
5
  decidim/comments/comment_by_followed_user_event: Komentēt
6
6
  decidim/comments/comment_created_event: Komentēt
7
7
  decidim/comments/reply_created_event: Atbildēt uz komentāru
8
- decidim/comments/user_group_mentioned_event: Pieminēt
9
8
  decidim/comments/user_mentioned_event: Pieminēt
10
9
  activerecord:
11
10
  models:
@@ -32,8 +31,6 @@ lv:
32
31
  body:
33
32
  label: Komentēt
34
33
  placeholder: Ko tu domā par šo?
35
- user_group_id:
36
- label: Komentēt kā
37
34
  opinion:
38
35
  neutral: Neitrāls
39
36
  remaining_characters: "Palikušas %{count} rakstzīmes"
@@ -73,11 +70,6 @@ lv:
73
70
  email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{author_name}. Jūs varat atsekot šim lietotājam viņa profila lapā.
74
71
  email_subject: '%{resource_title} ir jauns%{author_name} komentārs'
75
72
  notification_title: <a href="%{author_path}">%{author_name}%{author_nickname}</a> ir jauns komentārs <a href="%{resource_path}">%{resource_title}</a>.
76
- comment_by_followed_user_group:
77
- email_intro: 'Grupa %{author_name} ir atstājusi komentāru %{resource_title}. Jūs to varat izlasīt šajā lapā:'
78
- email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{author_name}. Jūs varat atsekot šai grupai no tās profila lapas.
79
- email_subject: '%{resource_title} ir jauns%{author_name} komentārs'
80
- notification_title: <a href="%{author_path}">%{author_name}%{author_nickname}</a> ir jauns komentārs <a href="%{resource_path}">%{resource_title}</a>.
81
73
  comment_created:
82
74
  email_intro: "%{resource_title} ir komentēts. Jūs varat izlasīt komentāru šajā lapā:"
83
75
  email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat "%{resource_title}" vai tā autoram. Jūs varat atsekot tam no iepriekšējās saites.
@@ -88,18 +80,8 @@ lv:
88
80
  email_outro: Jūs saņēmāt šo paziņojumu, jo kāds atbildēja uz jūsu komentāru.
89
81
  email_subject: "%{author_name} atbildēja uz jūsu komentāru %{resource_title}"
90
82
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> atbildēja uz jūsu komentāru <a href="%{resource_path}">%{resource_title}</a>
91
- user_group_mentioned:
92
- email_intro: Tika pieminēta grupa, kurai jūs piederat
93
- email_outro: Jūs saņēmāt šo paziņojumu, jo esat grupas %{group_name} dalībnieks, kura tika pieminēta %{resource_title}.
94
- email_subject: Jūs esat pieminēts %{resource_title} kā %{group_name} dalībnieks
95
- notification_title: <a href="%{resource_path}">%{resource_title}</a> jūs <a href="%{author_path}">%{author_name}%{author_nickname}</a> pieminēja kā <a href="%{group_path}">%{group_name}%{group_nickname}</a> dalībnieku
96
83
  user_mentioned:
97
84
  email_intro: Jūs esat pieminēts
98
85
  email_outro: Jūs saņēmāt šo paziņojumu, jo esat pieminēts %{resource_title}.
99
86
  email_subject: Jūs esat pieminēts %{resource_title}
100
87
  notification_title: <a href="%{resource_path}">%{resource_title}</a> jūs pieminēja <a href="%{author_path}">%{author_name} %{author_nickname}</a>
101
- metrics:
102
- comments:
103
- description: Dalībnieku izveidoto komentāru skaits
104
- object: komentāri
105
- title: Komentāri
@@ -6,7 +6,6 @@ nl:
6
6
  decidim/comments/comment_created_event: Commentaar
7
7
  decidim/comments/comment_upvoted_event: Reactie omhoog gestemd
8
8
  decidim/comments/reply_created_event: Reactie antwoord
9
- decidim/comments/user_group_mentioned_event: Vermelding
10
9
  decidim/comments/user_mentioned_event: Vermelding
11
10
  activerecord:
12
11
  models:
@@ -42,8 +41,6 @@ nl:
42
41
  body:
43
42
  label: Reactie
44
43
  placeholder: Wat wil je hierover zeggen?
45
- user_group_id:
46
- label: Reageer als
47
44
  opinion:
48
45
  label: Jouw mening over dit onderwerp
49
46
  negative: Negatief
@@ -114,11 +111,6 @@ nl:
114
111
  email_outro: Je hebt deze melding ontvangen omdat je %{author_name}volgt. Je kan deze gebruiker ontvolgen via zijn profielpagina.
115
112
  email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
116
113
  notification_title: Er is een nieuwe reactie van <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
117
- comment_by_followed_user_group:
118
- email_intro: 'De groep %{author_name} heeft een reactie achtergelaten in %{resource_title}. Je kunt het op deze pagina lezen:'
119
- email_outro: Je hebt deze melding ontvangen omdat je %{author_name}volgt. Je kan stoppen met deze groep te volgen via de profielpagina.
120
- email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
121
- notification_title: Er is een nieuwe reactie van <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
122
114
  comment_created:
123
115
  email_intro: "%{resource_title} heeft een reactie ontvangen. Je kan de opmerking op deze pagina lezen:"
124
116
  email_outro: Je hebt deze melding ontvangen omdat je '%{resource_title}' of de auteur ervan volgt. Ontvolgen kan door te klikken op de vorige link.
@@ -139,18 +131,8 @@ nl:
139
131
  email_outro: Je hebt deze melding ontvangen omdat je reactie beantwoord is.
140
132
  email_subject: "%{author_name} heeft op je comment gereageerd in %{resource_title}"
141
133
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> heeft gereageerd op je opmerking in <a href="%{resource_path}">%{resource_title}</a>
142
- user_group_mentioned:
143
- email_intro: Een groep waartoe u behoort is genoemd
144
- email_outro: Je hebt deze melding ontvangen omdat je lid bent van de groep %{group_name} die is genoemd in %{resource_title}.
145
- email_subject: U bent genoemd in %{resource_title} als lid van %{group_name}
146
- notification_title: U bent genoemd in <a href="%{resource_path}">%{resource_title}</a> door <a href="%{author_path}">%{author_name} %{author_nickname}</a> als lid van <a href="%{group_path}">%{group_name} %{group_nickname}</a>
147
134
  user_mentioned:
148
135
  email_intro: Iemand heeft je getagd
149
136
  email_outro: Je hebt deze melding ontvangen omdat je bent getagd in %{resource_title}.
150
137
  email_subject: Je bent getagd in %{resource_title}
151
138
  notification_title: Je bent getagd in <a href="%{resource_path}">%{resource_title}</a> door <a href="%{author_path}">%{author_name} %{author_nickname}</a>
152
- metrics:
153
- comments:
154
- description: Aantal reacties gegenereerd door deelnemers
155
- object: reacties
156
- title: Reacties
@@ -5,7 +5,6 @@
5
5
  decidim/comments/comment_by_followed_user_event: Kommentar
6
6
  decidim/comments/comment_created_event: Kommentar
7
7
  decidim/comments/reply_created_event: Kommenter svar
8
- decidim/comments/user_group_mentioned_event: Omtal
9
8
  decidim/comments/user_mentioned_event: Omtal
10
9
  activerecord:
11
10
  models:
@@ -41,8 +40,6 @@
41
40
  body:
42
41
  label: Kommentar
43
42
  placeholder: Hva mener du om dette?
44
- user_group_id:
45
- label: Kommenter som
46
43
  opinion:
47
44
  label: Din mening om dette temaet
48
45
  negative: Negativ
@@ -112,11 +109,6 @@
112
109
  email_outro: Du har mottatt denne varslingen fordi du følger %{author_name}. Du kan slutte å følge denne brukeren fra dems profil side.
113
110
  email_subject: Det er en ny kommentar av %{author_name} i %{resource_title}
114
111
  notification_title: Det er en ny kommentar av <a href="%{author_path}">%{author_name} %{author_nickname}</a> i <a href="%{resource_path}">%{resource_title}</a>.
115
- comment_by_followed_user_group:
116
- email_intro: '%{author_name} har lagt igjen en kommentar i %{resource_title}. Du kan lese den på denne siden:'
117
- email_outro: Du har mottatt denne varslingen fordi du følger %{author_name}. Du kan slutte å følge denne brukeren fra deres profilside.
118
- email_subject: Det er en ny kommentar av %{author_name} i %{resource_title}
119
- notification_title: Det er en ny kommentar av <a href="%{author_path}">%{author_name} %{author_nickname}</a> i <a href="%{resource_path}">%{resource_title}</a>.
120
112
  comment_created:
121
113
  email_intro: "%{resource_title} har blitt kommentert. Du kan lese kommentaren på denne siden:"
122
114
  email_outro: Du har mottatt denne varslingen fordi du følger "%{resource_title}" eller dens forfatter. Du kan slutte å følge den fra den forrige lenken.
@@ -137,18 +129,8 @@
137
129
  email_outro: Du har mottatt denne varslingen fordi din kommentar er besvart.
138
130
  email_subject: "%{author_name} har svart kommentaren din i %{resource_title}"
139
131
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> har svart kommentaren din i <a href="%{resource_path}">%{resource_title}</a>
140
- user_group_mentioned:
141
- email_intro: En gruppe du er medlem av har blitt nevnt
142
- email_outro: Du får denne varslingen fordi du er medlem av gruppen %{group_name}, som har blitt nevnt i%{resource_title}.
143
- email_subject: Du har blitt nevnt i %{resource_title} som medlem av %{group_name}
144
- notification_title: Du har blitt nevnt i <a href="%{resource_path}"> %{resource_title} av <a href="%{author_path}">%{author_name}%{author_nickname} som medlem av <a href="%{group_path}">%{group_name}%{group_nickname}
145
132
  user_mentioned:
146
133
  email_intro: Du har blitt nevnt
147
134
  email_outro: Du har mottatt denne varslingen fordi du er nevnt i %{resource_title}.
148
135
  email_subject: Du har blitt nevnt i %{resource_title}
149
136
  notification_title: Du har blitt nevnt i <a href="%{resource_path}">%{resource_title}</a> av <a href="%{author_path}">%{author_name} %{author_nickname}</a>
150
- metrics:
151
- comments:
152
- description: Antall kommenterer generert av deltakerne
153
- object: kommentarer
154
- title: Kommentarer