decidim-comments 0.29.2 → 0.30.0.rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment/actions.erb +0 -8
  3. data/app/cells/decidim/comments/comment/show.erb +41 -5
  4. data/app/cells/decidim/comments/comment_cell.rb +44 -0
  5. data/app/cells/decidim/comments/comment_form/comment_as.erb +24 -6
  6. data/app/cells/decidim/comments/comment_form/opinion.erb +0 -4
  7. data/app/cells/decidim/comments/comment_form/show.erb +31 -29
  8. data/app/cells/decidim/comments/comment_form_cell.rb +7 -2
  9. data/app/cells/decidim/comments/comment_thread/show.erb +1 -1
  10. data/app/cells/decidim/comments/comments/add_comment.erb +12 -14
  11. data/app/cells/decidim/comments/comments/comments_in_single_column.erb +6 -0
  12. data/app/cells/decidim/comments/comments/order_control.erb +32 -9
  13. data/app/cells/decidim/comments/comments/show.erb +7 -7
  14. data/app/cells/decidim/comments/comments_cell.rb +56 -12
  15. data/app/cells/decidim/comments/two_columns_comments/column.erb +20 -0
  16. data/app/cells/decidim/comments/two_columns_comments/show.erb +11 -0
  17. data/app/cells/decidim/comments/two_columns_comments_cell.rb +86 -0
  18. data/app/forms/decidim/comments/comment_form.rb +14 -0
  19. data/app/models/decidim/comments/comment.rb +9 -7
  20. data/app/packs/entrypoints/decidim_comments.js +1 -0
  21. data/app/packs/src/decidim/comments/comments.component.js +151 -24
  22. data/app/packs/src/decidim/comments/comments.component.test.js +2 -1
  23. data/app/packs/src/decidim/comments/comments.js +95 -12
  24. data/app/packs/src/decidim/comments/comments_dropdown.js +57 -0
  25. data/app/packs/src/decidim/comments/comments_mobile_modal.js +46 -0
  26. data/app/packs/stylesheets/comments.scss +203 -50
  27. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +1 -1
  28. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +22 -17
  29. data/app/views/decidim/comments/comments/create.js.erb +9 -1
  30. data/config/locales/ar.yml +0 -1
  31. data/config/locales/bg.yml +0 -1
  32. data/config/locales/ca.yml +35 -2
  33. data/config/locales/cs.yml +37 -2
  34. data/config/locales/de.yml +35 -2
  35. data/config/locales/el.yml +0 -1
  36. data/config/locales/en.yml +35 -2
  37. data/config/locales/es-MX.yml +35 -2
  38. data/config/locales/es-PY.yml +35 -2
  39. data/config/locales/es.yml +35 -2
  40. data/config/locales/eu.yml +46 -13
  41. data/config/locales/fi-plain.yml +35 -2
  42. data/config/locales/fi.yml +35 -2
  43. data/config/locales/fr-CA.yml +8 -2
  44. data/config/locales/fr.yml +8 -2
  45. data/config/locales/gl.yml +0 -1
  46. data/config/locales/hu.yml +0 -1
  47. data/config/locales/id-ID.yml +0 -1
  48. data/config/locales/is-IS.yml +0 -1
  49. data/config/locales/it.yml +1 -1
  50. data/config/locales/ja.yml +34 -2
  51. data/config/locales/lb.yml +0 -1
  52. data/config/locales/lt.yml +0 -1
  53. data/config/locales/lv.yml +0 -1
  54. data/config/locales/nl.yml +0 -1
  55. data/config/locales/no.yml +0 -1
  56. data/config/locales/pl.yml +0 -2
  57. data/config/locales/pt-BR.yml +0 -1
  58. data/config/locales/pt.yml +0 -1
  59. data/config/locales/ro-RO.yml +92 -58
  60. data/config/locales/ru.yml +0 -1
  61. data/config/locales/sk.yml +0 -1
  62. data/config/locales/sv.yml +35 -2
  63. data/config/locales/tr-TR.yml +0 -1
  64. data/config/locales/uk.yml +0 -1
  65. data/config/locales/zh-CN.yml +0 -1
  66. data/config/locales/zh-TW.yml +0 -1
  67. data/decidim-comments.gemspec +1 -1
  68. data/lib/decidim/api/comment_mutation_type.rb +2 -2
  69. data/lib/decidim/api/comment_type.rb +12 -45
  70. data/lib/decidim/api/commentable_interface.rb +4 -16
  71. data/lib/decidim/api/commentable_mutation_type.rb +2 -3
  72. data/lib/decidim/comments/commentable.rb +11 -0
  73. data/lib/decidim/comments/engine.rb +7 -1
  74. data/lib/decidim/comments/test/factories.rb +8 -0
  75. data/lib/decidim/comments/test/shared_examples/comment_event.rb +1 -1
  76. data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +2 -2
  77. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +1 -1
  78. data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +2 -2
  79. data/lib/decidim/comments/version.rb +1 -1
  80. metadata +16 -10
