decidim-comments 0.24.2 → 0.25.0.rc3

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 (87) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -20
  3. data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
  4. data/app/cells/decidim/comments/comment/actions.erb +1 -1
  5. data/app/cells/decidim/comments/comment/deletion_data.erb +1 -0
  6. data/app/cells/decidim/comments/comment/show.erb +30 -21
  7. data/app/cells/decidim/comments/comment/utilities.erb +40 -12
  8. data/app/cells/decidim/comments/comment/votes.erb +6 -6
  9. data/app/cells/decidim/comments/comment_cell.rb +29 -0
  10. data/app/cells/decidim/comments/comment_form/show.erb +1 -1
  11. data/app/cells/decidim/comments/comments/add_comment.erb +10 -6
  12. data/app/cells/decidim/comments/comments/order_control.erb +4 -5
  13. data/app/cells/decidim/comments/comments/show.erb +2 -4
  14. data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +5 -1
  15. data/app/cells/decidim/comments/comments_cell.rb +24 -2
  16. data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +29 -0
  17. data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +53 -0
  18. data/app/commands/decidim/comments/create_comment.rb +2 -1
  19. data/app/commands/decidim/comments/delete_comment.rb +46 -0
  20. data/app/commands/decidim/comments/update_comment.rb +62 -0
  21. data/app/controllers/decidim/comments/comments_controller.rb +63 -6
  22. data/app/events/decidim/comments/comment_voted_event.rb +9 -0
  23. data/app/forms/decidim/comments/comment_form.rb +1 -1
  24. data/app/models/decidim/comments/comment.rb +24 -1
  25. data/app/packs/src/decidim/comments/comments.component.js +300 -0
  26. data/app/{assets/javascripts → packs/src}/decidim/comments/comments.component.test.js +116 -26
  27. data/app/packs/src/decidim/comments/comments.component_for_testing.js +8 -0
  28. data/app/packs/src/decidim/comments/comments.js +1 -0
  29. data/app/permissions/decidim/comments/permissions.rb +10 -1
  30. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +1 -1
  31. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
  32. data/app/queries/decidim/comments/sorted_comments.rb +8 -6
  33. data/app/views/decidim/comments/comments/_delete.html.erb +5 -0
  34. data/app/views/decidim/comments/comments/_edited_comment.html.erb +1 -0
  35. data/app/views/decidim/comments/comments/create.js.erb +4 -2
  36. data/app/views/decidim/comments/comments/delete.js.erb +17 -0
  37. data/app/views/decidim/comments/comments/deletion_error.js.erb +1 -0
  38. data/app/views/decidim/comments/comments/reload.js.erb +2 -0
  39. data/app/views/decidim/comments/comments/update.js.erb +8 -0
  40. data/app/views/decidim/comments/comments/update_error.js.erb +1 -0
  41. data/config/assets.rb +5 -0
  42. data/config/locales/ar.yml +0 -1
  43. data/config/locales/ca.yml +7 -1
  44. data/config/locales/cs.yml +25 -1
  45. data/config/locales/de.yml +7 -1
  46. data/config/locales/el.yml +0 -1
  47. data/config/locales/en.yml +25 -1
  48. data/config/locales/es-MX.yml +7 -1
  49. data/config/locales/es-PY.yml +7 -1
  50. data/config/locales/es.yml +7 -1
  51. data/config/locales/fi-plain.yml +25 -1
  52. data/config/locales/fi.yml +25 -1
  53. data/config/locales/fr-CA.yml +25 -1
  54. data/config/locales/fr-LU.yml +162 -0
  55. data/config/locales/fr.yml +25 -1
  56. data/config/locales/gl.yml +25 -1
  57. data/config/locales/hu.yml +0 -1
  58. data/config/locales/it.yml +38 -1
  59. data/config/locales/ja.yml +35 -1
  60. data/config/locales/lb-LU.yml +1 -0
  61. data/config/locales/lv.yml +0 -1
  62. data/config/locales/nl.yml +27 -2
  63. data/config/locales/no.yml +0 -1
  64. data/config/locales/pl.yml +7 -1
  65. data/config/locales/pt-BR.yml +61 -0
  66. data/config/locales/pt.yml +0 -1
  67. data/config/locales/ro-RO.yml +25 -1
  68. data/config/locales/sk.yml +0 -1
  69. data/config/locales/sr-CS.yml +0 -1
  70. data/config/locales/sv.yml +25 -1
  71. data/config/locales/tr-TR.yml +0 -1
  72. data/config/locales/zh-CN.yml +0 -1
  73. data/db/migrate/20200706123136_make_comments_handle_i18n.rb +1 -1
  74. data/db/migrate/20210402124534_add_participatory_process_to_comments.rb +12 -0
  75. data/db/migrate/20210529095942_add_deleted_at_column_to_comments.rb +7 -0
  76. data/lib/decidim/comments/commentable.rb +6 -1
  77. data/lib/decidim/comments/commentable_with_component.rb +33 -0
  78. data/lib/decidim/comments/engine.rb +1 -9
  79. data/lib/decidim/comments/test/factories.rb +1 -0
  80. data/lib/decidim/comments/version.rb +1 -1
  81. data/lib/decidim/comments.rb +1 -0
  82. data/lib/tasks/decidim_comments.rake +15 -0
  83. metadata +32 -29
  84. data/app/assets/config/decidim_comments_manifest.js +0 -1
  85. data/app/assets/javascripts/decidim/comments/comments.component.js.es6 +0 -292
  86. data/app/assets/javascripts/decidim/comments/comments.js.erb +0 -10
  87. data/config/locales/ja-JP.yml +0 -120
