decidim-comments 0.27.4 → 0.28.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) 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 +5 -15
  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 +11 -3
  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 +8 -4
  44. data/app/models/decidim/comments/seed.rb +30 -14
  45. data/app/packs/entrypoints/decidim_comments.js +5 -0
  46. data/app/packs/src/decidim/comments/comments.component.js +27 -36
  47. data/app/packs/src/decidim/comments/comments.component.test.js +218 -240
  48. data/app/packs/src/decidim/comments/comments.component_for_testing.js +1 -1
  49. data/app/packs/src/decidim/comments/comments.js +20 -1
  50. data/app/packs/stylesheets/comments.scss +327 -0
  51. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
  52. data/app/queries/decidim/comments/sorted_comments.rb +10 -10
  53. data/app/services/decidim/comments/comment_creation.rb +1 -1
  54. data/app/services/decidim/comments/new_comment_notification_creator.rb +8 -8
  55. data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +4 -9
  56. data/app/views/decidim/comments/comments/_comment.html.erb +1 -1
  57. data/app/views/decidim/comments/comments/_comments.html.erb +1 -1
  58. data/app/views/decidim/comments/comments/_delete.html.erb +2 -4
  59. data/app/views/decidim/comments/comments/_moderated.html.erb +2 -4
  60. data/app/views/decidim/comments/comments/create.js.erb +5 -3
  61. data/app/views/decidim/comments/comments/delete.js.erb +4 -1
  62. data/app/views/decidim/comments/comments/index.js.erb +8 -1
  63. data/app/views/decidim/comments/comments/reload.js.erb +1 -2
  64. data/app/views/decidim/comments/comments/update.js.erb +5 -4
  65. data/app/views/decidim/comments/votes/create.js.erb +5 -5
  66. data/config/assets.rb +3 -0
  67. data/config/environment.rb +3 -0
  68. data/config/locales/ar.yml +0 -16
  69. data/config/locales/ca.yml +8 -10
  70. data/config/locales/cs.yml +8 -10
  71. data/config/locales/de.yml +6 -8
  72. data/config/locales/el.yml +3 -11
  73. data/config/locales/en.yml +10 -12
  74. data/config/locales/es-MX.yml +10 -12
  75. data/config/locales/es-PY.yml +10 -12
  76. data/config/locales/es.yml +9 -11
  77. data/config/locales/eu.yml +26 -28
  78. data/config/locales/fi-plain.yml +7 -9
  79. data/config/locales/fi.yml +7 -9
  80. data/config/locales/fr-CA.yml +9 -11
  81. data/config/locales/fr.yml +9 -11
  82. data/config/locales/ga-IE.yml +0 -4
  83. data/config/locales/gl.yml +0 -16
  84. data/config/locales/hu.yml +5 -11
  85. data/config/locales/id-ID.yml +0 -11
  86. data/config/locales/is-IS.yml +0 -8
  87. data/config/locales/it.yml +0 -16
  88. data/config/locales/ja.yml +10 -12
  89. data/config/locales/lb.yml +0 -16
  90. data/config/locales/lt.yml +12 -10
  91. data/config/locales/lv.yml +0 -11
  92. data/config/locales/nl.yml +0 -16
  93. data/config/locales/no.yml +0 -16
  94. data/config/locales/pl.yml +16 -10
  95. data/config/locales/pt-BR.yml +0 -16
  96. data/config/locales/pt.yml +0 -16
  97. data/config/locales/ro-RO.yml +2 -10
  98. data/config/locales/ru.yml +0 -11
  99. data/config/locales/sk.yml +0 -11
  100. data/config/locales/sq-AL.yml +1 -0
  101. data/config/locales/sv.yml +5 -16
  102. data/config/locales/th-TH.yml +1 -0
  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/commentable_interface.rb +1 -1
  108. data/lib/decidim/comments/comment_serializer.rb +2 -2
  109. data/lib/decidim/comments/comment_vote_serializer.rb +2 -2
  110. data/lib/decidim/comments/commentable.rb +1 -1
  111. data/lib/decidim/comments/comments_helper.rb +6 -3
  112. data/lib/decidim/comments/engine.rb +31 -1
  113. data/lib/decidim/comments/export.rb +1 -1
  114. data/lib/decidim/comments/test/factories.rb +2 -2
  115. data/lib/decidim/comments/test/shared_examples/comment_event.rb +3 -3
  116. data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +3 -3
  117. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +5 -5
  118. data/lib/decidim/comments/test/shared_examples/has_comments_availability_attributes.rb +2 -2
  119. data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +3 -3
  120. data/lib/decidim/comments/version.rb +1 -1
  121. metadata +28 -20
  122. data/app/cells/decidim/comments/comment/author.erb +0 -1
  123. data/app/cells/decidim/comments/comment/utilities.erb +0 -41
  124. data/app/cells/decidim/comments/comment_m/footer.erb +0 -5
  125. data/app/cells/decidim/comments/comment_m/top.erb +0 -7
  126. data/app/cells/decidim/comments/comment_m_cell.rb +0 -29
  127. data/app/cells/decidim/comments/comment_thread/title.erb +0 -3
