decidim-comments 0.19.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/comments/bundle.js +41 -41
  3. data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
  4. data/app/cells/decidim/comments/comment_activity_cell.rb +1 -1
  5. data/app/commands/decidim/comments/create_comment.rb +7 -7
  6. data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +9 -0
  7. data/app/events/decidim/comments/comment_event.rb +15 -2
  8. data/app/events/decidim/comments/user_group_mentioned_event.rb +10 -0
  9. data/app/forms/decidim/comments/comment_form.rb +9 -0
  10. data/app/frontend/application/icon.component.tsx +16 -4
  11. data/app/frontend/comments/add_comment_form.component.test.tsx +4 -1
  12. data/app/frontend/comments/add_comment_form.component.tsx +16 -3
  13. data/app/frontend/comments/comment.component.test.tsx +1 -1
  14. data/app/frontend/comments/comment.component.tsx +287 -74
  15. data/app/frontend/comments/comment_order_selector.component.tsx +26 -7
  16. data/app/frontend/comments/comments.component.tsx +65 -8
  17. data/app/frontend/comments/down_vote_button.component.tsx +3 -0
  18. data/app/frontend/comments/up_vote_button.component.tsx +3 -0
  19. data/app/frontend/comments/vote_button.component.tsx +4 -0
  20. data/app/frontend/comments/vote_button_component.test.tsx +14 -8
  21. data/app/frontend/entry.ts +19 -0
  22. data/app/frontend/entry_test.ts +2 -0
  23. data/app/frontend/queries/comments.query.graphql +2 -2
  24. data/app/frontend/support/schema.ts +745 -744
  25. data/app/models/decidim/comments/comment.rb +30 -5
  26. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -6
  27. data/app/queries/decidim/comments/sorted_comments.rb +8 -2
  28. data/app/scrubbers/decidim/comments/user_input_scrubber.rb +20 -0
  29. data/app/services/decidim/comments/new_comment_notification_creator.rb +28 -3
  30. data/app/types/decidim/comments/commentable_interface.rb +2 -1
  31. data/app/types/decidim/comments/commentable_mutation_type.rb +2 -2
  32. data/config/locales/ar.yml +10 -1
  33. data/config/locales/bg-BG.yml +6 -0
  34. data/config/locales/ca.yml +23 -1
  35. data/config/locales/cs.yml +35 -13
  36. data/config/locales/da-DK.yml +1 -0
  37. data/config/locales/de.yml +23 -1
  38. data/config/locales/el-GR.yml +1 -0
  39. data/config/locales/el.yml +122 -0
  40. data/config/locales/en.yml +23 -1
  41. data/config/locales/es-MX.yml +23 -1
  42. data/config/locales/es-PY.yml +23 -1
  43. data/config/locales/es.yml +23 -1
  44. data/config/locales/et-EE.yml +1 -0
  45. data/config/locales/eu.yml +4 -1
  46. data/config/locales/fi-plain.yml +23 -1
  47. data/config/locales/fi.yml +29 -7
  48. data/config/locales/fr-CA.yml +122 -0
  49. data/config/locales/fr.yml +23 -1
  50. data/config/locales/ga-IE.yml +1 -0
  51. data/config/locales/gl.yml +4 -1
  52. data/config/locales/hr-HR.yml +1 -0
  53. data/config/locales/hu.yml +17 -1
  54. data/config/locales/id-ID.yml +4 -1
  55. data/config/locales/is-IS.yml +76 -0
  56. data/config/locales/it.yml +23 -1
  57. data/config/locales/ja-JP.yml +120 -0
  58. data/config/locales/lt-LT.yml +1 -0
  59. data/config/locales/lv-LV.yml +118 -0
  60. data/config/locales/mt-MT.yml +1 -0
  61. data/config/locales/nl.yml +35 -13
  62. data/config/locales/no.yml +118 -0
  63. data/config/locales/pl.yml +57 -35
  64. data/config/locales/pt-BR.yml +5 -2
  65. data/config/locales/pt.yml +47 -25
  66. data/config/locales/ro-RO.yml +124 -0
  67. data/config/locales/ru.yml +12 -1
  68. data/config/locales/sk-SK.yml +116 -0
  69. data/config/locales/sk.yml +120 -0
  70. data/config/locales/sl.yml +4 -0
  71. data/config/locales/sr-CS.yml +20 -0
  72. data/config/locales/sv.yml +25 -3
  73. data/config/locales/tr-TR.yml +4 -1
  74. data/config/locales/uk.yml +4 -1
  75. data/db/migrate/20200320105911_index_foreign_keys_in_decidim_comments_comments.rb +7 -0
  76. data/lib/decidim/comments.rb +1 -0
  77. data/lib/decidim/comments/markdown.rb +55 -0
  78. data/lib/decidim/comments/test/shared_examples/comment_event.rb +11 -1
  79. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +3 -2
  80. data/lib/decidim/comments/version.rb +1 -1
  81. metadata +46 -9
