decidim-comments 0.24.3 → 0.25.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -20
- data/app/cells/decidim/comments/comment/actions.erb +1 -1
- data/app/cells/decidim/comments/comment/deletion_data.erb +1 -0
- data/app/cells/decidim/comments/comment/show.erb +30 -21
- data/app/cells/decidim/comments/comment/utilities.erb +40 -12
- data/app/cells/decidim/comments/comment/votes.erb +6 -6
- data/app/cells/decidim/comments/comment_cell.rb +29 -0
- data/app/cells/decidim/comments/comment_form/show.erb +1 -1
- data/app/cells/decidim/comments/comments/add_comment.erb +10 -6
- data/app/cells/decidim/comments/comments/order_control.erb +4 -5
- data/app/cells/decidim/comments/comments/show.erb +2 -4
- data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +5 -1
- data/app/cells/decidim/comments/comments_cell.rb +24 -2
- data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +29 -0
- data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +53 -0
- data/app/commands/decidim/comments/delete_comment.rb +46 -0
- data/app/commands/decidim/comments/update_comment.rb +62 -0
- data/app/controllers/decidim/comments/comments_controller.rb +63 -6
- data/app/events/decidim/comments/comment_voted_event.rb +9 -0
- data/app/models/decidim/comments/comment.rb +21 -1
- data/app/packs/src/decidim/comments/comments.component.js +299 -0
- data/app/{assets/javascripts → packs/src}/decidim/comments/comments.component.test.js +49 -24
- data/app/packs/src/decidim/comments/comments.component_for_testing.js +8 -0
- data/app/packs/src/decidim/comments/comments.js +1 -0
- data/app/permissions/decidim/comments/permissions.rb +10 -1
- data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +1 -1
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
- data/app/views/decidim/comments/comments/_delete.html.erb +5 -0
- data/app/views/decidim/comments/comments/_edited_comment.html.erb +1 -0
- data/app/views/decidim/comments/comments/create.js.erb +2 -0
- data/app/views/decidim/comments/comments/delete.js.erb +17 -0
- data/app/views/decidim/comments/comments/deletion_error.js.erb +1 -0
- data/app/views/decidim/comments/comments/reload.js.erb +2 -0
- data/app/views/decidim/comments/comments/update.js.erb +8 -0
- data/app/views/decidim/comments/comments/update_error.js.erb +1 -0
- data/config/assets.rb +5 -0
- data/config/locales/ar.yml +0 -1
- data/config/locales/ca.yml +7 -1
- data/config/locales/cs.yml +25 -1
- data/config/locales/de.yml +7 -1
- data/config/locales/el.yml +0 -1
- data/config/locales/en.yml +25 -1
- data/config/locales/es-MX.yml +7 -1
- data/config/locales/es-PY.yml +7 -1
- data/config/locales/es.yml +7 -1
- data/config/locales/fi-plain.yml +25 -1
- data/config/locales/fi.yml +25 -1
- data/config/locales/fr-CA.yml +25 -1
- data/config/locales/fr-LU.yml +162 -0
- data/config/locales/fr.yml +25 -1
- data/config/locales/gl.yml +25 -1
- data/config/locales/hu.yml +0 -1
- data/config/locales/it.yml +38 -1
- data/config/locales/ja.yml +35 -1
- data/config/locales/lb-LU.yml +1 -0
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +27 -2
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +7 -1
- data/config/locales/pt-BR.yml +61 -0
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +25 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sr-CS.yml +0 -1
- data/config/locales/sv.yml +25 -1
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/db/migrate/20200706123136_make_comments_handle_i18n.rb +1 -1
- data/db/migrate/20210529095942_add_deleted_at_column_to_comments.rb +7 -0
- data/lib/decidim/comments.rb +1 -0
- data/lib/decidim/comments/commentable.rb +6 -1
- data/lib/decidim/comments/commentable_with_component.rb +33 -0
- data/lib/decidim/comments/engine.rb +1 -9
- data/lib/decidim/comments/version.rb +1 -1
- metadata +31 -31
- data/app/assets/config/decidim_comments_manifest.js +0 -1
- data/app/assets/javascripts/decidim/comments/bundle.js.map +0 -1
- data/app/assets/javascripts/decidim/comments/comments.component.js.es6 +0 -292
- data/app/assets/javascripts/decidim/comments/comments.js.erb +0 -10
- data/config/locales/ja-JP.yml +0 -120
data/config/locales/fr.yml
CHANGED
@@ -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
|
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:
|
data/config/locales/gl.yml
CHANGED
@@ -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
|
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:
|
data/config/locales/hu.yml
CHANGED
@@ -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
|
data/config/locales/it.yml
CHANGED
@@ -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
|
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.
|
data/config/locales/ja.yml
CHANGED
@@ -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: コメントが返信されたため、この通知を受信しました。
|
@@ -0,0 +1 @@
|
|
1
|
+
lb:
|
data/config/locales/lv.yml
CHANGED
@@ -57,7 +57,6 @@ lv:
|
|
57
57
|
offensive: Satur rasismu, seksismu, lamuvārdus, personiskus uzbrukumus, nāves draudus, ierosinājumus veikt pašnāvību vai jebkāda veida naida runu.
|
58
58
|
spam: Satur klikšķu ēsmu (clickbait), reklāmu, krāpšanu vai skriptu robotprogrammatūru.
|
59
59
|
show_replies: Rādīt %{replies_count} atbildes
|
60
|
-
single_comment_link_title: Iegūt saiti uz atsevišķu komentāru
|
61
60
|
comment_order_selector:
|
62
61
|
order:
|
63
62
|
best_rated: Vislabāk novērtētie
|
data/config/locales/nl.yml
CHANGED
@@ -16,6 +16,11 @@ nl:
|
|
16
16
|
other: Stemmen
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
+
comments:
|
20
|
+
delete:
|
21
|
+
error: De reactie kon niet worden verwijderd.
|
22
|
+
update:
|
23
|
+
error: Er is een probleem opgetreden bij het bijwerken van de reactie.
|
19
24
|
comments_count: Aantal reacties
|
20
25
|
last_activity:
|
21
26
|
new_comment_at_html: "<span>Nieuwe opmerking op %{link}</span>"
|
@@ -35,7 +40,13 @@ nl:
|
|
35
40
|
user_group_id:
|
36
41
|
label: Reageer als
|
37
42
|
opinion:
|
43
|
+
label: Jouw mening over dit onderwerp
|
44
|
+
negative: Negatief
|
45
|
+
negative_selected: Jouw mening over dit onderwerp is negatief
|
38
46
|
neutral: Neutraal
|
47
|
+
neutral_selected: Jouw mening over dit onderwerp is neutraal
|
48
|
+
positive: Positief
|
49
|
+
positive_selected: Jouw mening over dit onderwerp is positief
|
39
50
|
remaining_characters: "%{count} tekens over"
|
40
51
|
remaining_characters_1: "%{count} teken over"
|
41
52
|
title: Voeg je reactie toe
|
@@ -43,7 +54,12 @@ nl:
|
|
43
54
|
alignment:
|
44
55
|
against: Tegen
|
45
56
|
in_favor: Voor
|
57
|
+
confirm_destroy: Weet je zeker dat je deze reactie wil verwijderen?
|
58
|
+
delete: Verwijderen
|
59
|
+
deleted_at: Reactie verwijderd op %{date}
|
46
60
|
deleted_user: Verwijderde deelnemer
|
61
|
+
edit: Bewerk
|
62
|
+
edited: Bewerkt
|
47
63
|
hide_replies: Antwoorden verbergen
|
48
64
|
reply: Antwoord
|
49
65
|
report:
|
@@ -58,7 +74,7 @@ nl:
|
|
58
74
|
spam: Bevat clickbait, reclame, oplichting of script bots.
|
59
75
|
title: Meld ongepaste inhoud
|
60
76
|
show_replies: Toon %{replies_count} reacties
|
61
|
-
single_comment_link_title:
|
77
|
+
single_comment_link_title: Haal link op
|
62
78
|
comment_order_selector:
|
63
79
|
order:
|
64
80
|
best_rated: Best beoordeeld
|
@@ -69,7 +85,8 @@ nl:
|
|
69
85
|
comment_thread:
|
70
86
|
title: Gesprek met %{authorName}
|
71
87
|
comments:
|
72
|
-
|
88
|
+
blocked_comments_for_unauthorized_user_warning: Je kan op dit moment geen opmerkingen toevoegen, maar je kunt de eerdere opmerkingen wel lezen.
|
89
|
+
blocked_comments_for_user_warning: Je kunt op dit moment geen opmerkingen toevoegen, maar je kunt eerdere reacties wel lezen.
|
73
90
|
blocked_comments_warning: Reacties zijn op dit moment uitgeschakeld, maar je kan de vorige berichten lezen.
|
74
91
|
comment_details_title: Reactieonderdelen
|
75
92
|
loading: Reacties laden...
|
@@ -77,6 +94,14 @@ nl:
|
|
77
94
|
single_comment_warning_title: Je ziet een enkele reactie
|
78
95
|
down_vote_button:
|
79
96
|
text: Ik ben het niet eens met deze reactie
|
97
|
+
edit_comment_modal_form:
|
98
|
+
close: Sluit
|
99
|
+
form:
|
100
|
+
body:
|
101
|
+
label: Reactie
|
102
|
+
placeholder: Wat wil je hierover zeggen?
|
103
|
+
submit: Verzenden
|
104
|
+
title: Bewerk je reactie
|
80
105
|
up_vote_button:
|
81
106
|
text: Ik ben het eens met deze reactie
|
82
107
|
events:
|
data/config/locales/no.yml
CHANGED
@@ -57,7 +57,6 @@
|
|
57
57
|
spam: Inneholder klikkagn, reklame, svindel eller manus-roboter.
|
58
58
|
title: Rapporter upassende innhold
|
59
59
|
show_replies: Vis %{replies_count} svar
|
60
|
-
single_comment_link_title: Få lenke til enkeltkommentar
|
61
60
|
comment_order_selector:
|
62
61
|
order:
|
63
62
|
best_rated: Best vurdert
|
data/config/locales/pl.yml
CHANGED
@@ -43,7 +43,13 @@ pl:
|
|
43
43
|
user_group_id:
|
44
44
|
label: Komentuj jako
|
45
45
|
opinion:
|
46
|
+
label: Twoja opinia na ten temat
|
47
|
+
negative: Negatywna
|
48
|
+
negative_selected: Twoja opinia na ten temat jest negatywna
|
46
49
|
neutral: Neutralny
|
50
|
+
neutral_selected: Twoja opinia na ten temat jest neutralna
|
51
|
+
positive: Pozytywna
|
52
|
+
positive_selected: Twoja opinia na ten temat jest pozytywna
|
47
53
|
remaining_characters: "Pozostało %{count} znaków"
|
48
54
|
remaining_characters_1: "Pozostał %{count} znak"
|
49
55
|
title: Dodaj swój komentarz
|
@@ -51,6 +57,7 @@ pl:
|
|
51
57
|
alignment:
|
52
58
|
against: Negatywny
|
53
59
|
in_favor: Pozytywny
|
60
|
+
confirm_destroy: Czy na pewno chcesz usunąć ten komentarz?
|
54
61
|
deleted_user: Usunięty użytkownik
|
55
62
|
hide_replies: Ukryj odpowiedzi
|
56
63
|
reply: Odpowiedz
|
@@ -66,7 +73,6 @@ pl:
|
|
66
73
|
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
67
74
|
title: Zgłoś niewłaściwą treść
|
68
75
|
show_replies: Pokaż %{replies_count} odpowiedzi
|
69
|
-
single_comment_link_title: Pobierz link do pojedynczego komentarza
|
70
76
|
comment_order_selector:
|
71
77
|
order:
|
72
78
|
best_rated: Najlepiej oceniane
|
data/config/locales/pt-BR.yml
CHANGED
@@ -16,8 +16,18 @@ pt:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Houveram erros ao criar o comentário.
|
22
|
+
delete:
|
23
|
+
error: O comentário não pode ser excluído.
|
24
|
+
update:
|
25
|
+
error: Houve um erro ao atualizar o comentário.
|
26
|
+
comments_count: Contagem de Comentários
|
27
|
+
comments_title: Comentários
|
19
28
|
last_activity:
|
20
29
|
new_comment_at_html: "<span>Novo comentário em %{link}</span>"
|
30
|
+
view: Visualizar
|
21
31
|
votes:
|
22
32
|
create:
|
23
33
|
error: Houve erros ao votar o comentário.
|
@@ -33,7 +43,13 @@ pt:
|
|
33
43
|
user_group_id:
|
34
44
|
label: Comente como
|
35
45
|
opinion:
|
46
|
+
label: Sua opinião sobre este tópico
|
47
|
+
negative: Negativo
|
48
|
+
negative_selected: Sua opinião sobre este tópico é negativa
|
36
49
|
neutral: Neutro
|
50
|
+
neutral_selected: Sua opinião sobre este tópico é neutra
|
51
|
+
positive: Positivo
|
52
|
+
positive_selected: Sua opinião sobre este tópico é positiva
|
37
53
|
remaining_characters: "%{count} caracteres restantes"
|
38
54
|
remaining_characters_1: "%{count} personagem à esquerda"
|
39
55
|
title: Adicione seu comentário
|
@@ -41,7 +57,13 @@ pt:
|
|
41
57
|
alignment:
|
42
58
|
against: Contra
|
43
59
|
in_favor: A favor
|
60
|
+
confirm_destroy: Tem certeza que deseja excluir este comentário?
|
61
|
+
delete: Deletar
|
62
|
+
deleted_at: Comentário excluído em %{date}
|
44
63
|
deleted_user: Usuário excluído
|
64
|
+
edit: Editar
|
65
|
+
edited: Editado
|
66
|
+
hide_replies: Ocultar respostas
|
45
67
|
reply: Resposta
|
46
68
|
report:
|
47
69
|
action: Relatório
|
@@ -53,6 +75,9 @@ pt:
|
|
53
75
|
does_not_belong: Contém atividades ilegais, ameaças suicidas, informações pessoais ou qualquer outra coisa que você acha que não pertence ao %{organization_name}.
|
54
76
|
offensive: Contém racismo, sexismo, insultos, ataques pessoais, ameaças de morte, pedidos de suicídio ou qualquer tipo de discurso de ódio.
|
55
77
|
spam: Contém clickbait, publicidade, fraudes ou script bots.
|
78
|
+
title: Reportar conteúdo impróprio
|
79
|
+
show_replies: Mostrar %{replies_count} respostas
|
80
|
+
single_comment_link_title: Obter o link
|
56
81
|
comment_order_selector:
|
57
82
|
order:
|
58
83
|
best_rated: Melhores avaliações
|
@@ -63,9 +88,28 @@ pt:
|
|
63
88
|
comment_thread:
|
64
89
|
title: Conversa com %{authorName}
|
65
90
|
comments:
|
91
|
+
blocked_comments_for_unauthorized_user_warning: Você precisa ser verificado para comentar neste momento, mas pode ler os anteriores.
|
66
92
|
blocked_comments_for_user_warning: Você não pode comentar neste momento, mas pode ler os anteriores.
|
67
93
|
blocked_comments_warning: Os comentários estão desativados neste momento, mas você pode ler os anteriores.
|
94
|
+
comment_details_title: Detalhes do comentário
|
68
95
|
loading: Carregando comentários ...
|
96
|
+
single_comment_warning: Você pode verificar o resto dos comentários <a href="%{url}">aqui</a>.
|
97
|
+
single_comment_warning_title: Você está vendo um único comentário
|
98
|
+
title:
|
99
|
+
one: "%{count} comentário"
|
100
|
+
other: "%{count} comentários"
|
101
|
+
down_vote_button:
|
102
|
+
text: Eu discordo deste comentário
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Fechar
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Comentário
|
108
|
+
placeholder: O que você pensa sobre isso?
|
109
|
+
submit: Enviar
|
110
|
+
title: Editar seu comentário
|
111
|
+
up_vote_button:
|
112
|
+
text: Eu concordo com este comentário
|
69
113
|
events:
|
70
114
|
comments:
|
71
115
|
comment_by_followed_user:
|
@@ -74,6 +118,8 @@ pt:
|
|
74
118
|
email_subject: Há um novo comentário por %{author_name} em %{resource_title}
|
75
119
|
notification_title: Há um novo comentário por <a href="%{author_path}">%{author_name} %{author_nickname}</a> em <a href="%{resource_path}">%{resource_title}</a>.
|
76
120
|
comment_by_followed_user_group:
|
121
|
+
email_intro: 'O grupo %{author_name} deixou um comentário em %{resource_title}. Você pode lê-lo nesta página:'
|
122
|
+
email_outro: Você recebeu esta notificação porque está seguindo %{author_name}. Você pode deixar de seguir este grupo em sua página de perfil.
|
77
123
|
email_subject: Há um novo comentário por %{author_name} em %{resource_title}
|
78
124
|
notification_title: Há um novo comentário por <a href="%{author_path}">%{author_name} %{author_nickname}</a> em <a href="%{resource_path}">%{resource_title}</a>.
|
79
125
|
comment_created:
|
@@ -81,11 +127,26 @@ pt:
|
|
81
127
|
email_outro: Você recebeu esta notificação porque você está seguindo "%{resource_title}" ou seu autor. Você pode ignorá-lo do link anterior.
|
82
128
|
email_subject: Há um novo comentário de %{author_name} em %{resource_title}
|
83
129
|
notification_title: Há um novo comentário de <a href="%{author_path}">%{author_name} %{author_nickname}</a> em <a href="%{resource_path}">%{resource_title}</a>
|
130
|
+
comment_downvoted:
|
131
|
+
email_intro: Seu comentário em%{resource_title}" foi negado. Agora tem um total de %{upvotes} votos positivos e %{downvotes} votos negativos.
|
132
|
+
email_outro: Você recebeu esta notificação porque é o autor deste comentário.
|
133
|
+
email_subject: Seu comentário em "%{resource_title}" foi negativado.
|
134
|
+
notification_title: Seu <a href="%{resource_path}">comentário</a> em%{resource_title}" foi negativado. Agora tem um total de %{upvotes} votos positivos e %{downvotes} votos negativos.
|
135
|
+
comment_upvoted:
|
136
|
+
email_intro: Seu comentário em%{resource_title}" foi votado favoravelmente. Agora tem um total de %{upvotes} votos positivos e %{downvotes} votos negativos.
|
137
|
+
email_outro: Você recebeu esta notificação porque é o autor deste comentário.
|
138
|
+
email_subject: Seu comentário em "%{resource_title}" foi votado positivamente.
|
139
|
+
notification_title: Seu <a href="%{resource_path}">comentário</a> em%{resource_title}" foi votado favoravelmente. Agora tem um total de %{upvotes} votos positivos e %{downvotes} votos negativos.
|
84
140
|
reply_created:
|
85
141
|
email_intro: "%{author_name} respondeu seu comentário em %{resource_title}. Você pode lê-lo nesta página:"
|
86
142
|
email_outro: Você recebeu esta notificação porque o seu comentário foi respondido.
|
87
143
|
email_subject: "%{author_name} respondeu seu comentário em %{resource_title}"
|
88
144
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> respondeu seu comentário em <a href="%{resource_path}">%{resource_title}</a>
|
145
|
+
user_group_mentioned:
|
146
|
+
email_intro: Foi mencionado um grupo ao qual você pertence
|
147
|
+
email_outro: Você recebeu esta notificação porque é membro do grupo %{group_name} que foi mencionado em %{resource_title}.
|
148
|
+
email_subject: Você foi mencionado em %{resource_title} como membro de %{group_name}
|
149
|
+
notification_title: Você foi mencionado em <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a> como um membro de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
89
150
|
user_mentioned:
|
90
151
|
email_intro: Você foi mencionado
|
91
152
|
email_outro: Você recebeu esta notificação porque você foi mencionado em %{resource_title}.
|