@@ -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: لا يمكن أن يكون لديك تعليقات
@@ -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.
@@ -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,6 +64,7 @@ de:
65
64
  alignment:
66
65
  against: Gegen
67
66
  in_favor: Zugunsten
67
+ cancel_reply: Antwort abbrechen
68
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}
@@ -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.
@@ -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
@@ -4,7 +4,7 @@ eu:
4
4
  models:
5
5
  decidim/comments/comment_by_followed_user_event: Iruzkina
6
6
  decidim/comments/comment_created_event: Iruzkina
7
- decidim/comments/comment_upvoted_event: Iruzkina bozkatu da
7
+ decidim/comments/comment_upvoted_event: Iruzkina positiboki baloratua
8
8
  decidim/comments/reply_created_event: Iruzkinaren erantzuna
9
9
  decidim/comments/user_group_mentioned_event: Aipamena
10
10
  decidim/comments/user_mentioned_event: Aipamena
@@ -26,28 +26,27 @@ eu:
26
26
  start_time: Iruzkinak noiztik aktibatuta
27
27
  comments:
28
28
  create:
29
- error: Arazoa gertatu da iruzkina sortzean.
29
+ error: Arazo bat egon da iruzkina sortzean.
30
30
  delete:
31
31
  error: Iruzkina ezin izan da ezabatu.
32
32
  update:
33
- error: Arazoa gertatu da iruzkina eguneratzean.
34
- comments_count: Iruzkin kopurua
35
- comments_title: Oharrak
33
+ error: Arazo bat ego da iruzkina eguneratzean.
34
+ comments_title: Iruzkina
36
35
  last_activity:
37
- new_comment_at_html: "<span>Iruzkin berria %{link}</span>"
38
- view: Bistaratu
36
+ new_comment: 'Beste iruzkin bat:'
39
37
  votes:
40
38
  create:
41
- error: Arazo bat dago iruzkina bozkatzeko.
39
+ error: Arazo bat egon da iruzkina bozkatzean.
42
40
  components:
43
41
  add_comment_form:
44
- account_message: <a href="%{sign_in_url}">Hasi saioa zure kontuarekin</a> o <a href="%{sign_up_url}">erregistratu</a> zure iruzkina txertatzeko.
42
+ account_message: <a href="%{sign_in_url}">Sartu zure kontuarekin</a> edo <a href="%{sign_up_url}">erregistratu</a> zure iruzkina gehitzeko.
45
43
  form:
46
44
  body:
47
45
  label: Iruzkina
48
46
  placeholder: Zer deritzozu honi?
49
47
  form_error: Testua behar da, eta ezin du izan %{length} karaktere baino gehiago.
50
- submit: Bidali
48
+ submit_reply: Argitaratu erantzuna
49
+ submit_root_comment: Argitaratu iruzkina
51
50
  user_group_id:
52
51
  label: 'Egin iruzkina honako honen gisa:'
53
52
  opinion:
@@ -60,15 +59,16 @@ eu:
60
59
  positive_selected: Zure iritzia gai honi buruz positiboa da
61
60
  remaining_characters: "%{count} karaktere geratzen dira"
62
61
  remaining_characters_1: "karaktere %{count} geratzen da"
63
- title: Egin hemen zure iruzkina
62
+ title: Gehitu zure iruzkina
64
63
  comment:
65
64
  alignment:
66
65
  against: Aurka
67
66
  in_favor: Alde
67
+ cancel_reply: Ezeztatu erantzuna
68
68
  confirm_destroy: Ziur zaude iruzkin hau ezabatu nahi duzula?
69
69
  delete: Ezabatu
70
70
  deleted_at: Iruzkina ezabatu da data honetan %{date}
71
- deleted_user: Parte hartzaile ezabatua
71
+ deleted_user: Parte-hartzailea ezabatua
72
72
  edit: Editatu
73
73
  edited: Editatuta
74
74
  hide_replies: Ezkutatu erantzunak
@@ -91,13 +91,11 @@ eu:
91
91
  single_comment_link_title: Lortu esteka
92
92
  comment_order_selector:
93
93
  order:
94
- best_rated: Balorazio hoberenak
94
+ best_rated: Balorazio onenak
95
95
  most_discussed: Eztabaidatuenak