@@ -0,0 +1 @@
1
+ da:
@@ -4,6 +4,7 @@ de:
4
4
  decidim/comments/comment_by_followed_user_event: Kommentar
5
5
  decidim/comments/comment_created_event: Kommentar
6
6
  decidim/comments/reply_created_event: Kommentarantwort
7
+ decidim/comments/user_group_mentioned_event: Erwähnen
7
8
  decidim/comments/user_mentioned_event: Erwähnen
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ de:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Bemerkungen
20
+ comments_count: Kommentaranzahl
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Neuer Kommentar unter %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ de:
42
44
  against: Gegen
43
45
  in_favor: Zugunsten
44
46
  deleted_user: Gelöschter Benutzer
47
+ hide_replies: Antworten ausblenden
45
48
  reply: Antworten
46
49
  report:
47
50
  action: Bericht
@@ -53,7 +56,9 @@ de:
53
56
  does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name}.
54
57
  offensive: Enthält Rassismus, Sexismus, Verunglimpfungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jede Form von Hassreden.
55
58
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
56
- title: Ein Problem melden
59
+ title: Ungeeigneten Inhalt melden
60
+ show_replies: '%{replies_count} Antworten anzeigen'
61
+ single_comment_link_title: Verknüpfung zu einzelnem Kommentar erhalten
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Am besten bewertet
@@ -66,8 +71,15 @@ de:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: Sie können momentan nichts kommentieren, aber Sie können die vorherigen lesen.
68
73
  blocked_comments_warning: Kommentare sind zu diesem Zeitpunkt deaktiviert, aber Sie können die vorherigen lesen.
74
+ comment_details_title: Kommentarinformationen
69
75
  loading: Kommentare werden geladen ...
76
+ single_comment_warning: Sie können die restlichen Kommentare <a href="%{url}">hier</a> prüfen.
77
+ single_comment_warning_title: Ihnen wird ein einzelner Kommentar angezeigt
70
78
  title: "%{count} Kommentare"
79
+ down_vote_button:
80
+ text: Ich bin mit diesem Kommentar nicht einverstanden
81
+ up_vote_button:
82
+ text: Ich stimme diesem Kommentar zu
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ de:
75
87
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name}. Sie können diesen Benutzer von seiner Profilseite aus nicht mehr anzeigen.
76
88
  email_subject: Es gibt einen neuen Kommentar von %{author_name} in %{resource_title}
77
89
  notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: 'Die Gruppe %{author_name} hat einen Kommentar in %{resource_title} hinterlassen. Sie können es auf dieser Seite lesen:'
92
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Sie können diese Gruppe von ihrer Profilseite aus deabonnieren.
93
+ email_subject: Es gibt einen neuen Kommentar von %{author_name} in %{resource_title}
94
+ notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} wurde kommentiert. Sie können den Kommentar auf dieser Seite lesen:"
80
97
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" oder seinem Autor folgen. Sie können es aus dem vorherigen Link entfernen.
@@ -85,6 +102,11 @@ de:
85
102
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
86
103
  email_subject: "%{author_name} hat Ihren Kommentar in %{resource_title}geantwortet"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a>geantwortet