@@ -17,6 +17,10 @@ de:
17
17
  one: Abstimmung
18
18
  other: Stimmen
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Kommentare
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ de:
39
43
  error: Beim Abstimmen des Kommentars sind Fehler aufgetreten.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: Sie müssen sich <a href="%{sign_in_url}">mit einem bestehendem Konto anmelden</a> oder <a href="%{sign_up_url}"> ein neues Konto registrieren</a>, um Ihren Kommentar hinzufügen.
46
+ account_message: Melden Sie sich an oder erstellen Sie ein Konto, um einen Kommentar hinzuzufügen.
47
+ add_comment: Kommentar hinzufügen
43
48
  form:
44
49
  body:
45
50
  label: Kommentar
@@ -49,6 +54,7 @@ de:
49
54
  submit_root_comment: Kommentar veröffentlichen
50
55
  user_group_id:
51
56
  label: Kommentieren als
57
+ your_profile: Ihr Profil
52
58
  opinion:
53
59
  label: Ihre Meinung zu diesem Thema
54
60
  negative: Negativ
@@ -64,6 +70,9 @@ de:
64
70
  alignment:
65
71
  against: Gegen
66
72
  in_favor: Zugunsten
73
+ answers:
74
+ one: "%{count} Antwort"
75
+ other: "%{count} Antworten"
67
76
  cancel_reply: Antwort abbrechen
68
77
  comment_label: Kommentar %{comment_id}
69
78
  comment_label_reply: Kommentar %{comment_id} (Antwort auf Kommentar %{parent_comment_id})
@@ -94,6 +103,7 @@ de:
94
103
  one: Antwort anzeigen
95
104
  other: '%{count} Antworten anzeigen'
96
105
  single_comment_link_title: Link erhalten
106
+ sort_by: 'Sortieren nach: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Am besten bewertet
@@ -102,16 +112,19 @@ de:
102
112
  recent: Kürzlich hinzugefügt
103
113
  title: 'Sortieren nach:'
104
114
  comments:
115
+ against: Ablehnend
105
116
  blocked_comments_for_unauthorized_user_warning: Sie müssen aktuell verifiziert sein um zu kommentieren, aber Sie können die bisherigen Kommentare lesen.
106
117
  blocked_comments_for_user_warning: Sie können momentan nichts kommentieren, aber Sie können die vorherigen lesen.
107
- blocked_comments_warning: Kommentare sind zu diesem Zeitpunkt deaktiviert, aber Sie können die vorherigen lesen.
118
+ blocked_comments_warning: Kommentare sind derzeit deaktiviert. Nur Admins können antworten oder neue Kommentare verfassen.
108
119
  comment_details_title: Kommentarinformationen
120
+ in_favor: Zustimmend
109
121
  loading: Kommentare werden geladen ...
110
122
  single_comment_warning: <a href="%{url}">Alle Kommentare anzeigen</a>
111
123
  single_comment_warning_title: Ihnen wird ein einzelner Kommentar angezeigt
112
124
  title:
113
125
  one: "%{count} Kommentar"
114
126
  other: "%{count} Kommentare"
127
+ top_comment_label: Bestbewertete
115
128
  down_vote_button:
116
129
  text: Ich bin mit diesem Kommentar nicht einverstanden
117
130
  edit_comment_modal_form:
@@ -124,6 +137,26 @@ de:
124
137
  title: Kommentar bearbeiten
125
138
  up_vote_button:
126
139
  text: Ich stimme diesem Kommentar zu
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: Die ID des Kommentars, über den abgestimmt wurde
144
+ created_at: Das Erstellungsdatum der Stimme
145
+ id: Die ID der Stimme
146
+ updated_at: Das Datum, an dem die Stimme zuletzt aktualisiert wurde
147
+ weight: Das Gewicht der Stimme (1 für Zustimmung, -1 für Ablehnung)
148
+ comments:
149
+ alignment: Ob dieser Kommentar zustimmend, ablehnend oder neutral war
150
+ author: Der Name des Teilnehmenden, der diesen Kommentar erstellt hat
151
+ body: Der Kommentarinhalt
152
+ commentable_id: Die eindeutige ID des kommentierten Objekts
153
+ commentable_type: Die Art des kommentierten Objekts (ob es ein Ergebnis, Vorschlag o.ä. war)
154
+ created_at: Das Erstellungsdatum des Kommentars
155
+ depth: Die Position dieses Kommentars im Thread (ob es sich um eine Antwort oder eine Antwort auf eine Antwort handelt)
156
+ id: Die ID dieses Kommentars
157
+ locale: Die eingestellte Plattformsprache der kommentierenden Person
158
+ root_commentable_url: Die URL der mit dem Kommentar verbundenen Ressource
159
+ user_group: Der Name der Gruppe, die diesen Kommentar erstellt hat (falls vorhanden)
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
@@ -92,7 +92,6 @@ el:
92
92
  comments:
93
93
  blocked_comments_for_unauthorized_user_warning: Πρέπει να επαληθευτείτε για να σχολιάσετε αυτή τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα.
94
94
  blocked_comments_for_user_warning: Δεν μπορείτε να σχολιάσετε αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
95
- blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
96
95
  comment_details_title: Λεπτομέρειες σχολίων
97
96
  loading: Φόρτωση σχολίων...
98
97
  single_comment_warning: <a href="%{url}">Δείτε όλα τα σχόλια</a>
@@ -17,6 +17,10 @@ en:
17
17
  one: Vote
18
18
  other: Votes
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Comments
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ en:
39
43
  error: There was a problem voting the comment.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Log in</a> or <a href="%{sign_up_url}">create an account</a> to add your comment.
46
+ account_message: Log in or create an account to add your comment.
47
+ add_comment: Add comment
43
48
  form:
44
49
  body:
45
50
  label: Comment
@@ -49,6 +54,7 @@ en:
49
54
  submit_root_comment: Publish comment
50
55
  user_group_id:
51
56
  label: Comment as
57
+ your_profile: Your profile
52
58
  opinion:
53
59
  label: Your opinion about this topic
54
60
  negative: Negative
@@ -64,6 +70,9 @@ en:
64
70
  alignment:
65
71
  against: Against
66
72
  in_favor: In favor
73
+ answers:
74
+ one: "%{count} answer"
75
+ other: "%{count} answers"
67
76
  cancel_reply: Cancel reply
68
77
  comment_label: Comment %{comment_id}
69
78
  comment_label_reply: Comment %{comment_id} (reply to comment %{parent_comment_id})
@@ -94,6 +103,7 @@ en:
94
103
  one: Show reply
95
104
  other: Show %{count} replies
96
105
  single_comment_link_title: Get link
106
+ sort_by: 'Sort by: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Best rated
@@ -102,16 +112,19 @@ en:
102
112
  recent: Recent
103
113
  title: 'Order by:'
104
114
  comments:
115
+ against: Against
105
116
  blocked_comments_for_unauthorized_user_warning: You need to be verified to comment at this moment, but you can read the previous ones.
106
117
  blocked_comments_for_user_warning: You are not able to comment at this moment, but you can read the previous ones.
107
- blocked_comments_warning: Comments are disabled at this time, but you can read the previous ones.
118
+ blocked_comments_warning: Comments are currently disabled, only administrators can reply or post new ones.
108
119
  comment_details_title: Comment details
120
+ in_favor: In Favor
109
121
  loading: Loading comments ...
110
122
  single_comment_warning: <a href="%{url}">View all comments</a>
111
123
  single_comment_warning_title: You are seeing a single comment
112
124
  title:
113
125
  one: "%{count} comment"
114
126
  other: "%{count} comments"
127
+ top_comment_label: Most upvoted
115
128
  down_vote_button:
116
129
  text: I disagree with this comment
117
130
  edit_comment_modal_form:
@@ -124,6 +137,26 @@ en:
124
137
  title: Edit your comment
125
138
  up_vote_button:
126
139
  text: I agree with this comment
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: The id of the comment that was voted
144
+ created_at: The date when this vote was created
145
+ id: The id of the vote
146
+ updated_at: The date when this vote was last updated
147
+ weight: The weight of the vote (1 for upvote, -1 for downvote)
148
+ comments:
149
+ alignment: If this comment was a favour, against or neutral
150
+ author: The name of the participant that made this comment
151
+ body: The comment itself
152
+ commentable_id: The unique id of the commentable
153
+ commentable_type: The type of the commentable (if it was a result, a proposal, etc.)
154
+ created_at: The date when this comment was created
155
+ depth: The place where this comment is in the three of comments (if it is an answer or an answer of an answer)
156
+ id: The id for this comment
157
+ locale: The locale (language) that the participant had when leaving this comment
158
+ root_commentable_url: The URL of the resource that ties to this comment
159
+ user_group: The name of the user group that made this comment (if any)
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
@@ -17,6 +17,10 @@ es-MX:
17
17
  one: Voto
18
18
  other: Votos
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Comentarios
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ es-MX:
39
43
  error: Ha habido errores al votar el comentario.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Inicia sesión</a> o <a href="%{sign_up_url}">crea una cuenta</a> para añadir tu comentario.
46
+ account_message: Inicia sesión o crea una cuenta para añadir tu comentario.
47
+ add_comment: Añadir un comentario
43
48
  form:
44
49
  body:
45
50
  label: Comentario
@@ -49,6 +54,7 @@ es-MX:
49
54
  submit_root_comment: Publicar comentario
50
55
  user_group_id:
51
56
  label: Comentar como
57
+ your_profile: Tu perfil
52
58
  opinion:
53
59
  label: Tu opinión sobre este tema
54
60
  negative: Negativa
@@ -64,6 +70,9 @@ es-MX:
64
70
  alignment:
65
71
  against: En contra
66
72
  in_favor: A favor
73
+ answers:
74
+ one: "%{count} respuesta"
75
+ other: "%{count} respuestas"
67
76
  cancel_reply: Cancelar respuesta
68
77
  comment_label: Comentario %{comment_id}
69
78
  comment_label_reply: Comentario %{comment_id} (responder al comentario %{parent_comment_id})
@@ -94,6 +103,7 @@ es-MX:
94
103
  one: Mostrar la respuesta
95
104
  other: Mostrar las %{count} respuestas
96
105
  single_comment_link_title: Obtener enlace
106
+ sort_by: 'Ordenar por: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Mejor valoración
@@ -102,16 +112,19 @@ es-MX:
102
112
  recent: Reciente
103
113
  title: 'Ordenar por:'
104
114
  comments:
115
+ against: En contra
105
116
  blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
106
117
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
107
- blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
118
+ blocked_comments_warning: Los comentarios están desactivados en estos momentos, solo las administradoras pueden responder o publicar nuevos.
108
119
  comment_details_title: Detalles del comentario
120
+ in_favor: A favor
109
121
  loading: Cargando los comentarios ...
110
122
  single_comment_warning: <a href="%{url}">Ver todos los comentarios</a>
111
123
  single_comment_warning_title: Estás viendo un solo comentario
112
124
  title:
113
125
  one: "%{count} comentario"
114
126
  other: "%{count} comentarios"
127
+ top_comment_label: Mejor valorado
115
128
  down_vote_button:
116
129
  text: No estoy de acuerdo con este comentario
117
130
  edit_comment_modal_form:
@@ -124,6 +137,26 @@ es-MX:
124
137
  title: Edita tu comentario
125
138
  up_vote_button:
126
139
  text: Estoy de acuerdo con este comentario
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: La id del comentario que se va valoró
144
+ created_at: La fecha y la hora en que se valoró este comentario
145
+ id: La id de la valoración del comentario
146
+ updated_at: La fecha y hora de la última actualización de la valoración de este comentario
147
+ weight: El peso de la valoración (1 a favor, -1 en contra)
148
+ comments:
149
+ alignment: Si este comentario fue a favor, en contra o neutral
150
+ author: El nombre usuaria de la participante que hizo este comentario
151
+ body: El comentario en sí
152
+ commentable_id: El identificador único de aquello que se podía comentar
153
+ commentable_type: La tipología de aquello sobre lo que se realizó el comentario (si fue un resultado, una propuesta, etc.)
154
+ created_at: La fecha en la que se creó este comentario
155
+ depth: El lugar donde se encuentra este comentario en la terna de comentarios (si es una respuesta a un comentario, o la respuesta de una respuesta)
156
+ id: El identificador de este comentario
157
+ locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
158
+ root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
159
+ user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
@@ -17,6 +17,10 @@ es-PY:
17
17
  one: Voto