@@ -39,7 +39,13 @@ ca:
39
39
  user_group_id:
40
40
  label: Comentar com a
41
41
  opinion:
42
+ label: La teva opinió sobre aquest tema
43
+ negative: Negativa
44
+ negative_selected: La teva opinió sobre aquest tema és negativa
42
45
  neutral: Neutral
46
+ neutral_selected: La teva opinió sobre aquest tema és neutral
47
+ positive: Positiva
48
+ positive_selected: La teva opinió sobre aquest tema és positiva
43
49
  remaining_characters: "Queden %{count} caràcters"
44
50
  remaining_characters_1: "Queda %{count} caràcter"
45
51
  title: Deixa el teu comentari
@@ -62,7 +68,6 @@ ca:
62
68
  spam: Conté "clickbait", publicitat o estafes.
63
69
  title: Notificar contingut inapropiat
64
70
  show_replies: Mostra %{replies_count} respostes
65
- single_comment_link_title: Aconsegueix l'enllaç al comentari
66
71
  comment_order_selector:
67
72
  order:
68
73
  best_rated: Més ben valorats
@@ -73,6 +78,7 @@ ca:
73
78
  comment_thread:
74
79
  title: Conversa amb %{authorName}
75
80
  comments:
81
+ blocked_comments_for_unauthorized_user_warning: Has d'estar verificat abans de poder fer comentaris, però pots llegir els comentaris anteriors.
76
82
  blocked_comments_for_user_warning: No pots fer comentaris en aquest moment, però pots llegir els anteriors.
77
83
  blocked_comments_warning: Els comentaris estan desactivats en aquest moment, però pots llegir els anteriors.
78
84
  comment_details_title: Detalls del comentari
@@ -23,6 +23,10 @@ cs:
23
23
  comments:
24
24
  create:
25
25
  error: Při vytváření komentáře došlo k chybě.
26
+ delete:
27
+ error: Komentář nemohl být odstraněn.
28
+ update:
29
+ error: Při aktualizaci komentáře došlo k chybě.
26
30
  comments_count: Počet komentářů
27
31
  comments_title: Komentáře
28
32
  last_activity:
@@ -43,7 +47,13 @@ cs:
43
47
  user_group_id:
44
48
  label: Komentovat jako
45
49
  opinion:
50
+ label: Váš názor na toto téma
51
+ negative: Negativní
52
+ negative_selected: Váš názor na toto téma je negativní
46
53
  neutral: Neutrální
54
+ neutral_selected: Váš názor na toto téma je neutrální
55
+ positive: Pozitivní
56
+ positive_selected: Váš názor na toto téma je pozitivní
47
57
  remaining_characters: "Zbývá %{count} znaků"
48
58
  remaining_characters_1: "Zbývá %{count} znak"