105
+ user_group_mentioned:
106
+ email_intro: Eine Ihrer Gruppen wurde erwähnt
107
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Mitglied der Gruppe %{group_name} sind, die in %{resource_title} erwähnt wurde.
108
+ email_subject: Sie wurden in %{resource_title} als Mitglied von %{group_name} erwähnt
109
+ notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> als ein Mitglied von <a href="%{group_path}">%{group_name} %{group_nickname}</a> erwähnt
88
110
  user_mentioned:
89
111
  email_intro: Du wurdest erwähnt
90
112
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title}.
@@ -0,0 +1 @@
1
+ el:
@@ -0,0 +1,122 @@
1
+ el:
2
+ activemodel:
3
+ models:
4
+ decidim/comments/comment_by_followed_user_event: Σχόλιο
5
+ decidim/comments/comment_created_event: Σχόλιο
6
+ decidim/comments/reply_created_event: Απάντηση σχολίου
7
+ decidim/comments/user_group_mentioned_event: Αναφορά
8
+ decidim/comments/user_mentioned_event: Αναφορά
9
+ activerecord:
10
+ models:
11
+ decidim/comments/comment:
12
+ one: Σχόλιο
13
+ other: Σχόλια
14
+ decidim/comments/comment_vote:
15
+ one: Ψηφοφορία
16
+ other: Ψήφοι
17
+ decidim:
18
+ comments:
19
+ comments: Σχόλια
20
+ comments_count: Αριθμός σχολίων
21
+ last_activity:
22
+ new_comment_at_html: "<span>Νέο σχόλιο στο %{link}</span>"
23
+ votes:
24
+ create:
25
+ error: Υπήρξε ένα πρόβλημα κατά την ψηφοφορία του σχολίου.
26
+ components:
27
+ add_comment_form:
28
+ account_message: <a href="%{sign_in_url}">Είσοδος με τον λογαριασμό σας</a> ή <a href="%{sign_up_url}">εγγραφείτε</a> για να προσθέσετε το σχόλιό σας.
29
+ form:
30
+ body:
31
+ label: Σχόλιο
32
+ placeholder: Ποια είναι η γνώμη σας για αυτό;
33
+ form_error: Το κείμενο απαιτείται και δεν μπορεί να υπερβαίνει τους %{length} χαρακτήρες.
34
+ submit: Αποστολή
35
+ user_group_id:
36
+ label: Σχόλιο ως
37
+ opinion:
38
+ neutral: Ούτε ικανοποιημένος/η ούτε δυσαρεστημένος/η
39
+ remaining_characters: "%{count} χαρακτήρες απομένουν"
40
+ remaining_characters_1: "%{count} χαρακτήρας απομένει"
41
+ title: Προσθέστε το σχόλιό σας
42
+ comment:
43
+ alignment:
44
+ against: Κατά
45
+ in_favor: Υπέρ
46
+ deleted_user: Διαγραμμένος συμμετέχων
47
+ hide_replies: Απόκρυψη απαντήσεων
48
+ reply: Απάντηση
49
+ report:
50
+ action: Αναφορά
51
+ already_reported: Αυτό το περιεχόμενο έχει ήδη αναφερθεί και θα ελεγχθεί από έναν διαχειριστή.
52
+ close: Κλείσιμο
53
+ description: Αυτό το περιεχόμενο είναι ακατάλληλο;
54
+ details: Πρόσθετα σχόλια
55
+ reasons:
56
+ does_not_belong: Περιέχει παράνομη δραστηριότητα, απειλές αυτοκτονίας, προσωπικά στοιχεία ή κάτι άλλο που πιστεύετε ότι δεν ανήκει στον οργανισμό %{organization_name}.
57
+ offensive: Περιέχει ρατσισμό, σεξισμό, δυσφημίσεις, προσωπικές επιθέσεις, απειλές θανάτου, αιτήματα αυτοκτονίας ή οποιαδήποτε μορφή ρητορικής μίσους.
58
+ spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
59
+ title: Αναφορά ακατάλληλου περιεχομένου
60
+ show_replies: Εμφάνιση %{replies_count} απαντήσεων
61
+ single_comment_link_title: Λήψη συνδέσμου για ένα μόνο σχόλιο
62
+ comment_order_selector:
63
+ order:
64
+ best_rated: Με την καλύτερη βαθμολογία
65
+ most_discussed: Πιο συζητημένα
66
+ older: Παλαιότερα
67
+ recent: Πρόσφατα
68
+ title: 'Ταξινόμηση κατά:'
69
+ comment_thread:
70
+ title: Συζήτηση με τον συντάκτη %{authorName}
71
+ comments:
72
+ blocked_comments_for_user_warning: Δεν μπορείτε να σχολιάσετε αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
73
+ blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
74
+ comment_details_title: Λεπτομέρειες σχολίων
75
+ loading: Φόρτωση σχολίων...
76
+ single_comment_warning: Μπορείτε να δείτε τα υπόλοιπα σχόλια <a href="%{url}">εδώ</a>.
77
+ single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
78
+ title: "%{count} σχόλια"
79
+ down_vote_button:
80
+ text: Δεν συμφωνώ με αυτό το σχόλιο
81
+ up_vote_button:
82
+ text: Συμφωνώ με αυτό το σχόλιο
83
+ events:
84
+ comments:
85
+ comment_by_followed_user:
86
+ email_intro: "Ο συντάκτης %{author_name} έκανε ένα σχόλιο στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
87
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_name}. Μπορείτε να σταματήσετε να ακολουθείτε αυτόν τον χρήστη από τη σελίδα προφίλ του.
88
+ email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
89
+ notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: 'Η ομάδα %{author_name} έκανε ένα σχόλιο στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:'
92
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_name}. Μπορείτε να σταματήσετε να ακολουθείτε αυτήν την ομάδα από τη σελίδα προφίλ της.
93
+ email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
94
+ notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>.
95
+ comment_created:
96
+ email_intro: "Το στοιχείο %{resource_title} έχει σχολιαστεί. Μπορείτε να διαβάσετε το σχόλιο σε αυτήν τη σελίδα:"
97
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε το στοιχείο «%{resource_title}» ή τον συντάκτη του. Μπορείτε να σταματήσετε να την ακολουθείτε από τον προηγούμενο σύνδεσμο.
98
+ email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
99
+ notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη<a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
100
+ reply_created:
101
+ email_intro: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
102
+ email_outro: Λάβατε αυτήν την ειδοποίηση, επειδή το σχόλιό σας απαντήθηκε.
103
+ email_subject: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}"
104
+ notification_title: Ο συντάκτης <a href="%{author_path}">%{author_name} %{author_nickname}</a> απάντησε στο σχόλιό σας στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Έγινε αναφορά σε μια ομάδα στην οποία ανήκετε
107
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε μέλος της ομάδας %{group_name} που αναφέρθηκε στο στοιχείο %{resource_title}.
108
+ email_subject: Έγινε αναφορά σε εσάς στο στοιχείο %{resource_title} ως μέλος της ομάδας %{group_name}
109
+ notification_title: Έγινε αναφορά σε εσάς στο στοιχείο <a href="%{resource_path}">%{resource_title}</a> από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a> ως μέλος της ομάδας <a href="%{group_path}">%{group_name} %{group_nickname}</a>
110
+ user_mentioned:
111
+ email_intro: Έγινε αναφορά σε εσάς
112
+ email_outro: Λάβατε αυτήν την ειδοποίηση επειδή έγινε αναφορά σε εσάς στο στοιχείο %{resource_title}.
113
+ email_subject: Έγινε αναφορά σε εσάς στο στοιχείο %{resource_title}
114
+ notification_title: Έγινε αναφορά σε εσάς στο στοιχείο <a href="%{resource_path}">%{resource_title}</a> από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a>
115
+ metrics:
116
+ comments:
117
+ description: Αριθμός σχολίων που δημιουργήθηκαν από συμμετέχοντες
118
+ object: σχόλια
119
+ title: Σχόλια
120
+ errors:
121
+ messages:
122
+ cannot_have_comments: δεν μπορεί να έχει σχόλια
@@ -5,6 +5,7 @@ en:
5
5
  decidim/comments/comment_by_followed_user_event: Comment
