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
@@ -0,0 +1,162 @@
1
+ fr-LU:
2
+ activemodel:
3
+ models:
4
+ decidim/comments/comment_by_followed_user_event: Commentaire
5
+ decidim/comments/comment_created_event: Commentaire
6
+ decidim/comments/reply_created_event: Réponse à un commentaire
7
+ decidim/comments/user_group_mentioned_event: Mention
8
+ decidim/comments/user_mentioned_event: Mention
9
+ activerecord:
10
+ models:
11
+ decidim/comments/comment:
12
+ one: Commentaire
13
+ other: Commentaires
14
+ decidim/comments/comment_vote:
15
+ one: Vote
16
+ other: Votes
17
+ decidim:
18
+ comments:
19
+ comments:
20
+ create:
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.
26
+ comments_count: Nombre de commentaires
27
+ comments_title: Commentaires
28
+ last_activity:
29
+ new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
30
+ view: Voir
31
+ votes:
32
+ create:
33
+ error: Une erreur s'est produite lors du vote sur le commentaire.
34
+ components:
35
+ add_comment_form:
36
+ account_message: Pour ajouter votre commentaire <a href="%{sign_in_url}"> connectez-vous avec votre compte</a> ou <a href="%{sign_up_url}">inscrivez-vous</a>.
37
+ form:
38
+ body:
39
+ label: Commentaire
40
+ placeholder: Que pensez-vous de cela ?
41
+ form_error: Le texte est requis et ne peut pas dépasser %{length} caractères.
42
+ submit: Publier
43
+ user_group_id:
44
+ label: Commenter en tant que
45
+ opinion:
46
+ label: Votre avis sur ce sujet
47
+ negative: Négatif
48
+ negative_selected: Votre avis sur ce sujet est négatif
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
53
+ remaining_characters: "%{count} caractères restants"
54
+ remaining_characters_1: "%{count} caractère restant"
55
+ title: Ajoutez votre commentaire
56
+ comment:
57
+ alignment:
58
+ against: Contre
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}
63
+ deleted_user: Utilisateur supprimé
64
+ edit: Modifier
65
+ edited: Modifié
66
+ hide_replies: Cacher les réponses
67
+ reply: Répondre
68
+ report:
69
+ action: Signaler
70
+ already_reported: Ce contenu a déjà été signalé et il sera examiné par un administrateur.
71
+ close: Fermer
72
+ description: Ce contenu est-il inapproprié ?
73
+ details: Commentaires additionnels
74
+ reasons:
75
+ does_not_belong: Contient d’autres types de contenus qui vous semblent inappropriés à %{organization_name} (activités illégales, menaces suicidaires, informations personnelles,...).
76
+ offensive: Contient des propos contraires à la loi (propos racistes, sexistes, insultes, attaques personnelles, menaces de mort, incitations au suicide ou toute forme de discours de haine,...).
77
+ spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
78
+ title: Signaler un contenu inapproprié
79
+ show_replies: Afficher %{replies_count} réponses
80
+ single_comment_link_title: Obtenir le lien
81
+ comment_order_selector:
82
+ order:
83
+ best_rated: Les mieux notés
84
+ most_discussed: Les plus débattus
85
+ older: Les plus anciens
86
+ recent: Les plus récents
87
+ title: 'Classement par :'
88
+ comment_thread:
89
+ title: Conversation avec %{authorName}
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.
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.
93
+ blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
94
+ comment_details_title: Détails du commentaire
95
+ loading: Chargement des commentaires ...
96
+ single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
97
+ single_comment_warning_title: Vous ne voyez qu'un seul commentaire
98
+ title:
99
+ one: "%{count} commentaire"
100
+ other: "%{count} commentaires"
101
+ down_vote_button:
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
111
+ up_vote_button:
112
+ text: Je suis d'accord avec ce commentaire
113
+ events:
114
+ comments:
115
+ comment_by_followed_user:
116
+ email_intro: "%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :"
117
+ email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
118
+ email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
119
+ notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
120
+ comment_by_followed_user_group:
121
+ email_intro: '%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :'
122
+ email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
123
+ email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
124
+ notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
125
+ comment_created:
126
+ email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
127
+ email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Vous pouvez vous désabonner à partir du lien précédant.
128
+ email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
129
+ notification_title: Un nouveau commentaire de <a href="%{author_path}">%{author_name} %{author_nickname}</a> vient d'être publié dans <a href="%{resource_path}">%{resource_title}</a>
130
+ comment_downvoted:
131
+ email_intro: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
132
+ email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
133
+ email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable.
134
+ notification_title: Votre <a href="%{resource_path}">commentaire</a> sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et de %{downvotes} votes négatifs.
135
+ comment_upvoted:
136
+ email_intro: Votre commentaire dans "%{resource_title}" a reçu un vote favorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
137
+ email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
138
+ email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote favorable.
139
+ notification_title: Votre <a href="%{resource_path}">commentaire</a> sur "%{resource_title}" a reçu un vote favorable. Il a maintenant un total de %{upvotes} votes positifs et de %{downvotes} votes négatifs.
140
+ reply_created:
141
+ email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
142
+ email_outro: Vous venez de recevoir une notification à votre commentaire.
143
+ email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
144
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
145
+ user_group_mentioned:
146
+ email_intro: Un groupe auquel vous appartenez a été mentionné
147
+ email_outro: Vous avez reçu cette notification parce que vous êtes membre du groupe %{group_name} qui a été mentionné dans %{resource_title}.
148
+ email_subject: Vous avez été mentionné dans %{resource_title} en tant que membre de %{group_name}
149
+ notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a> en tant que membre de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
150
+ user_mentioned:
151
+ email_intro: Vous avez été mentionné
152
+ email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}.
153
+ email_subject: Vous avez été mentionné dans %{resource_title}
154
+ notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a>
155
+ metrics:
156
+ comments:
157
+ description: Nombre de commentaires générés par les utilisateurs
158
+ object: commentaires
159
+ title: commentaires
160
+ errors:
161
+ messages:
162
+ cannot_have_comments: ne peut pas être commenté
@@ -19,6 +19,10 @@ fr:
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:
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:
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:
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:
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:
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:
@@ -19,6 +19,10 @@ gl:
19
19
  comments:
20
20
  create:
21
21
  error: Produciuse un problema ao crear o comentario.
22
+ delete:
23
+ error: Non foi posíbel eliminar o comentario.
24
+ update:
25
+ error: Produciuse un problema ao actualizar o comentario.
22
26
  comments_count: Número de comentarios
23
27
  comments_title: Comentarios
24
28
  last_activity:
@@ -39,7 +43,13 @@ gl:
39
43
  user_group_id:
40
44
  label: Comentar como
41
45
  opinion:
46
+ label: A túa opinión canto a este tema
47
+ negative: Negativa
48
+ negative_selected: A túa opinión canto a este tema é negativa
42
49
  neutral: Neutro
50
+ neutral_selected: A túa opinión canto a este tema é neutral
51
+ positive: Positiva
52
+ positive_selected: A túa opinión canto a este tema é positiva
43
53
  remaining_characters: "Faltan %{count} caracteres"
44
54
  remaining_characters_1: "Faltou o personaxe %{count}"
45
55
  title: Engade o teu comentario
@@ -47,7 +57,12 @@ gl:
47
57
  alignment:
48
58
  against: Contra
49
59
  in_favor: A favor
60
+ confirm_destroy: Estás certo/a de querer eliminar este comentario?
61
+ delete: Eliminar
62
+ deleted_at: Comentario eliminado o %{date}
50
63
  deleted_user: Usuario eliminado
64
+ edit: Editar
65
+ edited: Editado
51
66
  hide_replies: Ocultar respostas
52
67
  reply: Responder
53
68
  report:
@@ -62,7 +77,7 @@ gl:
62
77
  spam: Contén clic, publicidade, fraudes ou bots de script.
63
78
  title: Denunciar contido inapropiado
64
79
  show_replies: Amosar %{replies_count} respostas
65
- single_comment_link_title: Obter ligazón a un único comentario
80
+ single_comment_link_title: Obter ligazón
66
81
  comment_order_selector:
67
82
  order:
68
83
  best_rated: Mellor valorado
@@ -73,6 +88,7 @@ gl:
73
88
  comment_thread:
74
89
  title: Conversa con %{authorName}
75
90
  comments:
91
+ blocked_comments_for_unauthorized_user_warning: Tes de estar verificado para poder comentar neste intre, porén podes ler os comentarios anteriores.
76
92
  blocked_comments_for_user_warning: Non podes comentar neste momento, pero podes ler os anteriores.
77
93
  blocked_comments_warning: Os comentarios están desactivados neste momento, pero podes ler os anteriores.
78
94
  comment_details_title: Detalles do comentario
@@ -84,6 +100,14 @@ gl:
84
100
  other: "%{count} comentarios"
85
101
  down_vote_button:
86
102
  text: Non estou de acordo con este comentario
103
+ edit_comment_modal_form:
104
+ close: Pechar
105
+ form:
106
+ body:
107
+ label: Comentario
108
+ placeholder: Que pensas sobre isto?
109
+ submit: Enviar
110
+ title: Editar o teu comentario
87
111
  up_vote_button:
88
112
  text: Estou de acordo con este comentario
89
113
  events:
@@ -55,7 +55,6 @@ hu:
55
55
  offensive: Rasszizmust, szexizmust, gyalázkodást, személyeskedést, halálos fenyegetést, öngyilkosságra való felhívást vagy gyűlöletbeszédet tartalmaz.
56
56
  spam: Klikkvadászat, reklám, átverés vagy script bot.
57
57
  show_replies: '%{replies_count} válasz mutatása'
58
- single_comment_link_title: Link a kommenthez
59
58
  comment_order_selector:
60
59
  order:
61
60
  best_rated: Legjobbra értékelt
@@ -19,6 +19,10 @@ it:
19
19
  comments:
20
20
  create:
21
21
  error: Ci sono stati problemi durante la creazione del commento.
22
+ delete:
23
+ error: Il commento non può essere eliminato.
24
+ update:
25
+ error: Si è verificato un errore durante l'aggiornamento del commento.
22
26
  comments_count: Conteggio dei Commenti
23
27
  comments_title: Commenti
24
28
  last_activity:
@@ -39,7 +43,13 @@ it:
39
43
  user_group_id:
40
44
  label: Commenta come
41
45
  opinion:
46
+ label: La tua opinione su questo argomento
47
+ negative: Negativo
48
+ negative_selected: Hai un'opinione negativa su questo argomento
42
49
  neutral: Neutro
50
+ neutral_selected: Hai un'opinione neutrale su questo argomento
51
+ positive: Positivo
52
+ positive_selected: Hai un'opinione positiva su questo argomento
43
53
  remaining_characters: "%{count} caratteri rimasti"
44
54
  remaining_characters_1: "%{count} carattere sinistro"
45
55
  title: Aggiungi il tuo commento
@@ -47,7 +57,12 @@ it:
47
57
  alignment:
48
58
  against: Contro
49
59
  in_favor: A favore
60
+ confirm_destroy: Sei sicura di voler eliminare questo commento?
61
+ delete: Cancella
62
+ deleted_at: Commento eliminato il %{date}
50
63
  deleted_user: Utente cancellato
64
+ edit: Modifica
65
+ edited: Modificato
51
66
  hide_replies: Nascondi risposte
52
67
  reply: Rispondi
53
68
  report:
@@ -62,7 +77,7 @@ it:
62
77
  spam: Contiene pubblicità, truffe, clickbait ("esca da click") o altro contenuto mirato ad attrarre traffico internet.
63
78
  title: Segnala contenuti inappropriati
64
79
  show_replies: Mostra %{replies_count} risposte
65
- single_comment_link_title: Ottieni link a singolo commento
80
+ single_comment_link_title: Ottieni il link
66
81
  comment_order_selector:
67
82
  order:
68
83
  best_rated: Favoriti
@@ -73,14 +88,26 @@ it:
73
88
  comment_thread:
74
89
  title: Conversazioni con %{authorName}
75
90
  comments:
91
+ blocked_comments_for_unauthorized_user_warning: Devi essere verificato prima di poter commentare, ma puoi leggere i commenti precedenti.
76
92
  blocked_comments_for_user_warning: Non sei in grado di commentare in questo momento, ma puoi leggere quelli precedenti.
77
93
  blocked_comments_warning: I commenti sono disabilitati in questo momento, ma puoi leggere quelli precedenti.
78
94
  comment_details_title: Dettagli commento
79
95
  loading: Sto caricando i commenti ...
80
96
  single_comment_warning: Puoi controllare il resto dei commenti <a href="%{url}">qui</a>.
81
97
  single_comment_warning_title: Stai vedendo un singolo commento
98
+ title:
99
+ one: "%{count} commento"
100
+ other: "%{count} commenti"
82
101
  down_vote_button:
83
102
  text: Non sono d'accordo con questo commento
103
+ edit_comment_modal_form:
104
+ close: Chiudi
105
+ form:
106
+ body:
107
+ label: Commento
108
+ placeholder: Cosa ne pensi?
109
+ submit: Invia
110
+ title: Modifica il tuo commento
84
111
  up_vote_button:
85
112
  text: Sono d'accordo con questo commento
86
113
  events:
@@ -100,6 +127,16 @@ it:
100
127
  email_outro: Hai ricevuto questa notifica perché stai seguendo "%{resource_title}" o il suo autore. Puoi smettere di seguirlo dal link precedente.
101
128
  email_subject: C'è un nuovo commento da %{author_name} in %{resource_title}
102
129
  notification_title: C'è un nuovo commento da <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>
130
+ comment_downvoted:
131
+ email_intro: Il tuo commento in "%{resource_title}" ha ricevuto un voto negativo. Ora ha un totale di %{upvotes} voti positivi e %{downvotes} voti negativi.
132
+ email_outro: Hai ricevuto questa notifica perché sei l'autore di questo commento.
133
+ email_subject: Il tuo commento in "%{resource_title}" ha ricevuto un voto negativo.
134
+ notification_title: Il tuo <a href="%{resource_path}">commento</a> in "%{resource_title}" ha ricevuto un voto negativo. Ora ha un totale di %{upvotes} voti positivi e %{downvotes} voti negativi.
135
+ comment_upvoted:
136
+ email_intro: Il tuo commento in "%{resource_title}" è stato votato. Ora ha un totale di %{upvotes} voti positivi e %{downvotes} voti negativi.
137
+ email_outro: Ricevi questa notifica perché sei l'autore di questo commento.
138
+ email_subject: Il tuo commento in "%{resource_title}" è stato votato.
139
+ notification_title: Il tuo <a href="%{resource_path}">commento</a> in "%{resource_title}" è stato votato. Ora ha un totale di %{upvotes} voti positivi e %{downvotes} voti negativi.
103
140
  reply_created:
104
141
  email_intro: "%{author_name} ha risposto il tuo commento in %{resource_title}. Puoi leggerlo in questa pagina:"
105
142
  email_outro: Hai ricevuto questa notifica perché il tuo commento è stato risposto.
@@ -17,6 +17,10 @@ ja:
17
17
  comments:
18
18
  create:
19
19
  error: コメントの登録に問題がありました。
20
+ delete:
21
+ error: コメントを削除できませんでした。
22
+ update:
23
+ error: コメントの更新中に問題が発生しました。
20
24
  comments_count: コメント数
21
25
  comments_title: コメント
22
26
  last_activity:
@@ -37,7 +41,13 @@ ja:
37
41
  user_group_id:
38
42
  label: 'コメント:'
39
43
  opinion:
44
+ label: このトピックに関するあなたの意見
45
+ negative: 否定的
46
+ negative_selected: このトピックについてのあなたの意見は否定的です
40
47
  neutral: 中立
