decidim-comments 0.25.0.rc3 → 0.25.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/comments/comments_cell.rb +2 -0
- data/app/views/decidim/comments/comments/update.js.erb +18 -4
- data/config/locales/ca.yml +18 -0
- data/config/locales/de.yml +18 -0
- data/config/locales/el.yml +44 -1
- data/config/locales/es-MX.yml +18 -0
- data/config/locales/es-PY.yml +18 -0
- data/config/locales/es.yml +18 -0
- data/config/locales/eu.yml +58 -0
- data/config/locales/ga-IE.yml +51 -0
- data/config/locales/lb.yml +162 -0
- data/config/locales/pl.yml +18 -0
- data/config/locales/pt.yml +46 -3
- data/config/locales/ro-RO.yml +60 -60
- data/config/locales/si-LK.yml +20 -0
- data/lib/decidim/comments/comments_helper.rb +4 -3
- data/lib/decidim/comments/engine.rb +4 -0
- data/lib/decidim/comments/version.rb +1 -1
- data/lib/tasks/decidim_comments.rake +12 -1
- metadata +14 -14
- data/app/assets/javascripts/decidim/comments/bundle.js.map +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1e3298db6f46520ee3aec73dfd157903fdd6c2d04df4aecaa2f12adaa7459b8
|
4
|
+
data.tar.gz: bed10b00feb2030206840417606cdb319e6c7b22c1a43bd97aaffa5f4b38c285
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f93e2ace868d629d78f279ff19fae6abe67c9bee71c177dc2cb22b1c96a76b78834722b118f7206f210b9c28ff2f3126b57c68f84a5cb9fe49bd307275edd38f
|
7
|
+
data.tar.gz: 609fd4dea72997a20dfea7570d2524a5f9a614521dde027fce2bec1cb696d5458ade26a7bb1e2697fe0bb27029b9a1de459060c00929c10f056a5e6f4719db29
|
@@ -1,8 +1,22 @@
|
|
1
1
|
$(() => {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
var rootCommentableId = <%== "comments-for-#{@comment.commentable.commentable_type.demodulize}-#{@comment.commentable.id}".to_json %>;
|
3
|
+
var $comments = $("#" + rootCommentableId);
|
4
|
+
var config = $comments.data("decidim-comments");
|
5
|
+
|
6
|
+
component = new Decidim.CommentsComponent($comments, config);
|
7
|
+
component.unmountComponent();
|
8
|
+
|
9
|
+
var commentHtml = '<%== j(render partial: "edited_comment", locals: { comment: @comment }).strip %>';
|
10
|
+
var commentId = <%= @comment.id.to_json %>;
|
11
|
+
var $comment = $("#comment_<%= @comment.id %>");
|
6
12
|
|
7
13
|
$comment.replaceWith(commentHtml);
|
14
|
+
|
15
|
+
$comments = $("#" + rootCommentableId);
|
16
|
+
$comments.foundation();
|
17
|
+
|
18
|
+
// Re-create the component
|
19
|
+
component = new Decidim.CommentsComponent($comments, $comments.data("decidim-comments"));
|
20
|
+
component.mountComponent();
|
21
|
+
$comments.data("comments", component);
|
8
22
|
});
|
data/config/locales/ca.yml
CHANGED
@@ -19,6 +19,10 @@ ca:
|
|
19
19
|
comments:
|
20
20
|
create:
|
21
21
|
error: S'ha produït un error en crear el comentari.
|
22
|
+
delete:
|
23
|
+
error: El comentari no s'ha pogut eliminar.
|
24
|
+
update:
|
25
|
+
error: S'ha produït un error en actualitzar el comentari.
|
22
26
|
comments_count: Número de comentaris
|
23
27
|
comments_title: Comentaris
|
24
28
|
last_activity:
|
@@ -53,7 +57,12 @@ ca:
|
|
53
57
|
alignment:
|
54
58
|
against: En contra
|
55
59
|
in_favor: A favor
|
60
|
+
confirm_destroy: Segur que vols esborrar aquest comentari?
|
61
|
+
delete: Esborrar
|
62
|
+
deleted_at: Comentari esborrat el %{date}
|
56
63
|
deleted_user: Participant eliminada
|
64
|
+
edit: Editar
|
65
|
+
edited: Editat
|
57
66
|
hide_replies: Oculta les respostes
|
58
67
|
reply: Respondre
|
59
68
|
report:
|
@@ -68,6 +77,7 @@ ca:
|
|
68
77
|
spam: Conté "clickbait", publicitat o estafes.
|
69
78
|
title: Notificar contingut inapropiat
|
70
79
|
show_replies: Mostra %{replies_count} respostes
|
80
|
+
single_comment_link_title: Obtenir enllaç
|
71
81
|
comment_order_selector:
|
72
82
|
order:
|
73
83
|
best_rated: Més ben valorats
|
@@ -90,6 +100,14 @@ ca:
|
|
90
100
|
other: "%{count} comentaris"
|
91
101
|
down_vote_button:
|
92
102
|
text: No estic d'acord amb aquest comentari
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Tancar
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Comentar
|
108
|
+
placeholder: Què opines sobre això?
|
109
|
+
submit: Enviar
|
110
|
+
title: Edita el teu comentari
|
93
111
|
up_vote_button:
|
94
112
|
text: Estic d'acord amb aquest comentari
|
95
113
|
events:
|
data/config/locales/de.yml
CHANGED
@@ -19,6 +19,10 @@ de:
|
|
19
19
|
comments:
|
20
20
|
create:
|
21
21
|
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
22
|
+
delete:
|
23
|
+
error: Die Sendung konnte nicht gelöscht werden.
|
24
|
+
update:
|
25
|
+
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
22
26
|
comments_count: Kommentaranzahl
|
23
27
|
comments_title: Kommentare
|
24
28
|
last_activity:
|
@@ -53,7 +57,12 @@ de:
|
|
53
57
|
alignment:
|
54
58
|
against: Gegen
|
55
59
|
in_favor: Zugunsten
|
60
|
+
confirm_destroy: Bist du sicher, dass du diesen Kommentar löschen willst?
|
61
|
+
delete: Löschen
|
62
|
+
deleted_at: Kommentar gelöscht am %{date}
|
56
63
|
deleted_user: Gelöschter Benutzer
|
64
|
+
edit: Bearbeiten
|
65
|
+
edited: Bearbeitet
|
57
66
|
hide_replies: Antworten verbergen
|
58
67
|
reply: Antworten
|
59
68
|
report:
|
@@ -68,6 +77,7 @@ de:
|
|
68
77
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
69
78
|
title: Ungeeigneten Inhalt melden
|
70
79
|
show_replies: '%{replies_count} Antworten anzeigen'
|
80
|
+
single_comment_link_title: Link erhalten
|
71
81
|
comment_order_selector:
|
72
82
|
order:
|
73
83
|
best_rated: Am besten bewertet
|
@@ -90,6 +100,14 @@ de:
|
|
90
100
|
other: "%{count} Kommentare"
|
91
101
|
down_vote_button:
|
92
102
|
text: Ich bin mit diesem Kommentar nicht einverstanden
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Schliessen
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Kommentar
|
108
|
+
placeholder: Was denken Sie darüber?
|
109
|
+
submit: Senden
|
110
|
+
title: Kommentar bearbeiten
|
93
111
|
up_vote_button:
|
94
112
|
text: Ich stimme diesem Kommentar zu
|
95
113
|
events:
|
data/config/locales/el.yml
CHANGED
@@ -16,9 +16,18 @@ el:
|
|
16
16
|
other: Ψήφοι
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Υπήρξε ένα πρόβλημα στη δημιουργία του σχολίου.
|
22
|
+
delete:
|
23
|
+
error: Το σχόλιο δεν μπορούσε να διαγραφεί.
|
24
|
+
update:
|
25
|
+
error: Υπήρξε ένα πρόβλημα στην ενημέρωση του σχολίου.
|
19
26
|
comments_count: Αριθμός σχολίων
|
27
|
+
comments_title: Σχόλια
|
20
28
|
last_activity:
|
21
29
|
new_comment_at_html: "<span>Νέο σχόλιο στο %{link}</span>"
|
30
|
+
view: Προβολή
|
22
31
|
votes:
|
23
32
|
create:
|
24
33
|
error: Υπήρξε ένα πρόβλημα κατά την ψηφοφορία του σχολίου.
|
@@ -34,7 +43,13 @@ el:
|
|
34
43
|
user_group_id:
|
35
44
|
label: Σχόλιο ως
|
36
45
|
opinion:
|
37
|
-
|
46
|
+
label: Η γνώμη σας για το θέμα αυτό
|
47
|
+
negative: Αρνητική
|
48
|
+
negative_selected: Η γνώμη σας για το θέμα αυτό είναι αρνητική
|
49
|
+
neutral: Ουδέτερη
|
50
|
+
neutral_selected: Η γνώμη σας για το θέμα αυτό είναι ουδέτερη
|
51
|
+
positive: Θετική
|
52
|
+
positive_selected: Η γνώμη σας για το θέμα αυτό είναι θετική
|
38
53
|
remaining_characters: "%{count} χαρακτήρες απομένουν"
|
39
54
|
remaining_characters_1: "%{count} χαρακτήρας απομένει"
|
40
55
|
title: Προσθέστε το σχόλιό σας
|
@@ -42,7 +57,12 @@ el:
|
|
42
57
|
alignment:
|
43
58
|
against: Κατά
|
44
59
|
in_favor: Υπέρ
|
60
|
+
confirm_destroy: Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σχόλιο;
|
61
|
+
delete: Διαγραφή
|
62
|
+
deleted_at: Σχόλιο διεγράφη στις %{date}
|
45
63
|
deleted_user: Διαγραμμένος συμμετέχων
|
64
|
+
edit: Επεξεργασία
|
65
|
+
edited: Επεξεργασμένο
|
46
66
|
hide_replies: Απόκρυψη απαντήσεων
|
47
67
|
reply: Απάντηση
|
48
68
|
report:
|
@@ -57,6 +77,7 @@ el:
|
|
57
77
|
spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
|
58
78
|
title: Αναφορά ακατάλληλου περιεχομένου
|
59
79
|
show_replies: Εμφάνιση %{replies_count} απαντήσεων
|
80
|
+
single_comment_link_title: Αποκτήστε σύνδεσμο
|
60
81
|
comment_order_selector:
|
61
82
|
order:
|
62
83
|
best_rated: Με την καλύτερη βαθμολογία
|
@@ -67,14 +88,26 @@ el:
|
|
67
88
|
comment_thread:
|
68
89
|
title: Συζήτηση με τον συντάκτη %{authorName}
|
69
90
|
comments:
|
91
|
+
blocked_comments_for_unauthorized_user_warning: Πρέπει να επαληθευτείτε για να σχολιάσετε αυτή τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα.
|
70
92
|
blocked_comments_for_user_warning: Δεν μπορείτε να σχολιάσετε αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
|
71
93
|
blocked_comments_warning: Τα σχόλια είναι απενεργοποιημένα αυτήν τη στιγμή, αλλά μπορείτε να διαβάσετε τα προηγούμενα σχόλια.
|
72
94
|
comment_details_title: Λεπτομέρειες σχολίων
|
73
95
|
loading: Φόρτωση σχολίων...
|
74
96
|
single_comment_warning: Μπορείτε να δείτε τα υπόλοιπα σχόλια <a href="%{url}">εδώ</a>.
|
75
97
|
single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
|
98
|
+
title:
|
99
|
+
one: "%{count} σχόλιο"
|
100
|
+
other: "%{count} σχόλια"
|
76
101
|
down_vote_button:
|
77
102
|
text: Δεν συμφωνώ με αυτό το σχόλιο
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Κλείσιμο
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Σχόλιο
|
108
|
+
placeholder: Τι πιστεύετε γι' αυτό;
|
109
|
+
submit: Αποστολή
|
110
|
+
title: Επεξεργαστείτε το σχόλιό σας
|
78
111
|
up_vote_button:
|
79
112
|
text: Συμφωνώ με αυτό το σχόλιο
|
80
113
|
events:
|
@@ -94,6 +127,16 @@ el:
|
|
94
127
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε το στοιχείο «%{resource_title}» ή τον συντάκτη του. Μπορείτε να σταματήσετε να την ακολουθείτε από τον προηγούμενο σύνδεσμο.
|
95
128
|
email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
|
96
129
|
notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη<a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
|
130
|
+
comment_downvoted:
|
131
|
+
email_intro: Το σχόλιό σας στο "%{resource_title}" έχει καταψηφιστεί. Τώρα έχει συνολικές ψήφους %{upvotes} υπέρ και %{downvotes} κατά.
|
132
|
+
email_outro: Λάβατε αυτή την ειδοποίηση επειδή είστε ο συγγραφέας αυτού του σχολίου.
|
133
|
+
email_subject: Το σχόλιό σας στο "%{resource_title}" έχει καταψηφιστεί.
|
134
|
+
notification_title: Το <a href="%{resource_path}">σχόλιό</a> σας στο "%{resource_title}" έχει καταψηφιστεί. Τώρα έχει συνολικές ψήφους %{upvotes} υπέρ και %{downvotes} κατά.
|
135
|
+
comment_upvoted:
|
136
|
+
email_intro: Το σχόλιό σας στο "%{resource_title}" έχει υπερψηφιστεί. Τώρα έχει συνολικές ψήφους %{upvotes} υπέρ και %{downvotes} κατά.
|
137
|
+
email_outro: Λάβατε αυτή την ειδοποίηση επειδή είστε ο συγγραφέας αυτού του σχολίου.
|
138
|
+
email_subject: Το σχόλιό σας στο "%{resource_title}" έχει υπςρψηφιστεί.
|
139
|
+
notification_title: Το <a href="%{resource_path}">σχόλιό</a> σας στο "%{resource_title}" έχει υπερψηφιστεί. Τώρα έχει συνολικές ψήφους %{upvotes} υπέρ και %{downvotes} κατά.
|
97
140
|
reply_created:
|
98
141
|
email_intro: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
|
99
142
|
email_outro: Λάβατε αυτήν την ειδοποίηση, επειδή το σχόλιό σας απαντήθηκε.
|
data/config/locales/es-MX.yml
CHANGED
@@ -19,6 +19,10 @@ es-MX:
|
|
19
19
|
comments:
|
20
20
|
create:
|
21
21
|
error: Se ha producido un error al crear el comentario.
|
22
|
+
delete:
|
23
|
+
error: El comentario no pudo ser eliminado.
|
24
|
+
update:
|
25
|
+
error: Se ha producido un error al actualizar el comentario.
|
22
26
|
comments_count: Número de comentarios
|
23
27
|
comments_title: Comentarios
|
24
28
|
last_activity:
|
@@ -53,7 +57,12 @@ es-MX:
|
|
53
57
|
alignment:
|
54
58
|
against: En contra
|
55
59
|
in_favor: A favor
|
60
|
+
confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
|
61
|
+
delete: Eliminar
|
62
|
+
deleted_at: Comentario eliminado el %{date}
|
56
63
|
deleted_user: Usuario eliminado
|
64
|
+
edit: Editar
|
65
|
+
edited: Editado
|
57
66
|
hide_replies: Ocultar respuestas
|
58
67
|
reply: Respuesta
|
59
68
|
report:
|
@@ -68,6 +77,7 @@ es-MX:
|
|
68
77
|
spam: Contiene clickbait, publicidad o estafas.
|
69
78
|
title: Notificar contenido inapropiado
|
70
79
|
show_replies: Mostrar %{replies_count} respuestas
|
80
|
+
single_comment_link_title: Obtener enlace
|
71
81
|
comment_order_selector:
|
72
82
|
order:
|
73
83
|
best_rated: Mejor valoración
|
@@ -90,6 +100,14 @@ es-MX:
|
|
90
100
|
other: "%{count} comentarios"
|
91
101
|
down_vote_button:
|
92
102
|
text: No estoy de acuerdo con este comentario
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Cerrar
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Comentario
|
108
|
+
placeholder: '¿Qué opinas sobre esto?'
|
109
|
+
submit: Enviar
|
110
|
+
title: Edita tu comentario
|
93
111
|
up_vote_button:
|
94
112
|
text: Estoy de acuerdo con este comentario
|
95
113
|
events:
|
data/config/locales/es-PY.yml
CHANGED
@@ -19,6 +19,10 @@ es-PY:
|
|
19
19
|
comments:
|
20
20
|
create:
|
21
21
|
error: Se ha producido un error al crear el comentario.
|
22
|
+
delete:
|
23
|
+
error: El comentario no pudo ser eliminado.
|
24
|
+
update:
|
25
|
+
error: Se ha producido un error al actualizar el comentario.
|
22
26
|
comments_count: Número de comentarios
|
23
27
|
comments_title: Comentarios
|
24
28
|
last_activity:
|
@@ -53,7 +57,12 @@ es-PY:
|
|
53
57
|
alignment:
|
54
58
|
against: En contra
|
55
59
|
in_favor: A favor
|
60
|
+
confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
|
61
|
+
delete: Eliminar
|
62
|
+
deleted_at: Comentario eliminado el %{date}
|
56
63
|
deleted_user: Usuario eliminado
|
64
|
+
edit: Editar
|
65
|
+
edited: Editado
|
57
66
|
hide_replies: Ocultar respuestas
|
58
67
|
reply: Respuesta
|
59
68
|
report:
|
@@ -68,6 +77,7 @@ es-PY:
|
|
68
77
|
spam: Contiene clickbait, publicidad o estafas.
|
69
78
|
title: Notificar contenido inapropiado
|
70
79
|
show_replies: Mostrar %{replies_count} respuestas
|
80
|
+
single_comment_link_title: Obtener enlace
|
71
81
|
comment_order_selector:
|
72
82
|
order:
|
73
83
|
best_rated: Mejor valoración
|
@@ -90,6 +100,14 @@ es-PY:
|
|
90
100
|
other: "%{count} comentarios"
|
91
101
|
down_vote_button:
|
92
102
|
text: No estoy de acuerdo con este comentario
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Cerrar
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Comentario
|
108
|
+
placeholder: '¿Qué opinas sobre esto?'
|
109
|
+
submit: Enviar
|
110
|
+
title: Edita tu comentario
|
93
111
|
up_vote_button:
|
94
112
|
text: Estoy de acuerdo con este comentario
|
95
113
|
events:
|
data/config/locales/es.yml
CHANGED
@@ -19,6 +19,10 @@ es:
|
|
19
19
|
comments:
|
20
20
|
create:
|
21
21
|
error: Se ha producido un error al crear el comentario.
|
22
|
+
delete:
|
23
|
+
error: El comentario no pudo ser eliminado.
|
24
|
+
update:
|
25
|
+
error: Se ha producido un error al actualizar el comentario.
|
22
26
|
comments_count: Número de comentarios
|
23
27
|
comments_title: Comentarios
|
24
28
|
last_activity:
|
@@ -53,7 +57,12 @@ es:
|
|
53
57
|
alignment:
|
54
58
|
against: En contra
|
55
59
|
in_favor: A favor
|
60
|
+
confirm_destroy: '¿Seguro que quieres eliminar este comentario?'
|
61
|
+
delete: Eliminar
|
62
|
+
deleted_at: Comentario eliminado el %{date}
|
56
63
|
deleted_user: Participante eliminada
|
64
|
+
edit: Editar
|
65
|
+
edited: Editado
|
57
66
|
hide_replies: Ocultar respuestas
|
58
67
|
reply: Respuesta
|
59
68
|
report:
|
@@ -68,6 +77,7 @@ es:
|
|
68
77
|
spam: Contiene clickbait, publicidad o estafas.
|
69
78
|
title: Notificar contenido inapropiado
|
70
79
|
show_replies: Mostrar %{replies_count} respuestas
|
80
|
+
single_comment_link_title: Obtener enlace
|
71
81
|
comment_order_selector:
|
72
82
|
order:
|
73
83
|
best_rated: Mejor valoración
|
@@ -90,6 +100,14 @@ es:
|
|
90
100
|
other: "%{count} comentarios"
|
91
101
|
down_vote_button:
|
92
102
|
text: No estoy de acuerdo con este comentario
|
103
|
+
edit_comment_modal_form:
|
104
|
+
close: Cerrar
|
105
|
+
form:
|
106
|
+
body:
|
107
|
+
label: Comentario
|
108
|
+
placeholder: '¿Qué opinas sobre esto?'
|
109
|
+
submit: Enviar
|
110
|
+
title: Edita tu comentario
|
93
111
|
up_vote_button:
|
94
112
|
text: Estoy de acuerdo con este comentario
|
95
113
|
events:
|
data/config/locales/eu.yml
CHANGED
@@ -16,8 +16,18 @@ eu:
|
|
16
16
|
other: Botoak
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Arazoa gertatu da iruzkina sortzean.
|
22
|
+
delete:
|
23
|
+
error: Iruzkina ezin izan da ezabatu.
|
24
|
+
update:
|
25
|
+
error: Arazoa gertatu da iruzkina eguneratzean.
|
26
|
+
comments_count: Iruzkin kopurua
|
27
|
+
comments_title: Iruzkinak
|
19
28
|
last_activity:
|
20
29
|
new_comment_at_html: "<span>Iruzkin berria %{link}</span>"
|
30
|
+
view: Bistaratu
|
21
31
|
votes:
|
22
32
|
create:
|
23
33
|
error: Erroreak gertatu dira iruzkina bozkatzean.
|
@@ -33,7 +43,13 @@ eu:
|
|
33
43
|
user_group_id:
|
34
44
|
label: 'Egin iruzkina honako honen gisa:'
|
35
45
|
opinion:
|
46
|
+
label: Zure iritzia gai honi buruz
|
47
|
+
negative: Negatiboa
|
48
|
+
negative_selected: Zure iritzia gai honi buruz negatiboa da
|
36
49
|
neutral: Neutrala
|
50
|
+
neutral_selected: Zure iritzia gai honi buruz neutroa da
|
51
|
+
positive: Positiboa
|
52
|
+
positive_selected: Zure iritzia gai honi buruz positiboa da
|
37
53
|
remaining_characters: "%{count} karaktere geratzen dira"
|
38
54
|
remaining_characters_1: "karaktere %{count} geratzen da"
|
39
55
|
title: Egin hemen zure iruzkina
|
@@ -41,7 +57,13 @@ eu:
|
|
41
57
|
alignment:
|
42
58
|
against: Aurka
|
43
59
|
in_favor: Alde
|
60
|
+
confirm_destroy: Ziur zaude iruzkin hau ezabatu nahi duzula?
|
61
|
+
delete: Ezabatu
|
62
|
+
deleted_at: Iruzkina ezabatu da data honetan %{date}
|
44
63
|
deleted_user: Erabiltzaile ezabatua
|
64
|
+
edit: Editatu
|
65
|
+
edited: Editatuta
|
66
|
+
hide_replies: Ezkutatu erantzunak
|
45
67
|
reply: Erantzuna
|
46
68
|
report:
|
47
69
|
action: Salatu
|
@@ -53,6 +75,9 @@ eu:
|
|
53
75
|
does_not_belong: Bertan badago legez kontrako jardunik, suizidio-mehatxurik, informazio pertsonalik edo beste zernahi, zure ustez %{organization_name}-ri ez dagokionik.
|
54
76
|
offensive: Ertan badago arrazakeriarik, sexismorik, irainik, eraso pertsonalik, heriotza-mehatxurik, suizidio-eskaerarik edo beste edozein eratako gorroto-diskurtsorik.
|
55
77
|
spam: Bertan badago clickbait-ik, publizitaterik edo iruzurrik.
|
78
|
+
title: Jakinarazi eduki desegokia
|
79
|
+
show_replies: Erakutsi %{replies_count} erantzun
|
80
|
+
single_comment_link_title: Lortu lotura
|
56
81
|
comment_order_selector:
|
57
82
|
order:
|
58
83
|
best_rated: Balorazio hoberenak
|
@@ -63,9 +88,25 @@ eu:
|
|
63
88
|
comment_thread:
|
64
89
|
title: 'Solasaldia honekin: %{authorName}'
|
65
90
|
comments:
|
91
|
+
blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkina egiteko, baina aurreko iruzkinak irakur ditzakezu.
|
66
92
|
blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
|
67
93
|
blocked_comments_warning: Iruzkinak desgaituta daude une honetan, baina aurrekoak irakur ditzakezu.
|
94
|
+
comment_details_title: Iruzkinaren xehetasunak
|
68
95
|
loading: Iruzkinak kargatzen...
|
96
|
+
single_comment_warning: Gainontzeko iruzkinak berrikusi ahal dituzu <a href="%{url}">hemen</a>.
|
97
|
+
single_comment_warning_title: Iruzkin bakar bat ikusten ari zara
|
98
|
+
down_vote_button:
|
99
|
+
text: Ez nago ados iruzkin honekin
|
100
|
+
edit_comment_modal_form:
|
101
|
+
close: Itxi
|
102
|
+
form:
|
103
|
+
body:
|
104
|
+
label: Iruzkina
|
105
|
+
placeholder: Zer deritzozu honi?
|
106
|
+
submit: Bidali
|
107
|
+
title: Editatu zure iruzkina
|
108
|
+
up_vote_button:
|
109
|
+
text: Ados nago iruzkin honekin
|
69
110
|
events:
|
70
111
|
comments:
|
71
112
|
comment_by_followed_user:
|
@@ -74,6 +115,8 @@ eu:
|
|
74
115
|
email_subject: '%{author_name} %{resource_title} iruzkin berri bat dago'
|
75
116
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago.
|
76
117
|
comment_by_followed_user_group:
|
118
|
+
email_intro: '%{author_name} k iruzkin bat utzi du hemen %{resource_title}. Orrialde honetan irakur dezakezu:'
|
119
|
+
email_outro: Jakinarazpena jaso duzu "%{author_name}" jarraitzen ari zarelako. Jarraitzeari utzi ahal diozu bere perfileko orrialdetik.
|
77
120
|
email_subject: '%{author_name} %{resource_title} iruzkin berri bat dago'
|
78
121
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago.
|
79
122
|
comment_created:
|
@@ -81,11 +124,26 @@ eu:
|
|
81
124
|
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
82
125
|
email_subject: '%{author_name} (r) en %{resource_title} iruzkin berri bat dago'
|
83
126
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a> </a> iruzkin berri bat dago
|
127
|
+
comment_downvoted:
|
128
|
+
email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu guztira.
|
129
|
+
email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
|
130
|
+
email_subject: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da.
|
131
|
+
notification_title: Zure iruzkina <a href="%{resource_path}">comentario</a> hemen "%{resource_title}" negatiboki bozkatu da. Orain guztira %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu.
|
132
|
+
comment_upvoted:
|
133
|
+
email_intro: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da. Orain guztira %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu.
|
134
|
+
email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
|
135
|
+
email_subject: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da.
|
136
|
+
notification_title: Zure iruzkina hemen <a href="%{resource_path}">comentario</a> en "%{resource_title}" positiboki bozkatu da. Orain guztira %{upvotes} botos positibo eta %{downvotes} boto negatibo dituzu.
|
84
137
|
reply_created:
|
85
138
|
email_intro: "%{author_name} zure iruzkina erantzun du %{resource_title}zenbakian. Orri honetan irakur dezakezu:"
|
86
139
|
email_outro: Jakinarazpen hau jaso duzu zure iruzkina erantzun delako.
|
87
140
|
email_subject: "%{author_name} zure iruzkina erantzun du %{resource_title} zenbakian"
|
88
141
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio <a href="%{resource_path}">%{resource_title}</a>
|
142
|
+
user_group_mentioned:
|
143
|
+
email_intro: Zu barne zauden talde bat aipatu da
|
144
|
+
email_outro: Jakinarazpen hau jaso duzu hemen %{resource_title} aipatu den %{group_name} taldearen kidea zarelako.
|
145
|
+
email_subject: Hemen %{resource_title} aipatu zaituzte %{group_name} taldearen kide gisa
|
146
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> k aipatu zaitu hemen <a href="%{resource_path}">%{resource_title}</a> <a href="%{group_path}">%{group_name} %{group_nickname}</a> taldearen kide gisa
|
89
147
|
user_mentioned:
|
90
148
|
email_intro: Esan zaizu
|
91
149
|
email_outro: Jakinarazpena jaso duzu %{resource_title} delakoan aipatu duzulako.
|
data/config/locales/ga-IE.yml
CHANGED
@@ -1 +1,52 @@
|
|
1
1
|
ga:
|
2
|
+
activemodel:
|
3
|
+
models:
|
4
|
+
decidim/comments/comment_by_followed_user_event: Trácht
|
5
|
+
decidim/comments/comment_created_event: Trácht
|
6
|
+
decidim/comments/user_group_mentioned_event: Luaigh
|
7
|
+
decidim/comments/user_mentioned_event: Luaigh
|
8
|
+
activerecord:
|
9
|
+
models:
|
10
|
+
decidim/comments/comment_vote:
|
11
|
+
one: Vóta
|
12
|
+
two: Vótaí
|
13
|
+
few: Vótaí
|
14
|
+
many: Vótaí
|
15
|
+
other: Vótaí
|
16
|
+
decidim:
|
17
|
+
comments:
|
18
|
+
comments_title: Tráchtanna
|
19
|
+
view: Amharc
|
20
|
+
components:
|
21
|
+
add_comment_form:
|
22
|
+
form:
|
23
|
+
body:
|
24
|
+
label: Trácht
|
25
|
+
submit: Seol
|
26
|
+
opinion:
|
27
|
+
neutral: Neodrach
|
28
|
+
comment:
|
29
|
+
alignment:
|
30
|
+
against: In Aghaidh
|
31
|
+
in_favor: I bhfabhar
|
32
|
+
delete: Scrios
|
33
|
+
edit: Eagar
|
34
|
+
edited: Curtha in eagar
|
35
|
+
reply: Freagra
|
36
|
+
report:
|
37
|
+
action: Tuairiscigh
|
38
|
+
close: Dún
|
39
|
+
comment_order_selector:
|
40
|
+
order:
|
41
|
+
older: Níos Sine
|
42
|
+
recent: Is Déanaí
|
43
|
+
edit_comment_modal_form:
|
44
|
+
close: Dún
|
45
|
+
form:
|
46
|
+
body:
|
47
|
+
label: Trácht
|
48
|
+
submit: Seol
|
49
|
+
metrics:
|
50
|
+
comments:
|
51
|
+
object: tráchtanna
|
52
|
+
title: Tráchtanna
|