6
6
  decidim/comments/comment_created_event: Comment
7
7
  decidim/comments/reply_created_event: Comment reply
8
+ decidim/comments/user_group_mentioned_event: Mention
8
9
  decidim/comments/user_mentioned_event: Mention
9
10
  activerecord:
10
11
  models:
@@ -17,6 +18,7 @@ en:
17
18
  decidim:
18
19
  comments:
19
20
  comments: Comments
21
+ comments_count: Comments count
20
22
  last_activity:
21
23
  new_comment_at_html: "<span>New comment at %{link}</span>"
22
24
  votes:
@@ -43,6 +45,7 @@ en:
43
45
  against: Against
44
46
  in_favor: In favor
45
47
  deleted_user: Deleted participant
48
+ hide_replies: Hide replies
46
49
  reply: Reply
47
50
  report:
48
51
  action: Report
@@ -54,7 +57,9 @@ en:
54
57
  does_not_belong: Contains illegal activity, suicide threats, personal information, or something else you think doesn't belong on %{organization_name}.
55
58
  offensive: Contains racism, sexism, slurs, personal attacks, death threats, suicide requests or any form of hate speech.
56
59
  spam: Contains clickbait, advertising, scams or script bots.
57
- title: Report a problem
60
+ title: Report inappropriate content
61
+ show_replies: Show %{replies_count} replies
62
+ single_comment_link_title: Get link to single comment
58
63
  comment_order_selector:
59
64
  order:
60
65
  best_rated: Best rated
@@ -67,8 +72,15 @@ en:
67
72
  comments:
68
73
  blocked_comments_for_user_warning: You are not able to comment at this moment, but you can read the previous ones.
69
74
  blocked_comments_warning: Comments are disabled at this time, but you can read the previous ones.
75
+ comment_details_title: Comment details
70
76
  loading: Loading comments ...
77
+ single_comment_warning: You can check the rest of the comments <a href="%{url}">here</a>.
78
+ single_comment_warning_title: You are seeing a single comment
71
79
  title: "%{count} comments"
80
+ down_vote_button:
81
+ text: I disagree with this comment
82
+ up_vote_button:
83
+ text: I agree with this comment
72
84
  events:
73
85
  comments:
74
86
  comment_by_followed_user:
@@ -76,6 +88,11 @@ en:
76
88
  email_outro: You have received this notification because you are following %{author_name}. You can unfollow this user from their profile page.
77
89
  email_subject: There is a new comment by %{author_name} in %{resource_title}
78
90
  notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
91
+ comment_by_followed_user_group:
92
+ email_intro: 'The group %{author_name} has left a comment in %{resource_title}. You can read it in this page:'
93
+ email_outro: You have received this notification because you are following %{author_name}. You can unfollow this group from its profile page.
94
+ email_subject: There is a new comment by %{author_name} in %{resource_title}
95
+ notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
79
96
  comment_created:
80
97
  email_intro: "%{resource_title} has been commented. You can read the comment in this page:"
81
98
  email_outro: You have received this notification because you are following "%{resource_title}" or its author. You can unfollow it from the previous link.
@@ -86,6 +103,11 @@ en:
86
103
  email_outro: You have received this notification because your comment was replied.
87
104
  email_subject: "%{author_name} has replied your comment in %{resource_title}"
88
105
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
106
+ user_group_mentioned:
107
+ email_intro: A group you belong to has been mentioned
108
+ email_outro: You have received this notification because you are a member of the group %{group_name} that has been mentioned in %{resource_title}.
109
+ email_subject: You have been mentioned in %{resource_title} as a member of %{group_name}
110
+ notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a> as a member of <a href="%{group_path}">%{group_name} %{group_nickname}</a>
89
111
  user_mentioned:
90
112
  email_intro: You have been mentioned
91
113
  email_outro: You have received this notification because you have been mentioned in %{resource_title}.
@@ -4,6 +4,7 @@ es-MX:
4
4
  decidim/comments/comment_by_followed_user_event: Comentario
5
5
  decidim/comments/comment_created_event: Comentario
6
6
  decidim/comments/reply_created_event: Respuesta al comentario
7
+ decidim/comments/user_group_mentioned_event: Mencionar
7
8
  decidim/comments/user_mentioned_event: Mencionar
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ es-MX:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Comentarios
20
+ comments_count: Número de comentarios
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ es-MX:
42
44
  against: En contra
43
45
  in_favor: A favor
44
46
  deleted_user: Usuario eliminado
47
+ hide_replies: Ocultar respuestas
45
48
  reply: Respuesta
46
49
  report:
47
50
  action: Denunciar
@@ -53,7 +56,9 @@ es-MX:
53
56
  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}.
54
57
  offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
55
58
  spam: Contiene clickbait, publicidad o estafas.
56
- title: Denunciar un problema
59
+ title: Notificar contenido inapropiado
60
+ show_replies: Mostrar %{replies_count} respuestas
61
+ single_comment_link_title: Obtener enlace a un solo comentario
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Mejor valoración
@@ -66,8 +71,15 @@ es-MX:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
68
73
  blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
74
+ comment_details_title: Detalles del comentario
69
75
  loading: Cargando los comentarios ...
76
+ single_comment_warning: Puedes revisar el resto de los comentarios <a href="%{url}">aquí</a>.
77
+ single_comment_warning_title: Estás viendo un solo comentario
70
78
  title: "%{count} comentarios"
79
+ down_vote_button:
80
+ text: No estoy de acuerdo con este comentario
81
+ up_vote_button:
82
+ text: Estoy de acuerdo con este comentario
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ es-MX:
75
87
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
76
88
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
77
89
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puede leerlo en esta página:'
92
+ email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo des de su página de perfil.
93
+ email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
94
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
80
97
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
@@ -85,6 +102,11 @@ es-MX:
85
102
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
86
103
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Se ha mencionado un grupo al que perteneces
107
+ email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
108
+ email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
109
+ 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>
88
110
  user_mentioned:
89
111
  email_intro: Has sido mencionado
90
112
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
@@ -4,6 +4,7 @@ es-PY:
4
4
  decidim/comments/comment_by_followed_user_event: Comentario
5
5
  decidim/comments/comment_created_event: Comentario
6
6
  decidim/comments/reply_created_event: Respuesta al comentario
7
+ decidim/comments/user_group_mentioned_event: Mencionar
7
8
  decidim/comments/user_mentioned_event: Mencionar
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ es-PY:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Comentarios
20
+ comments_count: Número de comentarios
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ es-PY:
42
44
  against: En contra
43
45
  in_favor: A favor
44
46
  deleted_user: Usuario eliminado
47
+ hide_replies: Ocultar respuestas
45
48
  reply: Respuesta
46
49
  report:
47
50
  action: Denunciar
@@ -53,7 +56,9 @@ es-PY:
53
56
  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}.
54
57
  offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
55
58
  spam: Contiene clickbait, publicidad o estafas.
56
- title: Denunciar un problema
59
+ title: Notificar contenido inapropiado
60
+ show_replies: Mostrar %{replies_count} respuestas
61
+ single_comment_link_title: Obtener enlace a un solo comentario
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Mejor valoración
@@ -66,8 +71,15 @@ es-PY:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
68
73
  blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
74
+ comment_details_title: Detalles del comentario
69
75
  loading: Cargando los comentarios ...
76
+ single_comment_warning: Puedes revisar el resto de los comentarios <a href="%{url}">aquí</a>.
77
+ single_comment_warning_title: Estás viendo un solo comentario
70
78
  title: "%{count} comentarios"