18
18
  other: Votos
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Comentarios
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ es-PY:
39
43
  error: Ha habido errores al votar el comentario.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Inicia sesión</a> o <a href="%{sign_up_url}">crea una cuenta</a> para añadir tu comentario.
46
+ account_message: Inicia sesión o crea una cuenta para añadir tu comentario.
47
+ add_comment: Añadir un comentario
43
48
  form:
44
49
  body:
45
50
  label: Comentario
@@ -49,6 +54,7 @@ es-PY:
49
54
  submit_root_comment: Publicar comentario
50
55
  user_group_id:
51
56
  label: Comentar como
57
+ your_profile: Tu perfil
52
58
  opinion:
53
59
  label: Tu opinión sobre este tema
54
60
  negative: Negativa
@@ -64,6 +70,9 @@ es-PY:
64
70
  alignment:
65
71
  against: En contra
66
72
  in_favor: A favor
73
+ answers:
74
+ one: "%{count} respuesta"
75
+ other: "%{count} respuestas"
67
76
  cancel_reply: Cancelar respuesta
68
77
  comment_label: Comentario %{comment_id}
69
78
  comment_label_reply: Comentario %{comment_id} (responder al comentario %{parent_comment_id})
@@ -94,6 +103,7 @@ es-PY:
94
103
  one: Mostrar la respuesta
95
104
  other: Mostrar las %{count} respuestas
96
105
  single_comment_link_title: Obtener enlace
106
+ sort_by: 'Ordenar por: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Mejor valoración
@@ -102,16 +112,19 @@ es-PY:
102
112
  recent: Reciente
103
113
  title: 'Ordenar por:'
104
114
  comments:
115
+ against: En contra
105
116
  blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
106
117
  blocked_comments_for_user_warning: No puede hacer comentarios en este momento, pero puede leer los anteriores.
107
- blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
118
+ blocked_comments_warning: Los comentarios están desactivados en estos momentos, solo las administradoras pueden responder o publicar nuevos.
108
119
  comment_details_title: Detalles del comentario
120
+ in_favor: A favor
109
121
  loading: Cargando los comentarios ...
110
122
  single_comment_warning: <a href="%{url}">Ver todos los comentarios</a>
111
123
  single_comment_warning_title: Estás viendo un solo comentario
112
124
  title:
113
125
  one: "%{count} comentario"
114
126
  other: "%{count} comentarios"
127
+ top_comment_label: Mejor valorado
115
128
  down_vote_button:
116
129
  text: No estoy de acuerdo con este comentario
117
130
  edit_comment_modal_form:
@@ -124,6 +137,26 @@ es-PY:
124
137
  title: Edita tu comentario
125
138
  up_vote_button:
126
139
  text: Estoy de acuerdo con este comentario
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: La id del comentario que se va valoró
144
+ created_at: La fecha y la hora en que se valoró este comentario
145
+ id: La id de la valoración del comentario
146
+ updated_at: La fecha y hora de la última actualización de la valoración de este comentario
147
+ weight: El peso de la valoración (1 a favor, -1 en contra)
148
+ comments:
149
+ alignment: Si este comentario fue a favor, en contra o neutral
150
+ author: El nombre usuaria de la participante que hizo este comentario
151
+ body: El comentario en sí
152
+ commentable_id: El identificador único de aquello que se podía comentar
153
+ commentable_type: La tipología de aquello sobre lo que se realizó el comentario (si fue un resultado, una propuesta, etc.)
154
+ created_at: La fecha en la que se creó este comentario
155
+ depth: El lugar donde se encuentra este comentario en la terna de comentarios (si es una respuesta a un comentario, o la respuesta de una respuesta)
156
+ id: El identificador de este comentario
157
+ locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
158
+ root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
159
+ user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
@@ -17,6 +17,10 @@ es:
17
17
  one: Voto
