decidim-comments 0.27.10 → 0.28.0.rc4
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.
- checksums.yaml +4 -4
- data/app/cells/decidim/comments/comment/actions.erb +13 -7
- data/app/cells/decidim/comments/comment/alignment_badge.erb +1 -4
- data/app/cells/decidim/comments/comment/deletion_data.erb +9 -1
- data/app/cells/decidim/comments/comment/moderation_data.erb +1 -1
- data/app/cells/decidim/comments/comment/replies.erb +3 -0
- data/app/cells/decidim/comments/comment/show.erb +72 -35
- data/app/cells/decidim/comments/comment/votes.erb +14 -14
- data/app/cells/decidim/comments/comment_activity_cell.rb +11 -7
- data/app/cells/decidim/comments/comment_card_cell.rb +2 -2
- data/app/cells/decidim/comments/comment_cell.rb +9 -21
- data/app/cells/decidim/comments/comment_form/comment_as.erb +3 -3
- data/app/cells/decidim/comments/comment_form/opinion.erb +18 -0
- data/app/cells/decidim/comments/comment_form/show.erb +33 -16
- data/app/cells/decidim/comments/comment_form_cell.rb +9 -1
- data/app/cells/decidim/comments/comment_metadata_cell.rb +27 -0
- data/app/cells/decidim/comments/comment_s_cell.rb +27 -0
- data/app/cells/decidim/comments/comment_thread/show.erb +2 -5
- data/app/cells/decidim/comments/comment_thread_cell.rb +0 -6
- data/app/cells/decidim/comments/comments/add_comment.erb +1 -20
- data/app/cells/decidim/comments/comments/blocked_comments_warning.erb +1 -3
- data/app/cells/decidim/comments/comments/comments_loading.erb +1 -3
- data/app/cells/decidim/comments/comments/order_control.erb +11 -35
- data/app/cells/decidim/comments/comments/show.erb +8 -9
- data/app/cells/decidim/comments/comments/single_comment_warning.erb +6 -9
- data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +9 -6
- data/app/cells/decidim/comments/comments_cell.rb +1 -1
- data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +20 -15
- data/app/commands/decidim/comments/create_comment.rb +17 -5
- data/app/commands/decidim/comments/delete_comment.rb +1 -1
- data/app/commands/decidim/comments/update_comment.rb +14 -2
- data/app/commands/decidim/comments/vote_comment.rb +1 -1
- data/app/controllers/decidim/comments/comments_controller.rb +14 -9
- data/app/controllers/decidim/comments/votes_controller.rb +1 -1
- data/app/events/decidim/comments/comment_by_followed_user_event.rb +1 -1
- data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +1 -1
- data/app/events/decidim/comments/comment_event.rb +2 -7
- data/app/events/decidim/comments/reply_created_event.rb +1 -1
- data/app/events/decidim/comments/user_group_mentioned_event.rb +1 -1
- data/app/events/decidim/comments/user_mentioned_event.rb +1 -1
- data/app/helpers/decidim/comments/comment_cells_helper.rb +1 -1
- data/app/jobs/decidim/comments/hide_all_created_by_author_job.rb +13 -0
- data/app/models/decidim/comments/comment.rb +9 -7
- data/app/models/decidim/comments/comment_vote.rb +0 -10
- data/app/models/decidim/comments/seed.rb +30 -14
- data/app/packs/entrypoints/decidim_comments.js +5 -0
- data/app/packs/src/decidim/comments/comments.component.js +27 -36
- data/app/packs/src/decidim/comments/comments.component.test.js +218 -240
- data/app/packs/src/decidim/comments/comments.component_for_testing.js +1 -1
- data/app/packs/src/decidim/comments/comments.js +20 -1
- data/app/packs/stylesheets/comments.scss +327 -0
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
- data/app/queries/decidim/comments/sorted_comments.rb +10 -10
- data/app/services/decidim/comments/comment_creation.rb +1 -1
- data/app/services/decidim/comments/new_comment_notification_creator.rb +8 -8
- data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +4 -9
- data/app/views/decidim/comments/comments/_comment.html.erb +1 -1
- data/app/views/decidim/comments/comments/_comments.html.erb +1 -1
- data/app/views/decidim/comments/comments/_delete.html.erb +2 -4
- data/app/views/decidim/comments/comments/_moderated.html.erb +2 -4
- data/app/views/decidim/comments/comments/create.js.erb +5 -3
- data/app/views/decidim/comments/comments/delete.js.erb +4 -1
- data/app/views/decidim/comments/comments/index.js.erb +8 -1
- data/app/views/decidim/comments/comments/reload.js.erb +1 -2
- data/app/views/decidim/comments/comments/update.js.erb +5 -4
- data/app/views/decidim/comments/votes/create.js.erb +5 -5
- data/config/assets.rb +3 -0
- data/config/locales/ar.yml +0 -16
- data/config/locales/bg.yml +0 -166
- data/config/locales/ca.yml +15 -17
- data/config/locales/cs.yml +8 -10
- data/config/locales/de.yml +7 -9
- data/config/locales/el.yml +3 -11
- data/config/locales/en.yml +10 -12
- data/config/locales/es-MX.yml +10 -12
- data/config/locales/es-PY.yml +10 -12
- data/config/locales/es.yml +16 -18
- data/config/locales/eu.yml +6 -8
- data/config/locales/fi-plain.yml +7 -9
- data/config/locales/fi.yml +11 -13
- data/config/locales/fr-CA.yml +9 -11
- data/config/locales/fr.yml +9 -11
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -16
- data/config/locales/hu.yml +3 -11
- data/config/locales/id-ID.yml +0 -11
- data/config/locales/is-IS.yml +0 -8
- data/config/locales/it.yml +0 -16
- data/config/locales/ja.yml +6 -8
- data/config/locales/lb.yml +0 -16
- data/config/locales/lt.yml +7 -10
- data/config/locales/lv.yml +0 -11
- data/config/locales/nl.yml +0 -16
- data/config/locales/no.yml +0 -16
- data/config/locales/pl.yml +7 -11
- data/config/locales/pt-BR.yml +0 -18
- data/config/locales/pt.yml +0 -16
- data/config/locales/ro-RO.yml +6 -14
- data/config/locales/ru.yml +0 -11
- data/config/locales/sk.yml +0 -11
- data/config/locales/sq-AL.yml +0 -38
- data/config/locales/sv.yml +4 -18
- data/config/locales/tr-TR.yml +1 -13
- data/config/locales/uk.yml +0 -8
- data/config/locales/zh-CN.yml +0 -13
- data/config/locales/zh-TW.yml +1 -9
- data/lib/decidim/api/comment_type.rb +2 -2
- data/lib/decidim/api/commentable_interface.rb +1 -1
- data/lib/decidim/comments/comment_serializer.rb +1 -1
- data/lib/decidim/comments/comment_vote_serializer.rb +1 -1
- data/lib/decidim/comments/commentable.rb +1 -1
- data/lib/decidim/comments/comments_helper.rb +6 -3
- data/lib/decidim/comments/engine.rb +31 -1
- data/lib/decidim/comments/export.rb +1 -1
- data/lib/decidim/comments/test/factories.rb +9 -22
- data/lib/decidim/comments/test/shared_examples/comment_event.rb +4 -37
- data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +4 -4
- data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +5 -5
- data/lib/decidim/comments/test/shared_examples/has_comments_availability_attributes.rb +2 -2
- data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +3 -3
- data/lib/decidim/comments/version.rb +1 -1
- metadata +27 -24
- data/app/cells/decidim/comments/comment/author.erb +0 -1
- data/app/cells/decidim/comments/comment/utilities.erb +0 -41
- data/app/cells/decidim/comments/comment_m/footer.erb +0 -5
- data/app/cells/decidim/comments/comment_m/top.erb +0 -7
- data/app/cells/decidim/comments/comment_m_cell.rb +0 -29
- data/app/cells/decidim/comments/comment_thread/title.erb +0 -3
- data/config/locales/he-IL.yml +0 -1
- data/db/migrate/20240304092558_add_comment_vote_counter_cache_to_comments.rb +0 -21
- data/decidim-comments.gemspec +0 -33
data/config/locales/es-PY.yml
CHANGED
@@ -28,26 +28,25 @@ es-PY:
|
|
28
28
|
create:
|
29
29
|
error: Se ha producido un error al crear el comentario.
|
30
30
|
delete:
|
31
|
-
error: El comentario no
|
31
|
+
error: El comentario no se ha podido eliminar.
|
32
32
|
update:
|
33
33
|
error: Se ha producido un error al actualizar el comentario.
|
34
|
-
|
35
|
-
comments_title: Comentarios
|
34
|
+
comments_title: Comentario
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Ver
|
36
|
+
new_comment: 'Nuevo comentario:'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Ha habido errores al votar el comentario.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message: <a href="%{sign_in_url}">
|
42
|
+
account_message: Para añadir un comentario, <a href="%{sign_in_url}">inicia tu sesión </a> o <a href="%{sign_up_url}">regístrate</a>.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Comentario
|
48
46
|
placeholder: '¿Qué piensas sobre esto?'
|
49
|
-
form_error: El texto es necesario y no puede ser más de
|
50
|
-
|
47
|
+
form_error: El texto es necesario y no puede ser más largo de %{length}.
|
48
|
+
submit_reply: Publicar respuesta
|
49
|
+
submit_root_comment: Publicar comentario
|
51
50
|
user_group_id:
|
52
51
|
label: Comentar como
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ es-PY:
|
|
65
64
|
alignment:
|
66
65
|
against: En contra
|
67
66
|
in_favor: A favor
|
67
|
+
cancel_reply: Cancelar respuesta
|
68
68
|
confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
|
69
69
|
delete: Eliminar
|
70
70
|
deleted_at: Comentario eliminado el %{date}
|
@@ -81,7 +81,7 @@ es-PY:
|
|
81
81
|
description: '¿Es inapropiado este contenido?'
|
82
82
|
details: Comentarios adicionales
|
83
83
|
reasons:
|
84
|
-
does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que
|
84
|
+
does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que creas que no pertenece a %{organization_name}.
|
85
85
|
offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
|
86
86
|
spam: Contiene clickbait, publicidad o estafas.
|
87
87
|
title: Notificar contenido inapropiado
|
@@ -96,8 +96,6 @@ es-PY:
|
|
96
96
|
older: Más antiguo
|
97
97
|
recent: Reciente
|
98
98
|
title: 'Ordenar por:'
|
99
|
-
comment_thread:
|
100
|
-
title: Conversación con %{authorName}
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
|
103
101
|
blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
|
@@ -170,4 +168,4 @@ es-PY:
|
|
170
168
|
title: Comentarios
|
171
169
|
errors:
|
172
170
|
messages:
|
173
|
-
cannot_have_comments: no
|
171
|
+
cannot_have_comments: no se pueden hacer comentarios
|
data/config/locales/es.yml
CHANGED
@@ -28,26 +28,25 @@ es:
|
|
28
28
|
create:
|
29
29
|
error: Se ha producido un error al crear el comentario.
|
30
30
|
delete:
|
31
|
-
error: El comentario no
|
31
|
+
error: El comentario no se ha podido eliminar.
|
32
32
|
update:
|
33
33
|
error: Se ha producido un error al actualizar el comentario.
|
34
|
-
|
35
|
-
comments_title: Comentarios
|
34
|
+
comments_title: Comentario
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Ver
|
36
|
+
new_comment: 'Nuevo comentario:'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Se ha producido un error al votar el comentario.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message: <a href="%{sign_in_url}">
|
42
|
+
account_message: Para añadir un comentario, <a href="%{sign_in_url}">inicia tu sesión </a> o <a href="%{sign_up_url}">regístrate</a>.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Comentario
|
48
46
|
placeholder: '¿Qué piensas sobre ésto?'
|
49
47
|
form_error: El texto es necesario y no puede ser más largo de %{length}.
|
50
|
-
|
48
|
+
submit_reply: Publicar respuesta
|
49
|
+
submit_root_comment: Publicar comentario
|
51
50
|
user_group_id:
|
52
51
|
label: Comentar como
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ es:
|
|
65
64
|
alignment:
|
66
65
|
against: En contra
|
67
66
|
in_favor: A favor
|
67
|
+
cancel_reply: Cancelar respuesta
|
68
68
|
confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
|
69
69
|
delete: Eliminar
|
70
70
|
deleted_at: Comentario eliminado el %{date}
|
@@ -81,7 +81,7 @@ es:
|
|
81
81
|
description: '¿Este contenido es inapropiado?'
|
82
82
|
details: Comentarios adicionales
|
83
83
|
reasons:
|
84
|
-
does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que
|
84
|
+
does_not_belong: Contiene actividad ilegal, amenazas de suicidio, información personal o cualquier otra cosa que creas que no pertenece a %{organization_name}.
|
85
85
|
offensive: Contiene racismo, sexismo, insultos, ataques personales, amenazas de muerte, solicitudes de suicidio o cualquier forma de discurso de odio.
|
86
86
|
spam: Contiene clickbait, publicidad o estafas.
|
87
87
|
title: Notificar contenido inapropiado
|
@@ -96,8 +96,6 @@ es:
|
|
96
96
|
older: Más antiguo
|
97
97
|
recent: Reciente
|
98
98
|
title: 'Ordenar por:'
|
99
|
-
comment_thread:
|
100
|
-
title: Conversación con %{authorName}
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
|
103
101
|
blocked_comments_for_user_warning: No puedes hacer comentarios en este momento, pero puedes leer los anteriores.
|
@@ -125,7 +123,7 @@ es:
|
|
125
123
|
comments:
|
126
124
|
comment_by_followed_user:
|
127
125
|
email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
|
128
|
-
email_outro: Has recibido esta notificación porque sigues
|
126
|
+
email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguir a esta participante desde su página de perfil.
|
129
127
|
email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
|
130
128
|
notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
|
131
129
|
comment_by_followed_user_group:
|
@@ -135,32 +133,32 @@ es:
|
|
135
133
|
notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
|
136
134
|
comment_created:
|
137
135
|
email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
|
138
|
-
email_outro: Has recibido esta notificación porque
|
136
|
+
email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autora. Puedes dejar de seguirla desde el enlace anterior.
|
139
137
|
email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
|
140
138
|
notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
|
141
139
|
comment_downvoted:
|
142
140
|
email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
143
|
-
email_outro: Has recibido esta notificación porque
|
141
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
144
142
|
email_subject: Su comentario en "%{resource_title}" ha sido votado negativamente.
|
145
143
|
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
146
144
|
comment_upvoted:
|
147
145
|
email_intro: Tu comentario en "%{resource_title}" ha sido votado postivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
148
|
-
email_outro: Has recibido esta notificación porque
|
146
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
149
147
|
email_subject: Tu comentario en "%{resource_title}" ha sido votado positivamente.
|
150
148
|
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado positivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
151
149
|
reply_created:
|
152
150
|
email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
|
153
|
-
email_outro: Has recibido esta notificación porque
|
151
|
+
email_outro: Has recibido esta notificación porque tu comentario fue respondido.
|
154
152
|
email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
|
155
153
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
|
156
154
|
user_group_mentioned:
|
157
155
|
email_intro: Se ha mencionado un grupo al que perteneces
|
158
|
-
email_outro: Has recibido esta notificación porque formas parte del grupo
|
156
|
+
email_outro: Has recibido esta notificación porque formas parte del grupo %{group_name} que ha sido mencionado en %{resource_title}.
|
159
157
|
email_subject: Te han mencionado en %{resource_title} como miembro de %{group_name}
|
160
158
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> te ha mencionado en <a href="%{resource_path}">%{resource_title}</a> como miembro de <a href="%{group_path}">%{group_name} %{group_nickname}</a>
|
161
159
|
user_mentioned:
|
162
160
|
email_intro: Has sido mencionada
|
163
|
-
email_outro: Has recibido esta notificación porque
|
161
|
+
email_outro: Has recibido esta notificación porque has sido mencionada en %{resource_title}.
|
164
162
|
email_subject: Has sido mencionada en %{resource_title}
|
165
163
|
notification_title: Has sido mencionada en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
166
164
|
metrics:
|
@@ -170,4 +168,4 @@ es:
|
|
170
168
|
title: Comentarios
|
171
169
|
errors:
|
172
170
|
messages:
|
173
|
-
cannot_have_comments: no
|
171
|
+
cannot_have_comments: no se pueden hacer comentarios
|
data/config/locales/eu.yml
CHANGED
@@ -31,23 +31,22 @@ eu:
|
|
31
31
|
error: Iruzkina ezin izan da ezabatu.
|
32
32
|
update:
|
33
33
|
error: Arazo bat ego da iruzkina eguneratzean.
|
34
|
-
|
35
|
-
comments_title: Iruzkinak
|
34
|
+
comments_title: Iruzkina
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Bistaratu
|
36
|
+
new_comment: 'Beste iruzkin bat:'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Arazo bat egon da iruzkina bozkatzean.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message: <a href="%{sign_in_url}">
|
42
|
+
account_message: <a href="%{sign_in_url}">Sartu zure kontuarekin</a> edo <a href="%{sign_up_url}">erregistratu</a> zure iruzkina gehitzeko.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Iruzkina
|
48
46
|
placeholder: Zer deritzozu honi?
|
49
47
|
form_error: Testua behar da, eta ezin du izan %{length} karaktere baino gehiago.
|
50
|
-
|
48
|
+
submit_reply: Argitaratu erantzuna
|
49
|
+
submit_root_comment: Argitaratu iruzkina
|
51
50
|
user_group_id:
|
52
51
|
label: 'Egin iruzkina honako honen gisa:'
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ eu:
|
|
65
64
|
alignment:
|
66
65
|
against: Aurka
|
67
66
|
in_favor: Alde
|
67
|
+
cancel_reply: Ezeztatu erantzuna
|
68
68
|
confirm_destroy: Ziur zaude iruzkin hau ezabatu nahi duzula?
|
69
69
|
delete: Ezabatu
|
70
70
|
deleted_at: Iruzkina ezabatu da data honetan %{date}
|
@@ -96,8 +96,6 @@ eu:
|
|
96
96
|
older: Zaharrenak
|
97
97
|
recent: Berrienak
|
98
98
|
title: 'Ordenatu honen arabera:'
|
99
|
-
comment_thread:
|
100
|
-
title: 'Solasaldia honekin: %{authorName}'
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkina egiteko, baina aurreko iruzkinak irakur ditzakezu.
|
103
101
|
blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
|
data/config/locales/fi-plain.yml
CHANGED
@@ -31,23 +31,22 @@ fi-pl:
|
|
31
31
|
error: Kommenttia ei voitu poistaa.
|
32
32
|
update:
|
33
33
|
error: Kommentin päivittäminen epäonnistui.
|
34
|
-
|
35
|
-
comments_title: Kommentit
|
34
|
+
comments_title: Kommentti
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Näytä
|
36
|
+
new_comment: 'Uusi kommentti:'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Äänestettäessä kommenttia tapahtui virhe.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message: <a href="%{sign_in_url}">Kirjaudu
|
42
|
+
account_message: <a href="%{sign_in_url}">Kirjaudu tilillesi</a> tai <a href="%{sign_up_url}">rekisteröidy</a> kommentoidaksesi.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Kommentti
|
48
46
|
placeholder: Mitä mieltä olet tästä?
|
49
47
|
form_error: Teksti vaaditaan ja se ei voi olla pidempi kuin %{length} merkkiä.
|
50
|
-
|
48
|
+
submit_reply: Julkaise vastaus
|
49
|
+
submit_root_comment: Julkaise kommentti
|
51
50
|
user_group_id:
|
52
51
|
label: Kommentoi käyttäjänä
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ fi-pl:
|
|
65
64
|
alignment:
|
66
65
|
against: Vastaan
|
67
66
|
in_favor: Puolesta
|
67
|
+
cancel_reply: Peruuta vastaus
|
68
68
|
confirm_destroy: Haluatko varmasti poistaa tämän kommentin?
|
69
69
|
delete: Poista
|
70
70
|
deleted_at: Kommentti poistettu %{date}
|
@@ -81,7 +81,7 @@ fi-pl:
|
|
81
81
|
description: Onko tämä sisältö epäasiallista?
|
82
82
|
details: Lisätiedot
|
83
83
|
reasons:
|
84
|
-
does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan
|
84
|
+
does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan %{organization_name} -palveluun.
|
85
85
|
offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
|
86
86
|
spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
|
87
87
|
title: Ilmoita asiatonta sisältöä
|
@@ -96,8 +96,6 @@ fi-pl:
|
|
96
96
|
older: Vanhimmat
|
97
97
|
recent: Uusimmat
|
98
98
|
title: 'Järjestä tulokset:'
|
99
|
-
comment_thread:
|
100
|
-
title: Keskustelu henkilön %{authorName} kanssa
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla varmennettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
|
103
101
|
blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
|
data/config/locales/fi.yml
CHANGED
@@ -26,28 +26,27 @@ fi:
|
|
26
26
|
start_time: Kommentointi sallittu alkaen
|
27
27
|
comments:
|
28
28
|
create:
|
29
|
-
error: Kommentin
|
29
|
+
error: Kommentin luotaessa tapahtui virhe.
|
30
30
|
delete:
|
31
31
|
error: Kommenttia ei voitu poistaa.
|
32
32
|
update:
|
33
33
|
error: Kommentin päivittäminen epäonnistui.
|
34
|
-
|
35
|
-
comments_title: Kommentit
|
34
|
+
comments_title: Kommentti
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Näytä
|
36
|
+
new_comment: 'Uusi kommentti:'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Kommentin äänestys epäonnistui.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message: <a href="%{sign_in_url}">Kirjaudu
|
42
|
+
account_message: <a href="%{sign_in_url}">Kirjaudu tilillesi</a> tai <a href="%{sign_up_url}">rekisteröidy</a> kommentoidaksesi.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Kommentti
|
48
46
|
placeholder: Mitä mieltä olet tästä?
|
49
47
|
form_error: Teksti vaaditaan ja se ei voi olla pidempi kuin %{length} merkkiä.
|
50
|
-
|
48
|
+
submit_reply: Julkaise vastaus
|
49
|
+
submit_root_comment: Julkaise kommentti
|
51
50
|
user_group_id:
|
52
51
|
label: Kommentoi käyttäjänä
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ fi:
|
|
65
64
|
alignment:
|
66
65
|
against: Vastaan
|
67
66
|
in_favor: Puolesta
|
67
|
+
cancel_reply: Peruuta vastaus
|
68
68
|
confirm_destroy: Haluatko varmasti poistaa tämän kommentin?
|
69
69
|
delete: Poista
|
70
70
|
deleted_at: Kommentti poistettu %{date}
|
@@ -81,7 +81,7 @@ fi:
|
|
81
81
|
description: Onko tämä sisältö sopimatonta?
|
82
82
|
details: Lisätiedot
|
83
83
|
reasons:
|
84
|
-
does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan
|
84
|
+
does_not_belong: Sisältää laitonta toimintaa, itsemurhauhkailua, henkilökohtaisia tietoja tai jotain muuta, jonka et usko kuuluvan %{organization_name} -palveluun.
|
85
85
|
offensive: Sisältää rasismia, seksismiä, haukkumista, henkilökohtaisia hyökkäyksiä, tappouhkauksia, itsemurhapyyntöjä tai muuta vihapuhetta.
|
86
86
|
spam: Sisältää klikkihoukutteita, mainostusta, huijauksia tai bottiskriptejä.
|
87
87
|
title: Ilmoita asiatonta sisältöä
|
@@ -96,8 +96,6 @@ fi:
|
|
96
96
|
older: Vanhimmat
|
97
97
|
recent: Uusimmat
|
98
98
|
title: 'Järjestä tulokset:'
|
99
|
-
comment_thread:
|
100
|
-
title: Keskustelu henkilön %{authorName} kanssa
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla varmennettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
|
103
101
|
blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
|
@@ -124,7 +122,7 @@ fi:
|
|
124
122
|
events:
|
125
123
|
comments:
|
126
124
|
comment_by_followed_user:
|
127
|
-
email_intro: "%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen
|
125
|
+
email_intro: "%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen täältä:"
|
128
126
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
|
129
127
|
email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
|
130
128
|
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>.
|
@@ -134,7 +132,7 @@ fi:
|
|
134
132
|
email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
|
135
133
|
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>.
|
136
134
|
comment_created:
|
137
|
-
email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin
|
135
|
+
email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
|
138
136
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
139
137
|
email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
|
140
138
|
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>
|
@@ -149,7 +147,7 @@ fi:
|
|
149
147
|
email_subject: Kommenttisi kohteessa "%{resource_title}" sai äänen.
|
150
148
|
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
151
149
|
reply_created:
|
152
|
-
email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen
|
150
|
+
email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
|
153
151
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
|
154
152
|
email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
|
155
153
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
|
data/config/locales/fr-CA.yml
CHANGED
@@ -31,23 +31,22 @@ fr-CA:
|
|
31
31
|
error: Le commentaire n'a pas pu être supprimé.
|
32
32
|
update:
|
33
33
|
error: Une erreur s'est produite lors de la mise à jour du commentaire.
|
34
|
-
|
35
|
-
comments_title: commentaires
|
34
|
+
comments_title: Commentaire
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Voir
|
36
|
+
new_comment: 'Nouveau commentaire :'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Une erreur s'est produite lors du vote sur le commentaire.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message:
|
42
|
+
account_message: <a href="%{sign_in_url}">Connectez-vous avec votre compte</a> ou <a href="%{sign_up_url}"> inscrivez-vous </a> pour ajouter votre commentaire.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Commentaire
|
48
46
|
placeholder: Que pensez-vous de cela ?
|
49
|
-
form_error: Le texte est requis et ne
|
50
|
-
|
47
|
+
form_error: Le texte est requis et ne doit pas dépasser %{length} caractères.
|
48
|
+
submit_reply: Publier la réponse
|
49
|
+
submit_root_comment: Publier le commentaire
|
51
50
|
user_group_id:
|
52
51
|
label: Commenter en tant que
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ fr-CA:
|
|
65
64
|
alignment:
|
66
65
|
against: Contre
|
67
66
|
in_favor: Pour
|
67
|
+
cancel_reply: Annuler la réponse
|
68
68
|
confirm_destroy: Êtes-vous sûr de vouloir supprimer ce commentaire?
|
69
69
|
delete: Supprimer
|
70
70
|
deleted_at: Commentaire supprimé le %{date}
|
@@ -81,7 +81,7 @@ fr-CA:
|
|
81
81
|
description: Ce contenu est-il inapproprié ?
|
82
82
|
details: Commentaires additionnels
|
83
83
|
reasons:
|
84
|
-
does_not_belong: Contient
|
84
|
+
does_not_belong: Contient du contenu illégal, menace de suicide, informations personnelles ou tout autre élément qui, selon vous, n'aurait pas sa place sur %{organization_name}.
|
85
85
|
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,...).
|
86
86
|
spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
|
87
87
|
title: Signaler un contenu inapproprié
|
@@ -96,8 +96,6 @@ fr-CA:
|
|
96
96
|
older: Les plus anciens
|
97
97
|
recent: Les plus récents
|
98
98
|
title: 'Classement par :'
|
99
|
-
comment_thread:
|
100
|
-
title: Conversation avec %{authorName}
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Vous devez valider votre inscription pour commenter maintenant, mais vous pouvez lire les commentaires précédents.
|
103
101
|
blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
|
@@ -170,4 +168,4 @@ fr-CA:
|
|
170
168
|
title: commentaires
|
171
169
|
errors:
|
172
170
|
messages:
|
173
|
-
cannot_have_comments: ne peut pas
|
171
|
+
cannot_have_comments: ne peut pas avoir de commentaires
|
data/config/locales/fr.yml
CHANGED
@@ -31,23 +31,22 @@ fr:
|
|
31
31
|
error: Le commentaire n'a pas pu être supprimé.
|
32
32
|
update:
|
33
33
|
error: Une erreur s'est produite lors de la mise à jour du commentaire.
|
34
|
-
|
35
|
-
comments_title: commentaires
|
34
|
+
comments_title: Commentaire
|
36
35
|
last_activity:
|
37
|
-
|
38
|
-
view: Voir
|
36
|
+
new_comment: 'Nouveau commentaire :'
|
39
37
|
votes:
|
40
38
|
create:
|
41
39
|
error: Une erreur s'est produite lors du vote sur le commentaire.
|
42
40
|
components:
|
43
41
|
add_comment_form:
|
44
|
-
account_message:
|
42
|
+
account_message: <a href="%{sign_in_url}">Connectez-vous avec votre compte</a> ou <a href="%{sign_up_url}"> inscrivez-vous </a> pour ajouter votre commentaire.
|
45
43
|
form:
|
46
44
|
body:
|
47
45
|
label: Commentaire
|
48
46
|
placeholder: Que pensez-vous de cela ?
|
49
|
-
form_error: Le texte est requis et ne
|
50
|
-
|
47
|
+
form_error: Le texte est requis et ne doit pas dépasser %{length} caractères.
|
48
|
+
submit_reply: Publier la réponse
|
49
|
+
submit_root_comment: Publier le commentaire
|
51
50
|
user_group_id:
|
52
51
|
label: Commenter en tant que
|
53
52
|
opinion:
|
@@ -65,6 +64,7 @@ fr:
|
|
65
64
|
alignment:
|
66
65
|
against: Contre
|
67
66
|
in_favor: Pour
|
67
|
+
cancel_reply: Annuler la réponse
|
68
68
|
confirm_destroy: Êtes-vous sûr de vouloir supprimer ce commentaire ?
|
69
69
|
delete: Supprimer
|
70
70
|
deleted_at: Commentaire supprimé le %{date}
|
@@ -81,7 +81,7 @@ fr:
|
|
81
81
|
description: Ce contenu est-il inapproprié ?
|
82
82
|
details: Commentaires additionnels
|
83
83
|
reasons:
|
84
|
-
does_not_belong: Contient
|
84
|
+
does_not_belong: Contient du contenu illégal, menace de suicide, informations personnelles ou tout autre élément qui, selon vous, n'aurait pas sa place sur %{organization_name}.
|
85
85
|
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,...).
|
86
86
|
spam: Contient des publicités, des escroqueries, des pièges à clic (clickbait) ou des robots fonctionnant au script (script bots).
|
87
87
|
title: Signaler un contenu inapproprié
|
@@ -96,8 +96,6 @@ fr:
|
|
96
96
|
older: Les plus anciens
|
97
97
|
recent: Les plus récents
|
98
98
|
title: 'Classement par :'
|
99
|
-
comment_thread:
|
100
|
-
title: Conversation avec %{authorName}
|
101
99
|
comments:
|
102
100
|
blocked_comments_for_unauthorized_user_warning: Vous devez faire vérifier votre compte pour commenter, mais vous pouvez lire les commentaires précédents.
|
103
101
|
blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
|
@@ -170,4 +168,4 @@ fr:
|
|
170
168
|
title: commentaires
|
171
169
|
errors:
|
172
170
|
messages:
|
173
|
-
cannot_have_comments: ne peut pas
|
171
|
+
cannot_have_comments: ne peut pas avoir de commentaires
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
@@ -26,27 +26,17 @@ gl:
|
|
26
26
|
comments:
|
27
27
|
create:
|
28
28
|
error: Produciuse un problema ao crear o comentario.
|
29
|
-
delete:
|
30
|
-
error: Non foi posíbel eliminar o comentario.
|
31
29
|
update:
|
32
30
|
error: Produciuse un problema ao actualizar o comentario.
|
33
|
-
comments_count: Número de comentarios
|
34
|
-
comments_title: Comentarios
|
35
|
-
last_activity:
|
36
|
-
new_comment_at_html: "<span>Novo comentario en %{link}</span>"
|
37
|
-
view: Ver
|
38
31
|
votes:
|
39
32
|
create:
|
40
33
|
error: Houbo erros ao votar o comentario.
|
41
34
|
components:
|
42
35
|
add_comment_form:
|
43
|
-
account_message: <a href="%{sign_in_url}">Inicia sesión coa túa conta</a> ou <a href="%{sign_up_url}">iniciar</a> para engadir o teu comentario.
|
44
36
|
form:
|
45
37
|
body:
|
46
38
|
label: Comentario
|
47
39
|
placeholder: Que vos parece?
|
48
|
-
form_error: Requírese o texto e non pode ter máis de %{length} caracteres.
|
49
|
-
submit: Enviar
|
50
40
|
user_group_id:
|
51
41
|
label: Comentar como
|
52
42
|
opinion:
|
@@ -80,7 +70,6 @@ gl:
|
|
80
70
|
description: Este contido é inapropiado?
|
81
71
|
details: Comentarios adicionais
|
82
72
|
reasons:
|
83
|
-
does_not_belong: Contén actividades ilegais, ameazas de suicidio, información persoal ou outra cousa que pensas que non pertence a %{organization_name}.
|
84
73
|
offensive: Contén racismo, sexismo, abuso, ataques persoais, ameazas de morte, solicitudes de suicidio ou calquera tipo de discurso de odio.
|
85
74
|
spam: Contén clic, publicidade, fraudes ou bots de script.
|
86
75
|
title: Denunciar contido inapropiado
|
@@ -92,8 +81,6 @@ gl:
|
|
92
81
|
older: Máis vello
|
93
82
|
recent: Recentes
|
94
83
|
title: 'Ordenar por:'
|
95
|
-
comment_thread:
|
96
|
-
title: Conversa con %{authorName}
|
97
84
|
comments:
|
98
85
|
blocked_comments_for_unauthorized_user_warning: Tes de estar verificado para poder comentar neste intre, porén podes ler os comentarios anteriores.
|
99
86
|
blocked_comments_for_user_warning: Non podes comentar neste momento, pero podes ler os anteriores.
|
@@ -147,6 +134,3 @@ gl:
|
|
147
134
|
description: Número de comentarios xerados polos usuarios
|
148
135
|
object: comentarios
|
149
136
|
title: Comentarios
|
150
|
-
errors:
|
151
|
-
messages:
|
152
|
-
cannot_have_comments: Non podo ter comentarios
|
data/config/locales/hu.yml
CHANGED
@@ -31,23 +31,17 @@ hu:
|
|
31
31
|
error: A hozzászólás nem törölhető.
|
32
32
|
update:
|
33
33
|
error: Hiba történt a hozzászólás frissítése során.
|
34
|
-
|
35
|
-
comments_title: Hozzászólások
|
36
|
-
last_activity:
|
37
|
-
new_comment_at_html: "<span>Új megjegyzés: %{link}</span>"
|
38
|
-
view: Megtekintés
|
34
|
+
comments_title: Hozzászólás
|
39
35
|
votes:
|
40
36
|
create:
|
41
37
|
error: Hiba történt a megjegyzésre való szavazáskor.
|
42
38
|
components:
|
43
39
|
add_comment_form:
|
44
|
-
account_message: <a href="%{sign_in_url}">Jelentkezzen be fiókodba</a> vagy <a href="%{sign_up_url}">iratkozz fel</a> megjegyzés küldéséhez.
|
45
40
|
form:
|
46
41
|
body:
|
47
42
|
label: Megjegyzés
|
48
43
|
placeholder: Mit gondolsz erről?
|
49
44
|
form_error: Kötelező kitölteni, és nem lehet hosszabb, mint %{length} karakter.
|
50
|
-
submit: Küldés
|
51
45
|
user_group_id:
|
52
46
|
label: 'Megjegyzés mint:'
|
53
47
|
opinion:
|
@@ -81,7 +75,7 @@ hu:
|
|
81
75
|
description: Sértő a tartalom?
|
82
76
|
details: További megjegyzések
|
83
77
|
reasons:
|
84
|
-
does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz,
|
78
|
+
does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz, amiről úgy gondolja, nem tartozik ide: %{organization_name}.'
|
85
79
|
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.
|
86
80
|
spam: Klikkvadászat, reklám, átverés vagy script bot.
|
87
81
|
title: Nem megfelelő tartalom bejelentése
|
@@ -93,8 +87,6 @@ hu:
|
|
93
87
|
older: Korábbi
|
94
88
|
recent: Legutóbbi
|
95
89
|
title: 'Rendezés:'
|
96
|
-
comment_thread:
|
97
|
-
title: 'Beszélgetés vele: %{authorName}'
|
98
90
|
comments:
|
99
91
|
blocked_comments_for_unauthorized_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
|
100
92
|
blocked_comments_for_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
|
@@ -167,4 +159,4 @@ hu:
|
|
167
159
|
title: Hozzászólások
|
168
160
|
errors:
|
169
161
|
messages:
|
170
|
-
cannot_have_comments: nem
|
162
|
+
cannot_have_comments: nem adhat hozzá hozzászólásokat
|