decidim-comments 0.27.6 → 0.28.0.rc4

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 (131) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment/actions.erb +13 -7
  3. data/app/cells/decidim/comments/comment/alignment_badge.erb +1 -4
  4. data/app/cells/decidim/comments/comment/deletion_data.erb +9 -1
  5. data/app/cells/decidim/comments/comment/moderation_data.erb +1 -1
  6. data/app/cells/decidim/comments/comment/replies.erb +3 -0
  7. data/app/cells/decidim/comments/comment/show.erb +72 -35
  8. data/app/cells/decidim/comments/comment/votes.erb +14 -14
  9. data/app/cells/decidim/comments/comment_activity_cell.rb +11 -7
  10. data/app/cells/decidim/comments/comment_card_cell.rb +2 -2
  11. data/app/cells/decidim/comments/comment_cell.rb +9 -21
  12. data/app/cells/decidim/comments/comment_form/comment_as.erb +3 -3
  13. data/app/cells/decidim/comments/comment_form/opinion.erb +18 -0
  14. data/app/cells/decidim/comments/comment_form/show.erb +33 -16
  15. data/app/cells/decidim/comments/comment_form_cell.rb +9 -1
  16. data/app/cells/decidim/comments/comment_metadata_cell.rb +27 -0
  17. data/app/cells/decidim/comments/comment_s_cell.rb +27 -0
  18. data/app/cells/decidim/comments/comment_thread/show.erb +2 -5
  19. data/app/cells/decidim/comments/comment_thread_cell.rb +0 -6
  20. data/app/cells/decidim/comments/comments/add_comment.erb +1 -20
  21. data/app/cells/decidim/comments/comments/blocked_comments_warning.erb +1 -3
  22. data/app/cells/decidim/comments/comments/comments_loading.erb +1 -3
  23. data/app/cells/decidim/comments/comments/order_control.erb +11 -35
  24. data/app/cells/decidim/comments/comments/show.erb +8 -9
  25. data/app/cells/decidim/comments/comments/single_comment_warning.erb +6 -9
  26. data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +9 -6
  27. data/app/cells/decidim/comments/comments_cell.rb +1 -1
  28. data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +20 -15
  29. data/app/commands/decidim/comments/create_comment.rb +17 -5
  30. data/app/commands/decidim/comments/delete_comment.rb +1 -1
  31. data/app/commands/decidim/comments/update_comment.rb +14 -2
  32. data/app/commands/decidim/comments/vote_comment.rb +1 -1
  33. data/app/controllers/decidim/comments/comments_controller.rb +14 -9
  34. data/app/controllers/decidim/comments/votes_controller.rb +1 -1
  35. data/app/events/decidim/comments/comment_by_followed_user_event.rb +1 -1
  36. data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +1 -1
  37. data/app/events/decidim/comments/comment_event.rb +2 -3
  38. data/app/events/decidim/comments/reply_created_event.rb +1 -1
  39. data/app/events/decidim/comments/user_group_mentioned_event.rb +1 -1
  40. data/app/events/decidim/comments/user_mentioned_event.rb +1 -1
  41. data/app/helpers/decidim/comments/comment_cells_helper.rb +1 -1
  42. data/app/jobs/decidim/comments/hide_all_created_by_author_job.rb +13 -0
  43. data/app/models/decidim/comments/comment.rb +9 -7
  44. data/app/models/decidim/comments/comment_vote.rb +0 -10
  45. data/app/models/decidim/comments/seed.rb +30 -14
  46. data/app/packs/entrypoints/decidim_comments.js +5 -0
  47. data/app/packs/src/decidim/comments/comments.component.js +27 -36
  48. data/app/packs/src/decidim/comments/comments.component.test.js +218 -240
  49. data/app/packs/src/decidim/comments/comments.component_for_testing.js +1 -1
  50. data/app/packs/src/decidim/comments/comments.js +20 -1
  51. data/app/packs/stylesheets/comments.scss +327 -0
  52. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
  53. data/app/queries/decidim/comments/sorted_comments.rb +10 -10
  54. data/app/services/decidim/comments/comment_creation.rb +1 -1
  55. data/app/services/decidim/comments/new_comment_notification_creator.rb +8 -8
  56. data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +4 -9
  57. data/app/views/decidim/comments/comments/_comment.html.erb +1 -1
  58. data/app/views/decidim/comments/comments/_comments.html.erb +1 -1
  59. data/app/views/decidim/comments/comments/_delete.html.erb +2 -4
  60. data/app/views/decidim/comments/comments/_moderated.html.erb +2 -4
  61. data/app/views/decidim/comments/comments/create.js.erb +5 -3
  62. data/app/views/decidim/comments/comments/delete.js.erb +4 -1
  63. data/app/views/decidim/comments/comments/index.js.erb +8 -1
  64. data/app/views/decidim/comments/comments/reload.js.erb +1 -2
  65. data/app/views/decidim/comments/comments/update.js.erb +5 -4
  66. data/app/views/decidim/comments/votes/create.js.erb +5 -5
  67. data/config/assets.rb +3 -0
  68. data/config/locales/ar.yml +0 -16
  69. data/config/locales/bg.yml +0 -23
  70. data/config/locales/ca.yml +15 -17
  71. data/config/locales/cs.yml +8 -10
  72. data/config/locales/de.yml +7 -9
  73. data/config/locales/el.yml +3 -11
  74. data/config/locales/en.yml +10 -12
  75. data/config/locales/es-MX.yml +10 -12
  76. data/config/locales/es-PY.yml +10 -12
  77. data/config/locales/es.yml +16 -18
  78. data/config/locales/eu.yml +6 -8
  79. data/config/locales/fi-plain.yml +7 -9
  80. data/config/locales/fi.yml +7 -9
  81. data/config/locales/fr-CA.yml +9 -11
  82. data/config/locales/fr.yml +9 -11
  83. data/config/locales/ga-IE.yml +0 -4
  84. data/config/locales/gl.yml +0 -16
  85. data/config/locales/hu.yml +3 -11
  86. data/config/locales/id-ID.yml +0 -11
  87. data/config/locales/is-IS.yml +0 -8
  88. data/config/locales/it.yml +0 -16
  89. data/config/locales/ja.yml +6 -8
  90. data/config/locales/lb.yml +0 -16
  91. data/config/locales/lt.yml +7 -10
  92. data/config/locales/lv.yml +0 -11
  93. data/config/locales/nl.yml +0 -16
  94. data/config/locales/no.yml +0 -16
  95. data/config/locales/pl.yml +7 -11
  96. data/config/locales/pt-BR.yml +0 -18
  97. data/config/locales/pt.yml +0 -16
  98. data/config/locales/ro-RO.yml +6 -14
  99. data/config/locales/ru.yml +0 -11
  100. data/config/locales/sk.yml +0 -11
  101. data/config/locales/sq-AL.yml +0 -38
  102. data/config/locales/sv.yml +2 -16
  103. data/config/locales/tr-TR.yml +1 -13
  104. data/config/locales/uk.yml +0 -8
  105. data/config/locales/zh-CN.yml +0 -13
  106. data/config/locales/zh-TW.yml +1 -9
  107. data/lib/decidim/api/comment_type.rb +2 -2
  108. data/lib/decidim/api/commentable_interface.rb +1 -1
  109. data/lib/decidim/comments/comment_serializer.rb +1 -1
  110. data/lib/decidim/comments/comment_vote_serializer.rb +1 -1
  111. data/lib/decidim/comments/commentable.rb +1 -1
  112. data/lib/decidim/comments/comments_helper.rb +6 -3
  113. data/lib/decidim/comments/engine.rb +31 -1
  114. data/lib/decidim/comments/export.rb +1 -1
  115. data/lib/decidim/comments/test/factories.rb +9 -16
  116. data/lib/decidim/comments/test/shared_examples/comment_event.rb +4 -4
  117. data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +4 -4
  118. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +5 -5
  119. data/lib/decidim/comments/test/shared_examples/has_comments_availability_attributes.rb +2 -2
  120. data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +3 -3
  121. data/lib/decidim/comments/version.rb +1 -1
  122. metadata +30 -27
  123. data/app/cells/decidim/comments/comment/author.erb +0 -1
  124. data/app/cells/decidim/comments/comment/utilities.erb +0 -41
  125. data/app/cells/decidim/comments/comment_m/footer.erb +0 -5
  126. data/app/cells/decidim/comments/comment_m/top.erb +0 -7
  127. data/app/cells/decidim/comments/comment_m_cell.rb +0 -29
  128. data/app/cells/decidim/comments/comment_thread/title.erb +0 -3
  129. data/config/locales/he-IL.yml +0 -1
  130. data/db/migrate/20240304092558_add_comment_vote_counter_cache_to_comments.rb +0 -21
  131. data/decidim-comments.gemspec +0 -33
