decidim-comments 0.29.3 → 0.30.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 (83) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment/actions.erb +0 -8
  3. data/app/cells/decidim/comments/comment/show.erb +41 -5
  4. data/app/cells/decidim/comments/comment_cell.rb +37 -1
  5. data/app/cells/decidim/comments/comment_form/comment_as.erb +24 -6
  6. data/app/cells/decidim/comments/comment_form/opinion.erb +0 -4
  7. data/app/cells/decidim/comments/comment_form/show.erb +31 -29
  8. data/app/cells/decidim/comments/comment_form_cell.rb +7 -2
  9. data/app/cells/decidim/comments/comment_thread/show.erb +2 -2
  10. data/app/cells/decidim/comments/comments/add_comment.erb +12 -14
  11. data/app/cells/decidim/comments/comments/comments_in_single_column.erb +6 -0
  12. data/app/cells/decidim/comments/comments/order_control.erb +32 -9
  13. data/app/cells/decidim/comments/comments/show.erb +7 -7
  14. data/app/cells/decidim/comments/comments_cell.rb +56 -12
  15. data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +1 -1
  16. data/app/cells/decidim/comments/two_columns_comments/column.erb +20 -0
  17. data/app/cells/decidim/comments/two_columns_comments/show.erb +11 -0
  18. data/app/cells/decidim/comments/two_columns_comments_cell.rb +86 -0
  19. data/app/controllers/decidim/comments/comments_controller.rb +1 -2
  20. data/app/forms/decidim/comments/comment_form.rb +14 -0
  21. data/app/models/decidim/comments/comment.rb +10 -8
  22. data/app/packs/entrypoints/decidim_comments.js +1 -0
  23. data/app/packs/src/decidim/comments/comments.component.js +151 -24
  24. data/app/packs/src/decidim/comments/comments.component.test.js +2 -1
  25. data/app/packs/src/decidim/comments/comments.js +95 -12
  26. data/app/packs/src/decidim/comments/comments_dropdown.js +57 -0
  27. data/app/packs/src/decidim/comments/comments_mobile_modal.js +46 -0
  28. data/app/packs/stylesheets/comments.scss +203 -50
  29. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +1 -1
  30. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +22 -17
  31. data/app/views/decidim/comments/comments/create.js.erb +9 -1
  32. data/config/locales/ar.yml +0 -1
  33. data/config/locales/bg.yml +0 -1
  34. data/config/locales/ca.yml +35 -4
  35. data/config/locales/cs.yml +37 -2
  36. data/config/locales/de.yml +35 -4
  37. data/config/locales/el.yml +0 -1
  38. data/config/locales/en.yml +35 -4
  39. data/config/locales/es-MX.yml +35 -4
  40. data/config/locales/es-PY.yml +35 -4
  41. data/config/locales/es.yml +35 -4
  42. data/config/locales/eu.yml +55 -24
  43. data/config/locales/fi-plain.yml +35 -2
  44. data/config/locales/fi.yml +36 -3
  45. data/config/locales/fr-CA.yml +8 -4
  46. data/config/locales/fr.yml +8 -4
  47. data/config/locales/gl.yml +0 -1
  48. data/config/locales/hu.yml +0 -1
  49. data/config/locales/id-ID.yml +0 -1
  50. data/config/locales/is-IS.yml +0 -1
  51. data/config/locales/it.yml +1 -2
  52. data/config/locales/ja.yml +34 -4
  53. data/config/locales/lb.yml +0 -1
  54. data/config/locales/lt.yml +1 -2
  55. data/config/locales/lv.yml +0 -1
  56. data/config/locales/nl.yml +0 -1
  57. data/config/locales/no.yml +0 -1
  58. data/config/locales/pl.yml +1 -3
  59. data/config/locales/pt-BR.yml +0 -1
  60. data/config/locales/pt.yml +0 -1
  61. data/config/locales/ro-RO.yml +57 -60
  62. data/config/locales/ru.yml +0 -1
  63. data/config/locales/sk.yml +0 -1
  64. data/config/locales/sv.yml +19 -4
  65. data/config/locales/tr-TR.yml +1 -2
  66. data/config/locales/uk.yml +0 -1
  67. data/config/locales/zh-CN.yml +0 -1
  68. data/config/locales/zh-TW.yml +0 -1
  69. data/decidim-comments.gemspec +1 -1
  70. data/lib/decidim/api/comment_mutation_type.rb +2 -2
  71. data/lib/decidim/api/comment_type.rb +12 -45
  72. data/lib/decidim/api/commentable_interface.rb +4 -16
  73. data/lib/decidim/api/commentable_mutation_type.rb +2 -3
  74. data/lib/decidim/comments/commentable.rb +11 -0
  75. data/lib/decidim/comments/engine.rb +7 -1
  76. data/lib/decidim/comments/test/factories.rb +8 -0
  77. data/lib/decidim/comments/test/shared_examples/comment_event.rb +1 -1
  78. data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +2 -2
  79. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +1 -1
  80. data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +2 -2
  81. data/lib/decidim/comments/version.rb +1 -1
  82. metadata +16 -11
  83. data/config/locales/ca-IT.yml +0 -178