49
59
  title: Přidejte svůj komentář
@@ -51,7 +61,12 @@ cs:
51
61
  alignment:
52
62
  against: Proti
53
63
  in_favor: Ve prospěch
64
+ confirm_destroy: Opravdu chcete odstranit tento komentář?
65
+ delete: Smazat
66
+ deleted_at: Komentář byl smazán dne %{date}
54
67
  deleted_user: Vymazaný účastník
68
+ edit: Upravit
69
+ edited: Upraveno
55
70
  hide_replies: Skrýt odpovědi
56
71
  reply: Odpověď
57
72
  report:
@@ -66,7 +81,7 @@ cs:
66
81
  spam: Obsahuje clickbait, reklamu, podvody nebo škodlivé skripty.
67
82
  title: Nahlásit nevhodný obsah
68
83
  show_replies: Zobrazit %{replies_count} odpovědí
69
- single_comment_link_title: Získat odkaz na jeden komentář
84
+ single_comment_link_title: Získat odkaz
70
85
  comment_order_selector:
71
86
  order:
72
87
  best_rated: Nejlépe hodnocené
@@ -77,6 +92,7 @@ cs:
77
92
  comment_thread:
78
93
  title: Konverzace s číslem %{authorName}
79
94
  comments:
95
+ 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í.
80
96
  blocked_comments_for_user_warning: Momentálně nemůžete komentovat, ale můžete si přečíst ty předchozí.
81
97
  blocked_comments_warning: Komentáře jsou momentálně zakázány, ale můžete si přečíst ty předchozí.
82
98
  comment_details_title: Podrobnosti komentáře
@@ -90,6 +106,14 @@ cs:
90
106
  other: "%{count} komentářů"
91
107
  down_vote_button:
92
108
  text: Nesouhlasím s tímto komentářem
109
+ edit_comment_modal_form:
110
+ close: Zavřít
111
+ form:
112
+ body:
113
+ label: Komentář
114
+ placeholder: Co si o tom myslíte?
115
+ submit: Odeslat
116
+ title: Upravit komentář
93
117
  up_vote_button:
94
118
  text: Souhlasím s tímto komentářem
95
119
  events:
@@ -39,7 +39,13 @@ de:
39
39
  user_group_id:
40
40
  label: Kommentieren als
41
41
  opinion:
42
+ label: Ihre Meinung zu diesem Thema
43
+ negative: Negativ
44
+ negative_selected: Ihre Meinung zu diesem Thema ist negativ
42
45
  neutral: Neutral
46
+ neutral_selected: Ihre Meinung zu diesem Thema ist neutral
47
+ positive: Positiv
48
+ positive_selected: Ihre Meinung zu diesem Thema ist positiv
43
49
  remaining_characters: "%{count} Zeichen übrig"
44
50
  remaining_characters_1: "%{count} Zeichen übrig"
45
51
  title: Kommentar hinzufügen
@@ -62,7 +68,6 @@ de:
62
68
  spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
63
69
  title: Ungeeigneten Inhalt melden
64
70
  show_replies: '%{replies_count} Antworten anzeigen'
65
- single_comment_link_title: Verknüpfung zu einzelnem Kommentar erhalten
66
71
  comment_order_selector:
67
72
  order:
68
73
  best_rated: Am besten bewertet
@@ -73,6 +78,7 @@ de:
73
78
  comment_thread:
74
79
  title: Konversation mit %{authorName}
75
80
  comments:
81
+ blocked_comments_for_unauthorized_user_warning: Sie müssen aktuell verifiziert sein um zu kommentieren, aber Sie können die bisherigen Kommentare lesen.
76
82
  blocked_comments_for_user_warning: Sie können momentan nichts kommentieren, aber Sie können die vorherigen lesen.
77
83
  blocked_comments_warning: Kommentare sind zu diesem Zeitpunkt deaktiviert, aber Sie können die vorherigen lesen.
78
84
  comment_details_title: Kommentarinformationen
@@ -57,7 +57,6 @@ el:
57
57
  spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
58
58
  title: Αναφορά ακατάλληλου περιεχομένου
59
59
  show_replies: Εμφάνιση %{replies_count} απαντήσεων