79
+ down_vote_button:
80
+ text: No estoy de acuerdo con este comentario
81
+ up_vote_button:
82
+ text: Estoy de acuerdo con este comentario
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ es-PY:
75
87
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
76
88
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
77
89
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puede leerlo en esta página:'
92
+ email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo des de su página de perfil.
93
+ email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
94
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
80
97
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
@@ -85,6 +102,11 @@ es-PY:
85
102
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
86
103
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Se ha mencionado un grupo al que perteneces
107
+ email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
108
+ email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
109
+ 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>
88
110
  user_mentioned:
89
111
  email_intro: Has sido mencionado
90
112
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
@@ -4,6 +4,7 @@ es:
4
4
  decidim/comments/comment_by_followed_user_event: Comentario
5
5
  decidim/comments/comment_created_event: Comentario
6
6
  decidim/comments/reply_created_event: Respuesta al comentario
7
+ decidim/comments/user_group_mentioned_event: Mencionar
7
8
  decidim/comments/user_mentioned_event: Mencionar
8
9
  activerecord:
9
10
  models:
@@ -16,6 +17,7 @@ es:
16
17
  decidim:
17
18
  comments:
18
19
  comments: Comentarios
20
+ comments_count: Número de comentarios
19
21
  last_activity:
20
22
  new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
21
23
  votes:
@@ -42,6 +44,7 @@ es:
42
44
  against: En contra
43
45
  in_favor: A favor
44
46
  deleted_user: Participante eliminada
47
+ hide_replies: Ocultar respuestas
45
48
  reply: Respuesta
46
49
  report:
47
50
  action: Denunciar
@@ -53,7 +56,9 @@ es:
53
56
  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}.
54
57
  offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
55
58
  spam: Contiene clickbait, publicidad o estafas.
56
- title: Denunciar un problema
59
+ title: Notificar contenido inapropiado
60
+ show_replies: Mostrar %{replies_count} respuestas
61
+ single_comment_link_title: Obtener enlace a un solo comentario
57
62
  comment_order_selector:
58
63
  order:
59
64
  best_rated: Mejor valoración
@@ -66,8 +71,15 @@ es:
66
71
  comments:
67
72
  blocked_comments_for_user_warning: No puedes hacer comentarios en este momento, pero puedes leer los anteriores.
68
73
  blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
74
+ comment_details_title: Detalles del comentario
69
75
  loading: Cargando los comentarios ...
76
+ single_comment_warning: Puedes revisar el resto de los comentarios <a href="%{url}">aquí</a>.
77
+ single_comment_warning_title: Estás viendo un solo comentario
70
78
  title: "%{count} comentarios"
79
+ down_vote_button:
80
+ text: No estoy de acuerdo con este comentario
81
+ up_vote_button:
82
+ text: Estoy de acuerdo con este comentario
71
83
  events:
72
84
  comments:
73
85
  comment_by_followed_user:
@@ -75,6 +87,11 @@ es:
75
87
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguir a esta participante desde su página de perfil.
76
88
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
77
89
  notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
90
+ comment_by_followed_user_group:
91
+ email_intro: '%{author_name} ha dejado un comentario en %{resource_title}. Puede leerlo en esta página:'
92
+ email_outro: Recibes esta notificación porque sigues a %{author_name}. Puedes dejar de seguir a este grupo des de su página de perfil.
93
+ email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
94
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
78
95
  comment_created:
79
96
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
80
97
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autora. Puedes dejar de seguirla desde el enlace anterior.
@@ -85,6 +102,11 @@ es:
85
102
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
86
103
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
87
104
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
105
+ user_group_mentioned:
106
+ email_intro: Se ha mencionado un grupo al que perteneces
107
+ email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
108
+ email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
109
+ 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>
88
110
  user_mentioned:
89
111
  email_intro: Has sido mencionada
90
112
  email_outro: Has recibido esta notificación porque has sido mencionada en %{resource_title}.