decidim-comments 0.23.6 → 0.24.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/comments/comments.component.js.es6 +292 -0
- data/app/assets/javascripts/decidim/comments/comments.component.test.js +581 -0
- data/app/assets/javascripts/decidim/comments/comments.js.erb +1 -1
- data/app/cells/decidim/comments/comment/actions.erb +7 -0
- data/app/cells/decidim/comments/comment/alignment_badge.erb +4 -0
- data/app/cells/decidim/comments/comment/author.erb +1 -0
- data/app/cells/decidim/comments/comment/show.erb +40 -0
- data/app/cells/decidim/comments/comment/utilities.erb +13 -0
- data/app/cells/decidim/comments/comment/votes.erb +25 -0
- data/app/cells/decidim/comments/comment_card_cell.rb +22 -0
- data/app/cells/decidim/comments/comment_cell.rb +142 -8
- data/app/cells/decidim/comments/comment_form/comment_as.erb +10 -0
- data/app/cells/decidim/comments/comment_form/show.erb +24 -0
- data/app/cells/decidim/comments/comment_form_cell.rb +94 -0
- data/app/cells/decidim/comments/comment_m/top.erb +1 -1
- data/app/cells/decidim/comments/comment_thread/show.erb +6 -0
- data/app/cells/decidim/comments/comment_thread/title.erb +3 -0
- data/app/cells/decidim/comments/comment_thread_cell.rb +30 -0
- data/app/cells/decidim/comments/comments/add_comment.erb +30 -0
- data/app/cells/decidim/comments/comments/blocked_comments_warning.erb +3 -0
- data/app/cells/decidim/comments/comments/order_control.erb +37 -0
- data/app/cells/decidim/comments/comments/show.erb +32 -0
- data/app/cells/decidim/comments/comments/single_comment_warning.erb +9 -0
- data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +3 -0
- data/app/cells/decidim/comments/comments_cell.rb +134 -0
- data/app/commands/decidim/comments/vote_comment.rb +34 -10
- data/app/controllers/decidim/comments/application_controller.rb +16 -0
- data/app/controllers/decidim/comments/comments_controller.rb +122 -0
- data/app/controllers/decidim/comments/votes_controller.rb +41 -0
- data/app/events/decidim/comments/comment_created_event.rb +1 -1
- data/app/events/decidim/comments/comment_downvoted_event.rb +8 -0
- data/app/events/decidim/comments/comment_upvoted_event.rb +8 -0
- data/app/events/decidim/comments/comment_voted_event.rb +26 -0
- data/app/forms/decidim/comments/comment_form.rb +6 -2
- data/app/models/decidim/comments/comment.rb +22 -8
- data/app/models/decidim/comments/seed.rb +1 -1
- data/app/permissions/decidim/comments/permissions.rb +59 -0
- data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +2 -2
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +5 -6
- data/app/queries/decidim/comments/sorted_comments.rb +18 -14
- data/app/views/decidim/comments/comments/_comment.html.erb +5 -0
- data/app/views/decidim/comments/comments/_comments.html.erb +1 -0
- data/app/views/decidim/comments/comments/create.js.erb +16 -0
- data/app/views/decidim/comments/comments/error.js.erb +1 -0
- data/app/views/decidim/comments/comments/index.js.erb +24 -0
- data/app/views/decidim/comments/comments/reload.js.erb +21 -0
- data/app/views/decidim/comments/votes/create.js.erb +23 -0
- data/app/views/decidim/comments/votes/error.js.erb +1 -0
- data/config/locales/ar.yml +0 -2
- data/config/locales/ca.yml +7 -2
- data/config/locales/cs.yml +24 -7
- data/config/locales/de.yml +17 -2
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +17 -2
- data/config/locales/es-MX.yml +7 -2
- data/config/locales/es-PY.yml +7 -2
- data/config/locales/es.yml +7 -2
- data/config/locales/eu.yml +0 -2
- data/config/locales/fi-plain.yml +17 -2
- data/config/locales/fi.yml +17 -2
- data/config/locales/fr-CA.yml +17 -2
- data/config/locales/fr.yml +17 -2
- data/config/locales/gl.yml +7 -2
- data/config/locales/hu.yml +0 -2
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +4 -2
- data/config/locales/ja.yml +8 -4
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +0 -2
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +19 -2
- data/config/locales/pt-BR.yml +0 -2
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +0 -3
- data/config/locales/ru.yml +0 -2
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv.yml +7 -2
- data/config/locales/tr-TR.yml +7 -2
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -2
- data/lib/decidim/api/add_comment_type.rb +13 -0
- data/lib/decidim/api/comment_mutation_type.rb +22 -0
- data/lib/decidim/api/comment_type.rb +89 -0
- data/lib/decidim/api/commentable_interface.rb +50 -0
- data/lib/decidim/api/commentable_mutation_type.rb +30 -0
- data/{app/types/decidim/comments → lib/decidim/api}/commentable_type.rb +2 -5
- data/lib/decidim/comments/api.rb +12 -0
- data/lib/decidim/comments/comments_helper.rb +10 -52
- data/lib/decidim/comments/engine.rb +9 -7
- data/lib/decidim/comments/mutation_extensions.rb +22 -22
- data/lib/decidim/comments/query_extensions.rb +12 -14
- data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +65 -0
- data/lib/decidim/comments/test.rb +1 -0
- data/lib/decidim/comments/version.rb +1 -1
- data/lib/decidim/comments.rb +1 -3
- metadata +67 -66
- data/app/assets/javascripts/decidim/comments/bundle.js +0 -268
- data/app/frontend/application/apollo_client.ts +0 -12
- data/app/frontend/application/application.component.test.tsx +0 -23
- data/app/frontend/application/application.component.tsx +0 -35
- data/app/frontend/application/icon.component.test.tsx +0 -38
- data/app/frontend/application/icon.component.tsx +0 -46
- data/app/frontend/comments/add_comment_form.component.test.tsx +0 -265
- data/app/frontend/comments/add_comment_form.component.tsx +0 -482
- data/app/frontend/comments/comment.component.test.tsx +0 -490
- data/app/frontend/comments/comment.component.tsx +0 -677
- data/app/frontend/comments/comment_order_selector.component.test.tsx +0 -29
- data/app/frontend/comments/comment_order_selector.component.tsx +0 -106
- data/app/frontend/comments/comment_thread.component.test.tsx +0 -82
- data/app/frontend/comments/comment_thread.component.tsx +0 -81
- data/app/frontend/comments/comments.component.test.tsx +0 -150
- data/app/frontend/comments/comments.component.tsx +0 -289
- data/app/frontend/comments/down_vote_button.component.test.tsx +0 -59
- data/app/frontend/comments/down_vote_button.component.tsx +0 -133
- data/app/frontend/comments/up_vote_button.component.test.tsx +0 -59
- data/app/frontend/comments/up_vote_button.component.tsx +0 -133
- data/app/frontend/comments/vote_button.component.tsx +0 -50
- data/app/frontend/comments/vote_button_component.test.tsx +0 -64
- data/app/frontend/entry.ts +0 -38
- data/app/frontend/entry_test.ts +0 -6
- data/app/frontend/fragments/add_comment_form_commentable.fragment.graphql +0 -4
- data/app/frontend/fragments/add_comment_form_session.fragment.graphql +0 -6
- data/app/frontend/fragments/comment.fragment.graphql +0 -14
- data/app/frontend/fragments/comment_data.fragment.graphql +0 -27
- data/app/frontend/fragments/comment_thread.fragment.graphql +0 -6
- data/app/frontend/fragments/down_vote_button.fragment.graphql +0 -6
- data/app/frontend/fragments/up_vote_button.fragment.graphql +0 -6
- data/app/frontend/mutations/add_comment.mutation.graphql +0 -9
- data/app/frontend/mutations/down_vote.mutation.graphql +0 -9
- data/app/frontend/mutations/up_vote.mutation.graphql +0 -9
- data/app/frontend/queries/comments.query.graphql +0 -26
- data/app/frontend/support/asset_url.ts +0 -11
- data/app/frontend/support/generate_comments_data.ts +0 -49
- data/app/frontend/support/generate_user_data.ts +0 -14
- data/app/frontend/support/generate_user_group_data.ts +0 -14
- data/app/frontend/support/graphql_transformer.js +0 -32
- data/app/frontend/support/load_translations.ts +0 -48
- data/app/frontend/support/require_all.ts +0 -10
- data/app/frontend/support/resolve_graphql_query.ts +0 -37
- data/app/frontend/support/schema.ts +0 -2026
- data/app/types/decidim/comments/commentable_interface.rb +0 -61
- data/app/types/decidim/comments/commentable_mutation_type.rb +0 -33
- data/lib/decidim/comments/api/add_comment_type.rb +0 -13
- data/lib/decidim/comments/api/comment_mutation_type.rb +0 -20
- data/lib/decidim/comments/api/comment_type.rb +0 -89
data/config/locales/cs.yml
CHANGED
@@ -20,8 +20,11 @@ cs:
|
|
20
20
|
other: Hlasy
|
21
21
|
decidim:
|
22
22
|
comments:
|
23
|
-
comments:
|
23
|
+
comments:
|
24
|
+
create:
|
25
|
+
error: Při vytváření komentáře došlo k chybě.
|
24
26
|
comments_count: Počet komentářů
|
27
|
+
comments_title: Komentáře
|
25
28
|
last_activity:
|
26
29
|
new_comment_at_html: "<span>Nový komentář v %{link}</span>"
|
27
30
|
view: Zobrazit
|
@@ -80,7 +83,11 @@ cs:
|
|
80
83
|
loading: Načítání komentářů ...
|
81
84
|
single_comment_warning: Můžete zkontrolovat zbytek komentářů <a href="%{url}">zde</a>.
|
82
85
|
single_comment_warning_title: Vidíte jeden komentář
|
83
|
-
title:
|
86
|
+
title:
|
87
|
+
one: "%{count} komentář"
|
88
|
+
few: "%{count} komentáře"
|
89
|
+
many: "%{count} komentářů"
|
90
|
+
other: "%{count} komentářů"
|
84
91
|
down_vote_button:
|
85
92
|
text: Nesouhlasím s tímto komentářem
|
86
93
|
up_vote_button:
|
@@ -91,22 +98,32 @@ cs:
|
|
91
98
|
email_intro: "%{author_name} zanechal komentář v %{resource_title}. Můžete si je přečíst na této stránce:"
|
92
99
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{author_name}. Tento uživatel můžete zrušit ze své profilové stránky.
|
93
100
|
email_subject: K dispozici je nový komentář %{author_name} v %{resource_title}
|
94
|
-
notification_title:
|
101
|
+
notification_title: K dispozici je nový komentář <a href="%{author_path}">%{author_name} %{author_nickname}</a> v <a href="%{resource_path}">%{resource_title}</a>.
|
95
102
|
comment_by_followed_user_group:
|
96
103
|
email_intro: 'Skupina %{author_name} zanechala komentář v %{resource_title}. Můžete si jej přečíst na této stránce:'
|
97
104
|
email_outro: Obdrželi jste toto oznámení, protože sledujete %{author_name}. Můžete zrušit sledování této skupiny na její profilové stránce.
|
98
105
|
email_subject: K dispozici je nový komentář %{author_name} v %{resource_title}
|
99
|
-
notification_title:
|
106
|
+
notification_title: K dispozici je nový komentář <a href="%{author_path}">%{author_name} %{author_nickname}</a> v <a href="%{resource_path}">%{resource_title}</a>.
|
100
107
|
comment_created:
|
101
108
|
email_intro: "%{resource_title} bylo komentováno. Můžete si přečíst komentář na této stránce:"
|
102
109
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali "%{resource_title}" nebo jeho autora. Můžete jej odhlásit od předchozího odkazu.
|
103
110
|
email_subject: K dispozici je nový komentář od %{author_name} do %{resource_title}
|
104
|
-
notification_title: Je
|
111
|
+
notification_title: Je zde nový komentář od <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>
|
112
|
+
comment_downvoted:
|
113
|
+
email_intro: Váš komentář v "%{resource_title}" byl nepodpořen. Nyní má celkem %{upvotes} hlasů podpory a %{downvotes} hlasuje proti.
|
114
|
+
email_outro: Obdrželi jste toto oznámení, protože jste autorem tohoto komentáře.
|
115
|
+
email_subject: Váš komentář v "%{resource_title}" byl hlasováním nepodpořen.
|
116
|
+
notification_title: Váš <a href="%{resource_path}">komentář</a> v "%{resource_title}" byl nepodpořen. Nyní má celkem %{upvotes} hlasů pro podporu a %{downvotes} hlasuje proti.
|
117
|
+
comment_upvoted:
|
118
|
+
email_intro: Váš komentář v "%{resource_title}" byl hlasováním podpořen. Nyní má celkem %{upvotes} kladných hlasů a %{downvotes} hlasuje proti.
|
119
|
+
email_outro: Obdrželi jste toto oznámení, protože jste autorem tohoto komentáře.
|
120
|
+
email_subject: Váš komentář v "%{resource_title}" byl podpořen hlasem.
|
121
|
+
notification_title: Váš <a href="%{resource_path}">komentář</a> v "%{resource_title}" byl podpořen. Nyní má celkem %{upvotes} hlasů pro a %{downvotes} hlasuje proti.
|
105
122
|
reply_created:
|
106
123
|
email_intro: "%{author_name} odpověděl váš komentář v %{resource_title}. Můžete si je přečíst na této stránce:"
|
107
124
|
email_outro: Toto oznámení jste obdrželi, protože váš komentář byl zodpovězen.
|
108
125
|
email_subject: "%{author_name} odpověděl váš komentář v %{resource_title}"
|
109
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> odpověděl
|
126
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> odpověděl / a svůj komentář v <a href="%{resource_path}">%{resource_title}</a>
|
110
127
|
user_group_mentioned:
|
111
128
|
email_intro: Byla zmíněna skupina, do které patříte
|
112
129
|
email_outro: Obdrželi jste toto oznámení, protože jste členem skupiny %{group_name}, která byla zmíněna v %{resource_title}.
|
@@ -116,7 +133,7 @@ cs:
|
|
116
133
|
email_intro: Byl jste zmíněn
|
117
134
|
email_outro: Toto oznámení jste obdrželi, protože jste byli uvedeni v %{resource_title}.
|
118
135
|
email_subject: Byl jste zmíněn v %{resource_title}
|
119
|
-
notification_title: Byli jste
|
136
|
+
notification_title: Byli jste uvedeni v <a href="%{resource_path}">%{resource_title}</a> podle <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
120
137
|
metrics:
|
121
138
|
comments:
|
122
139
|
description: Počet komentářů generovaných uživateli
|
data/config/locales/de.yml
CHANGED
@@ -16,8 +16,11 @@ de:
|
|
16
16
|
other: Stimmen
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Beim Erstellen des Kommentars ist ein Fehler aufgetreten.
|
20
22
|
comments_count: Kommentaranzahl
|
23
|
+
comments_title: Kommentare
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Neuer Kommentar unter %{link}</span>"
|
23
26
|
view: Ansicht
|
@@ -76,7 +79,9 @@ de:
|
|
76
79
|
loading: Kommentare werden geladen ...
|
77
80
|
single_comment_warning: Sie können die restlichen Kommentare <a href="%{url}">hier</a> prüfen.
|
78
81
|
single_comment_warning_title: Ihnen wird ein einzelner Kommentar angezeigt
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} Kommentar"
|
84
|
+
other: "%{count} Kommentare"
|
80
85
|
down_vote_button:
|
81
86
|
text: Ich bin mit diesem Kommentar nicht einverstanden
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ de:
|
|
98
103
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" oder seinem Autor folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
99
104
|
email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
|
100
105
|
notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> zu <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Ihr Kommentar in "%{resource_title}" wurde negativ bewertet. Er hat nun insgesamt %{upvotes} positive und %{downvotes} negative Stimmen.
|
108
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
|
109
|
+
email_subject: Ihr Kommentar in "%{resource_title}" wurde negativ bewertet.
|
110
|
+
notification_title: Ihr <a href="%{resource_path}">Kommentar</a> in "%{resource_title}" wurde negativ bewertet. Er hat nun insgesamt %{upvotes} positive und %{downvotes} negative Stimmen.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Ihr Kommentar in "%{resource_title}" wurde positiv bewertet. Er hat nun insgesamt %{upvotes} positive und %{downvotes} negative Stimmen.
|
113
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
|
114
|
+
email_subject: Ihr Kommentar in "%{resource_title}" wurde positiv bewertet.
|
115
|
+
notification_title: Ihr <a href="%{resource_path}">Kommentar</a> in "%{resource_title}" wurde positiv bewertet. Er hat nun insgesamt %{upvotes} positive und %{downvotes} negative Stimmen.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet. Sie können das auf dieser Seite lesen:"
|
103
118
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
|
data/config/locales/el.yml
CHANGED
@@ -16,7 +16,6 @@ el:
|
|
16
16
|
other: Ψήφοι
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Σχόλια
|
20
19
|
comments_count: Αριθμός σχολίων
|
21
20
|
last_activity:
|
22
21
|
new_comment_at_html: "<span>Νέο σχόλιο στο %{link}</span>"
|
@@ -75,7 +74,6 @@ el:
|
|
75
74
|
loading: Φόρτωση σχολίων...
|
76
75
|
single_comment_warning: Μπορείτε να δείτε τα υπόλοιπα σχόλια <a href="%{url}">εδώ</a>.
|
77
76
|
single_comment_warning_title: Βλέπετε ένα μόνο σχόλιο
|
78
|
-
title: "%{count} σχόλια"
|
79
77
|
down_vote_button:
|
80
78
|
text: Δεν συμφωνώ με αυτό το σχόλιο
|
81
79
|
up_vote_button:
|
data/config/locales/en.yml
CHANGED
@@ -17,8 +17,11 @@ en:
|
|
17
17
|
other: Votes
|
18
18
|
decidim:
|
19
19
|
comments:
|
20
|
-
comments:
|
20
|
+
comments:
|
21
|
+
create:
|
22
|
+
error: There was a problem creating the comment.
|
21
23
|
comments_count: Comments count
|
24
|
+
comments_title: Comments
|
22
25
|
last_activity:
|
23
26
|
new_comment_at_html: "<span>New comment at %{link}</span>"
|
24
27
|
view: View
|
@@ -77,7 +80,9 @@ en:
|
|
77
80
|
loading: Loading comments ...
|
78
81
|
single_comment_warning: You can check the rest of the comments <a href="%{url}">here</a>.
|
79
82
|
single_comment_warning_title: You are seeing a single comment
|
80
|
-
title:
|
83
|
+
title:
|
84
|
+
one: "%{count} comment"
|
85
|
+
other: "%{count} comments"
|
81
86
|
down_vote_button:
|
82
87
|
text: I disagree with this comment
|
83
88
|
up_vote_button:
|
@@ -99,6 +104,16 @@ en:
|
|
99
104
|
email_outro: You have received this notification because you are following "%{resource_title}" or its author. You can unfollow it from the previous link.
|
100
105
|
email_subject: There is a new comment from %{author_name} in %{resource_title}
|
101
106
|
notification_title: There is a new comment from <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>
|
107
|
+
comment_downvoted:
|
108
|
+
email_intro: Your comment in "%{resource_title}" has been downvoted. It now has a total of %{upvotes} upvotes and %{downvotes} downvotes.
|
109
|
+
email_outro: You have received this notification because you are the author of this comment.
|
110
|
+
email_subject: Your comment in "%{resource_title}" has been downvoted.
|
111
|
+
notification_title: Your <a href="%{resource_path}">comment</a> in "%{resource_title}" has been downvoted. It now has a total of %{upvotes} upvotes and %{downvotes} downvotes.
|
112
|
+
comment_upvoted:
|
113
|
+
email_intro: Your comment in "%{resource_title}" has been upvoted. It now has a total of %{upvotes} upvotes and %{downvotes} downvotes.
|
114
|
+
email_outro: You have received this notification because you are the author of this comment.
|
115
|
+
email_subject: Your comment in "%{resource_title}" has been upvoted.
|
116
|
+
notification_title: Your <a href="%{resource_path}">comment</a> in "%{resource_title}" has been upvoted. It now has a total of %{upvotes} upvotes and %{downvotes} downvotes.
|
102
117
|
reply_created:
|
103
118
|
email_intro: "%{author_name} has replied your comment in %{resource_title}. You can read it in this page:"
|
104
119
|
email_outro: You have received this notification because your comment was replied.
|
data/config/locales/es-MX.yml
CHANGED
@@ -16,8 +16,11 @@ es-MX:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Se ha producido un error al crear el comentario.
|
20
22
|
comments_count: Número de comentarios
|
23
|
+
comments_title: Comentarios
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
|
23
26
|
view: Ver
|
@@ -76,7 +79,9 @@ es-MX:
|
|
76
79
|
loading: Cargando los comentarios ...
|
77
80
|
single_comment_warning: Puedes revisar el resto de los comentarios <a href="%{url}">aquí</a>.
|
78
81
|
single_comment_warning_title: Estás viendo un solo comentario
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} comentario"
|
84
|
+
other: "%{count} comentarios"
|
80
85
|
down_vote_button:
|
81
86
|
text: No estoy de acuerdo con este comentario
|
82
87
|
up_vote_button:
|
data/config/locales/es-PY.yml
CHANGED
@@ -16,8 +16,11 @@ es-PY:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Se ha producido un error al crear el comentario.
|
20
22
|
comments_count: Número de comentarios
|
23
|
+
comments_title: Comentarios
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
|
23
26
|
view: Ver
|
@@ -76,7 +79,9 @@ es-PY:
|
|
76
79
|
loading: Cargando los comentarios ...
|
77
80
|
single_comment_warning: Puedes revisar el resto de los comentarios <a href="%{url}">aquí</a>.
|
78
81
|
single_comment_warning_title: Estás viendo un solo comentario
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} comentario"
|
84
|
+
other: "%{count} comentarios"
|
80
85
|
down_vote_button:
|
81
86
|
text: No estoy de acuerdo con este comentario
|
82
87
|
up_vote_button:
|
data/config/locales/es.yml
CHANGED
@@ -16,8 +16,11 @@ es:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Se ha producido un error al crear el comentario.
|
20
22
|
comments_count: Número de comentarios
|
23
|
+
comments_title: Comentarios
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nuevo comentario en %{link}</span>"
|
23
26
|
view: Ver
|
@@ -76,7 +79,9 @@ es:
|
|
76
79
|
loading: Cargando los comentarios ...
|
77
80
|
single_comment_warning: Puedes revisar el resto de los comentarios <a href="%{url}">aquí</a>.
|
78
81
|
single_comment_warning_title: Estás viendo un solo comentario
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} comentario"
|
84
|
+
other: "%{count} comentarios"
|
80
85
|
down_vote_button:
|
81
86
|
text: No estoy de acuerdo con este comentario
|
82
87
|
up_vote_button:
|
data/config/locales/eu.yml
CHANGED
@@ -16,7 +16,6 @@ eu:
|
|
16
16
|
other: Botoak
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Oharrak
|
20
19
|
last_activity:
|
21
20
|
new_comment_at_html: "<span>Iruzkin berria %{link}</span>"
|
22
21
|
votes:
|
@@ -67,7 +66,6 @@ eu:
|
|
67
66
|
blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
|
68
67
|
blocked_comments_warning: Iruzkinak desgaituta daude une honetan, baina aurrekoak irakur ditzakezu.
|
69
68
|
loading: Iruzkinak kargatzen...
|
70
|
-
title: "%{count} iruzkin"
|
71
69
|
events:
|
72
70
|
comments:
|
73
71
|
comment_by_followed_user:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -16,8 +16,11 @@ fi-pl:
|
|
16
16
|
other: Äänet
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Kommentin luotaessa tapahtui virhe.
|
20
22
|
comments_count: Kommenttien määrä
|
23
|
+
comments_title: Kommentit
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Uusi kommentti osoitteessa %{link}</span>"
|
23
26
|
view: Näytä
|
@@ -76,7 +79,9 @@ fi-pl:
|
|
76
79
|
loading: Ladataan kommentteja ...
|
77
80
|
single_comment_warning: Voit katsoa loput kommentit <a href="%{url}">täältä</a>.
|
78
81
|
single_comment_warning_title: Näet yhden kommentin
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} kommentti"
|
84
|
+
other: "%{count} kommenttia"
|
80
85
|
down_vote_button:
|
81
86
|
text: Olen eri mieltä tämän kommentin kanssa
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fi-pl:
|
|
98
103
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
99
104
|
email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
|
100
105
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
108
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
|
109
|
+
email_subject: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen.
|
110
|
+
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Kommenttisi kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
113
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
|
114
|
+
email_subject: Kommenttisi kohteessa "%{resource_title}" sai äänen.
|
115
|
+
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
|
103
118
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
|
data/config/locales/fi.yml
CHANGED
@@ -16,8 +16,11 @@ fi:
|
|
16
16
|
other: Äänet
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Kommentin luotaessa tapahtui virhe.
|
20
22
|
comments_count: Kommenttien määrä
|
23
|
+
comments_title: Kommentit
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Uusi kommentti osoitteessa %{link}</span>"
|
23
26
|
view: Näytä
|
@@ -76,7 +79,9 @@ fi:
|
|
76
79
|
loading: Ladataan kommentteja ...
|
77
80
|
single_comment_warning: Voit katsoa loput kommentit <a href="%{url}">täältä</a>.
|
78
81
|
single_comment_warning_title: Näet yhden kommentin
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} kommentti"
|
84
|
+
other: "%{count} kommenttia"
|
80
85
|
down_vote_button:
|
81
86
|
text: Olen eri mieltä tämän kommentin kanssa
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fi:
|
|
98
103
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
99
104
|
email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
|
100
105
|
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
108
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
|
109
|
+
email_subject: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen.
|
110
|
+
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Kommenttisi kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
113
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
|
114
|
+
email_subject: Kommenttisi kohteessa "%{resource_title}" sai äänen.
|
115
|
+
notification_title: <a href="%{resource_path}">Kommenttisi</a> kohteessa "%{resource_title}" sai äänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
|
103
118
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -16,8 +16,11 @@ fr-CA:
|
|
16
16
|
other: Votes
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Une erreur s'est produite lors de la création du commentaire.
|
20
22
|
comments_count: Nombre de commentaires
|
23
|
+
comments_title: Commentaires
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
|
23
26
|
view: Voir
|
@@ -76,7 +79,9 @@ fr-CA:
|
|
76
79
|
loading: Chargement des commentaires ...
|
77
80
|
single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
|
78
81
|
single_comment_warning_title: Vous ne voyez qu'un seul commentaire
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} commentaire"
|
84
|
+
other: "%{count} commentaires"
|
80
85
|
down_vote_button:
|
81
86
|
text: Je ne suis pas d'accord avec ce commentaire
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fr-CA:
|
|
98
103
|
email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Vous pouvez vous désabonner à partir du lien précédant.
|
99
104
|
email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
|
100
105
|
notification_title: Un nouveau commentaire de <a href="%{author_path}">%{author_name} %{author_nickname}</a> vient d'être publié dans <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
|
108
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
109
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable.
|
110
|
+
notification_title: Votre <a href="%{resource_path}">commentaire</a> sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et de %{downvotes} votes négatifs.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Votre commentaire dans "%{resource_title}" a reçu un vote favorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
|
113
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
114
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote favorable.
|
115
|
+
notification_title: Votre <a href="%{resource_path}">commentaire</a> sur "%{resource_title}" a reçu un vote favorable. Il a maintenant un total de %{upvotes} votes positifs et de %{downvotes} votes négatifs.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
|
103
118
|
email_outro: Vous venez de recevoir une notification à votre commentaire.
|
data/config/locales/fr.yml
CHANGED
@@ -16,8 +16,11 @@ fr:
|
|
16
16
|
other: Votes
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Une erreur s'est produite lors de la création du commentaire.
|
20
22
|
comments_count: Nombre de commentaires
|
23
|
+
comments_title: Commentaires
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nouveau commentaire à %{link}</span>"
|
23
26
|
view: Voir
|
@@ -76,7 +79,9 @@ fr:
|
|
76
79
|
loading: Chargement des commentaires ...
|
77
80
|
single_comment_warning: Vous pouvez accéder au reste des commentaires <a href="%{url}">ici</a>.
|
78
81
|
single_comment_warning_title: Vous ne voyez qu'un seul commentaire
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} commentaire"
|
84
|
+
other: "%{count} commentaires"
|
80
85
|
down_vote_button:
|
81
86
|
text: Je ne suis pas d'accord avec ce commentaire
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ fr:
|
|
98
103
|
email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Vous pouvez vous désabonner à partir du lien précédant.
|
99
104
|
email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
|
100
105
|
notification_title: Un nouveau commentaire de <a href="%{author_path}">%{author_name} %{author_nickname}</a> vient d'être publié dans <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
|
108
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
109
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable.
|
110
|
+
notification_title: Votre <a href="%{resource_path}">commentaire</a> sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et de %{downvotes} votes négatifs.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Votre commentaire dans "%{resource_title}" a reçu un vote favorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
|
113
|
+
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
|
114
|
+
email_subject: Votre commentaire sur "%{resource_title}" a reçu un vote favorable.
|
115
|
+
notification_title: Votre <a href="%{resource_path}">commentaire</a> sur "%{resource_title}" a reçu un vote favorable. Il a maintenant un total de %{upvotes} votes positifs et de %{downvotes} votes négatifs.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
|
103
118
|
email_outro: Vous venez de recevoir une notification à votre commentaire.
|
data/config/locales/gl.yml
CHANGED
@@ -16,8 +16,11 @@ gl:
|
|
16
16
|
other: Votos
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Produciuse un problema ao crear o comentario.
|
20
22
|
comments_count: Número de comentarios
|
23
|
+
comments_title: Comentarios
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Novo comentario en %{link}</span>"
|
23
26
|
view: Ver
|
@@ -76,7 +79,9 @@ gl:
|
|
76
79
|
loading: Cargando comentarios ...
|
77
80
|
single_comment_warning: Podes revisar os comentarios restantes <a href="%{url}">aquí</a>.
|
78
81
|
single_comment_warning_title: Estás a ver un único comentario
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} comentario"
|
84
|
+
other: "%{count} comentarios"
|
80
85
|
down_vote_button:
|
81
86
|
text: Non estou de acordo con este comentario
|
82
87
|
up_vote_button:
|
data/config/locales/hu.yml
CHANGED
@@ -16,7 +16,6 @@ hu:
|
|
16
16
|
other: Szavazatok
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Hozzászólások
|
20
19
|
last_activity:
|
21
20
|
new_comment_at_html: "<span>Új megjegyzés: %{link}</span>"
|
22
21
|
votes:
|
@@ -73,7 +72,6 @@ hu:
|
|
73
72
|
loading: Hozzászólások betöltése ...
|
74
73
|
single_comment_warning: A többi hozzászólást <a href="%{url}">itt</a> ellenőrizheti.
|
75
74
|
single_comment_warning_title: Egyetlen megjegyzést látsz
|
76
|
-
title: "%{count} megjegyzés"
|
77
75
|
events:
|
78
76
|
comments:
|
79
77
|
comment_by_followed_user:
|
data/config/locales/id-ID.yml
CHANGED
@@ -14,7 +14,6 @@ id:
|
|
14
14
|
other: Voting
|
15
15
|
decidim:
|
16
16
|
comments:
|
17
|
-
comments: Komentar
|
18
17
|
last_activity:
|
19
18
|
new_comment_at_html: "<span>Komentar baru di %{link}</span>"
|
20
19
|
votes:
|
@@ -65,7 +64,6 @@ id:
|
|
65
64
|
blocked_comments_for_user_warning: Anda tidak dapat berkomentar saat ini, tetapi Anda dapat membaca yang sebelumnya.
|
66
65
|
blocked_comments_warning: Komentar dinonaktifkan saat ini, tetapi Anda dapat membaca yang sebelumnya.
|
67
66
|
loading: Memuat komentar ...
|
68
|
-
title: "%{count} komentar"
|
69
67
|
events:
|
70
68
|
comments:
|
71
69
|
comment_by_followed_user:
|
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -16,8 +16,11 @@ it:
|
|
16
16
|
other: voti
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: Ci sono stati problemi durante la creazione del commento.
|
20
22
|
comments_count: Conteggio dei Commenti
|
23
|
+
comments_title: Commenti
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nuovo commento al %{link}</span>"
|
23
26
|
view: Visualizza
|
@@ -76,7 +79,6 @@ it:
|
|
76
79
|
loading: Sto caricando i commenti ...
|
77
80
|
single_comment_warning: Puoi controllare il resto dei commenti <a href="%{url}">qui</a>.
|
78
81
|
single_comment_warning_title: Stai vedendo un singolo commento
|
79
|
-
title: "%{count} commenti"
|
80
82
|
down_vote_button:
|
81
83
|
text: Non sono d'accordo con questo commento
|
82
84
|
up_vote_button:
|
data/config/locales/ja.yml
CHANGED
@@ -14,8 +14,11 @@ ja:
|
|
14
14
|
other: 投票
|
15
15
|
decidim:
|
16
16
|
comments:
|
17
|
-
comments:
|
17
|
+
comments:
|
18
|
+
create:
|
19
|
+
error: コメントの登録に問題がありました。
|
18
20
|
comments_count: コメント数
|
21
|
+
comments_title: コメント
|
19
22
|
last_activity:
|
20
23
|
new_comment_at_html: "<span> %{link}に新しいコメント</span>"
|
21
24
|
view: 表示
|
@@ -72,9 +75,10 @@ ja:
|
|
72
75
|
blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
|
73
76
|
comment_details_title: コメントの詳細
|
74
77
|
loading: コメントを読み込んでいます...
|
75
|
-
single_comment_warning:
|
76
|
-
single_comment_warning_title:
|
77
|
-
title:
|
78
|
+
single_comment_warning: コメントの残りはこちら <a href="%{url}"></a>で確認できます。
|
79
|
+
single_comment_warning_title: 単一のコメントが表示されています
|
80
|
+
title:
|
81
|
+
other: "%{count} 件のコメント"
|
78
82
|
down_vote_button:
|
79
83
|
text: このコメントに同意しません
|
80
84
|
up_vote_button:
|
data/config/locales/lv.yml
CHANGED
@@ -18,7 +18,6 @@ lv:
|
|
18
18
|
other: Balsis
|
19
19
|
decidim:
|
20
20
|
comments:
|
21
|
-
comments: Komentāri
|
22
21
|
last_activity:
|
23
22
|
new_comment_at_html: "<span>Jauns komentārs %{link}</span>"
|
24
23
|
votes:
|
@@ -75,7 +74,6 @@ lv:
|
|
75
74
|
loading: Notiek komentāru ielāde ...
|
76
75
|
single_comment_warning: Pārējos komentārus varat aplūkot <a href="%{url}">šeit</a>.
|
77
76
|
single_comment_warning_title: Jūs redzat vienu komentāru
|
78
|
-
title: "%{count} komentāri"
|
79
77
|
events:
|
80
78
|
comments:
|
81
79
|
comment_by_followed_user:
|
data/config/locales/nl.yml
CHANGED
@@ -16,7 +16,6 @@ nl:
|
|
16
16
|
other: Stemmen
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Reacties
|
20
19
|
comments_count: Aantal reacties
|
21
20
|
last_activity:
|
22
21
|
new_comment_at_html: "<span>Nieuwe opmerking op %{link}</span>"
|
@@ -76,7 +75,6 @@ nl:
|
|
76
75
|
loading: Reacties laden...
|
77
76
|
single_comment_warning: U kunt de rest van de reacties <a href="%{url}">hier</a> controleren.
|
78
77
|
single_comment_warning_title: Je ziet een enkele reactie
|
79
|
-
title: "%{count} reacties"
|
80
78
|
down_vote_button:
|
81
79
|
text: Ik ben het niet eens met deze reactie
|
82
80
|
up_vote_button:
|
data/config/locales/no.yml
CHANGED
@@ -16,7 +16,6 @@
|
|
16
16
|
other: Stemmer
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments: Kommentarer
|
20
19
|
comments_count: Antall kommentarer
|
21
20
|
last_activity:
|
22
21
|
new_comment_at_html: "<span>Ny kommentar på %{link}</span>"
|
@@ -75,7 +74,6 @@
|
|
75
74
|
loading: Laster inn kommenterer ...
|
76
75
|
single_comment_warning: Du kan sjekke resten av kommentarene <a href="%{url}">her</a>.
|
77
76
|
single_comment_warning_title: Du ser en enkelt kommentar
|
78
|
-
title: "%{count} kommentarer"
|
79
77
|
down_vote_button:
|
80
78
|
text: Jeg er uenig med denne kommentaren
|
81
79
|
up_vote_button:
|
data/config/locales/pl.yml
CHANGED
@@ -20,8 +20,11 @@ pl:
|
|
20
20
|
other: Głosy
|
21
21
|
decidim:
|
22
22
|
comments:
|
23
|
-
comments:
|
23
|
+
comments:
|
24
|
+
create:
|
25
|
+
error: Wystąpił błąd podczas tworzenia komentarza.
|
24
26
|
comments_count: Liczba komentarzy
|
27
|
+
comments_title: Komentarze
|
25
28
|
last_activity:
|
26
29
|
new_comment_at_html: "<span>Nowy komentarz do %{link}</span>"
|
27
30
|
view: Zobacz
|
@@ -80,7 +83,11 @@ pl:
|
|
80
83
|
loading: Ładowanie komentarzy ...
|
81
84
|
single_comment_warning: Resztę komentarzy możesz sprawdzić <a href="%{url}">tutaj</a>.
|
82
85
|
single_comment_warning_title: Wyświetlasz teraz pojedynczy komentarz
|
83
|
-
title:
|
86
|
+
title:
|
87
|
+
one: "%{count} komentarz"
|
88
|
+
few: "%{count} komentarze"
|
89
|
+
many: "%{count} komentarzy"
|
90
|
+
other: "%{count} komentarze"
|
84
91
|
down_vote_button:
|
85
92
|
text: Nie zgadzam się z tym komentarzem
|
86
93
|
up_vote_button:
|
@@ -102,6 +109,16 @@ pl:
|
|
102
109
|
email_outro: Otrzymujesz to powiadomienie, ponieważ obserwujesz "%{resource_title}" lub jego autora. Możesz przestać go obserwować po kliknięciu w poprzedni link.
|
103
110
|
email_subject: Jest nowy komentarz od %{author_name} do %{resource_title}
|
104
111
|
notification_title: Pojawił się nowy komentarz <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>
|
112
|
+
comment_downvoted:
|
113
|
+
email_intro: Twój komentarz do "%{resource_title}" dostał głos przeciw. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
114
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem komentarza.
|
115
|
+
email_subject: Twój komentarz w "%{resource_title}" dostał głos przeciw.
|
116
|
+
notification_title: Twój <a href="%{resource_path}">comment</a> do "%{resource_title}" dostał głos przeciw. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
117
|
+
comment_upvoted:
|
118
|
+
email_intro: Twój komentarz do "%{resource_title}" dostał głos za. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
119
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem komentarza.
|
120
|
+
email_subject: Twój komentarz w "%{resource_title}" dostał głos za.
|
121
|
+
notification_title: Twój <a href="%{resource_path}">comment</a> do "%{resource_title}" dostał głos za. Teraz ma %{upvotes} głosów za i %{downvotes} głosów przeciw.
|
105
122
|
reply_created:
|
106
123
|
email_intro: "%{author_name} odpowiedział na Twój komentarz do %{resource_title}. Możesz przeczytać go na tej stronie:"
|
107
124
|
email_outro: Otrzymałeś to powiadomienie, ponieważ odpowiedziano na Twój komentarz.
|