60
- single_comment_link_title: Λήψη συνδέσμου για ένα μόνο σχόλιο
61
60
  comment_order_selector:
62
61
  order:
63
62
  best_rated: Με την καλύτερη βαθμολογία
@@ -20,6 +20,10 @@ en:
20
20
  comments:
21
21
  create:
22
22
  error: There was a problem creating the comment.
23
+ delete:
24
+ error: The comment couldn't be deleted.
25
+ update:
26
+ error: There was a problem updating the comment.
23
27
  comments_count: Comments count
24
28
  comments_title: Comments
25
29
  last_activity:
@@ -40,7 +44,13 @@ en:
40
44
  user_group_id:
41
45
  label: Comment as
42
46
  opinion:
47
+ label: Your opinion about this topic
48
+ negative: Negative
49
+ negative_selected: Your opinion about this topic is negative
43
50
  neutral: Neutral
51
+ neutral_selected: Your opinion about this topic is neutral
52
+ positive: Positive
53
+ positive_selected: Your opinion about this topic is positive
44
54
  remaining_characters: "%{count} characters left"
45
55
  remaining_characters_1: "%{count} character left"
46
56
  title: Add your comment
@@ -48,7 +58,12 @@ en:
48
58
  alignment:
49
59
  against: Against
50
60
  in_favor: In favor
61
+ confirm_destroy: Are you sure you want to delete this comment?
62
+ delete: Delete
63
+ deleted_at: Comment deleted on %{date}
51
64
  deleted_user: Deleted participant
65
+ edit: Edit
66
+ edited: Edited
52
67
  hide_replies: Hide replies
53
68
  reply: Reply
54
69
  report:
@@ -63,7 +78,7 @@ en:
63
78
  spam: Contains clickbait, advertising, scams or script bots.
64
79
  title: Report inappropriate content
65
80
  show_replies: Show %{replies_count} replies
66
- single_comment_link_title: Get link to single comment
81
+ single_comment_link_title: Get link
67
82
  comment_order_selector:
68
83
  order:
69
84
  best_rated: Best rated
@@ -74,6 +89,7 @@ en:
74
89
  comment_thread:
75
90
  title: Conversation with %{authorName}
76
91
  comments:
92
+ blocked_comments_for_unauthorized_user_warning: You need to be verified to comment at this moment, but you can read the previous ones.
77
93
  blocked_comments_for_user_warning: You are not able to comment at this moment, but you can read the previous ones.
78
94
  blocked_comments_warning: Comments are disabled at this time, but you can read the previous ones.
79
95
  comment_details_title: Comment details
@@ -85,6 +101,14 @@ en:
85
101
  other: "%{count} comments"
86
102
  down_vote_button:
87
103
  text: I disagree with this comment
104
+ edit_comment_modal_form:
105
+ close: Close
106
+ form:
107
+ body:
108
+ label: Comment
109
+ placeholder: What do you think about this?
110
+ submit: Send
111
+ title: Edit your comment
88
112
  up_vote_button:
89
113
  text: I agree with this comment
90
114
  events:
@@ -39,7 +39,13 @@ es-MX:
39
39
  user_group_id:
40
40
  label: Comentar como
41
41
  opinion:
42
+ label: Tu opinión sobre este tema
43
+ negative: Negativa
44
+ negative_selected: Tu opinión sobre este tema es negativa
42
45
  neutral: Neutral
46
+ neutral_selected: Tu opinión sobre este tema es neutral
47
+ positive: Positiva
48
+ positive_selected: Tu opinión sobre este tema es positiva
43
49
  remaining_characters: "Quedan %{count} caracteres"
44
50
  remaining_characters_1: "Queda %{count} carácter"
45
51
  title: Deje su comentario
@@ -62,7 +68,6 @@ es-MX:
62
68
  spam: Contiene clickbait, publicidad o estafas.
63
69
  title: Notificar contenido inapropiado
64
70
  show_replies: Mostrar %{replies_count} respuestas
65
- single_comment_link_title: Obtener enlace a un solo comentario
66
71
  comment_order_selector:
67
72
  order:
68
73
  best_rated: Mejor valoración
@@ -73,6 +78,7 @@ es-MX:
73
78
  comment_thread:
74
79
  title: Conversación con %{authorName}
75
80
  comments:
81
+ blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
76
82
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
77
83
  blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
78
84
  comment_details_title: Detalles del comentario
@@ -39,7 +39,13 @@ es-PY:
39
39
  user_group_id:
40
40
  label: Comentar como
41
41
  opinion:
42
+ label: Tu opinión sobre este tema
43
+ negative: Negativa
44
+ negative_selected: Tu opinión sobre este tema es negativa
42
45
  neutral: Neutral
46
+ neutral_selected: Tu opinión sobre este tema es neutral
47
+ positive: Positiva
48
+ positive_selected: Tu opinión sobre este tema es positiva
43
49
  remaining_characters: "Quedan %{count} caracteres"
44
50
  remaining_characters_1: "Queda %{count} carácter"
45
51
  title: Deje su comentario
@@ -62,7 +68,6 @@ es-PY:
62
68
  spam: Contiene clickbait, publicidad o estafas.
63
69
  title: Notificar contenido inapropiado
64
70
  show_replies: Mostrar %{replies_count} respuestas
65
- single_comment_link_title: Obtener enlace a un solo comentario
66
71
  comment_order_selector:
67
72
  order:
68
73
  best_rated: Mejor valoración
@@ -73,6 +78,7 @@ es-PY:
73
78
  comment_thread:
74
79
  title: Conversación con %{authorName}
75
80
  comments:
81
+ blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
76
82
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
77
83
  blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
78
84
  comment_details_title: Detalles del comentario
@@ -39,7 +39,13 @@ es:
39
39
  user_group_id:
40
40
  label: Comentar como
41
41
  opinion:
42
+ label: Tu opinión sobre este tema
43
+ negative: Negativa
44
+ negative_selected: Tu opinión sobre este tema es negativa
42
45
  neutral: Neutral
46
+ neutral_selected: Tu opinión sobre este tema es neutral
47
+ positive: Positiva
48
+ positive_selected: Tu opinión sobre este tema es positiva
43
49
  remaining_characters: "Quedan %{count} caracteres"
44
50
  remaining_characters_1: "Queda %{count} carácter"
45
51
  title: Deja tu comentario
@@ -62,7 +68,6 @@ es:
62
68
  spam: Contiene clickbait, publicidad o estafas.
63
69
  title: Notificar contenido inapropiado
64
70
  show_replies: Mostrar %{replies_count} respuestas
65
- single_comment_link_title: Obtener enlace a un solo comentario
66
71
  comment_order_selector:
67
72
  order:
68
73
  best_rated: Mejor valoración
@@ -73,6 +78,7 @@ es:
73
78
  comment_thread:
74
79
  title: Conversación con %{authorName}
75
80
  comments:
81
+ blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
76
82
  blocked_comments_for_user_warning: No puedes hacer comentarios en este momento, pero puedes leer los anteriores.
77
83
  blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
78
84
  comment_details_title: Detalles del comentario
@@ -19,6 +19,10 @@ fi-pl:
19
19
  comments:
20
20
  create:
21
21
  error: Kommentin luotaessa tapahtui virhe.
22
+ delete:
23
+ error: Kommenttia ei voitu poistaa.
24
+ update:
25
+ error: Kommentin päivittäminen epäonnistui.
22
26
  comments_count: Kommenttien määrä
23
27
  comments_title: Kommentit
24
28
  last_activity:
@@ -39,7 +43,13 @@ fi-pl:
39
43
  user_group_id:
40
44
  label: Kommentoi käyttäjänä
41
45
  opinion:
46
+ label: Mielipiteesi tästä aiheesta
47
+ negative: Negatiivinen
48
+ negative_selected: Mielipiteesi tästä aiheesta on negatiivinen
42
49
  neutral: Neutraali
50
+ neutral_selected: Mielipiteesi tästä aiheesta on neutraali
51
+ positive: Positiivinen
52
+ positive_selected: Mielipiteesi tästä aiheesta on positiivinen
43
53
  remaining_characters: "%{count} merkkiä jäljellä"
44
54
  remaining_characters_1: "%{count} merkki jäljellä"
45
55
  title: Lisää oma kommenttisi