96
96
  older: Zaharrenak
97
97
  recent: Berrienak
98
98
  title: 'Ordenatu honen arabera:'
99
- comment_thread:
100
- title: 'Solasaldia honekin: %{authorName}'
101
99
  comments:
102
100
  blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkina egiteko, baina aurreko iruzkinak irakur ditzakezu.
103
101
  blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
@@ -126,18 +124,18 @@ eu:
126
124
  comment_by_followed_user:
127
125
  email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
128
126
  email_outro: Jakinarazpen hau jaso duzu %{author_name} erabiltzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
129
- email_subject: '%{author_name} %{resource_title} iruzkin berri bat dago'
130
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>-en iruzkin berri bat dagon <a href="%{resource_path}">%{resource_title}</a>-an.
127
+ email_subject: '%{author_name} k beste iruzkin bat egin du hemen: %{resource_title}'
128
+ notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>-an.'
131
129
  comment_by_followed_user_group:
132
130
  email_intro: '%{author_name} k iruzkin bat utzi du hemen %{resource_title}. Orrialde honetan irakur dezakezu:'
133
131
  email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
134
- email_subject: '%{author_name} egileak iruzkin berri bat utzi du %{resource_title}-an'
135
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>egileak iruzkin berri bat utzi du <a href="%{resource_path}">%{resource_title}</a>-an.
132
+ email_subject: '%{author_name} egileak iruzkin berri bat utzi du hemen: %{resource_title}'
133
+ notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a>egileak iruzkin berri bat utzi du hemen: <a href="%{resource_path}">%{resource_title}</a>-an.'
136
134
  comment_created:
137
- email_intro: "%{resource_title} iruzkindu da. Orri honetan iruzkina irakur dezakezu:"
135
+ email_intro: "%{resource_title} iruzkindu da. Orri honetan irakur dezakezu iruzkina:"
138
136
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
139
- email_subject: '%{author_name} ren %{resource_title} iruzkin berri bat dago'
140
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago
137
+ email_subject: '%{author_name} k beste iruzkin berri bat egin du hemen: %{resource_title}'
138
+ notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a></a>'
141
139
  comment_downvoted:
142
140
  email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu guztira.
143
141
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
@@ -149,9 +147,9 @@ eu:
149
147
  email_subject: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da.
150
148
  notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an positiboki bozkatu da. Orain guztira %{upvotes} botos positibo eta %{downvotes} boto negatibo dituzu.
151
149
  reply_created:
152
- email_intro: "%{author_name} zure iruzkina erantzun du %{resource_title}zenbakian. Orri honetan irakur dezakezu:"
150
+ email_intro: "%{author_name} k zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
153
151
  email_outro: Jakinarazpen hau jaso duzu zure iruzkina erantzun delako.
154
- email_subject: "%{author_name}-k zure iruzkina erantzun du %{resource_title} zenbakian"
152
+ email_subject: "%{author_name}-k zure iruzkina erantzun du hemen: %{resource_title}"
155
153
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio <a href="%{resource_path}">%{resource_title}</a>
156
154
  user_group_mentioned:
157
155
  email_intro: Zure talde bat aipatu dute
@@ -160,14 +158,14 @@ eu:
160
158
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> k aipatu zaitu hemen <a href="%{resource_path}">%{resource_title}</a> <a href="%{group_path}">%{group_name} %{group_nickname}</a> taldearen kide gisa
161
159
  user_mentioned:
162
160
  email_intro: Aipatu zaituzte
163
- email_outro: Jakinarazpena jaso duzu %{resource_title} delakoan aipatu zaituztelako.
164
- email_subject: '%{resource_title} delakoan aipatu zaituzte'
165
- notification_title: <a href="%{resource_path}">%{resource_title}</a> <a href="%{author_path}">%{author_name} %{author_nickname}</a> bidez aipatu zaituzte.
161
+ email_outro: 'Jakinarazpen hau jaso duzu hemen: %{resource_title} aipatu zaituztelako.'
162
+ email_subject: 'Hemen: %{resource_title} aipatu zaituzte'
163
+ notification_title: 'Hemen: <a href="%{group_path}">%{group_name} %{group_nickname}</a> egile honek: <a href="%{author_path}">%{author_name} %{author_nickname}</a> aipatu zaitu'
166
164
  metrics:
167
165
  comments:
168
166
  description: Erabiltzaileek sortutako iruzkin kopurua
169
167
  object: iruzkinak
170
- title: Oharrak
168
+ title: Iruzkinak
171
169
  errors:
172
170
  messages:
173
171
  cannot_have_comments: ezin zaio iruzkinik egin