@@ -35,27 +35,17 @@ ar:
35
35
  comments:
36
36
  create:
37
37
  error: طرأت مشكلة خلال إنشاء التعليق.
38
- delete:
39
- error: حذف التعليق لم يكن ممكنا.
40
38
  update:
41
39
  error: طرأت مشكلة خلال تحديث التعليق.
42
- comments_count: تعداد التعليقات
43
- comments_title: تعليقات
44
- last_activity:
45
- new_comment_at_html: "<span>تعليق جديد على %{link}</span>"
46
- view: العرض
47
40
  votes:
48
41
  create:
49
42
  error: حدثت مشكلة في التصويت على التعليق.
50
43
  components:
51
44
  add_comment_form:
52
- account_message: <a href="%{sign_in_url}">سجل الدخول بحسابك</a> أو <a href="%{sign_up_url}">اشترك</a> لإضافة تعليقك.
53
45
  form:
54
46
  body:
55
47
  label: تعليق
56
48
  placeholder: ما رأيك بهذا؟
57
- form_error: النص مطلوب ولا يمكن أن يكون أطول من %{length} حرف.
58
- submit: إرسال
59
49
  user_group_id:
60
50
  label: التعليق باسم
61
51
  opinion:
@@ -89,7 +79,6 @@ ar:
89
79
  description: هل هذا المحتوى غير مناسب؟
