decidim-comments 0.23.0 → 0.24.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/comments/comments.component.js.es6 +292 -0
- data/app/assets/javascripts/decidim/comments/comments.component.test.js +581 -0
- data/app/assets/javascripts/decidim/comments/comments.js.erb +1 -1
- data/app/cells/decidim/comments/comment/actions.erb +7 -0
- data/app/cells/decidim/comments/comment/alignment_badge.erb +4 -0
- data/app/cells/decidim/comments/comment/author.erb +1 -0
- data/app/cells/decidim/comments/comment/show.erb +40 -0
- data/app/cells/decidim/comments/comment/utilities.erb +13 -0
- data/app/cells/decidim/comments/comment/votes.erb +25 -0
- data/app/cells/decidim/comments/comment_card_cell.rb +22 -0
- data/app/cells/decidim/comments/comment_cell.rb +142 -8
- data/app/cells/decidim/comments/comment_form/comment_as.erb +10 -0
- data/app/cells/decidim/comments/comment_form/show.erb +24 -0
- data/app/cells/decidim/comments/comment_form_cell.rb +94 -0
- data/app/cells/decidim/comments/comment_m/top.erb +1 -1
- data/app/cells/decidim/comments/comment_thread/show.erb +6 -0
- data/app/cells/decidim/comments/comment_thread/title.erb +3 -0
- data/app/cells/decidim/comments/comment_thread_cell.rb +30 -0
- data/app/cells/decidim/comments/comments/add_comment.erb +30 -0
- data/app/cells/decidim/comments/comments/blocked_comments_warning.erb +3 -0
- data/app/cells/decidim/comments/comments/order_control.erb +37 -0
- data/app/cells/decidim/comments/comments/show.erb +32 -0
- data/app/cells/decidim/comments/comments/single_comment_warning.erb +9 -0
- data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +3 -0
- data/app/cells/decidim/comments/comments_cell.rb +134 -0
- data/app/commands/decidim/comments/vote_comment.rb +34 -10
- data/app/controllers/decidim/comments/application_controller.rb +16 -0
- data/app/controllers/decidim/comments/comments_controller.rb +122 -0
- data/app/controllers/decidim/comments/votes_controller.rb +41 -0
- data/app/events/decidim/comments/comment_created_event.rb +1 -1
- data/app/events/decidim/comments/comment_downvoted_event.rb +8 -0
- data/app/events/decidim/comments/comment_event.rb +1 -9
- data/app/events/decidim/comments/comment_upvoted_event.rb +8 -0
- data/app/events/decidim/comments/comment_voted_event.rb +26 -0
- data/app/forms/decidim/comments/comment_form.rb +6 -2
- data/app/models/decidim/comments/comment.rb +33 -11
- data/app/models/decidim/comments/seed.rb +1 -1
- data/app/permissions/decidim/comments/permissions.rb +59 -0
- data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +2 -2
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +5 -6
- data/app/queries/decidim/comments/sorted_comments.rb +18 -14
- data/app/views/decidim/comments/comments/_comment.html.erb +5 -0
- data/app/views/decidim/comments/comments/_comments.html.erb +1 -0
- data/app/views/decidim/comments/comments/create.js.erb +16 -0
- data/app/views/decidim/comments/comments/error.js.erb +1 -0
- data/app/views/decidim/comments/comments/index.js.erb +24 -0
- data/app/views/decidim/comments/comments/reload.js.erb +21 -0
- data/app/views/decidim/comments/votes/create.js.erb +23 -0
- data/app/views/decidim/comments/votes/error.js.erb +1 -0
- data/config/locales/ar.yml +0 -2
- data/config/locales/ca.yml +7 -2
- data/config/locales/cs.yml +20 -3
- data/config/locales/de.yml +46 -30
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +17 -2
- data/config/locales/es-MX.yml +7 -2
- data/config/locales/es-PY.yml +7 -2
- data/config/locales/es.yml +7 -2
- data/config/locales/eu.yml +0 -2
- data/config/locales/fi-plain.yml +17 -2
- data/config/locales/fi.yml +17 -2
- data/config/locales/fr-CA.yml +17 -2
- data/config/locales/fr.yml +17 -2
- data/config/locales/gl.yml +20 -2
- data/config/locales/hu.yml +0 -2
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +5 -2
- data/config/locales/ja.yml +12 -8
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +7 -9
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +22 -4
- data/config/locales/pt-BR.yml +0 -2
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +0 -2
- data/config/locales/ru.yml +0 -2
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv.yml +7 -2
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +60 -35
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -2
- data/lib/decidim/api/add_comment_type.rb +13 -0
- data/lib/decidim/api/comment_mutation_type.rb +22 -0
- data/lib/decidim/api/comment_type.rb +89 -0
- data/lib/decidim/api/commentable_interface.rb +50 -0
- data/lib/decidim/api/commentable_mutation_type.rb +30 -0
- data/{app/types/decidim/comments → lib/decidim/api}/commentable_type.rb +2 -5
- data/lib/decidim/comments.rb +1 -3
- data/lib/decidim/comments/api.rb +12 -0
- data/lib/decidim/comments/comments_helper.rb +10 -52
- data/lib/decidim/comments/engine.rb +9 -7
- data/lib/decidim/comments/mutation_extensions.rb +22 -22
- data/lib/decidim/comments/query_extensions.rb +12 -14
- data/lib/decidim/comments/test.rb +1 -0
- data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +65 -0
- data/lib/decidim/comments/version.rb +1 -1
- metadata +72 -69
- data/app/assets/javascripts/decidim/comments/bundle.js +0 -268
- data/app/frontend/application/apollo_client.ts +0 -12
- data/app/frontend/application/application.component.test.tsx +0 -23
- data/app/frontend/application/application.component.tsx +0 -35
- data/app/frontend/application/icon.component.test.tsx +0 -38
- data/app/frontend/application/icon.component.tsx +0 -46
- data/app/frontend/comments/add_comment_form.component.test.tsx +0 -265
- data/app/frontend/comments/add_comment_form.component.tsx +0 -482
- data/app/frontend/comments/comment.component.test.tsx +0 -490
- data/app/frontend/comments/comment.component.tsx +0 -677
- data/app/frontend/comments/comment_order_selector.component.test.tsx +0 -29
- data/app/frontend/comments/comment_order_selector.component.tsx +0 -106
- data/app/frontend/comments/comment_thread.component.test.tsx +0 -82
- data/app/frontend/comments/comment_thread.component.tsx +0 -81
- data/app/frontend/comments/comments.component.test.tsx +0 -150
- data/app/frontend/comments/comments.component.tsx +0 -289
- data/app/frontend/comments/down_vote_button.component.test.tsx +0 -59
- data/app/frontend/comments/down_vote_button.component.tsx +0 -133
- data/app/frontend/comments/up_vote_button.component.test.tsx +0 -59
- data/app/frontend/comments/up_vote_button.component.tsx +0 -133
- data/app/frontend/comments/vote_button.component.tsx +0 -50
- data/app/frontend/comments/vote_button_component.test.tsx +0 -64
- data/app/frontend/entry.ts +0 -38
- data/app/frontend/entry_test.ts +0 -6
- data/app/frontend/fragments/add_comment_form_commentable.fragment.graphql +0 -4
- data/app/frontend/fragments/add_comment_form_session.fragment.graphql +0 -6
- data/app/frontend/fragments/comment.fragment.graphql +0 -14
- data/app/frontend/fragments/comment_data.fragment.graphql +0 -27
- data/app/frontend/fragments/comment_thread.fragment.graphql +0 -6
- data/app/frontend/fragments/down_vote_button.fragment.graphql +0 -6
- data/app/frontend/fragments/up_vote_button.fragment.graphql +0 -6
- data/app/frontend/mutations/add_comment.mutation.graphql +0 -9
- data/app/frontend/mutations/down_vote.mutation.graphql +0 -9
- data/app/frontend/mutations/up_vote.mutation.graphql +0 -9
- data/app/frontend/queries/comments.query.graphql +0 -26
- data/app/frontend/support/asset_url.ts +0 -11
- data/app/frontend/support/generate_comments_data.ts +0 -49
- data/app/frontend/support/generate_user_data.ts +0 -14
- data/app/frontend/support/generate_user_group_data.ts +0 -14
- data/app/frontend/support/graphql_transformer.js +0 -32
- data/app/frontend/support/load_translations.ts +0 -48
- data/app/frontend/support/require_all.ts +0 -10
- data/app/frontend/support/resolve_graphql_query.ts +0 -37
- data/app/frontend/support/schema.ts +0 -2026
- data/app/types/decidim/comments/commentable_interface.rb +0 -61
- data/app/types/decidim/comments/commentable_mutation_type.rb +0 -33
- data/lib/decidim/comments/api/add_comment_type.rb +0 -13
- data/lib/decidim/comments/api/comment_mutation_type.rb +0 -20
- data/lib/decidim/comments/api/comment_type.rb +0 -89
data/config/locales/fi.yml
CHANGED
@@ -16,8 +16,11 @@ fi:
|
|
16
16
|
other: Äänet
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Kommentin luotaessa tapahtui virhe.
|
20
22
|
comments_count: Kommenttien määrä
|
23
|
+
comments_title: Kommentit
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Uusi kommentti osoitteessa %{link}</span>"
|
23
26
|
view: Näytä
|
@@ -76,7 +79,9 @@ fi:
|
|
76
79
|
loading: Ladataan kommentteja ...
|
77
80
|
single_comment_warning: Voit katsoa loput kommentit <a href="%{url}">täältä</a>.
|
78
81
|
single_comment_warning_title: Näet yhden kommentin
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} kommentti"
|
84
|
+
other: "%{count} kommenttia"
|
80
85
|
down_vote_button:
|
81
86
|
text: Olen eri mieltä tämän kommentin kanssa
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fi:
|
|
98
103
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
99
104
|
email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
|
100
105
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
108
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
|
109
|
+
email_subject: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen.
|
110
|
+
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Kommenttisi kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
113
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
|
114
|
+
email_subject: Kommenttisi kohteessa "%{resource_title}" sai äänen.
|
115
|
+
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
|
103
118
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -16,8 +16,11 @@ fr-CA:
|
|
16
16
|
other: Votes
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Une erreur s'est produite lors de la création du commentaire.
|
20
22
|
comments_count: Nombre de commentaires
|
23
|
+
comments_title: Commentaires
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
|
23
26
|
view: Voir
|
@@ -76,7 +79,9 @@ fr-CA:
|
|
76
79
|
loading: Chargement des commentaires ...
|
77
80
|
single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
|
78
81
|
single_comment_warning_title: Vous ne voyez qu'un seul commentaire
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} commentaire"
|
84
|
+
other: "%{count} commentaires"
|
80
85
|
down_vote_button:
|
81
86
|
text: Je ne suis pas d'accord avec ce commentaire
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fr-CA:
|
|
98
103
|
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.
|
99
104
|
email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
|
100
105
|
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>
|
106
|
+
comment_downvoted:
|
107
|
+
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.
|
108
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
109
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable.
|
110
|
+
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.
|
111
|
+
comment_upvoted:
|
112
|
+
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.
|
113
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
114
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote favorable.
|
115
|
+
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.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
|
103
118
|
email_outro: Vous venez de recevoir une notification à votre commentaire.
|
data/config/locales/fr.yml
CHANGED
@@ -16,8 +16,11 @@ fr:
|
|
16
16
|
other: Votes
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Une erreur s'est produite lors de la création du commentaire.
|
20
22
|
comments_count: Nombre de commentaires
|
23
|
+
comments_title: Commentaires
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
|
23
26
|
view: Voir
|
@@ -76,7 +79,9 @@ fr:
|
|
76
79
|
loading: Chargement des commentaires ...
|
77
80
|
single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
|
78
81
|
single_comment_warning_title: Vous ne voyez qu'un seul commentaire
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} commentaire"
|
84
|
+
other: "%{count} commentaires"
|
80
85
|
down_vote_button:
|
81
86
|
text: Je ne suis pas d'accord avec ce commentaire
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fr:
|
|
98
103
|
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.
|
99
104
|
email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
|
100
105
|
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>
|
106
|
+
comment_downvoted:
|
107
|
+
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.
|
108
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
109
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable.
|
110
|
+
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.
|
111
|
+
comment_upvoted:
|
112
|
+
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.
|
113
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
114
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote favorable.
|
115
|
+
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.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
|
103
118
|
email_outro: Vous venez de recevoir une notification à votre commentaire.
|
data/config/locales/gl.yml
CHANGED
@@ -16,9 +16,14 @@ gl:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Produciuse un problema ao crear o comentario.
|
22
|
+
comments_count: Número de comentarios
|
23
|
+
comments_title: Comentarios
|
20
24
|
last_activity:
|
21
25
|
new_comment_at_html: "<span>Novo comentario en %{link}</span>"
|
26
|
+
view: Ver
|
22
27
|
votes:
|
23
28
|
create:
|
24
29
|
error: Houbo erros ao votar o comentario.
|
@@ -43,6 +48,7 @@ gl:
|
|
43
48
|
against: Contra
|
44
49
|
in_favor: A favor
|
45
50
|
deleted_user: Usuario eliminado
|
51
|
+
hide_replies: Ocultar respostas
|
46
52
|
reply: Responder
|
47
53
|
report:
|
48
54
|
action: Informe
|
@@ -54,6 +60,9 @@ gl:
|
|
54
60
|
does_not_belong: Contén actividades ilegais, ameazas de suicidio, información persoal ou outra cousa que pensas que non pertence a %{organization_name}.
|
55
61
|
offensive: Contén racismo, sexismo, abuso, ataques persoais, ameazas de morte, solicitudes de suicidio ou calquera tipo de discurso de odio.
|
56
62
|
spam: Contén clic, publicidade, fraudes ou bots de script.
|
63
|
+
title: Denunciar contido inapropiado
|
64
|
+
show_replies: Amosar %{replies_count} respostas
|
65
|
+
single_comment_link_title: Obter ligazón a un único comentario
|
57
66
|
comment_order_selector:
|
58
67
|
order:
|
59
68
|
best_rated: Mellor valorado
|
@@ -66,8 +75,17 @@ gl:
|
|
66
75
|
comments:
|
67
76
|
blocked_comments_for_user_warning: Non podes comentar neste momento, pero podes ler os anteriores.
|
68
77
|
blocked_comments_warning: Os comentarios están desactivados neste momento, pero podes ler os anteriores.
|
78
|
+
comment_details_title: Detalles do comentario
|
69
79
|
loading: Cargando comentarios ...
|
70
|
-
|
80
|
+
single_comment_warning: Podes revisar os comentarios restantes <a href="%{url}">aquí</a>.
|
81
|
+
single_comment_warning_title: Estás a ver un único comentario
|
82
|
+
title:
|
83
|
+
one: "%{count} comentario"
|
84
|
+
other: "%{count} comentarios"
|
85
|
+
down_vote_button:
|
86
|
+
text: Non estou de acordo con este comentario
|
87
|
+
up_vote_button:
|
88
|
+
text: Estou de acordo con este comentario
|
71
89
|
events:
|
72
90
|
comments:
|
73
91
|
comment_by_followed_user:
|
data/config/locales/hu.yml
CHANGED
@@ -16,7 +16,6 @@ hu:
|
|
16
16
|
other: Szavazatok
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Hozzászólások
|
20
19
|
last_activity:
|
21
20
|
new_comment_at_html: "<span>Új megjegyzés: %{link}</span>"
|
22
21
|
votes:
|
@@ -73,7 +72,6 @@ hu:
|
|
73
72
|
loading: Hozzászólások betöltése ...
|
74
73
|
single_comment_warning: A többi hozzászólást <a href="%{url}">itt</a> ellenőrizheti.
|
75
74
|
single_comment_warning_title: Egyetlen megjegyzést látsz
|
76
|
-
title: "%{count} megjegyzés"
|
77
75
|
events:
|
78
76
|
comments:
|
79
77
|
comment_by_followed_user:
|
data/config/locales/id-ID.yml
CHANGED
@@ -14,7 +14,6 @@ id:
|
|
14
14
|
other: Voting
|
15
15
|
decidim:
|
16
16
|
comments:
|
17
|
-
comments: Komentar
|
18
17
|
last_activity:
|
19
18
|
new_comment_at_html: "<span>Komentar baru di %{link}</span>"
|
20
19
|
votes:
|
@@ -65,7 +64,6 @@ id:
|
|
65
64
|
blocked_comments_for_user_warning: Anda tidak dapat berkomentar saat ini, tetapi Anda dapat membaca yang sebelumnya.
|
66
65
|
blocked_comments_warning: Komentar dinonaktifkan saat ini, tetapi Anda dapat membaca yang sebelumnya.
|
67
66
|
loading: Memuat komentar ...
|
68
|
-
title: "%{count} komentar"
|
69
67
|
events:
|
70
68
|
comments:
|
71
69
|
comment_by_followed_user:
|
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -16,10 +16,14 @@ it:
|
|
16
16
|
other: voti
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Ci sono stati problemi durante la creazione del commento.
|
20
22
|
comments_count: Conteggio dei Commenti
|
23
|
+
comments_title: Commenti
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nuovo commento al %{link}</span>"
|
26
|
+
view: Visualizza
|
23
27
|
votes:
|
24
28
|
create:
|
25
29
|
error: Ci sono stati errori durante la votazione del commento.
|
@@ -75,7 +79,6 @@ it:
|
|
75
79
|
loading: Sto caricando i commenti ...
|
76
80
|
single_comment_warning: Puoi controllare il resto dei commenti <a href="%{url}">qui</a>.
|
77
81
|
single_comment_warning_title: Stai vedendo un singolo commento
|
78
|
-
title: "%{count} commenti"
|
79
82
|
down_vote_button:
|
80
83
|
text: Non sono d'accordo con questo commento
|
81
84
|
up_vote_button:
|
data/config/locales/ja.yml
CHANGED
@@ -14,8 +14,11 @@ ja:
|
|
14
14
|
other: 投票
|
15
15
|
decidim:
|
16
16
|
comments:
|
17
|
-
comments:
|
17
|
+
comments:
|
18
|
+
create:
|
19
|
+
error: コメントの登録に問題がありました。
|
18
20
|
comments_count: コメント数
|
21
|
+
comments_title: コメント
|
19
22
|
last_activity:
|
20
23
|
new_comment_at_html: "<span> %{link}に新しいコメント</span>"
|
21
24
|
view: 表示
|
@@ -24,7 +27,7 @@ ja:
|
|
24
27
|
error: コメントに投票中に問題がありました。
|
25
28
|
components:
|
26
29
|
add_comment_form:
|
27
|
-
account_message: <a href="%{sign_in_url}"
|
30
|
+
account_message: <a href="%{sign_in_url}">ログイン</a> または <a href="%{sign_up_url}">新規登録</a> することでコメントできます。
|
28
31
|
form:
|
29
32
|
body:
|
30
33
|
label: コメント
|
@@ -74,7 +77,8 @@ ja:
|
|
74
77
|
loading: コメントを読み込んでいます...
|
75
78
|
single_comment_warning: コメントの残りはこちら <a href="%{url}"></a>で確認できます。
|
76
79
|
single_comment_warning_title: 単一のコメントが表示されています
|
77
|
-
title:
|
80
|
+
title:
|
81
|
+
other: "%{count} 件のコメント"
|
78
82
|
down_vote_button:
|
79
83
|
text: このコメントに同意しません
|
80
84
|
up_vote_button:
|
@@ -84,18 +88,18 @@ ja:
|
|
84
88
|
comment_by_followed_user:
|
85
89
|
email_intro: "%{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:"
|
86
90
|
email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
|
87
|
-
email_subject: '%{author_name}
|
91
|
+
email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
|
88
92
|
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>.
|
89
93
|
comment_by_followed_user_group:
|
90
94
|
email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
|
91
95
|
email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
|
92
|
-
email_subject: '%{author_name}
|
96
|
+
email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
|
93
97
|
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>.
|
94
98
|
comment_created:
|
95
99
|
email_intro: "%{resource_title} はコメントされました。このページでコメントを読むことができます:"
|
96
|
-
email_outro: '"%{resource_title}"
|
97
|
-
email_subject: '%{author_name}
|
98
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title}
|
100
|
+
email_outro: '"%{resource_title}" 、またはその参加者をフォローしているためこの通知を受け取りました。前のリンクからフォローを解除することができます。'
|
101
|
+
email_subject: '%{author_name} から %{resource_title} に対して新しいコメントがあります'
|
102
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title} に対して新しいコメントがあります</a>
|
99
103
|
reply_created:
|
100
104
|
email_intro: "%{author_name} は %{resource_title}であなたのコメントを返信しました。このページで読むことができます:"
|
101
105
|
email_outro: コメントが返信されたため、この通知を受信しました。
|
data/config/locales/lv.yml
CHANGED
@@ -18,7 +18,6 @@ lv:
|
|
18
18
|
other: Balsis
|
19
19
|
decidim:
|
20
20
|
comments:
|
21
|
-
comments: Komentāri
|
22
21
|
last_activity:
|
23
22
|
new_comment_at_html: "<span>Jauns komentārs %{link}</span>"
|
24
23
|
votes:
|
@@ -75,7 +74,6 @@ lv:
|
|
75
74
|
loading: Notiek komentāru ielāde ...
|
76
75
|
single_comment_warning: Pārējos komentārus varat aplūkot <a href="%{url}">šeit</a>.
|
77
76
|
single_comment_warning_title: Jūs redzat vienu komentāru
|
78
|
-
title: "%{count} komentāri"
|
79
77
|
events:
|
80
78
|
comments:
|
81
79
|
comment_by_followed_user:
|
data/config/locales/nl.yml
CHANGED
@@ -16,7 +16,6 @@ nl:
|
|
16
16
|
other: Stemmen
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Opmerkingen
|
20
19
|
comments_count: Aantal reacties
|
21
20
|
last_activity:
|
22
21
|
new_comment_at_html: "<span>Nieuwe opmerking op %{link}</span>"
|
@@ -72,15 +71,14 @@ nl:
|
|
72
71
|
comments:
|
73
72
|
blocked_comments_for_user_warning: U kunt op dit moment geen opmerkingen maken, maar u kunt de vorige wel lezen.
|
74
73
|
blocked_comments_warning: Reacties zijn op dit moment uitgeschakeld, maar je kan de vorige berichten lezen.
|
75
|
-
comment_details_title:
|
74
|
+
comment_details_title: Reactieonderdelen
|
76
75
|
loading: Reacties laden...
|
77
|
-
single_comment_warning: U kunt de rest van de
|
76
|
+
single_comment_warning: U kunt de rest van de reacties <a href="%{url}">hier</a> controleren.
|
78
77
|
single_comment_warning_title: Je ziet een enkele reactie
|
79
|
-
title: "%{count} reacties"
|
80
78
|
down_vote_button:
|
81
|
-
text: Ik ben het niet eens met deze
|
79
|
+
text: Ik ben het niet eens met deze reactie
|
82
80
|
up_vote_button:
|
83
|
-
text: Ik ben het eens met deze
|
81
|
+
text: Ik ben het eens met deze reactie
|
84
82
|
events:
|
85
83
|
comments:
|
86
84
|
comment_by_followed_user:
|
@@ -89,7 +87,7 @@ nl:
|
|
89
87
|
email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
|
90
88
|
notification_title: Er is een nieuwe reactie van <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
|
91
89
|
comment_by_followed_user_group:
|
92
|
-
email_intro: 'De groep %{author_name} heeft een
|
90
|
+
email_intro: 'De groep %{author_name} heeft een reactie achtergelaten in %{resource_title}. Je kunt het op deze pagina lezen:'
|
93
91
|
email_outro: Je hebt deze melding ontvangen omdat je %{author_name}volgt. Je kan stoppen met deze groep te volgen via de profielpagina.
|
94
92
|
email_subject: Er is een nieuwe reactie van %{author_name} in %{resource_title}
|
95
93
|
notification_title: Er is een nieuwe reactie van <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
|
@@ -116,8 +114,8 @@ nl:
|
|
116
114
|
metrics:
|
117
115
|
comments:
|
118
116
|
description: Aantal reacties gegenereerd door deelnemers
|
119
|
-
object:
|
120
|
-
title:
|
117
|
+
object: reacties
|
118
|
+
title: Reacties
|
121
119
|
errors:
|
122
120
|
messages:
|
123
121
|
cannot_have_comments: Kan geen reacties hebben
|
data/config/locales/no.yml
CHANGED
@@ -16,7 +16,6 @@
|
|
16
16
|
other: Stemmer
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Kommentarer
|
20
19
|
comments_count: Antall kommentarer
|
21
20
|
last_activity:
|
22
21
|
new_comment_at_html: "<span>Ny kommentar på %{link}</span>"
|
@@ -75,7 +74,6 @@
|
|
75
74
|
loading: Laster inn kommenterer ...
|
76
75
|
single_comment_warning: Du kan sjekke resten av kommentarene <a href="%{url}">her</a>.
|
77
76
|
single_comment_warning_title: Du ser en enkelt kommentar
|
78
|
-
title: "%{count} kommentarer"
|
79
77
|
down_vote_button:
|
80
78
|
text: Jeg er uenig med denne kommentaren
|
81
79
|
up_vote_button:
|
data/config/locales/pl.yml
CHANGED
@@ -20,10 +20,14 @@ pl:
|
|
20
20
|
other: Głosy
|
21
21
|
decidim:
|
22
22
|
comments:
|
23
|
-
comments:
|
23
|
+
comments:
|
24
|
+
create:
|
25
|
+
error: Wystąpił błąd podczas tworzenia komentarza.
|
24
26
|
comments_count: Liczba komentarzy
|
27
|
+
comments_title: Komentarze
|
25
28
|
last_activity:
|
26
29
|
new_comment_at_html: "<span>Nowy komentarz do %{link}</span>"
|
30
|
+
view: Zobacz
|
27
31
|
votes:
|
28
32
|
create:
|
29
33
|
error: Podczas dodawania komentarza wystąpił błąd.
|
@@ -57,8 +61,8 @@ pl:
|
|
57
61
|
description: Czy ta treść jest nieodpowiednia?
|
58
62
|
details: Dodatkowe komentarze
|
59
63
|
reasons:
|
60
|
-
does_not_belong:
|
61
|
-
offensive:
|
64
|
+
does_not_belong: Promuje nielegalną działalność, groźby samobójcze, informacje osobiste lub coś innego, co według Ciebie nie powinno pojawić się w %{organization_name}.
|
65
|
+
offensive: Promuje rasizm, seksizm, nienawiść, ataki osobiste, groźby śmierci, groźby samobójcze jakąkolwiek formę mowy nienawiści.
|
62
66
|
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
63
67
|
title: Zgłoś niewłaściwą treść
|
64
68
|
show_replies: Pokaż %{replies_count} odpowiedzi
|
@@ -79,7 +83,11 @@ pl:
|
|
79
83
|
loading: Ładowanie komentarzy ...
|
80
84
|
single_comment_warning: Resztę komentarzy możesz sprawdzić <a href="%{url}">tutaj</a>.
|
81
85
|
single_comment_warning_title: Wyświetlasz teraz pojedynczy komentarz
|
82
|
-
title:
|
86
|
+
title:
|
87
|
+
one: "%{count} komentarz"
|
88
|
+
few: "%{count} komentarze"
|
89
|
+
many: "%{count} komentarzy"
|
90
|
+
other: "%{count} komentarze"
|
83
91
|
down_vote_button:
|
84
92
|
text: Nie zgadzam się z tym komentarzem
|
85
93
|
up_vote_button:
|
@@ -101,6 +109,16 @@ pl:
|
|
101
109
|
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować po kliknięciu w poprzedni link.
|
102
110
|
email_subject: Jest nowy komentarz od %{author_name} do %{resource_title}
|
103
111
|
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>
|
112
|
+
comment_downvoted:
|
113
|
+
email_intro: Twój komentarz do "%{resource_title}" dostał głos przeciw. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
114
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem komentarza.
|
115
|
+
email_subject: Twój komentarz w "%{resource_title}" dostał głos przeciw.
|
116
|
+
notification_title: Twój <a href="%{resource_path}">comment</a> do "%{resource_title}" dostał głos przeciw. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
117
|
+
comment_upvoted:
|
118
|
+
email_intro: Twój komentarz do "%{resource_title}" dostał głos za. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
119
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem komentarza.
|
120
|
+
email_subject: Twój komentarz w "%{resource_title}" dostał głos za.
|
121
|
+
notification_title: Twój <a href="%{resource_path}">comment</a> do "%{resource_title}" dostał głos za. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
104
122
|
reply_created:
|
105
123
|
email_intro: "%{author_name} odpowiedział na Twój komentarz do %{resource_title}. Możesz przeczytać go na tej stronie:"
|
106
124
|
email_outro: Otrzymałeś to powiadomienie, ponieważ odpowiedziano na Twój komentarz.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -16,7 +16,6 @@ pt:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Comentários
|
20
19
|
last_activity:
|
21
20
|
new_comment_at_html: "<span>Novo comentário em %{link}</span>"
|
22
21
|
votes:
|
@@ -67,7 +66,6 @@ pt:
|
|
67
66
|
blocked_comments_for_user_warning: Você não pode comentar neste momento, mas pode ler os anteriores.
|
68
67
|
blocked_comments_warning: Os comentários estão desativados neste momento, mas você pode ler os anteriores.
|
69
68
|
loading: Carregando comentários ...
|
70
|
-
title: "%{count} comentários"
|
71
69
|
events:
|
72
70
|
comments:
|
73
71
|
comment_by_followed_user:
|