48
+ neutral_selected: このトピックについてのあなたの意見は中立です
49
+ positive: 肯定的
50
+ positive_selected: このトピックについてのあなたの意見は肯定的です
41
51
  remaining_characters: "残り %{count} 文字"
42
52
  remaining_characters_1: "残り%{count} 文字"
43
53
  title: コメントを追加
@@ -45,7 +55,12 @@ ja:
45
55
  alignment:
46
56
  against: 反対
47
57
  in_favor: 賛成
58
+ confirm_destroy: コメントを削除してもよろしいですか?
59
+ delete: 削除
60
+ deleted_at: '%{date} にコメントが削除されました'
48
61
  deleted_user: 退会者
62
+ edit: 編集
63
+ edited: 編集済み
49
64
  hide_replies: 返信を非表示
50
65
  reply: 返信
51
66
  report:
@@ -60,7 +75,7 @@ ja:
60
75
  spam: 本来の内容に関係が無い広告、詐欺や悪意のある処理などが含まれています。
61
76
  title: 不適切なコンテンツを報告する
62
77
  show_replies: '%{replies_count} 件の返信を表示'
63
- single_comment_link_title: シングルコメントへのリンクを取得
78
+ single_comment_link_title: リンク取得
64
79
  comment_order_selector:
65
80
  order:
66
81
  best_rated: 最高評価
@@ -71,6 +86,7 @@ ja:
71
86
  comment_thread:
72
87
  title: '%{authorName} との会話'
73
88
  comments:
89
+ blocked_comments_for_unauthorized_user_warning: 現在、コメントできるのは検証済アカウントのみになりますが、以前のコメントを読むことはできます。
74
90
  blocked_comments_for_user_warning: 現時点ではコメントできませんが、以前のコメントを読むことができます。
75
91
  blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
76
92
  comment_details_title: コメントの詳細
@@ -81,6 +97,14 @@ ja:
81
97
  other: "%{count} 件のコメント"
82
98
  down_vote_button:
83
99
  text: このコメントに同意しません
100
+ edit_comment_modal_form:
101
+ close: 閉じる
102
+ form:
103
+ body:
104
+ label: コメント
105
+ placeholder: これについてどう思いますか?
106
+ submit: 送信
107
+ title: コメントを編集
84
108
  up_vote_button:
85
109
  text: このコメントに同意します
86
110
  events:
@@ -100,6 +124,16 @@ ja:
100
124
  email_outro: '"%{resource_title}" 、またはその参加者をフォローしているためこの通知を受け取りました。前のリンクからフォローを解除することができます。'
101
125
  email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
102
126
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>
127
+ comment_downvoted:
128
+ email_intro: '"%{resource_title}" でのあなたの意見への反対票がありました。現在の合計は、賛成票が %{upvotes} 件、反対票が %{downvotes} 件です。'
129
+ email_outro: このコメントの作成者であるため、この通知を受け取りました。
130
+ email_subject: '"%{resource_title}" のコメントに反対票がありました。'
131
+ notification_title: '"%{resource_title}"についてのあなたの <a href="%{resource_path}">コメント</a> に反対票がありました。現在の合計は、賛成票が %{upvotes} 件、反対票が %{downvotes} 件です。'
132
+ comment_upvoted:
133
+ email_intro: '"%{resource_title}" でのあなたの意見への賛成票がありました。現在の合計は、賛成票が %{upvotes} 件、反対票が %{downvotes} 件です。'
134
+ email_outro: このコメントの作成者であるため、この通知を受け取りました。
135
+ email_subject: '"%{resource_title}" のコメントに賛成票がありました。'
136
+ notification_title: '"%{resource_title}"についてのあなたの <a href="%{resource_path}">コメント</a> に賛成票がありました。現在の合計は、賛成票が %{upvotes} 件、反対票が %{downvotes} 件です。'
103
137
  reply_created:
104
138
  email_intro: "%{author_name} は %{resource_title}であなたのコメントを返信しました。このページで読むことができます:"
105
139
  email_outro: コメントが返信されたため、この通知を受信しました。