@@ -4,7 +4,6 @@ require "rails"
4
4
  require "active_support/all"
5
5
 
6
6
  require "decidim/core"
7
- require "foundation_rails_helper"
8
7
 
9
8
  require "decidim/comments/query_extensions"
10
9
  require "decidim/comments/mutation_extensions"
@@ -21,6 +20,12 @@ module Decidim
21
20
  end
22
21
  end
23
22
 
23
+ initializer "decidim_comments.mount_routes" do
24
+ Decidim::Core::Engine.routes do
25
+ mount Decidim::Comments::Engine, at: "/", as: "decidim_comments"
26
+ end
27
+ end
28
+
24
29
  initializer "decidim_comments.query_extensions" do
25
30
  Decidim::Api::QueryType.include QueryExtensions
26
31
  end
@@ -42,6 +47,7 @@ module Decidim
42
47
 
43
48
  Decidim.icons.register(name: "Decidim::Comments::Comment", icon: "chat-1-line", description: "Comment", category: "activity", engine: :comments)
44
49
  Decidim.icons.register(name: "comments_count", icon: "wechat-line", description: "Comments Count", category: "activity", engine: :comments)
50
+ Decidim.icons.register(name: "star-s-line", icon: "star-s-line", description: "Most upvoted comment", category: "activity", engine: :comments)
45
51
 
46
52
  Decidim.icons.register(name: "thumb-up-line", icon: "thumb-up-line", description: "Upvote comment button", **common_parameters)
47
53
  Decidim.icons.register(name: "thumb-up-fill", icon: "thumb-up-fill", description: "User upvoted comment", **common_parameters)
@@ -46,6 +46,14 @@ FactoryBot.define do
46
46
  create(:moderation, reportable: comment, hidden_at: 2.days.ago, skip_injection: evaluator.skip_injection)
47
47
  end
48
48
  end
49
+
50
+ trait :in_favor do
51
+ alignment { 1 }
52
+ end
53
+
54
+ trait :against do
55
+ alignment { -1 }
56
+ end
49
57
  end
50
58
 
51
59
  factory :comment_vote, class: "Decidim::Comments::CommentVote" do
@@ -10,7 +10,7 @@ shared_context "when it is a comment event" do
10
10
 
11
11
  let(:resource) { comment.commentable }
12
12
 
13
- let(:comment) { create :comment }
13
+ let(:comment) { create(:comment) }
14
14
  let(:comment_author) { comment.author }
15
15
  let(:normalized_comment_author) { comment.author }
16
16
  let(:comment_author_name) { decidim_html_escape comment.author.name }
@@ -7,8 +7,8 @@ shared_examples_for "a comment voted event" do
7
7
 
8
8
  let(:resource) { comment.commentable }
9
9
 
10
- let(:comment) { create :comment }
11
- let(:comment_vote) { create :comment_vote, comment: }
10
+ let(:comment) { create(:comment) }
11
+ let(:comment_vote) { create(:comment_vote, comment:) }
12
12
  let(:comment_vote_author) { comment_vote.author }
13
13
 
14
14
  let(:extra) { { comment_id: comment.id, author_id: comment_vote_author.id, weight:, downvotes: 100, upvotes: 999 } }
@@ -7,7 +7,7 @@ RSpec.shared_context "when creating a comment" do
7
7
  let(:user) { create(:user, organization:) }
8
8
  let(:author) { create(:user, organization:) }
9
9
  let(:current_user) { author }
10
- let(:dummy_resource) { create :dummy_resource, component: }
10
+ let(:dummy_resource) { create(:dummy_resource, component:) }
11
11
  let(:commentable) { dummy_resource }
12
12
  let(:body) { Faker::Lorem.paragraph }
13
13
  let(:alignment) { 1 }
@@ -6,10 +6,10 @@ shared_examples_for "a translated comment event" do
6
6
  describe "translated notifications" do
7
7
  let(:en_body) { "This is Sparta!" }
8
8
  let(:body) { { en: en_body, machine_translations: { ca: "C'est Sparta!" } } }
9
- let(:participatory_process) { create :participatory_process, organization: }
9
+ let(:participatory_process) { create(:participatory_process, organization:) }
10
10
  let(:component) { create(:component, participatory_space: participatory_process) }
11
11
  let(:commentable) { create(:dummy_resource, component:) }
12
- let(:comment) { create :comment, body:, commentable: }
12
+ let(:comment) { create(:comment, body:, commentable:) }
13
13
  let(:en_version) { "<div><p>#{comment.body["en"]}</p></div>" }
14
14
  let(:machine_translated) { "<div><p>#{comment.body["machine_translations"]["ca"]}</p></div>" }
15
15
 
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-comments version.
5
5
  module Comments
6
6
  def self.version
7
- "0.29.3"
7
+ "0.30.0.rc1"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-comments
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.3
4
+ version: 0.30.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-04-29 00:00:00.000000000 Z
13
+ date: 2025-02-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-core
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.29.3
21
+ version: 0.30.0.rc1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 0.29.3
28
+ version: 0.30.0.rc1
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: redcarpet
31
31
  requirement: !ruby/object:Gem::Requirement
@@ -52,28 +52,28 @@ dependencies:
52
52
  requirements:
53
53
  - - '='
54
54
  - !ruby/object:Gem::Version
55
- version: 0.29.3
55
+ version: 0.30.0.rc1
56
56
  type: :development
57
57
  prerelease: false
58
58
  version_requirements: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - '='
61
61
  - !ruby/object:Gem::Version
62
- version: 0.29.3
62
+ version: 0.30.0.rc1
63
63
  - !ruby/object:Gem::Dependency
64
64
  name: decidim-dev
65
65
  requirement: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - '='
68
68
  - !ruby/object:Gem::Version
69
- version: 0.29.3
69
+ version: 0.30.0.rc1
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - '='
75
75
  - !ruby/object:Gem::Version
76
- version: 0.29.3
76
+ version: 0.30.0.rc1
77
77
  description: Pluggable comments system for some components.
78
78
  email:
79
79
  - josepjaume@gmail.com
@@ -105,6 +105,7 @@ files:
105
105
  - app/cells/decidim/comments/comment_thread_cell.rb
106
106
  - app/cells/decidim/comments/comments/add_comment.erb
107
107
  - app/cells/decidim/comments/comments/blocked_comments_warning.erb
108
+ - app/cells/decidim/comments/comments/comments_in_single_column.erb
108
109
  - app/cells/decidim/comments/comments/comments_loading.erb
109
110
  - app/cells/decidim/comments/comments/order_control.erb
110
111
  - app/cells/decidim/comments/comments/show.erb
@@ -113,6 +114,9 @@ files:
113
114
  - app/cells/decidim/comments/comments_cell.rb
114
115
  - app/cells/decidim/comments/edit_comment_modal_form/show.erb
115
116
  - app/cells/decidim/comments/edit_comment_modal_form_cell.rb
117
+ - app/cells/decidim/comments/two_columns_comments/column.erb
118
+ - app/cells/decidim/comments/two_columns_comments/show.erb
119
+ - app/cells/decidim/comments/two_columns_comments_cell.rb
116
120
  - app/commands/decidim/comments/create_comment.rb
117
121
  - app/commands/decidim/comments/delete_comment.rb
118
122
  - app/commands/decidim/comments/update_comment.rb
@@ -142,6 +146,8 @@ files:
142
146
  - app/packs/src/decidim/comments/comments.component.test.js
143
147
  - app/packs/src/decidim/comments/comments.component_for_testing.js
144
148
  - app/packs/src/decidim/comments/comments.js
149
+ - app/packs/src/decidim/comments/comments_dropdown.js
150
+ - app/packs/src/decidim/comments/comments_mobile_modal.js
145
151
  - app/packs/stylesheets/comments.scss