@@ -47,7 +57,12 @@ fi-pl:
47
57
  alignment:
48
58
  against: Vastaan
49
59
  in_favor: Puolesta
60
+ confirm_destroy: Haluatko varmasti poistaa tämän kommentin?
61
+ delete: Poista
62
+ deleted_at: Kommentti poistettu %{date}
50
63
  deleted_user: Poistettu käyttäjä
64
+ edit: Muokkaa
65
+ edited: Muokattu
51
66
  hide_replies: Piilota vastaukset
52
67
  reply: Vastaa
53
68
  report:
@@ -62,7 +77,7 @@ fi-pl:
62
77
  spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
63
78
  title: Ilmoita asiatonta sisältöä
64
79
  show_replies: Näytä %{replies_count} vastausta
65
- single_comment_link_title: Hae linkki yksittäiseen kommenttiin
80
+ single_comment_link_title: Linkki kommenttiin
66
81
  comment_order_selector:
67
82
  order:
68
83
  best_rated: Parhaiksi arvioidut
@@ -73,6 +88,7 @@ fi-pl:
73
88
  comment_thread:
74
89
  title: Keskustelu henkilön %{authorName} kanssa
75
90
  comments:
91
+ blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla varmennettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
76
92
  blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
77
93
  blocked_comments_warning: Kommentit on poistettu käytöstä tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
78
94
  comment_details_title: Kommentin yksityiskohdat
@@ -84,6 +100,14 @@ fi-pl:
84
100
  other: "%{count} kommenttia"
85
101
  down_vote_button:
86
102
  text: Olen eri mieltä tämän kommentin kanssa
103
+ edit_comment_modal_form:
104
+ close: Sulje
105
+ form:
106
+ body:
107
+ label: Kommentti
108
+ placeholder: Mitä mieltä olet tästä?
109
+ submit: Lähetä
110
+ title: Muokkaa kommenttiasi
87
111
  up_vote_button:
88
112
  text: Olen samaa mieltä tämän kommentin kanssa
89
113
  events:
@@ -19,6 +19,10 @@ fi:
19
19
  comments:
20
20
  create:
21
21
  error: Kommentin luotaessa tapahtui virhe.
22
+ delete:
23
+ error: Kommenttia ei voitu poistaa.
24
+ update:
25
+ error: Kommentin päivittäminen epäonnistui.
22
26
  comments_count: Kommenttien määrä
23
27
  comments_title: Kommentit
24
28
  last_activity:
@@ -39,7 +43,13 @@ fi:
39
43
  user_group_id:
40
44
  label: Kommentoi käyttäjänä
41
45
  opinion:
46
+ label: Mielipiteesi tästä aiheesta
47
+ negative: Negatiivinen
48
+ negative_selected: Mielipiteesi tästä aiheesta on negatiivinen
42
49
  neutral: Neutraali
50
+ neutral_selected: Mielipiteesi tästä aiheesta on neutraali
51
+ positive: Positiivinen
52
+ positive_selected: Mielipiteesi tästä aiheesta on positiivinen
43
53
  remaining_characters: "%{count} merkkiä jäljellä"
44
54
  remaining_characters_1: "%{count} merkki jäljellä"
45
55
  title: Lisää oma kommenttisi
@@ -47,7 +57,12 @@ fi:
47
57
  alignment:
48
58
  against: Vastaan
49
59
  in_favor: Puolesta
60
+ confirm_destroy: Haluatko varmasti poistaa tämän kommentin?
61
+ delete: Poista
62
+ deleted_at: Kommentti poistettu %{date}
50
63
  deleted_user: Poistettu käyttäjä
64
+ edit: Muokkaa
65
+ edited: Muokattu
51
66
  hide_replies: Piilota vastaukset
52
67
  reply: Vastaa
53
68
  report:
@@ -62,7 +77,7 @@ fi:
62
77
  spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
63
78
  title: Ilmoita asiatonta sisältöä
64
79
  show_replies: Näytä %{replies_count} vastausta
65
- single_comment_link_title: Hae linkki yksittäiseen kommenttiin
80
+ single_comment_link_title: Linkki kommenttiin
66
81
  comment_order_selector:
67
82
  order:
68
83
  best_rated: Parhaiksi arvioidut
@@ -73,6 +88,7 @@ fi:
73
88
  comment_thread:
74
89
  title: Keskustelu henkilön %{authorName} kanssa
75
90
  comments:
91
+ blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla varmennettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
76
92
  blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
77
93
  blocked_comments_warning: Kommentit on poistettu käytöstä tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
78
94
  comment_details_title: Kommentin yksityiskohdat
@@ -84,6 +100,14 @@ fi:
84
100
  other: "%{count} kommenttia"
85
101
  down_vote_button:
86
102
  text: Olen eri mieltä tämän kommentin kanssa
103
+ edit_comment_modal_form:
104
+ close: Sulje
105
+ form:
106
+ body:
107
+ label: Kommentti
108
+ placeholder: Mitä mieltä olet tästä?
109
+ submit: Lähetä
110
+ title: Muokkaa kommenttiasi
87
111
  up_vote_button:
88
112
  text: Olen samaa mieltä tämän kommentin kanssa
89
113
  events:
@@ -19,6 +19,10 @@ fr-CA:
19
19
  comments:
20
20
  create:
21
21
  error: Une erreur s'est produite lors de la création du commentaire.
22
+ delete:
23
+ error: Le commentaire n'a pas pu être supprimé.
24
+ update:
25
+ error: Une erreur s'est produite lors de la mise à jour du commentaire.
22
26
  comments_count: Nombre de commentaires
23
27
  comments_title: Commentaires
24
28
  last_activity:
@@ -39,7 +43,13 @@ fr-CA:
39
43
  user_group_id:
40
44
  label: Commenter en tant que
41
45
  opinion:
46
+ label: Votre avis sur ce sujet
47
+ negative: Négatif
48
+ negative_selected: Votre avis sur ce sujet est négatif
42
49
  neutral: Neutre
50
+ neutral_selected: Votre avis sur ce sujet est neutre
51
+ positive: Positif
52
+ positive_selected: Votre avis sur ce sujet est positif
43
53
  remaining_characters: "%{count} caractères restants"
44
54
  remaining_characters_1: "%{count} caractère restant"
45
55
  title: Ajoutez votre commentaire
@@ -47,7 +57,12 @@ fr-CA:
47
57
  alignment:
48
58
  against: Contre
49
59
  in_favor: Pour
60
+ confirm_destroy: Êtes-vous sûr de vouloir supprimer ce commentaire?
61
+ delete: Supprimer
62
+ deleted_at: Commentaire supprimé le %{date}
50
63
  deleted_user: Utilisateur supprimé
64
+ edit: Modifier
65
+ edited: Modifié
51
66
  hide_replies: Cacher les réponses
52
67
  reply: Répondre
53
68
  report:
@@ -62,7 +77,7 @@ fr-CA:
62
77
  spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
63
78
  title: Signaler un contenu inapproprié
64
79
  show_replies: Afficher %{replies_count} réponses
65
- single_comment_link_title: Obtenir un lien vers un seul commentaire
80
+ single_comment_link_title: Obtenir le lien
66
81
  comment_order_selector:
67
82
  order:
68
83
  best_rated: Les mieux notés
@@ -73,6 +88,7 @@ fr-CA:
73
88
  comment_thread:
74
89
  title: Conversation avec %{authorName}
75
90
  comments:
91
+ blocked_comments_for_unauthorized_user_warning: Vous devez valider votre inscription pour commenter maintenant, mais vous pouvez lire les commentaires précédents.
76
92
  blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
77
93
  blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
78
94
  comment_details_title: Détails du commentaire
@@ -84,6 +100,14 @@ fr-CA:
84
100
  other: "%{count} commentaires"
85
101
  down_vote_button:
86
102
  text: Je ne suis pas d'accord avec ce commentaire
103
+ edit_comment_modal_form:
104
+ close: Fermer
105
+ form:
106
+ body:
107
+ label: Commentaire
108
+ placeholder: Que pensez-vous de cela?
109
+ submit: Envoyer
110
+ title: Modifier votre commentaire
87
111
  up_vote_button:
88
112
  text: Je suis d'accord avec ce commentaire
89
113
  events: