decidim-comments 0.23.1 → 0.24.0.rc2
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_event.rb +0 -15
- 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 +33 -11
- 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 +17 -2
- data/config/locales/cs.yml +20 -3
- data/config/locales/de.yml +46 -30
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +17 -2
- data/config/locales/es-MX.yml +17 -2
- data/config/locales/es-PY.yml +17 -2
- data/config/locales/es.yml +17 -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 +20 -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 +5 -2
- data/config/locales/ja.yml +14 -10
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +7 -9
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +22 -4
- data/config/locales/pt-BR.yml +0 -2
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +0 -2
- data/config/locales/ru.yml +0 -2
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv.yml +7 -2
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +60 -35
- 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.rb +1 -3
- 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.rb +1 -0
- data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +65 -0
- data/lib/decidim/comments/version.rb +1 -1
- metadata +72 -69
- 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
@@ -0,0 +1 @@
|
|
1
|
+
alert(<%== I18n.t("votes.create.error", scope: "decidim.comments").to_json %>);
|
data/config/locales/ar.yml
CHANGED
@@ -24,7 +24,6 @@ ar:
|
|
24
24
|
other: الأصوات
|
25
25
|
decidim:
|
26
26
|
comments:
|
27
|
-
comments: تعليقات
|
28
27
|
last_activity:
|
29
28
|
new_comment_at_html: "<span>تعليق جديد على %{link}</span>"
|
30
29
|
votes:
|
@@ -81,7 +80,6 @@ ar:
|
|
81
80
|
loading: جارٍ تحميل التعليقات ...
|
82
81
|
single_comment_warning: يمكنك الإطلاع على التعليقات المتبقية الأخرى <a href="%{url}">هنا</a>.
|
83
82
|
single_comment_warning_title: إنك ترى تعليقا واحدا
|
84
|
-
title: "%{count} تعليقات"
|
85
83
|
events:
|
86
84
|
comments:
|
87
85
|
comment_by_followed_user:
|
data/config/locales/ca.yml
CHANGED
@@ -16,8 +16,11 @@ ca:
|
|
16
16
|
other: Vots
|
17
17
|
decidim:
|
18
18
|
comments:
|
19
|
-
comments:
|
19
|
+
comments:
|
20
|
+
create:
|
21
|
+
error: S'ha produït un error en crear el comentari.
|
20
22
|
comments_count: Número de comentaris
|
23
|
+
comments_title: Comentaris
|
21
24
|
last_activity:
|
22
25
|
new_comment_at_html: "<span>Nou comentari a %{link}</span>"
|
23
26
|
view: Mostrar
|
@@ -76,7 +79,9 @@ ca:
|
|
76
79
|
loading: Carregant els comentaris ...
|
77
80
|
single_comment_warning: Pots revisar la resta de comentaris <a href="%{url}">aquí</a>.
|
78
81
|
single_comment_warning_title: Estàs veient un sol comentari
|
79
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} comentari"
|
84
|
+
other: "%{count} comentaris"
|
80
85
|
down_vote_button:
|
81
86
|
text: No estic d'acord amb aquest comentari
|
82
87
|
up_vote_button:
|
@@ -98,6 +103,16 @@ ca:
|
|
98
103
|
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
|
99
104
|
email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
|
100
105
|
notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: El teu comentari a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
108
|
+
email_outro: Has rebut aquesta notificació perquè ets autora d'aquest comentari.
|
109
|
+
email_subject: El teu comentari a "%{resource_title}" ha rebut un vot negatiu.
|
110
|
+
notification_title: El teu <a href="%{resource_path}">comentari</a> a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: El teu comentari a "%{resource_title}" ha rebut un vot positiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
113
|
+
email_outro: Has rebut aquesta notificació perquè ets autora d'aquest comentari.
|
114
|
+
email_subject: El teu comentari a "%{resource_title}" ha rebut un vot positiu.
|
115
|
+
notification_title: El teu <a href="%{resource_path}">comentari</a> a "%{resource_title}" ha rebut un vot positiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
|
103
118
|
email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
|
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
|
@@ -67,7 +70,7 @@ cs:
|
|
67
70
|
comment_order_selector:
|
68
71
|
order:
|
69
72
|
best_rated: Nejlépe hodnocené
|
70
|
-
most_discussed:
|
73
|
+
most_discussed: Nejvíce diskutované
|
71
74
|
older: Starší
|
72
75
|
recent: Nedávné
|
73
76
|
title: 'Seřadit podle:'
|
@@ -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:
|
@@ -102,6 +109,16 @@ cs:
|
|
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
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.
|
data/config/locales/de.yml
CHANGED
@@ -16,45 +16,49 @@ 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>"
|
26
|
+
view: Ansicht
|
23
27
|
votes:
|
24
28
|
create:
|
25
29
|
error: Beim Abstimmen des Kommentars sind Fehler aufgetreten.
|
26
30
|
components:
|
27
31
|
add_comment_form:
|
28
|
-
account_message: <a href="%{sign_in_url}">Melden Sie sich mit Ihrem Konto an</a> oder <a href="%{sign_up_url}">
|
32
|
+
account_message: <a href="%{sign_in_url}">Melden Sie sich mit Ihrem Konto an</a> oder <a href="%{sign_up_url}">registrieren Sie sich</a>, um Ihren Kommentar hinzuzufügen.
|
29
33
|
form:
|
30
34
|
body:
|
31
35
|
label: Kommentar
|
32
|
-
placeholder: Was
|
36
|
+
placeholder: Was denken Sie darüber?
|
33
37
|
form_error: Der Text ist erforderlich und darf nicht länger als %{length} Zeichen sein.
|
34
38
|
submit: Senden
|
35
39
|
user_group_id:
|
36
|
-
label:
|
40
|
+
label: Kommentieren als
|
37
41
|
opinion:
|
38
42
|
neutral: Neutral
|
39
43
|
remaining_characters: "%{count} Zeichen übrig"
|
40
44
|
remaining_characters_1: "%{count} Zeichen übrig"
|
41
|
-
title:
|
45
|
+
title: Kommentar hinzufügen
|
42
46
|
comment:
|
43
47
|
alignment:
|
44
48
|
against: Gegen
|
45
49
|
in_favor: Zugunsten
|
46
50
|
deleted_user: Gelöschter Benutzer
|
47
|
-
hide_replies: Antworten
|
51
|
+
hide_replies: Antworten verbergen
|
48
52
|
reply: Antworten
|
49
53
|
report:
|
50
|
-
action:
|
54
|
+
action: Melden
|
51
55
|
already_reported: Dieser Inhalt wurde bereits gemeldet und wird von einem Administrator überprüft.
|
52
56
|
close: Schließen
|
53
57
|
description: Ist dieser Inhalt unangemessen?
|
54
58
|
details: Zusätzliche Kommentare
|
55
59
|
reasons:
|
56
|
-
does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name}.
|
57
|
-
offensive: Enthält Rassismus, Sexismus,
|
60
|
+
does_not_belong: Enthält illegale Aktivitäten, Selbstmorddrohungen, persönliche Informationen oder etwas anderes, von dem Sie denken, dass es nicht auf %{organization_name} gehört.
|
61
|
+
offensive: Enthält Rassismus, Sexismus, Verleumdungen, persönliche Angriffe, Morddrohungen, Selbstmordanträge oder jegliche Form von Hassreden.
|
58
62
|
spam: Enthält Clickbait, Werbung, Scams oder Script Bots.
|
59
63
|
title: Ungeeigneten Inhalt melden
|
60
64
|
show_replies: '%{replies_count} Antworten anzeigen'
|
@@ -63,8 +67,8 @@ de:
|
|
63
67
|
order:
|
64
68
|
best_rated: Am besten bewertet
|
65
69
|
most_discussed: Meist diskutiert
|
66
|
-
older:
|
67
|
-
recent: Kürzlich
|
70
|
+
older: Chronologisch
|
71
|
+
recent: Kürzlich hinzugefügt
|
68
72
|
title: 'Sortieren nach:'
|
69
73
|
comment_thread:
|
70
74
|
title: Konversation mit %{authorName}
|
@@ -75,7 +79,9 @@ de:
|
|
75
79
|
loading: Kommentare werden geladen ...
|
76
80
|
single_comment_warning: Sie können die restlichen Kommentare <a href="%{url}">hier</a> prüfen.
|
77
81
|
single_comment_warning_title: Ihnen wird ein einzelner Kommentar angezeigt
|
78
|
-
title:
|
82
|
+
title:
|
83
|
+
one: "%{count} Kommentar"
|
84
|
+
other: "%{count} Kommentare"
|
79
85
|
down_vote_button:
|
80
86
|
text: Ich bin mit diesem Kommentar nicht einverstanden
|
81
87
|
up_vote_button:
|
@@ -83,35 +89,45 @@ de:
|
|
83
89
|
events:
|
84
90
|
comments:
|
85
91
|
comment_by_followed_user:
|
86
|
-
email_intro: "%{author_name} hat einen Kommentar
|
87
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name}. Sie
|
88
|
-
email_subject:
|
89
|
-
notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
92
|
+
email_intro: "%{author_name} hat einen Kommentar zu %{resource_title} hinterlassen. Sie können diesen auf dieser Seite lesen:"
|
93
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie die Profil-Seite dieses Benutzers.
|
94
|
+
email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
|
95
|
+
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>.
|
90
96
|
comment_by_followed_user_group:
|
91
|
-
email_intro: 'Die Gruppe %{author_name} hat einen Kommentar in %{resource_title} hinterlassen. Sie können
|
92
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Sie
|
93
|
-
email_subject:
|
94
|
-
notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
97
|
+
email_intro: 'Die Gruppe %{author_name} hat einen Kommentar in %{resource_title} hinterlassen. Sie können diesen auf dieser Seite lesen:'
|
98
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie die Profil-Seite dieser Gruppe.
|
99
|
+
email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
|
100
|
+
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>.
|
95
101
|
comment_created:
|
96
102
|
email_intro: "%{resource_title} wurde kommentiert. Sie können den Kommentar auf dieser Seite lesen:"
|
97
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" oder seinem Autor folgen. Sie
|
98
|
-
email_subject:
|
99
|
-
notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
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.
|
104
|
+
email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
|
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.
|
100
116
|
reply_created:
|
101
|
-
email_intro: "%{author_name} hat Ihren Kommentar
|
117
|
+
email_intro: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet. Sie können das auf dieser Seite lesen:"
|
102
118
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
|
103
|
-
email_subject: "%{author_name} hat Ihren Kommentar
|
104
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a>geantwortet
|
119
|
+
email_subject: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet"
|
120
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat auf Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a> geantwortet
|
105
121
|
user_group_mentioned:
|
106
122
|
email_intro: Eine Ihrer Gruppen wurde erwähnt
|
107
123
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Mitglied der Gruppe %{group_name} sind, die in %{resource_title} erwähnt wurde.
|
108
124
|
email_subject: Sie wurden in %{resource_title} als Mitglied von %{group_name} erwähnt
|
109
125
|
notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> als ein Mitglied von <a href="%{group_path}">%{group_name} %{group_nickname}</a> erwähnt
|
110
126
|
user_mentioned:
|
111
|
-
email_intro:
|
112
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title}.
|
113
|
-
email_subject:
|
114
|
-
notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
127
|
+
email_intro: Sie wurden erwähnt
|
128
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title} erwähnt wurden.
|
129
|
+
email_subject: Sie wurden in %{resource_title} erwähnt
|
130
|
+
notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> erwähnt
|
115
131
|
metrics:
|
116
132
|
comments:
|
117
133
|
description: Anzahl der von Benutzern generierten Kommentare
|
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:
|
@@ -98,6 +103,16 @@ es-MX:
|
|
98
103
|
email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
|
99
104
|
email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
|
100
105
|
notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
108
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
109
|
+
email_subject: Su comentario en "%{resource_title}" ha sido votado negativamente.
|
110
|
+
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Tu comentario en "%{resource_title}" ha sido votado postivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
113
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
114
|
+
email_subject: Tu comentario en "%{resource_title}" ha sido votado positivamente.
|
115
|
+
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado positivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
|
103
118
|
email_outro: Has recibido esta notificación porque tu comentario fue respondido.
|
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:
|
@@ -98,6 +103,16 @@ es-PY:
|
|
98
103
|
email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
|
99
104
|
email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
|
100
105
|
notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
108
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
109
|
+
email_subject: Su comentario en "%{resource_title}" ha sido votado negativamente.
|
110
|
+
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Tu comentario en "%{resource_title}" ha sido votado postivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
113
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
114
|
+
email_subject: Tu comentario en "%{resource_title}" ha sido votado positivamente.
|
115
|
+
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado positivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
|
103
118
|
email_outro: Has recibido esta notificación porque tu comentario fue respondido.
|
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:
|
@@ -98,6 +103,16 @@ es:
|
|
98
103
|
email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autora. Puedes dejar de seguirla desde el enlace anterior.
|
99
104
|
email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
|
100
105
|
notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
|
106
|
+
comment_downvoted:
|
107
|
+
email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
108
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
109
|
+
email_subject: Su comentario en "%{resource_title}" ha sido votado negativamente.
|
110
|
+
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
111
|
+
comment_upvoted:
|
112
|
+
email_intro: Tu comentario en "%{resource_title}" ha sido votado postivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
113
|
+
email_outro: Has recibido esta notificación porque eres la autora de este comentario.
|
114
|
+
email_subject: Tu comentario en "%{resource_title}" ha sido votado positivamente.
|
115
|
+
notification_title: Tu <a href="%{resource_path}">comentario</a> en "%{resource_title}" ha sido votado positivamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
|
101
116
|
reply_created:
|
102
117
|
email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
|
103
118
|
email_outro: Has recibido esta notificación porque tu comentario fue respondido.
|
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:
|