18
18
  other: Votos
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Comentarios
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ es:
39
43
  error: Se ha producido un error al votar el comentario.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Inicia sesión</a> o <a href="%{sign_up_url}">crea una cuenta</a> para añadir tu comentario.
46
+ account_message: Inicia sesión o crea una cuenta para añadir tu comentario.
47
+ add_comment: Añadir un comentario
43
48
  form:
44
49
  body:
45
50
  label: Comentario
@@ -49,6 +54,7 @@ es:
49
54
  submit_root_comment: Publicar comentario
50
55
  user_group_id:
51
56
  label: Comentar como
57
+ your_profile: Tu perfil
52
58
  opinion:
53
59
  label: Tu opinión sobre este tema
54
60
  negative: Negativa
@@ -64,6 +70,9 @@ es:
64
70
  alignment:
65
71
  against: En contra
66
72
  in_favor: A favor
73
+ answers:
74
+ one: "%{count} respuesta"
75
+ other: "%{count} respuestas"
67
76
  cancel_reply: Cancelar respuesta
68
77
  comment_label: Comentario %{comment_id}
69
78
  comment_label_reply: Comentario %{comment_id} (responder al comentario %{parent_comment_id})
@@ -94,6 +103,7 @@ es:
94
103
  one: Mostrar la respuesta
95
104
  other: Mostrar las %{count} respuestas
96
105
  single_comment_link_title: Obtener enlace
106
+ sort_by: 'Ordenar por: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Mejor valoración
@@ -102,16 +112,19 @@ es:
102
112
  recent: Reciente
103
113
  title: 'Ordenar por:'
104
114
  comments:
115
+ against: En contra
105
116
  blocked_comments_for_unauthorized_user_warning: Necesitas estar verificada para comentar en este momento, pero puedes leer los comentarios anteriores.
106
117
  blocked_comments_for_user_warning: No puedes hacer comentarios en este momento, pero puedes leer los anteriores.
107
- blocked_comments_warning: Los comentarios están deshabilitados en este momento, pero puedes leer los anteriores.
118
+ blocked_comments_warning: Los comentarios están desactivados en estos momentos, solo las administradoras pueden responder o publicar nuevos.
108
119
  comment_details_title: Detalles del comentario
120
+ in_favor: A favor
109
121
  loading: Cargando los comentarios ...
110
122
  single_comment_warning: <a href="%{url}">Ver todos los comentarios</a>
111
123
  single_comment_warning_title: Estás viendo un solo comentario
112
124
  title:
113
125
  one: "%{count} comentario"
114
126
  other: "%{count} comentarios"
127
+ top_comment_label: Mejor valorado
115
128
  down_vote_button:
116
129
  text: No estoy de acuerdo con este comentario
117
130
  edit_comment_modal_form:
@@ -124,6 +137,26 @@ es:
124
137
  title: Edita tu comentario
125
138
  up_vote_button:
126
139
  text: Estoy de acuerdo con este comentario
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: La id del comentario que se va valoró
144
+ created_at: La fecha y la hora en que se valoró este comentario
145
+ id: La id de la valoración del comentario
146
+ updated_at: La fecha y hora de la última actualización de la valoración de este comentario
147
+ weight: El peso de la valoración (1 a favor, -1 en contra)
148
+ comments:
149
+ alignment: Si este comentario fue a favor, en contra o neutral
150
+ author: El nombre usuaria de la participante que hizo este comentario
151
+ body: El comentario en sí
152
+ commentable_id: El identificador único de aquello que se podía comentar
153
+ commentable_type: La tipología de aquello sobre lo que se realizó el comentario (si fue un resultado, una propuesta, etc.)
154
+ created_at: La fecha en la que se creó este comentario
155
+ depth: El lugar donde se encuentra este comentario en la terna de comentarios (si es una respuesta a un comentario, o la respuesta de una respuesta)
156
+ id: El identificador de este comentario
157
+ locale: La configuración regional (idioma) que la participante tenía al dejar este comentario
158
+ root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
159
+ user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
@@ -17,6 +17,10 @@ eu:
17
17
  one: Babesa
18
18
  other: Babesak
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Iruzkinak
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ eu:
39
43
  error: Arazo bat dago iruzkina bozkatzeko.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: Sortu kontu bat <a href="%{sign_in_url}">Log in</a> edo <a href="%{sign_up_url}"> </a> zure iruzkina gehitzeko.
46
+ account_message: Sartu edo sortu kontu bat zure iruzkina gehitzeko.
47
+ add_comment: Gehitu iruzkina
43
48
  form:
44
49
  body:
45
50
  label: Iruzkina
@@ -49,6 +54,7 @@ eu:
49
54
  submit_root_comment: Iruzkina argitaratu
50
55
  user_group_id:
51
56
  label: 'Egin iruzkina honako honen gisa:'
57
+ your_profile: Zure profila
52
58
  opinion:
53
59
  label: Zure iritzia gai honi buruz
54
60
  negative: Negatiboa
@@ -64,6 +70,9 @@ eu:
64
70
  alignment:
65
71
  against: Aurka
66
72
  in_favor: Alde
73
+ answers:
74
+ one: "Erantzun %{count}"
75
+ other: "%{count} erantzun"
67
76
  cancel_reply: Erantzuna ezabatu
68
77
  comment_label: Iruzkindu %{comment_id}
69
78
  comment_label_reply: Iruzkindu %{comment_id} (erantzun %{parent_comment_id} iruzkinei)
@@ -81,19 +90,20 @@ eu:
81
90
  reply: Erantzuna
82
91
  report:
83
92
  action: Salatu
84
- already_reported: Eduki hau jada salatuta dago, eta administratzaile batek.
93
+ already_reported: Eduki horren berri eman da eta administratzaile batek berrikusiko du.
85
94
  close: Itxi
86
95
  description: Eduki hau desegokia da?
87
96
  details: Iruzkin gehigarriak
88
97
  reasons:
89
98
  does_not_belong: Bertan badago legez kontrako jardunik, suizidio-mehatxurik, informazio pertsonalik edo beste zernahi, zure ustez %{organization_name}-ri ez dagokionik.
90
- offensive: Ertan badago arrazakeriarik, sexismorik, irainik, eraso pertsonalik, heriotza-mehatxurik, suizidio-eskaerarik edo beste edozein eratako gorroto-diskurtsorik.
99
+ offensive: Arrazakeria, sexismoa, laidoak, eraso pertsonalak, heriotza-mehatxuak, suizidio eskaerak edo gorrotozko edozein diskurtso.
91
100
  spam: Bertan badago clickbait-ik, publizitaterik edo iruzurrik.
92
101
  title: Jakinarazi eduki desegokia
93
102
  show_replies:
94
103
  one: Erakutsi erantzuna
95
104
  other: Erakutsi %{count} erantzunak
96
105
  single_comment_link_title: Lortu esteka
106
+ sort_by: 'Nork sortua:'
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Balorazio onenak
@@ -102,16 +112,19 @@ eu:
102
112
  recent: Berrienak
103
113
  title: 'Ordenatu honen arabera:'
104
114
  comments:
105
- blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkina egiteko, baina aurreko iruzkinak irakur ditzakezu.
115
+ against: Aurka
116
+ blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkin bat egiteko, baina aurreko iruzkinak irakur ditzakezu.
106
117
  blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
107
- blocked_comments_warning: Iruzkinak desgaituta daude une honetan, baina aurrekoak irakur ditzakezu.
118
+ blocked_comments_warning: Iruzkinak desaktibatuta daude, administratzaileek soilik erantzun dezakete edo berriak argitaratu.
108
119
  comment_details_title: Iruzkinaren xehetasunak
120
+ in_favor: Alde
109
121
  loading: Iruzkinak kargatzen...
110
122
  single_comment_warning: <a href="%{url}">k erakusten ditu iruzkin guztiak</a>
111
123
  single_comment_warning_title: Iruzkin bakar bat ikusten ari zara
112
124
  title:
113
125
  one: "Iruzkin bat"
114
126
  other: "%{count} iruzkin"
127
+ top_comment_label: Bozkatuenak
115
128
  down_vote_button:
116
129
  text: Ez nago ados iruzkin honekin
117
130
  edit_comment_modal_form:
@@ -124,12 +137,32 @@ eu:
124
137
  title: Editatu zure iruzkina
125
138
  up_vote_button:
126
139
  text: Ados nago iruzkin honekin
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: Bozkatutako iruzkinaren identifikazioa
144
+ created_at: Zein datatan sortu zen bozketa hau
145
+ id: Babesaren identifikazioa
146
+ updated_at: Zein datatan eguneratu zen azken aldiz bozketa hau
147
+ weight: Babesaren balioa (1 boto gehiago, -1 boto gutxiago)
148
+ comments:
149
+ alignment: Iruzkin hau aldekoa bazen, kontrakoa edo neutrala
150
+ author: Iruzkin hau egin duen parte-hartzailearen izena
151
+ body: Iruzkina bera
152
+ commentable_id: Iruzkingarriaren identifikazio bakarra
153
+ commentable_type: Iruzkingarri mota (emaitza, proposamena... bazen)
154
+ created_at: Zein datatan sortu zen iruzkin hau
155
+ depth: Zein lekutan dago iruzkin hau hiru iruzkinetan (iruzkinaren erantzuna bada edo erantzunaren erantzuna bada)
156
+ id: Identifikazioa iruzkin honetarako
157
+ locale: Parte-hartzaileak iruzkin hau uztean erabili du tokiko hizkuntza
158
+ root_commentable_url: Iruzkin honekin lotzen den baliabidearen URLa (web helbidea)
159
+ user_group: Iruzkin hau egin duen partaide-taldearen izena (baldin badago)
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
130
163
  email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
131
164
  email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
132
- email_subject: '%{author_name} k beste iruzkin bat egin du hemen: %{resource_title}'
165
+ email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
133
166
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>-an.'
134
167
  comment_by_followed_user_group:
135
168
  email_intro: '%{author_name} k iruzkin bat utzi du hemen %{resource_title}. Orrialde honetan irakur dezakezu:'
@@ -139,23 +172,23 @@ eu:
139
172
  comment_created:
140
173
  email_intro: "%{resource_title} iruzkindu da. Orri honetan irakur dezakezu iruzkina:"
141
174
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
142
- email_subject: '%{author_name} k beste iruzkin berri bat egin du hemen: %{resource_title}'
175
+ email_subject: '%{author_name} egileak beste iruzkin berri bat egin du hemen: %{resource_title}'
143
176
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a></a>'
144
177
  comment_downvoted:
145
178
  email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} babes positibo eta %{downvotes} boto negatibo dituzu guztira.
146
179
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
147
- email_subject: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da.
148
- notification_title: Zure <a href="%{resource_path}">iruzkina</a> hemen "%{resource_title}" negatiboki bozkatu da. Orain guztira %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu.
180
+ email_subject: Zure iruzkina hemen "%{resource_title}" ez da norbaiten gustukoa izan.
181
+ notification_title: Zure <a href="%{resource_path}">iruzkinak</a> hemen "%{resource_title}" kontrako botoa izan du. Orain guztira %{upvotes} aldeko eta %{downvotes} kontrako boto dituzu.
149
182
  comment_upvoted:
150
- email_intro: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da. Orain guztira %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu.
183
+ email_intro: Zure iruzkina hemen "%{resource_title}" norbaiten gustukoa izan da. Orain guztira %{upvotes} atsegin eta %{downvotes} ezatsegin dituzu.
151
184
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
152
- email_subject: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da.
153
- notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an positiboki bozkatu da. Orain guztira %{upvotes} botos positibo eta %{downvotes} boto negatibo dituzu.
185
+ email_subject: Zure iruzkina hemen "%{resource_title}" norbaiten gustukoa izan da.
186
+ notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an norbaiten gustukoa izan da. Orain guztira %{upvotes} atsegin eta %{downvotes} ezatsegin dituzu.
154
187
  reply_created:
155
188
  email_intro: "%{author_name} egileak zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
156
189
  email_outro: Jakinarazpen hau jaso duzu zure iruzkina erantzun delako.
157
190
  email_subject: "%{author_name} k zure iruzkina erantzun du hemen: %{resource_title}"
158
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio <a href="%{resource_path}">%{resource_title}</a>
191
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio hemen <a href="%{resource_path}">%{resource_title}</a>
159
192
  user_group_mentioned:
160
193
  email_intro: Zure talde bat aipatu dute
161
194
  email_outro: '%{resource_title}-an aipatutako %{group_name} taldeko kidea zarelako jaso duzu jakinarazpen hau.'