90
80
  details: تعليقات اضافية
91
81
  reasons:
92
- does_not_belong: يحتوي على نشاط غير قانوني أو تهديدات انتحارية أو معلومات شخصية أو أي شيء آخر تعتقد أنه لا ينتمي إلى %{organization_name}.
93
82
  offensive: يحتوي على العنصرية والتمييز الجنسي والتشهير والهجمات الشخصية والتهديدات بالقتل أو طلبات الانتحار أو أي شكل من أشكال خطاب الكراهية.
94
83
  spam: يحتوي على clickbait أو الإعلان أو الخدع أو روبوت البرامج النصية.
95
84
  title: الإبلاغ عن محتوى غير لائق
@@ -101,8 +90,6 @@ ar:
101
90
  older: اكبر سنا
102
91
  recent: الأخيرة
103
92
  title: 'ترتيب حسب:'
104
- comment_thread:
105
- title: المحادثة مع %{authorName}
106
93
  comments:
107
94
  blocked_comments_for_unauthorized_user_warning: يجب أن تكون عضوا محققا من أجل التعليق حالياً، ولكن يمكنك قراءة ما سبق.
108
95
  blocked_comments_for_user_warning: لا يمكنك التعليق في هذه اللحظة ، ولكن يمكنك قراءة التعليقات السابقة.
@@ -177,6 +164,3 @@ ar:
177
164
  description: عدد التعليقات الناتجة عن المشاركين
178
165
  object: تعليقات
179
166
  title: تعليقات
180
- errors:
181
- messages:
182
- cannot_have_comments: لا يمكن أن يكون لديك تعليقات
@@ -5,26 +5,3 @@ bg:
5
5
  decidim/comments/comment_by_followed_user_event: Коментар
6
6
  decidim/comments/comment_created_event: Коментар
7
7
  decidim/comments/reply_created_event: Отговор на коментар
8
- decidim:
9
- comments:
10
- comments:
11
- delete:
12
- error: Коментарът не можа да бъде изтрит.
13
- comments_count: Брой коментари
14
- last_activity:
15
- new_comment_at_html: "<span>Нов коментар на %{link}</span>"
16
- view: Преглед
17
- components:
18
- add_comment_form:
19
- account_message: <a href="%{sign_in_url}">Влезте с Вашия профил</a> или <a href="%{sign_up_url}">се регистрирайте</a>, за да добавите коментара си.
20
- form:
21
- form_error: Текстът е задължителен и не може да е по-дълъг от %{length} символа.
22
- comment:
23
- report:
24
- reasons:
25
- does_not_belong: Съдържа незаконни дейности, заплахи за самоубийство, лична информация или нещо друго, което считате, че е неподходящо за %{organization_name}.
26
- comment_thread:
27
- title: Разговор с %{authorName}
28
- errors:
29
- messages:
30
- cannot_have_comments: не може да има коментари
@@ -31,23 +31,22 @@ ca:
31
31
  error: El comentari no s'ha pogut eliminar.
32
32
  update:
33
33
  error: S'ha produït un error en actualitzar el comentari.
34
- comments_count: Número de comentaris
35
- comments_title: Comentaris
34
+ comments_title: Comentari
36
35
  last_activity:
37
- new_comment_at_html: "<span>Nou comentari a %{link}</span>"
38
- view: Mostrar
36
+ new_comment: 'Nou comentari:'
39
37
  votes:
40
38
  create:
41
39
  error: S'ha produït un error en votar el comentari.
42
40
  components:
43
41
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Inicia la sessió amb el teu compte</a> o <a href="%{sign_up_url}">registra't</a> per afegir el teu comentari.
42
+ account_message: Per afegir un comentari, <a href="%{sign_in_url}">inicia la teva sessió</a> o <a href="%{sign_up_url}">registra't</a>.
45
43
  form:
46
44
  body:
47
45
  label: Comentari
48
46
  placeholder: Què en penses d'això?
49
- form_error: El text és necessari i no pot ser més llarg de %{length}
50
- submit: Enviar
47
+ form_error: El text és necessari i no pot ser més llarg de %{length}.
48
+ submit_reply: Publicar resposta
49
+ submit_root_comment: Publicar comentari
51
50
  user_group_id:
52
51
  label: Comentar com a
53
52
  opinion:
@@ -65,6 +64,7 @@ ca:
65
64
  alignment:
66
65
  against: En contra
67
66
  in_favor: A favor