146
152
  - app/permissions/decidim/comments/permissions.rb
147
153
  - app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb
@@ -175,7 +181,6 @@ files:
175
181
  - config/locales/bg.yml
176
182
  - config/locales/bn-BD.yml
177
183
  - config/locales/bs-BA.yml
178
- - config/locales/ca-IT.yml
179
184
  - config/locales/ca.yml
180
185
  - config/locales/cs-CZ.yml
181
186
  - config/locales/cs.yml
@@ -317,14 +322,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
317
322
  requirements:
318
323
  - - "~>"
319
324
  - !ruby/object:Gem::Version
320
- version: 3.2.0
325
+ version: 3.3.0
321
326
  required_rubygems_version: !ruby/object:Gem::Requirement
322
327
  requirements:
323
328
  - - ">="
324
329
  - !ruby/object:Gem::Version
325
330
  version: '0'
326
331
  requirements: []
327
- rubygems_version: 3.4.10
332
+ rubygems_version: 3.5.11
328
333
  signing_key:
329
334
  specification_version: 4
330
335
  summary: Decidim comments module
@@ -1,178 +0,0 @@
1
- ---
2
- ca-IT:
3
- activemodel:
4
- models:
5
- decidim/comments/comment_by_followed_user_event: Comentari
6
- decidim/comments/comment_created_event: Comentari
7
- decidim/comments/comment_upvoted_event: Comentari valorat positivament
8
- decidim/comments/reply_created_event: Resposta al comentari
9
- decidim/comments/user_group_mentioned_event: Mencionar
10
- decidim/comments/user_mentioned_event: Mencionar
11
- activerecord:
12
- models:
13
- decidim/comments/comment:
14
- one: Comentari
15
- other: Comentaris
16
- decidim/comments/comment_vote:
17
- one: Vot
18
- other: Vots
19
- decidim:
20
- comments:
21
- admin:
22
- shared:
23
- availability_fields:
24
- enabled: Comentaris habilitats
25
- end_time: Comentaris habilitats fins al
26
- start_time: Comentaris habilitats des de
27
- comment_thread:
28
- accessibility_label: Fil de comentaris iniciat per %{full_name} el %{date}
29
- comments:
30
- create:
31
- error: S'ha produït un error en crear el comentari.
32
- delete:
33
- error: El comentari no s'ha pogut eliminar.
34
- update:
35
- error: S'ha produït un error en actualitzar el comentari.
36
- comments_title: Comentari
37
- last_activity:
38
- new_comment: 'Nou comentari:'
39
- votes:
40
- create:
41
- error: S'ha produït un error en votar el comentari.
42
- components:
43
- add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Inicia sessió</a> o <a href="%{sign_up_url}">crea un compte</a> per afegir el teu comentari.
45
- form:
46
- body:
47
- label: Comentari
48
- placeholder: Què en penses d'això?
49
- form_error: El text és necessari i no pot ser més llarg de %{length}.
50
- submit_reply: Publicar resposta
51
- submit_root_comment: Publicar comentari
52
- user_group_id:
53
- label: Comentar com a
54
- opinion:
55
- label: La teva opinió sobre aquest tema
56
- negative: Negativa
57
- negative_selected: La teva opinió sobre aquest tema és negativa
58
- neutral: Neutral
59
- neutral_selected: La teva opinió sobre aquest tema és neutral
60
- positive: Positiva
61
- positive_selected: La teva opinió sobre aquest tema és positiva
62
- remaining_characters: "Queden %{count} caràcters"
63
- remaining_characters_1: "Queda %{count} caràcter"
64
- title: Deixa el teu comentari
65
- comment:
66
- alignment:
67
- against: En contra
68
- in_favor: A favor
69
- cancel_reply: Cancel·lar resposta
70
- comment_label: Comentari %{comment_id}
71
- comment_label_reply: Comentari %{comment_id} (respon al comentari %{parent_comment_id})
72
- confirm_destroy: Segur que vols esborrar aquest comentari?
73
- controls_label: Controls de comentaris
74
- delete: Esborrar
75
- deleted_at: Comentari esborrat el %{date}
76
- deleted_user: Participant eliminada
77
- edit: Editar
78
- edited: Editat
79
- hide_replies:
80
- one: Amagar resposta
81
- other: Amagar %{count} respostes
82
- moderated_at: Comentari moderat el %{date}
83
- reply: Respondre
84
- report:
85
- action: Denúncia
86
- already_reported: Aquest contingut ja ha estat denunciat i serà revisat per una administradora.
87
- close: Tancar
88
- description: Aquest contingut és inapropiat?
89
- details: Comentaris addicionals
90
- reasons:
91
- does_not_belong: Conté activitat il·legal, amenaces de suïcidi, informació personal, o qualsevol altra cosa que creguis que no pertany a %{organization_name}.
92
- offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort, peticions de suïcidi o qualsevol forma de discurs d'odi.
93
- spam: Conté "clickbait", publicitat o estafes.
94
- title: Notificar contingut inapropiat
95
- show_replies:
96
- one: Mostra la resposta
97
- other: Mostra les %{count} respostes
98
- single_comment_link_title: Obtenir enllaç
99
- comment_order_selector:
100
- order:
101
- best_rated: Més ben valorats
102
- most_discussed: Més discutit
103
- older: Més antic
104
- recent: Recent
105
- title: 'Ordenar per:'
106
- comments:
107
- blocked_comments_for_unauthorized_user_warning: Has d'estar verificat abans de poder fer comentaris, però pots llegir els comentaris anteriors.
108
- blocked_comments_for_user_warning: No pots fer comentaris en aquest moment, però pots llegir els anteriors.
109
- blocked_comments_warning: Els comentaris estan desactivats en aquest moment, però pots llegir els anteriors.
110
- comment_details_title: Detalls del comentari
111
- loading: Carregant els comentaris ...
112
- single_comment_warning: <a href="%{url}">Mostra tots els comentaris</a>
113
- single_comment_warning_title: Estàs veient un sol comentari
114
- title:
115
- one: "%{count} comentari"
116
- other: "%{count} comentaris"
117
- down_vote_button:
118
- text: No estic d'acord amb aquest comentari
119
- edit_comment_modal_form:
120
- close: Tancar
121
- form:
122
- body:
123
- label: Comentar
124
- placeholder: Què opines sobre això?
125
- submit: Enviar
126
- title: Edita el teu comentari
127
- up_vote_button:
128
- text: Estic d'acord amb aquest comentari
129
- events:
130
- comments:
131
- comment_by_followed_user:
132
- email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
133
- email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{author_name}". Pots deixar de seguir a aquesta participant des de la seva pàgina de perfil.
134
- email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
135
- notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
136
- comment_by_followed_user_group:
137
- email_intro: '%{author_name} ha deixat un comentari a%{resource_title}. Pots llegir-lo en aquesta pàgina:'
138
- email_outro: Reps aquesta notificació perquè segueixes a "%{author_name}". Pots deixar de seguir aquest grup des de la seva pàgina de perfil.
139
- email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
140
- notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
141
- comment_created:
142
- email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
143
- email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
144
- email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
145
- notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
146
- comment_downvoted:
147
- email_intro: El teu comentari a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
148
- email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
149
- email_subject: El teu comentari a "%{resource_title}" ha rebut un vot negatiu.
150
- notification_title: El teu <a href="%{resource_path}">comentari</a> a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
151
- comment_upvoted:
152
- email_intro: El teu comentari a "%{resource_title}" ha rebut un vot positiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
153
- email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
154
- email_subject: El teu comentari a "%{resource_title}" ha rebut un vot positiu.
155
- notification_title: El teu <a href="%{resource_path}">comentari</a> a "%{resource_title}" ha rebut un vot positiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
156
- reply_created:
157
- email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
158
- email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
159
- email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
160
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
161
- user_group_mentioned:
162
- email_intro: Un grup al qual pertanys ha estat esmentat
163
- email_outro: Has rebut aquesta notificació perquè formes part del grup "%{group_name}" que ha estat esmentat a %{resource_title}.
164
- email_subject: T'han esmentat a %{resource_title} com a membre de %{group_name}
165
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> t'ha esmentat com a membre de <a href="%{group_path}">%{group_name} %{group_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>
166
- user_mentioned:
167
- email_intro: Has estat esmentada
168
- email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
169
- email_subject: Has estat esmentada a %{resource_title}
170
- notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
171
- metrics:
172
- comments:
173
- description: Nombre de comentaris generats per les participants
174
- object: comentaris
175
- title: Comentaris
176
- errors:
177
- messages:
178
- cannot_have_comments: no es poden fer comentaris