67
+ cancel_reply: Cancel·lar resposta
68
68
  confirm_destroy: Segur que vols esborrar aquest comentari?
69
69
  delete: Esborrar
70
70
  deleted_at: Comentari esborrat el %{date}
@@ -96,8 +96,6 @@ ca:
96
96
  older: Més antic
97
97
  recent: Recent
98
98
  title: 'Ordenar per:'
99
- comment_thread:
100
- title: Conversa amb %{authorName}
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: Has d'estar verificat abans de poder fer comentaris, però pots llegir els comentaris anteriors.
103
101
  blocked_comments_for_user_warning: No pots fer comentaris en aquest moment, però pots llegir els anteriors.
@@ -125,27 +123,27 @@ ca:
125
123
  comments:
126
124
  comment_by_followed_user:
127
125
  email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
128
- 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.
126
+ email_outro: Has rebut aquesta notificació perquè estàs seguint %{author_name}. Pots deixar de seguir a aquesta participant des de la seva pàgina de perfil.
129
127
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
130
128
  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>.
131
129
  comment_by_followed_user_group:
132
130
  email_intro: '%{author_name} ha deixat un comentari a%{resource_title}. Pots llegir-lo en aquesta pàgina:'
133
- email_outro: Reps aquesta notificació perquè segueixes a "%{author_name}". Pots deixar de seguir aquest grup des de la seva pàgina de perfil.
131
+ email_outro: Reps aquesta notificació perquè segueixes a %{author_name}. Pots deixar de seguir aquest grup des de la seva pàgina de perfil.
134
132
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
135
133
  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
134
  comment_created:
137
135
  email_intro: "S'ha comentat %{resource_title}. Pots llegir el comentari d'aquesta pàgina:"
138
- 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.
136
+ email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
139
137
  email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
140
138
  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>
141
139
  comment_downvoted:
142
140
  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.
143
- email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
141
+ email_outro: Has rebut aquesta notificació perquè ets autora d'aquest comentari.
144
142
  email_subject: El teu comentari a "%{resource_title}" ha rebut un vot negatiu.
145
143
  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.
146
144
  comment_upvoted:
147
145
  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.
148
- email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
146
+ email_outro: Has rebut aquesta notificació perquè ets autora d'aquest comentari.
149
147
  email_subject: El teu comentari a "%{resource_title}" ha rebut un vot positiu.
150
148
  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.
151
149
  reply_created:
@@ -155,12 +153,12 @@ ca:
155
153
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
156
154
  user_group_mentioned:
157
155
  email_intro: Un grup al qual pertanys ha estat esmentat
158
- email_outro: Has rebut aquesta notificació perquè formes part del grup "%{group_name}" que ha estat esmentat a %{resource_title}.
156
+ email_outro: Has rebut aquesta notificació perquè formes part del grup %{group_name} que ha estat esmentat a %{resource_title}.
159
157
  email_subject: T'han esmentat a %{resource_title} com a membre de %{group_name}
160
158
  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>
161
159
  user_mentioned:
162
160
  email_intro: Has estat esmentada
163
- email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
161
+ email_outro: Has rebut aquesta notificació perquè has estat esmentada a %{resource_title}.
164
162
  email_subject: Has estat esmentada a %{resource_title}
165
163
  notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
166
164
  metrics:
@@ -170,4 +168,4 @@ ca:
170
168
  title: Comentaris
171
169
  errors:
172
170
  messages:
173
- cannot_have_comments: no pot tenir comentaris
171
+ cannot_have_comments: no es poden fer comentaris
@@ -35,11 +35,9 @@ cs:
35
35
  error: Komentář nemohl být odstraněn.
36
36
  update:
37
37
  error: Při aktualizaci komentáře došlo k chybě.
38
- comments_count: Počet komentářů
39
- comments_title: Komentáře
38
+ comments_title: Komentář
40
39
  last_activity:
41
- new_comment_at_html: "<span>Nový komentář v %{link}</span>"
42
- view: Zobrazit
40
+ new_comment: 'Nový komentář:'
43
41
  votes:
44
42
  create:
45
43
  error: Při hlasování o komentáři došlo k chybě.
@@ -50,8 +48,9 @@ cs:
50
48
  body:
51
49
  label: Komentář
52
50
  placeholder: Co si o tom myslíš?
53
- form_error: Text je povinný a nesmí být delší než %{length} znaků.
54
- submit: Odeslat
51
+ form_error: Text je povinný a nemůže být delší než %{length} znaků.
52
+ submit_reply: Publikovat odpověď
53
+ submit_root_comment: Publikovat komentář
55
54
  user_group_id:
56
55
  label: Komentovat jako
57
56
  opinion:
@@ -69,6 +68,7 @@ cs:
69
68
  alignment:
70
69
  against: Proti
71
70
  in_favor: Ve prospěch
71
+ cancel_reply: Zrušit odpověď
72
72
  confirm_destroy: Opravdu chcete odstranit tento komentář?
73
73
  delete: Smazat
74
74
  deleted_at: Komentář byl smazán dne %{date}
@@ -85,7 +85,7 @@ cs:
85
85
  description: Je tento obsah nevhodný?
86
86
  details: Další komentáře
87
87
  reasons:
88
- does_not_belong: Obsahuje nezákonnou činnost, sebevražedné hrozby, osobní informace nebo něco jiného, o kterém si myslíte, že nepatří na %{organization_name}.
88
+ does_not_belong: Obsahuje nezákonnou činnost, hrozby sebevraždou, osobní informaci nebo cokoliv jiného, o čem si myslíte, že nepatří do %{organization_name}.
89
89
  offensive: Obsahuje rasismus, sexismus, podvody, osobní útoky, hrozby smrti, žádosti o sebevraždu nebo jakoukoli formu projevy nenávisti.
90
90
  spam: Obsahuje clickbait, reklamu, podvody nebo škodlivé skripty.
91
91
  title: Nahlásit nevhodný obsah
@@ -102,8 +102,6 @@ cs:
102
102
  older: Starší
103
103
  recent: Nedávné
104
104
  title: 'Seřadit podle:'
105
- comment_thread:
106
- title: Konverzace s číslem %{authorName}
107
105
  comments:
108
106
  blocked_comments_for_unauthorized_user_warning: Musíte být ověřen, abyste mohli komentovat tuto chvíli, ale můžete si přečíst ty předchozí.
109
107
  blocked_comments_for_user_warning: Momentálně nemůžete komentovat, ale můžete si přečíst ty předchozí.
@@ -178,4 +176,4 @@ cs:
178
176
  title: Komentáře
179
177
  errors:
180
178
  messages:
181
- cannot_have_comments: nemohou mít připomínky
179
+ cannot_have_comments: nelze komentovat
@@ -28,14 +28,12 @@ de:
28
28
  create:
29
29
  error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
30
30
  delete:
31
- error: Die Sendung konnte nicht gelöscht werden.
31
+ error: Der Kommentar konnte nicht gelöscht werden.
32
32
  update:
33
33
  error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
34
- comments_count: Kommentaranzahl
35
- comments_title: Bemerkungen
34
+ comments_title: Kommentar
36
35
  last_activity:
37
- new_comment_at_html: "<span>Neuer Kommentar unter %{link}</span>"
38
- view: Ansicht
36
+ new_comment: 'Neuer Kommentar:'
39
37
  votes:
40
38
  create:
41
39
  error: Beim Abstimmen des Kommentars sind Fehler aufgetreten.
@@ -47,7 +45,8 @@ de:
47
45
  label: Kommentar
48
46
  placeholder: Was denken Sie darüber?
49
47
  form_error: Der Text ist erforderlich und darf nicht länger als %{length} Zeichen sein.
50
- submit: Senden
48
+ submit_reply: Antwort veröffentlichen
49
+ submit_root_comment: Kommentar veröffentlichen
51
50
  user_group_id:
52
51
  label: Kommentieren als
53
52
  opinion:
@@ -65,7 +64,8 @@ de:
65
64
  alignment:
66
65
  against: Gegen
67
66
  in_favor: Zugunsten
68
- confirm_destroy: Sind Sie sich sicher, dass Sie diesen Kommentar löschen möchten?
67
+ cancel_reply: Antwort abbrechen
68
+ confirm_destroy: Bist du sicher, dass du diesen Kommentar löschen willst?
69
69
  delete: Löschen
70
70
  deleted_at: Kommentar gelöscht am %{date}
71
71
  deleted_user: Gelöschter Benutzer
@@ -96,8 +96,6 @@ de:
96
96
  older: Chronologisch
97
97
  recent: Kürzlich hinzugefügt
98
98
  title: 'Sortieren nach:'
99
- comment_thread:
100
- title: Konversation mit %{authorName}
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: Sie müssen aktuell verifiziert sein um zu kommentieren, aber Sie können die bisherigen Kommentare lesen.
103
101
  blocked_comments_for_user_warning: Sie können momentan nichts kommentieren, aber Sie können die vorherigen lesen.
@@ -28,26 +28,20 @@ el:
28
28
  create:
29
29
  error: Υπήρξε ένα πρόβλημα στη δημιουργία του σχολίου.
30
30
  delete:
31
- error: Το σχόλιο δεν μπορούσε να διαγραφεί.
31
+ error: Το σχόλιο δεν μπόρεσε να διαγραφεί.
32
32
  update:
33
33
  error: Υπήρξε ένα πρόβλημα στην ενημέρωση του σχολίου.
34
- comments_count: Αριθμός σχολίων
35
- comments_title: Σχόλια
36
- last_activity:
37
- new_comment_at_html: "<span>Νέο σχόλιο στο %{link}</span>"
38
- view: Προβολή
34
+ comments_title: Σχόλιο
39
35
  votes:
40
36
  create:
41
37
  error: Υπήρξε ένα πρόβλημα κατά την ψηφοφορία του σχολίου.
42
38
  components:
43
39
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Είσοδος με τον λογαριασμό σας</a> ή <a href="%{sign_up_url}">εγγραφείτε</a> για να προσθέσετε το σχόλιό σας.
45
40
  form:
46
41
  body:
47
42
  label: Σχόλιο
48
43
  placeholder: Ποια είναι η γνώμη σας για αυτό;
49
- form_error: Το κείμενο απαιτείται και δεν μπορεί να υπερβαίνει τους %{length} χαρακτήρες.
50
- submit: Αποστολή
44
+ form_error: Το κείμενο είναι υποχρεωτικό και δεν μπορεί να υπερβαίνει τους %{length} χαρακτήρες.
51
45
  user_group_id:
52
46
  label: Σχόλιο ως
53
47
  opinion:
@@ -96,8 +90,6 @@ el:
96
90
  older: Παλαιότερα
97
91
  recent: Πρόσφατα
98
92
  title: 'Ταξινόμηση κατά:'
99
- comment_thread:
100
- title: Συζήτηση με τον συντάκτη %{authorName}
101
93
  comments:
102
94
  blocked_comments_for_unauthorized_user_warning: Πρέπει να επαληθευτείτε για να σχολιάσετε αυτή τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα.
103
95
  blocked_comments_for_user_warning: Δεν μπορείτε να σχολιάσετε αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
@@ -28,26 +28,25 @@ en:
28
28
  create:
29
29
  error: There was a problem creating the comment.
30
30
  delete:
31
- error: The comment couldn't be deleted.
31
+ error: The comment could not be deleted.
32
32
  update:
33
33
  error: There was a problem updating the comment.
34
- comments_count: Comments count
35
- comments_title: Comments
34
+ comments_title: Comment
36
35
  last_activity:
37
- new_comment_at_html: "<span>New comment at %{link}</span>"
38
- view: View
36
+ new_comment: 'New comment:'
39
37
  votes:
40
38
  create:
41
39
  error: There was a problem voting the comment.
42
40
  components:
43
41
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Sign in with your account</a> or <a href="%{sign_up_url}">sign up</a> to add your comment.
42
+ account_message: <a href="%{sign_in_url}">Log in with your account</a> or <a href="%{sign_up_url}">sign up</a> to add your comment.
45
43
  form:
46
44
  body:
47
45
  label: Comment
48
46
  placeholder: What do you think about this?
49
- form_error: The text is required and it can't be longer than %{length} characters.
50
- submit: Send
47
+ form_error: The text is required and it cannot be longer than %{length} characters.
48
+ submit_reply: Publish reply
49
+ submit_root_comment: Publish comment
51
50
  user_group_id:
52
51
  label: Comment as
53
52
  opinion:
@@ -65,6 +64,7 @@ en:
65
64
  alignment:
66
65
  against: Against
67
66
  in_favor: In favor
67
+ cancel_reply: Cancel reply
68
68
  confirm_destroy: Are you sure you want to delete this comment?
69
69
  delete: Delete
70
70
  deleted_at: Comment deleted on %{date}
@@ -81,7 +81,7 @@ en:
81
81
  description: Is this content inappropriate?
82
82
  details: Additional comments
83
83
  reasons:
84
- does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think doesn't belong on %{organization_name}.
84
+ does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think does not belong on %{organization_name}.
85
85
  offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
86
86
  spam: Contains clickbait, advertising, scams or script bots.
87
87
  title: Report inappropriate content
@@ -96,8 +96,6 @@ en:
96
96
  older: Older
97
97
  recent: Recent
98
98
  title: 'Order by:'
99
- comment_thread:
100
- title: Conversation with %{authorName}
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: You need to be verified to comment at this moment, but you can read the previous ones.
103
101
  blocked_comments_for_user_warning: You are not able to comment at this moment, but you can read the previous ones.
@@ -170,4 +168,4 @@ en:
170
168
  title: Comments
171
169
  errors:
172
170
  messages:
173
- cannot_have_comments: can't have comments
171
+ cannot_have_comments: cannot have comments
@@ -28,26 +28,25 @@ es-MX:
28
28
  create:
29
29
  error: Se ha producido un error al crear el comentario.
30
30
  delete:
31
- error: El comentario no pudo ser eliminado.
31
+ error: El comentario no se ha podido eliminar.
32
32
  update:
33
33
  error: Se ha producido un error al actualizar el comentario.
34
- comments_count: Número de comentarios
35
- comments_title: Comentarios
34
+ comments_title: Comentario
36
35
  last_activity:
37
- new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
38
- view: Ver
36
+ new_comment: 'Nuevo comentario:'
39
37
  votes:
40
38
  create:
41
39
  error: Ha habido errores al votar el comentario.
42
40
  components:
43
41
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Inicia sesión con tu cuenta</a> o <a href="%{sign_up_url}">regístrate</a> para añadir tu comentario.
42
+ account_message: Para añadir un comentario, <a href="%{sign_in_url}">inicia tu sesión </a> o <a href="%{sign_up_url}">regístrate</a>.
45
43
  form:
46
44
  body:
47
45
  label: Comentario
48
46
  placeholder: '¿Qué piensas sobre esto?'
49
- form_error: El texto es necesario y no puede ser más de caracteres %{length}.
50
- submit: Enviar
47
+ form_error: El texto es necesario y no puede ser más largo de %{length}.
48
+ submit_reply: Publicar respuesta
49
+ submit_root_comment: Publicar comentario
51
50
  user_group_id:
52
51
  label: Comentar como
53
52
  opinion:
@@ -65,6 +64,7 @@ es-MX:
65
64
  alignment:
66
65
  against: En contra
67
66
  in_favor: A favor
67
+ cancel_reply: Cancelar respuesta
68
68
  confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
69
69
  delete: Eliminar
70
70
  deleted_at: Comentario eliminado el %{date}
@@ -81,7 +81,7 @@ es-MX:
81
81
  description: '¿Es inapropiado este contenido?'
82
82
  details: Comentarios adicionales
83
83
  reasons:
84
- does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que usted piense que no pertenece en %{organization_name}.
84
+ does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que creas que no pertenece a %{organization_name}.
85
85
  offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
86
86
  spam: Contiene clickbait, publicidad o estafas.
87
87
  title: Notificar contenido inapropiado
@@ -96,8 +96,6 @@ es-MX:
96
96
  older: Más antiguo
97
97
  recent: Reciente
98
98
  title: 'Ordenar por:'
99
- comment_thread:
100
- title: Conversación con %{authorName}
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
103
101
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
@@ -170,4 +168,4 @@ es-MX:
170
168
  title: Comentarios
171
169
  errors:
172
170
  messages:
173
- cannot_have_comments: no puede tener comentarios
171
+ cannot_have_comments: no se pueden hacer comentarios
@@ -28,26 +28,25 @@ es-PY:
28
28
  create:
29
29
  error: Se ha producido un error al crear el comentario.
30
30
  delete:
31
- error: El comentario no pudo ser eliminado.
31
+ error: El comentario no se ha podido eliminar.
32
32
  update:
33
33
  error: Se ha producido un error al actualizar el comentario.
34
- comments_count: Número de comentarios
35
- comments_title: Comentarios
34
+ comments_title: Comentario
36
35
  last_activity:
37
- new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
38
- view: Ver
36
+ new_comment: 'Nuevo comentario:'
39
37
  votes:
40
38
  create:
41
39
  error: Ha habido errores al votar el comentario.
42
40
  components:
43
41
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Inicia sesión con tu cuenta</a> o <a href="%{sign_up_url}">regístrate</a> para añadir tu comentario.
42
+ account_message: Para añadir un comentario, <a href="%{sign_in_url}">inicia tu sesión </a> o <a href="%{sign_up_url}">regístrate</a>.
45
43
  form:
46
44
  body:
47
45
  label: Comentario
48
46
  placeholder: '¿Qué piensas sobre esto?'
49
- form_error: El texto es necesario y no puede ser más de caracteres %{length}.
50
- submit: Enviar
47
+ form_error: El texto es necesario y no puede ser más largo de %{length}.
48
+ submit_reply: Publicar respuesta
49
+ submit_root_comment: Publicar comentario
51
50
  user_group_id:
52
51
  label: Comentar como
53
52
  opinion:
@@ -65,6 +64,7 @@ es-PY:
65
64
  alignment:
66
65
  against: En contra
67
66
  in_favor: A favor
67
+ cancel_reply: Cancelar respuesta
68
68
  confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
69
69
  delete: Eliminar
70
70
  deleted_at: Comentario eliminado el %{date}
@@ -81,7 +81,7 @@ es-PY:
81
81
  description: '¿Es inapropiado este contenido?'
82
82
  details: Comentarios adicionales
83
83
  reasons:
84
- does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que usted piense que no pertenece en %{organization_name}.
84
+ does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que creas que no pertenece a %{organization_name}.
85
85
  offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
86
86
  spam: Contiene clickbait, publicidad o estafas.
87
87
  title: Notificar contenido inapropiado
@@ -96,8 +96,6 @@ es-PY:
96
96
  older: Más antiguo
97
97
  recent: Reciente
98
98
  title: 'Ordenar por:'
99
- comment_thread:
100
- title: Conversación con %{authorName}
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
103
101
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
@@ -170,4 +168,4 @@ es-PY:
170
168
  title: Comentarios
171
169
  errors:
172
170
  messages:
173
- cannot_have_comments: no puede tener comentarios
171
+ cannot_have_comments: no se pueden hacer comentarios
@@ -28,26 +28,25 @@ es:
28
28
  create:
29
29
  error: Se ha producido un error al crear el comentario.
30
30
  delete:
31
- error: El comentario no pudo ser eliminado.
31
+ error: El comentario no se ha podido eliminar.
32
32
  update:
33
33
  error: Se ha producido un error al actualizar el comentario.
34
- comments_count: Número de comentarios
35
- comments_title: Comentarios
34
+ comments_title: Comentario
36
35
  last_activity:
37
- new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
38
- view: Ver
36
+ new_comment: 'Nuevo comentario:'
39
37
  votes:
40
38
  create:
41
39
  error: Se ha producido un error al votar el comentario.
42
40
  components:
43
41
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Inicia sesión con tu cuenta</a> o <a href="%{sign_up_url}">regístrate</a> para añadir tu comentario.
42
+ account_message: Para añadir un comentario, <a href="%{sign_in_url}">inicia tu sesión </a> o <a href="%{sign_up_url}">regístrate</a>.
45
43
  form:
46
44
  body:
47
45
  label: Comentario
48
46
  placeholder: '¿Qué piensas sobre ésto?'
49
47
  form_error: El texto es necesario y no puede ser más largo de %{length}.
50
- submit: Enviar
48
+ submit_reply: Publicar respuesta
49
+ submit_root_comment: Publicar comentario
51
50
  user_group_id:
52
51
  label: Comentar como
53
52
  opinion:
@@ -65,6 +64,7 @@ es:
65
64
  alignment:
66
65
  against: En contra
67
66
  in_favor: A favor
67
+ cancel_reply: Cancelar respuesta
68
68
  confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
69
69
  delete: Eliminar
70
70
  deleted_at: Comentario eliminado el %{date}
@@ -81,7 +81,7 @@ es:
81
81
  description: '¿Este contenido es inapropiado?'
82
82
  details: Comentarios adicionales
83
83
  reasons:
84
- does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que usted piense que no pertenece en %{organization_name}.
84
+ does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que creas que no pertenece a %{organization_name}.
85
85
  offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
86
86
  spam: Contiene clickbait, publicidad o estafas.
87
87
  title: Notificar contenido inapropiado
@@ -96,8 +96,6 @@ es:
96
96
  older: Más antiguo
97
97
  recent: Reciente
98
98
  title: 'Ordenar por:'
99
- comment_thread:
100
- title: Conversación con %{authorName}
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
103
101
  blocked_comments_for_user_warning: No puedes hacer comentarios en este momento, pero puedes leer los anteriores.
@@ -125,7 +123,7 @@ es:
125
123
  comments:
126
124
  comment_by_followed_user:
127
125
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
128
- 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.
126
+ email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguir a esta participante desde su página de perfil.
129
127
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
130
128
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
131
129
  comment_by_followed_user_group:
@@ -135,32 +133,32 @@ es:
135
133
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
136
134
  comment_created:
137
135
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
138
- 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.
136
+ email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autora. Puedes dejar de seguirla desde el enlace anterior.
139
137
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
140
138
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
141
139
  comment_downvoted:
142
140
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
143
- email_outro: Has recibido esta notificación porque hiciste este comentario.
141
+ email_outro: Has recibido esta notificación porque eres la autora de este comentario.
144
142
  email_subject: Su comentario en "%{resource_title}" ha sido votado negativamente.
145
143
  notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
146
144
  comment_upvoted:
147
145
  email_intro: Tu comentario en "%{resource_title}" ha sido votado postivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
148
- email_outro: Has recibido esta notificación porque hiciste este comentario.
146
+ email_outro: Has recibido esta notificación porque eres la autora de este comentario.
149
147
  email_subject: Tu comentario en "%{resource_title}" ha sido votado positivamente.
150
148
  notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado positivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
151
149
  reply_created:
152
150
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
153
- email_outro: Has recibido esta notificación porque han respondido a tu comentario.
151
+ email_outro: Has recibido esta notificación porque tu comentario fue respondido.
154
152
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
155
153
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
156
154
  user_group_mentioned:
157
155
  email_intro: Se ha mencionado un grupo al que perteneces
158
- email_outro: Has recibido esta notificación porque formas parte del grupo "%{group_name}" que ha sido mencionado en "%{resource_title}".
156
+ email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
159
157
  email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
160
158
  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>
161
159
  user_mentioned:
162
160
  email_intro: Has sido mencionada
163
- email_outro: Has recibido esta notificación porque te han mencionado en el comentario "%{resource_title}".
161
+ email_outro: Has recibido esta notificación porque has sido mencionada en %{resource_title}.
164
162
  email_subject: Has sido mencionada en %{resource_title}
165
163
  notification_title: Has sido mencionada en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
166
164
  metrics:
@@ -170,4 +168,4 @@ es:
170
168
  title: Comentarios
171
169
  errors:
172
170
  messages:
173
- cannot_have_comments: no puede tener comentarios
171
+ cannot_have_comments: no se pueden hacer comentarios