decidim-comments 0.27.6 → 0.28.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/comments/comment/actions.erb +13 -7
- data/app/cells/decidim/comments/comment/alignment_badge.erb +1 -4
- data/app/cells/decidim/comments/comment/deletion_data.erb +9 -1
- data/app/cells/decidim/comments/comment/moderation_data.erb +1 -1
- data/app/cells/decidim/comments/comment/replies.erb +3 -0
- data/app/cells/decidim/comments/comment/show.erb +72 -35
- data/app/cells/decidim/comments/comment/votes.erb +14 -14
- data/app/cells/decidim/comments/comment_activity_cell.rb +11 -7
- data/app/cells/decidim/comments/comment_card_cell.rb +2 -2
- data/app/cells/decidim/comments/comment_cell.rb +9 -21
- data/app/cells/decidim/comments/comment_form/comment_as.erb +3 -3
- data/app/cells/decidim/comments/comment_form/opinion.erb +18 -0
- data/app/cells/decidim/comments/comment_form/show.erb +33 -16
- data/app/cells/decidim/comments/comment_form_cell.rb +9 -1
- data/app/cells/decidim/comments/comment_metadata_cell.rb +27 -0
- data/app/cells/decidim/comments/comment_s_cell.rb +27 -0
- data/app/cells/decidim/comments/comment_thread/show.erb +2 -5
- data/app/cells/decidim/comments/comment_thread_cell.rb +0 -6
- data/app/cells/decidim/comments/comments/add_comment.erb +1 -20
- data/app/cells/decidim/comments/comments/blocked_comments_warning.erb +1 -3
- data/app/cells/decidim/comments/comments/comments_loading.erb +1 -3
- data/app/cells/decidim/comments/comments/order_control.erb +11 -35
- data/app/cells/decidim/comments/comments/show.erb +8 -9
- data/app/cells/decidim/comments/comments/single_comment_warning.erb +6 -9
- data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +9 -6
- data/app/cells/decidim/comments/comments_cell.rb +1 -1
- data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +20 -15
- data/app/commands/decidim/comments/create_comment.rb +17 -5
- data/app/commands/decidim/comments/delete_comment.rb +1 -1
- data/app/commands/decidim/comments/update_comment.rb +14 -2
- data/app/commands/decidim/comments/vote_comment.rb +1 -1
- data/app/controllers/decidim/comments/comments_controller.rb +14 -9
- data/app/controllers/decidim/comments/votes_controller.rb +1 -1
- data/app/events/decidim/comments/comment_by_followed_user_event.rb +1 -1
- data/app/events/decidim/comments/comment_by_followed_user_group_event.rb +1 -1
- data/app/events/decidim/comments/comment_event.rb +2 -3
- data/app/events/decidim/comments/reply_created_event.rb +1 -1
- data/app/events/decidim/comments/user_group_mentioned_event.rb +1 -1
- data/app/events/decidim/comments/user_mentioned_event.rb +1 -1
- data/app/helpers/decidim/comments/comment_cells_helper.rb +1 -1
- data/app/jobs/decidim/comments/hide_all_created_by_author_job.rb +13 -0
- data/app/models/decidim/comments/comment.rb +9 -7
- data/app/models/decidim/comments/comment_vote.rb +0 -10
- data/app/models/decidim/comments/seed.rb +30 -14
- data/app/packs/entrypoints/decidim_comments.js +5 -0
- data/app/packs/src/decidim/comments/comments.component.js +27 -36
- data/app/packs/src/decidim/comments/comments.component.test.js +218 -240
- data/app/packs/src/decidim/comments/comments.component_for_testing.js +1 -1
- data/app/packs/src/decidim/comments/comments.js +20 -1
- data/app/packs/stylesheets/comments.scss +327 -0
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
- data/app/queries/decidim/comments/sorted_comments.rb +10 -10
- data/app/services/decidim/comments/comment_creation.rb +1 -1
- data/app/services/decidim/comments/new_comment_notification_creator.rb +8 -8
- data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +4 -9
- data/app/views/decidim/comments/comments/_comment.html.erb +1 -1
- data/app/views/decidim/comments/comments/_comments.html.erb +1 -1
- data/app/views/decidim/comments/comments/_delete.html.erb +2 -4
- data/app/views/decidim/comments/comments/_moderated.html.erb +2 -4
- data/app/views/decidim/comments/comments/create.js.erb +5 -3
- data/app/views/decidim/comments/comments/delete.js.erb +4 -1
- data/app/views/decidim/comments/comments/index.js.erb +8 -1
- data/app/views/decidim/comments/comments/reload.js.erb +1 -2
- data/app/views/decidim/comments/comments/update.js.erb +5 -4
- data/app/views/decidim/comments/votes/create.js.erb +5 -5
- data/config/assets.rb +3 -0
- data/config/locales/ar.yml +0 -16
- data/config/locales/bg.yml +0 -23
- data/config/locales/ca.yml +15 -17
- data/config/locales/cs.yml +8 -10
- data/config/locales/de.yml +7 -9
- data/config/locales/el.yml +3 -11
- data/config/locales/en.yml +10 -12
- data/config/locales/es-MX.yml +10 -12
- data/config/locales/es-PY.yml +10 -12
- data/config/locales/es.yml +16 -18
- data/config/locales/eu.yml +6 -8
- data/config/locales/fi-plain.yml +7 -9
- data/config/locales/fi.yml +7 -9
- data/config/locales/fr-CA.yml +9 -11
- data/config/locales/fr.yml +9 -11
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -16
- data/config/locales/hu.yml +3 -11
- data/config/locales/id-ID.yml +0 -11
- data/config/locales/is-IS.yml +0 -8
- data/config/locales/it.yml +0 -16
- data/config/locales/ja.yml +6 -8
- data/config/locales/lb.yml +0 -16
- data/config/locales/lt.yml +7 -10
- data/config/locales/lv.yml +0 -11
- data/config/locales/nl.yml +0 -16
- data/config/locales/no.yml +0 -16
- data/config/locales/pl.yml +7 -11
- data/config/locales/pt-BR.yml +0 -18
- data/config/locales/pt.yml +0 -16
- data/config/locales/ro-RO.yml +6 -14
- data/config/locales/ru.yml +0 -11
- data/config/locales/sk.yml +0 -11
- data/config/locales/sq-AL.yml +0 -38
- data/config/locales/sv.yml +2 -16
- data/config/locales/tr-TR.yml +1 -13
- data/config/locales/uk.yml +0 -8
- data/config/locales/zh-CN.yml +0 -13
- data/config/locales/zh-TW.yml +1 -9
- data/lib/decidim/api/comment_type.rb +2 -2
- data/lib/decidim/api/commentable_interface.rb +1 -1
- data/lib/decidim/comments/comment_serializer.rb +1 -1
- data/lib/decidim/comments/comment_vote_serializer.rb +1 -1
- data/lib/decidim/comments/commentable.rb +1 -1
- data/lib/decidim/comments/comments_helper.rb +6 -3
- data/lib/decidim/comments/engine.rb +31 -1
- data/lib/decidim/comments/export.rb +1 -1
- data/lib/decidim/comments/test/factories.rb +9 -16
- data/lib/decidim/comments/test/shared_examples/comment_event.rb +4 -4
- data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +4 -4
- data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +5 -5
- data/lib/decidim/comments/test/shared_examples/has_comments_availability_attributes.rb +2 -2
- data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +3 -3
- data/lib/decidim/comments/version.rb +1 -1
- metadata +30 -27
- data/app/cells/decidim/comments/comment/author.erb +0 -1
- data/app/cells/decidim/comments/comment/utilities.erb +0 -41
- data/app/cells/decidim/comments/comment_m/footer.erb +0 -5
- data/app/cells/decidim/comments/comment_m/top.erb +0 -7
- data/app/cells/decidim/comments/comment_m_cell.rb +0 -29
- data/app/cells/decidim/comments/comment_thread/title.erb +0 -3
- data/config/locales/he-IL.yml +0 -1
- data/db/migrate/20240304092558_add_comment_vote_counter_cache_to_comments.rb +0 -21
- data/decidim-comments.gemspec +0 -33
data/config/locales/lt.yml
CHANGED
|
@@ -35,23 +35,21 @@ lt:
|
|
|
35
35
|
error: Komentaro ištrinti nepavyko.
|
|
36
36
|
update:
|
|
37
37
|
error: Atnaujinant šį komentarą iškilo problema.
|
|
38
|
-
|
|
39
|
-
comments_title: Komentarai
|
|
38
|
+
comments_title: Komentaras
|
|
40
39
|
last_activity:
|
|
41
|
-
|
|
42
|
-
view: Rodyti
|
|
40
|
+
new_comment: 'Naujas komentaras:'
|
|
43
41
|
votes:
|
|
44
42
|
create:
|
|
45
43
|
error: Balsuojant už komentarą iškilo problema.
|
|
46
44
|
components:
|
|
47
45
|
add_comment_form:
|
|
48
|
-
account_message: <a href="%{sign_in_url}">Prisijunkite</a>arba<a href="%{sign_up_url}">registruokitės</a>norėdami komentuoti.
|
|
49
46
|
form:
|
|
50
47
|
body:
|
|
51
48
|
label: Komentaras
|
|
52
49
|
placeholder: Ką manote apie tai?
|
|
53
50
|
form_error: Tekstas būtinais ir negali viršyti %{length} simbolių.
|
|
54
|
-
|
|
51
|
+
submit_reply: Skelbti atsakymą
|
|
52
|
+
submit_root_comment: Skelbti komentarą
|
|
55
53
|
user_group_id:
|
|
56
54
|
label: Komentuoti kaip
|
|
57
55
|
opinion:
|
|
@@ -69,6 +67,7 @@ lt:
|
|
|
69
67
|
alignment:
|
|
70
68
|
against: Prieš
|
|
71
69
|
in_favor: Už
|
|
70
|
+
cancel_reply: Atšaukti atsakymą
|
|
72
71
|
confirm_destroy: Ar tikrai norite ištrinti šį komentarą?
|
|
73
72
|
delete: Ištrinti
|
|
74
73
|
deleted_at: Komentaras ištrintas %{date}
|
|
@@ -85,7 +84,7 @@ lt:
|
|
|
85
84
|
description: Ar šis turinys netinkamas?
|
|
86
85
|
details: Papildomi komentarai
|
|
87
86
|
reasons:
|
|
88
|
-
does_not_belong:
|
|
87
|
+
does_not_belong: Pateikiama informacija yra neteisėta veikla, grasinimai nusižudyti, asmeninė informacija arba tai, kas, jūsų nuomone, nepriklauso %{organization_name}.
|
|
89
88
|
offensive: Pateikiamoje informacijoje yra rasizmo, seksizmo, keiksmažodžių, asmeninių atakų, grasinimų ar kitokios neapykantos kalbos.
|
|
90
89
|
spam: Pateikiamoje informacijoje yra reklamos, antraščių mąsalo ar apgavysčių.
|
|
91
90
|
title: Pranešti apie netinkamą turinį
|
|
@@ -102,8 +101,6 @@ lt:
|
|
|
102
101
|
older: Ankstesni
|
|
103
102
|
recent: Paskutiniai
|
|
104
103
|
title: 'Rikiuoti pagal:'
|
|
105
|
-
comment_thread:
|
|
106
|
-
title: Pokalbis su %{authorName}
|
|
107
104
|
comments:
|
|
108
105
|
blocked_comments_for_unauthorized_user_warning: Norėdami komentuoti turite būti patvirtintas(-a), tačiau galite skaityti egzistuojančius komentarus.
|
|
109
106
|
blocked_comments_for_user_warning: Šiuo metu komentarų pateikti negalite, tačiau galite perskaityti ankstesnius komentarus.
|
|
@@ -178,4 +175,4 @@ lt:
|
|
|
178
175
|
title: Komentarai
|
|
179
176
|
errors:
|
|
180
177
|
messages:
|
|
181
|
-
cannot_have_comments: negali
|
|
178
|
+
cannot_have_comments: negali turėti komentarų
|
data/config/locales/lv.yml
CHANGED
|
@@ -19,20 +19,15 @@ lv:
|
|
|
19
19
|
other: Balsis
|
|
20
20
|
decidim:
|
|
21
21
|
comments:
|
|
22
|
-
comments_title: Komentāri
|
|
23
|
-
last_activity:
|
|
24
|
-
new_comment_at_html: "<span>Jauns komentārs %{link}</span>"
|
|
25
22
|
votes:
|
|
26
23
|
create:
|
|
27
24
|
error: Balsojot par komentāru, radās problēma.
|
|
28
25
|
components:
|
|
29
26
|
add_comment_form:
|
|
30
|
-
account_message: <a href="%{sign_in_url}">Pierakstieties, izmantojot savu kontu</a> vai <a href="%{sign_up_url}"> reģistrējieties, </a>, lai pievienotu komentāru.
|
|
31
27
|
form:
|
|
32
28
|
body:
|
|
33
29
|
label: Komentēt
|
|
34
30
|
placeholder: Ko tu domā par šo?
|
|
35
|
-
form_error: Šis teksts ir nepieciešams, un tas nedrīkst būt garāks par %{length} rakstzīmēm.
|
|
36
31
|
user_group_id:
|
|
37
32
|
label: Komentēt kā
|
|
38
33
|
opinion:
|
|
@@ -54,7 +49,6 @@ lv:
|
|
|
54
49
|
description: Vai šis saturs ir neatbilstīgs?
|
|
55
50
|
details: Papildu komentāri
|
|
56
51
|
reasons:
|
|
57
|
-
does_not_belong: Satur nelikumīgas darbības, pašnāvības draudus, personisku informāciju vai kaut ko citu, kam, jūsuprāt, nav vietas %{organization_name}.
|
|
58
52
|
offensive: Satur rasismu, seksismu, lamuvārdus, personiskus uzbrukumus, nāves draudus, ierosinājumus veikt pašnāvību vai jebkāda veida naida runu.
|
|
59
53
|
spam: Satur klikšķu ēsmu (clickbait), reklāmu, krāpšanu vai skriptu robotprogrammatūru.
|
|
60
54
|
comment_order_selector:
|
|
@@ -64,8 +58,6 @@ lv:
|
|
|
64
58
|
older: Vecāki
|
|
65
59
|
recent: Nesenie
|
|
66
60
|
title: 'Sakārtot pēc:'
|
|
67
|
-
comment_thread:
|
|
68
|
-
title: Saruna ar %{authorName}
|
|
69
61
|
comments:
|
|
70
62
|
blocked_comments_for_user_warning: Pašlaik jūs nevarat komentēt, bet jūs varat izlasīt iepriekšējos komentārus.
|
|
71
63
|
blocked_comments_warning: Komentāri šobrīd ir atspējoti, bet jūs varat lasīt iepriekšējos komentārus.
|
|
@@ -109,6 +101,3 @@ lv:
|
|
|
109
101
|
description: Dalībnieku izveidoto komentāru skaits
|
|
110
102
|
object: komentāri
|
|
111
103
|
title: Komentāri
|
|
112
|
-
errors:
|
|
113
|
-
messages:
|
|
114
|
-
cannot_have_comments: nevar komentēt
|
data/config/locales/nl.yml
CHANGED
|
@@ -27,27 +27,17 @@ nl:
|
|
|
27
27
|
comments:
|
|
28
28
|
create:
|
|
29
29
|
error: Er is een probleem opgetreden bij het aanmaken van de reactie.
|
|
30
|
-
delete:
|
|
31
|
-
error: De reactie kon niet worden verwijderd.
|
|
32
30
|
update:
|
|
33
31
|
error: Er is een probleem opgetreden bij het bijwerken van de reactie.
|
|
34
|
-
comments_count: Aantal reacties
|
|
35
|
-
comments_title: Reacties
|
|
36
|
-
last_activity:
|
|
37
|
-
new_comment_at_html: "<span>Nieuwe opmerking op %{link}</span>"
|
|
38
|
-
view: Bekijk
|
|
39
32
|
votes:
|
|
40
33
|
create:
|
|
41
34
|
error: Er is een probleem opgetreden bij het stemmen op de opmerking.
|
|
42
35
|
components:
|
|
43
36
|
add_comment_form:
|
|
44
|
-
account_message: <a href="%{sign_in_url}">Meld u aan met uw account</a> of <a href="%{sign_up_url}">schrijf u in</a> om uw reactie toe te voegen.
|
|
45
37
|
form:
|
|
46
38
|
body:
|
|
47
39
|
label: Reactie
|
|
48
40
|
placeholder: Wat wil je hierover zeggen?
|
|
49
|
-
form_error: De tekst is verplicht en het kan niet langer zijn dan %{length} tekens.
|
|
50
|
-
submit: Verzenden
|
|
51
41
|
user_group_id:
|
|
52
42
|
label: Reageer als
|
|
53
43
|
opinion:
|
|
@@ -81,7 +71,6 @@ nl:
|
|
|
81
71
|
description: Is deze inhoud ongepast?
|
|
82
72
|
details: aanvullende opmerkingen
|
|
83
73
|
reasons:
|
|
84
|
-
does_not_belong: Bevat illegale activiteit, zelfmoord bedreigingen, persoonlijke gegevens, of iets anders dat je denkt dat hoort niet op %{organization_name}.
|
|
85
74
|
offensive: Bevat racisme, seksisme, laster, persoonlijke aanvallen, bedreigingen met de dood, zelfmoord verzoeken of enige vorm van haatzaaien.
|
|
86
75
|
spam: Bevat clickbait, reclame, oplichting of script bots.
|
|
87
76
|
title: Meld ongepaste inhoud
|
|
@@ -93,8 +82,6 @@ nl:
|
|
|
93
82
|
older: Ouder
|
|
94
83
|
recent: Meest recent
|
|
95
84
|
title: 'Sorteer op:'
|
|
96
|
-
comment_thread:
|
|
97
|
-
title: Gesprek met %{authorName}
|
|
98
85
|
comments:
|
|
99
86
|
blocked_comments_for_unauthorized_user_warning: Je kan op dit moment geen opmerkingen toevoegen, maar je kunt de eerdere opmerkingen wel lezen.
|
|
100
87
|
blocked_comments_for_user_warning: Je kunt op dit moment geen opmerkingen toevoegen, maar je kunt eerdere reacties wel lezen.
|
|
@@ -165,6 +152,3 @@ nl:
|
|
|
165
152
|
description: Aantal reacties gegenereerd door deelnemers
|
|
166
153
|
object: reacties
|
|
167
154
|
title: Reacties
|
|
168
|
-
errors:
|
|
169
|
-
messages:
|
|
170
|
-
cannot_have_comments: Kan geen reacties hebben
|
data/config/locales/no.yml
CHANGED
|
@@ -26,27 +26,17 @@
|
|
|
26
26
|
comments:
|
|
27
27
|
create:
|
|
28
28
|
error: Et problem oppstod med å opprette kommentaren.
|
|
29
|
-
delete:
|
|
30
|
-
error: Kommentaren kunne ikke slettes.
|
|
31
29
|
update:
|
|
32
30
|
error: Et problem oppstod med å oppdatere kommentaren.
|
|
33
|
-
comments_count: Antall kommentarer
|
|
34
|
-
comments_title: Kommentarer
|
|
35
|
-
last_activity:
|
|
36
|
-
new_comment_at_html: "<span>Ny kommentar på %{link}</span>"
|
|
37
|
-
view: Vis
|
|
38
31
|
votes:
|
|
39
32
|
create:
|
|
40
33
|
error: Det oppstod et problem med å stemme kommentaren.
|
|
41
34
|
components:
|
|
42
35
|
add_comment_form:
|
|
43
|
-
account_message: <a href="%{sign_in_url}">Logg på med kontoen din</a> eller <a href="%{sign_up_url}">opprett en</a> for å legge til kommentaren din.
|
|
44
36
|
form:
|
|
45
37
|
body:
|
|
46
38
|
label: Kommentar
|
|
47
39
|
placeholder: Hva mener du om dette?
|
|
48
|
-
form_error: Teksten er påkrevd og den kan ikke være lengre enn %{length} tegn.
|
|
49
|
-
submit: Send
|
|
50
40
|
user_group_id:
|
|
51
41
|
label: Kommenter som
|
|
52
42
|
opinion:
|
|
@@ -79,7 +69,6 @@
|
|
|
79
69
|
description: Er dette innholdet upassende?
|
|
80
70
|
details: Ytterlige kommentarer
|
|
81
71
|
reasons:
|
|
82
|
-
does_not_belong: Inneholder ulovlig aktivitet, selvmordstrusler, personlig informasjon eller noe annet du mener ikke hører hjemme på %{organization_name}.
|
|
83
72
|
offensive: Inneholder rasisme, sexisme, banning, persjonangrep, dødstrusler, selvmords forespørsler eller all form for hatefullt språk.
|
|
84
73
|
spam: Inneholder klikkagn, reklame, svindel eller manus-roboter.
|
|
85
74
|
title: Rapporter upassende innhold
|
|
@@ -91,8 +80,6 @@
|
|
|
91
80
|
older: Eldre
|
|
92
81
|
recent: Nylig
|
|
93
82
|
title: 'Sorter etter:'
|
|
94
|
-
comment_thread:
|
|
95
|
-
title: Samtale med %{authorName}
|
|
96
83
|
comments:
|
|
97
84
|
blocked_comments_for_unauthorized_user_warning: Du må verifiseres for å kommentere, men du kan lese de forrige.
|
|
98
85
|
blocked_comments_for_user_warning: Du kan ikke kommentere for øyeblikket, men du kan lese de forrige.
|
|
@@ -163,6 +150,3 @@
|
|
|
163
150
|
description: Antall kommenterer generert av deltakerne
|
|
164
151
|
object: kommentarer
|
|
165
152
|
title: Kommentarer
|
|
166
|
-
errors:
|
|
167
|
-
messages:
|
|
168
|
-
cannot_have_comments: kan ikke ha kommentarer
|
data/config/locales/pl.yml
CHANGED
|
@@ -35,23 +35,22 @@ pl:
|
|
|
35
35
|
error: Komentarz nie może zostać usunięty.
|
|
36
36
|
update:
|
|
37
37
|
error: Wystąpił błąd podczas aktualizowania komentarza.
|
|
38
|
-
|
|
39
|
-
comments_title: Komentarze
|
|
38
|
+
comments_title: Komentarz
|
|
40
39
|
last_activity:
|
|
41
|
-
|
|
42
|
-
view: Zobacz
|
|
40
|
+
new_comment: 'Nowy komentarz:'
|
|
43
41
|
votes:
|
|
44
42
|
create:
|
|
45
43
|
error: Podczas dodawania komentarza wystąpił błąd.
|
|
46
44
|
components:
|
|
47
45
|
add_comment_form:
|
|
48
|
-
account_message: <a href="%{sign_in_url}">Zaloguj się na swoje konto</a> lub <a href="%{sign_up_url}">zarejestruj się</a>, aby dodać komentarz.
|
|
46
|
+
account_message: <a href="%{sign_in_url}">Zaloguj się na swoje konto</a> lub <a href="%{sign_up_url}">zarejestruj się</a>, aby dodać swój komentarz.
|
|
49
47
|
form:
|
|
50
48
|
body:
|
|
51
49
|
label: Komentarz
|
|
52
50
|
placeholder: Co o tym myślisz?
|
|
53
|
-
form_error:
|
|
54
|
-
|
|
51
|
+
form_error: Tekst jest wymagany i nie może być dłuższy niż %{length} znaków.
|
|
52
|
+
submit_reply: Opublikuj odpowiedź
|
|
53
|
+
submit_root_comment: Opublikuj komentarz
|
|
55
54
|
user_group_id:
|
|
56
55
|
label: Komentuj jako
|
|
57
56
|
opinion:
|
|
@@ -69,6 +68,7 @@ pl:
|
|
|
69
68
|
alignment:
|
|
70
69
|
against: Negatywny
|
|
71
70
|
in_favor: Pozytywny
|
|
71
|
+
cancel_reply: Anuluj odpowiedź
|
|
72
72
|
confirm_destroy: Czy na pewno chcesz usunąć ten komentarz?
|
|
73
73
|
delete: Usuń
|
|
74
74
|
deleted_at: Komentarz usunięty %{date}
|
|
@@ -76,7 +76,6 @@ pl:
|
|
|
76
76
|
edit: Edytuj
|
|
77
77
|
edited: Edytowany
|
|
78
78
|
hide_replies: Ukryj odpowiedzi
|
|
79
|
-
moderated_at: Komentarz moderowany dnia %{date}
|
|
80
79
|
reply: Odpowiedz
|
|
81
80
|
report:
|
|
82
81
|
action: Zgłoś
|
|
@@ -85,7 +84,6 @@ pl:
|
|
|
85
84
|
description: Czy ta treść jest nieodpowiednia?
|
|
86
85
|
details: Dodatkowe komentarze
|
|
87
86
|
reasons:
|
|
88
|
-
does_not_belong: Promuje nielegalną działalność, groźby samobójcze, informacje osobiste lub coś innego, co według Ciebie nie powinno pojawić się w %{organization_name}.
|
|
89
87
|
offensive: Promuje rasizm, seksizm, nienawiść, ataki osobiste, groźby śmierci, groźby samobójcze jakąkolwiek formę mowy nienawiści.
|
|
90
88
|
spam: Zawiera clickbaity, reklamy, oszustwa lub skrypty botów.
|
|
91
89
|
title: Zgłoś niewłaściwą treść
|
|
@@ -102,8 +100,6 @@ pl:
|
|
|
102
100
|
older: Najstarsze
|
|
103
101
|
recent: Najnowsze
|
|
104
102
|
title: 'Sortuj według:'
|
|
105
|
-
comment_thread:
|
|
106
|
-
title: Rozmowa z %{authorName}
|
|
107
103
|
comments:
|
|
108
104
|
blocked_comments_for_unauthorized_user_warning: Musisz być zweryfikowany żeby teraz komentować, ale możesz przeczytać poprzednie komentarze.
|
|
109
105
|
blocked_comments_for_user_warning: Nie możesz teraz komentować, ale możesz przeczytać poprzednie komentarze.
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -4,7 +4,6 @@ pt-BR:
|
|
|
4
4
|
models:
|
|
5
5
|
decidim/comments/comment_by_followed_user_event: Comente
|
|
6
6
|
decidim/comments/comment_created_event: Comentário
|
|
7
|
-
decidim/comments/comment_upvoted_event: Comentário valorizado positivamente
|
|
8
7
|
decidim/comments/reply_created_event: Resposta
|
|
9
8
|
decidim/comments/user_group_mentioned_event: Mencionar
|
|
10
9
|
decidim/comments/user_mentioned_event: Mencionar
|
|
@@ -21,27 +20,17 @@ pt-BR:
|
|
|
21
20
|
comments:
|
|
22
21
|
create:
|
|
23
22
|
error: Houveram erros ao criar o comentário.
|
|
24
|
-
delete:
|
|
25
|
-
error: O comentário não pode ser excluído.
|
|
26
23
|
update:
|
|
27
24
|
error: Houve um erro ao atualizar o comentário.
|
|
28
|
-
comments_count: Contagem de Comentários
|
|
29
|
-
comments_title: Comentários
|
|
30
|
-
last_activity:
|
|
31
|
-
new_comment_at_html: "<span>Novo comentário em %{link}</span>"
|
|
32
|
-
view: Visualizar
|
|
33
25
|
votes:
|
|
34
26
|
create:
|
|
35
27
|
error: Houve erros ao votar o comentário.
|
|
36
28
|
components:
|
|
37
29
|
add_comment_form:
|
|
38
|
-
account_message: <a href="%{sign_in_url}">Inscreva-se com sua conta</a> ou <a href="%{sign_up_url}">sign up</a> para adicionar seu comentário.
|
|
39
30
|
form:
|
|
40
31
|
body:
|
|
41
32
|
label: Comente
|
|
42
33
|
placeholder: O que você pensa sobre isso?
|
|
43
|
-
form_error: O texto é obrigatório e não pode ser maior que %{length} caracteres.
|
|
44
|
-
submit: Enviar
|
|
45
34
|
user_group_id:
|
|
46
35
|
label: Comente como
|
|
47
36
|
opinion:
|
|
@@ -66,7 +55,6 @@ pt-BR:
|
|
|
66
55
|
edit: Editar
|
|
67
56
|
edited: Editado
|
|
68
57
|
hide_replies: Ocultar respostas
|
|
69
|
-
moderated_at: Comentário moderado em %{date}
|
|
70
58
|
reply: Resposta
|
|
71
59
|
report:
|
|
72
60
|
action: Relatório
|
|
@@ -75,7 +63,6 @@ pt-BR:
|
|
|
75
63
|
description: Este conteúdo é impróprio?
|
|
76
64
|
details: Comentários adicionais
|
|
77
65
|
reasons:
|
|
78
|
-
does_not_belong: Contém atividades ilegais, ameaças suicidas, informações pessoais ou qualquer outra coisa que você acha que não pertence ao %{organization_name}.
|
|
79
66
|
offensive: Contém racismo, sexismo, insultos, ataques pessoais, ameaças de morte, pedidos de suicídio ou qualquer tipo de discurso de ódio.
|
|
80
67
|
spam: Contém clickbait, publicidade, fraudes ou script bots.
|
|
81
68
|
title: Reportar conteúdo impróprio
|
|
@@ -87,8 +74,6 @@ pt-BR:
|
|
|
87
74
|
older: Mais velho
|
|
88
75
|
recent: Recente
|
|
89
76
|
title: 'Ordenar por:'
|
|
90
|
-
comment_thread:
|
|
91
|
-
title: Conversa com %{authorName}
|
|
92
77
|
comments:
|
|
93
78
|
blocked_comments_for_unauthorized_user_warning: Você precisa ser verificado para comentar neste momento, mas pode ler os anteriores.
|
|
94
79
|
blocked_comments_for_user_warning: Você não pode comentar neste momento, mas pode ler os anteriores.
|
|
@@ -158,6 +143,3 @@ pt-BR:
|
|
|
158
143
|
description: Número de comentários gerados pelos usuários
|
|
159
144
|
object: comentários
|
|
160
145
|
title: Comentários
|
|
161
|
-
errors:
|
|
162
|
-
messages:
|
|
163
|
-
cannot_have_comments: não pode ter comentários
|
data/config/locales/pt.yml
CHANGED
|
@@ -26,27 +26,17 @@ pt:
|
|
|
26
26
|
comments:
|
|
27
27
|
create:
|
|
28
28
|
error: Ocorreu um problema ao criar o comentário
|
|
29
|
-
delete:
|
|
30
|
-
error: O comentário não pode ser eliminado.
|
|
31
29
|
update:
|
|
32
30
|
error: Ocorreu um problema ao actualizar a comentário.
|
|
33
|
-
comments_count: Contagem de comentários
|
|
34
|
-
comments_title: Comentários
|
|
35
|
-
last_activity:
|
|
36
|
-
new_comment_at_html: "<span>Novo comentário em %{link}</span>"
|
|
37
|
-
view: Visualizar
|
|
38
31
|
votes:
|
|
39
32
|
create:
|
|
40
33
|
error: Houve erros na votação do comentário.
|
|
41
34
|
components:
|
|
42
35
|
add_comment_form:
|
|
43
|
-
account_message: <a href="%{sign_in_url}">Ligue-se com sua conta</a> ou <a href="%{sign_up_url}">sign up</a> para adicionar seu comentário.
|
|
44
36
|
form:
|
|
45
37
|
body:
|
|
46
38
|
label: Comente
|
|
47
39
|
placeholder: O que você pensa sobre isso?
|
|
48
|
-
form_error: O texto é obrigatório e não pode ser maior que %{length} caracteres.
|
|
49
|
-
submit: Enviar
|
|
50
40
|
user_group_id:
|
|
51
41
|
label: Comente como
|
|
52
42
|
opinion:
|
|
@@ -79,7 +69,6 @@ pt:
|
|
|
79
69
|
description: Este conteúdo é impróprio?
|
|
80
70
|
details: Comentários adicionais
|
|
81
71
|
reasons:
|
|
82
|
-
does_not_belong: Contém atividades ilegais, ameaças suicidas, informações pessoais ou qualquer outra coisa que você acha que não pertence a %{organization_name}.
|
|
83
72
|
offensive: Contém racismo, sexismo, insultos, ataques pessoais, ameaças de morte, pedidos de suicídio ou qualquer tipo de discurso de ódio.
|
|
84
73
|
spam: Contém clickbait, publicidade, fraudes ou robots de scripts.
|
|
85
74
|
title: Reportar conteúdo impróprio
|
|
@@ -91,8 +80,6 @@ pt:
|
|
|
91
80
|
older: Mais velho
|
|
92
81
|
recent: Recente
|
|
93
82
|
title: 'Ordenar por:'
|
|
94
|
-
comment_thread:
|
|
95
|
-
title: Conversa com %{authorName}
|
|
96
83
|
comments:
|
|
97
84
|
blocked_comments_for_unauthorized_user_warning: Precisa de estar verificado para comentar neste momento, mas pode ler os precedentes.
|
|
98
85
|
blocked_comments_for_user_warning: Não pode comentar neste momento, mas pode ler os anteriores.
|
|
@@ -163,6 +150,3 @@ pt:
|
|
|
163
150
|
description: Número de comentários gerados pelos participantes
|
|
164
151
|
object: comentários
|
|
165
152
|
title: Comentários
|
|
166
|
-
errors:
|
|
167
|
-
messages:
|
|
168
|
-
cannot_have_comments: não pode ter comentários
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -33,23 +33,17 @@ ro:
|
|
|
33
33
|
error: Comentariul nu a putut fi șters.
|
|
34
34
|
update:
|
|
35
35
|
error: A apărut o eroare la actualizarea comentariului.
|
|
36
|
-
|
|
37
|
-
comments_title: Comentarii
|
|
38
|
-
last_activity:
|
|
39
|
-
new_comment_at_html: "<span>Comentariu nou la %{link}</span>"
|
|
40
|
-
view: Vizualizează
|
|
36
|
+
comments_title: Comentariu
|
|
41
37
|
votes:
|
|
42
38
|
create:
|
|
43
39
|
error: A apărut o problemă la votarea comentariului.
|
|
44
40
|
components:
|
|
45
41
|
add_comment_form:
|
|
46
|
-
account_message: <a href="%{sign_in_url}">Autentifică-te cu contul tău</a> sau <a href="%{sign_up_url}">înregistrează-te</a> pentru a adăuga comentariul tău.
|
|
47
42
|
form:
|
|
48
43
|
body:
|
|
49
44
|
label: Comentariu
|
|
50
45
|
placeholder: Ce părere ai despre asta?
|
|
51
46
|
form_error: Textul este obligatoriu și nu poate fi mai lung de %{length} caractere.
|
|
52
|
-
submit: Trimite
|
|
53
47
|
user_group_id:
|
|
54
48
|
label: Comentează în calitate de
|
|
55
49
|
opinion:
|
|
@@ -71,9 +65,9 @@ ro:
|
|
|
71
65
|
delete: Șterge
|
|
72
66
|
deleted_at: Comentariu șters la %{date}
|
|
73
67
|
deleted_user: Participant șters
|
|
74
|
-
edit:
|
|
75
|
-
edited:
|
|
76
|
-
hide_replies:
|
|
68
|
+
edit: Editează
|
|
69
|
+
edited: Editat
|
|
70
|
+
hide_replies: Ascunde răspunsurile
|
|
77
71
|
moderated_at: Comentariu moderat pe %{date}
|
|
78
72
|
reply: Răspunde
|
|
79
73
|
report:
|
|
@@ -99,8 +93,6 @@ ro:
|
|
|
99
93
|
older: Mai vechi
|
|
100
94
|
recent: Recente
|
|
101
95
|
title: 'Ordonare după:'
|
|
102
|
-
comment_thread:
|
|
103
|
-
title: Conversație cu %{authorName}
|
|
104
96
|
comments:
|
|
105
97
|
blocked_comments_for_unauthorized_user_warning: Trebuie să fii verificat pentru a trimite comentarii în acest moment, dar le poți citi pe cele anterioare.
|
|
106
98
|
blocked_comments_for_user_warning: Nu poți comenta în acest moment, dar le poți citi pe cele anterioare.
|
|
@@ -139,7 +131,7 @@ ro:
|
|
|
139
131
|
notification_title: Există un comentariu nou de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>.
|
|
140
132
|
comment_created:
|
|
141
133
|
email_intro: "%{resource_title} a primit un comentariu. Poți citi comentariul pe această pagină:"
|
|
142
|
-
email_outro:
|
|
134
|
+
email_outro: Ai primit această notificare deoarece urmărești „%{resource_title}” sau pe autorii săi. Poți anula abonarea de la link-ul anterior.
|
|
143
135
|
email_subject: Există un nou comentariu de la %{author_name} pentru %{resource_title}
|
|
144
136
|
notification_title: Există un nou comentariu de la <a href="%{author_path}">%{author_name} %{author_nickname}</a> pentru <a href="%{resource_path}">%{resource_title}</a>
|
|
145
137
|
comment_downvoted:
|
|
@@ -174,4 +166,4 @@ ro:
|
|
|
174
166
|
title: Comentarii
|
|
175
167
|
errors:
|
|
176
168
|
messages:
|
|
177
|
-
cannot_have_comments: nu poate
|
|
169
|
+
cannot_have_comments: nu poate avea comentarii
|
data/config/locales/ru.yml
CHANGED
|
@@ -21,20 +21,15 @@ ru:
|
|
|
21
21
|
other: Голосов
|
|
22
22
|
decidim:
|
|
23
23
|
comments:
|
|
24
|
-
comments_title: Комментарии
|
|
25
|
-
last_activity:
|
|
26
|
-
new_comment_at_html: "<span>Новый комментарий в %{link}</span>"
|
|
27
24
|
votes:
|
|
28
25
|
create:
|
|
29
26
|
error: При голосовании за комментарий произошли ошибки.
|
|
30
27
|
components:
|
|
31
28
|
add_comment_form:
|
|
32
|
-
account_message: <a href="%{sign_in_url}">Войдите в систему через свою учетную запись</a> или <a href="%{sign_up_url}">зарегистрируйтесь</a>, чтобы добавить свой комментарий.
|
|
33
29
|
form:
|
|
34
30
|
body:
|
|
35
31
|
label: Комментарий
|
|
36
32
|
placeholder: Что вы думаете об этом?
|
|
37
|
-
form_error: Тут обязательно нужно ввести текст, но не больше %{length} символов.
|
|
38
33
|
user_group_id:
|
|
39
34
|
label: Комментировать как
|
|
40
35
|
opinion:
|
|
@@ -55,7 +50,6 @@ ru:
|
|
|
55
50
|
description: Это сообщение неприемлемо?
|
|
56
51
|
details: Дополнительные комментарии
|
|
57
52
|
reasons:
|
|
58
|
-
does_not_belong: Содержит незаконную деятельность, угрозы самоубийства, личные сведения или что-то еще, недопустимое, на ваш взгляд, для %{organization_name}.
|
|
59
53
|
offensive: Содержит расизм, сексизм, оскорбления, личные нападки, угрозы убийства, заявления о самоубийстве, или любую форму разжигания ненависти.
|
|
60
54
|
spam: Содержит кликоловки (манипулятивно-сенсационные заголовки), рекламу, мошенничество или лохотроны.
|
|
61
55
|
comment_order_selector:
|
|
@@ -65,8 +59,6 @@ ru:
|
|
|
65
59
|
older: Старые
|
|
66
60
|
recent: Недавние
|
|
67
61
|
title: 'Упорядочить по:'
|
|
68
|
-
comment_thread:
|
|
69
|
-
title: Беседа с %{authorName}
|
|
70
62
|
comments:
|
|
71
63
|
blocked_comments_for_user_warning: Сейчас вам недоступно комментирование, но вы можете прочесть предыдущие комментарии.
|
|
72
64
|
blocked_comments_warning: Комментарии сейчас отключены, но вы можете прочитать предыдущие.
|
|
@@ -101,6 +93,3 @@ ru:
|
|
|
101
93
|
description: Количество комментариев, созданных участниками
|
|
102
94
|
object: коментарии
|
|
103
95
|
title: Комментарии
|
|
104
|
-
errors:
|
|
105
|
-
messages:
|
|
106
|
-
cannot_have_comments: не подлежит комментированию
|
data/config/locales/sk.yml
CHANGED
|
@@ -21,20 +21,15 @@ sk:
|
|
|
21
21
|
other: Hlasy
|
|
22
22
|
decidim:
|
|
23
23
|
comments:
|
|
24
|
-
comments_title: Komentáre
|
|
25
|
-
last_activity:
|
|
26
|
-
new_comment_at_html: "<span>Nový komentár na %{link}</span>"
|
|
27
24
|
votes:
|
|
28
25
|
create:
|
|
29
26
|
error: Pri hlasovaní za komentár sa vyskytol problém.
|
|
30
27
|
components:
|
|
31
28
|
add_comment_form:
|
|
32
|
-
account_message: <a href="%{sign_in_url}">Prihláste sa so svojím účtom</a> alebo <a href="%{sign_up_url}"> sa zaregistrujte</a>, aby ste pridali svoj komentár.
|
|
33
29
|
form:
|
|
34
30
|
body:
|
|
35
31
|
label: Komentár
|
|
36
32
|
placeholder: Čo si myslíte o tomto?
|
|
37
|
-
form_error: Tento text je požadovaný a nesmie byť dlhší, než %{length} znakov.
|
|
38
33
|
user_group_id:
|
|
39
34
|
label: Komentovať ako
|
|
40
35
|
opinion:
|
|
@@ -56,7 +51,6 @@ sk:
|
|
|
56
51
|
description: Je tento obsah nevhodný?
|
|
57
52
|
details: Ďalšie komentáre
|
|
58
53
|
reasons:
|
|
59
|
-
does_not_belong: Obsahuje ilegálnu činnosť, vyhrážky, osobné informácie, alebo niečo ďalšie, o čom si myslíte, že nepatrí na %{organization_name}.
|
|
60
54
|
offensive: Obsahuje rasizmus, sexizmus, urážky, osobné útoky, vyhrážky alebo inú podobu nenávistného prejavu.
|
|
61
55
|
spam: Obsahuje clickbait, reklamy, scam alebo je to skriptovací robot.
|
|
62
56
|
comment_order_selector:
|
|
@@ -66,8 +60,6 @@ sk:
|
|
|
66
60
|
older: Staršie
|
|
67
61
|
recent: Nedávne
|
|
68
62
|
title: 'Zoradiť podľa:'
|
|
69
|
-
comment_thread:
|
|
70
|
-
title: Konverzácia s %{authorName}
|
|
71
63
|
comments:
|
|
72
64
|
blocked_comments_for_user_warning: V súčasnosti nemôžete komentovať, ale môžete si prečítať predchádzajúce komentáre.
|
|
73
65
|
blocked_comments_warning: Komentáre nie sú v súčasnosti povolené, ale môžete si prečítať predchádzajúce komentáre.
|
|
@@ -111,6 +103,3 @@ sk:
|
|
|
111
103
|
description: Počet komentárov všetkých účastníkov
|
|
112
104
|
object: komentáre
|
|
113
105
|
title: Komentáre
|
|
114
|
-
errors:
|
|
115
|
-
messages:
|
|
116
|
-
cannot_have_comments: nie je možné komentovať
|
data/config/locales/sq-AL.yml
CHANGED
|
@@ -1,39 +1 @@
|
|
|
1
|
-
---
|
|
2
1
|
sq:
|
|
3
|
-
decidim:
|
|
4
|
-
components:
|
|
5
|
-
add_comment_form:
|
|
6
|
-
form:
|
|
7
|
-
user_group_id:
|
|
8
|
-
label: Komento si
|
|
9
|
-
opinion:
|
|
10
|
-
label: Mendimi jot mbi këtë temë
|
|
11
|
-
negative: Negativ
|
|
12
|
-
negative_selected: Mendimi jot mbi këtë temë është negativ
|
|
13
|
-
neutral: Neutral
|
|
14
|
-
neutral_selected: Mendimi jot mbi këtë temë është neutral
|
|
15
|
-
positive: Pozitiv
|
|
16
|
-
positive_selected: Mendimi jot mbi këtë temë është pozitiv
|
|
17
|
-
remaining_characters: "%{count} karaktere të mbetura"
|
|
18
|
-
remaining_characters_1: "%{count} karakter i mbetur"
|
|
19
|
-
title: Shto komentin tënd
|
|
20
|
-
comment:
|
|
21
|
-
alignment:
|
|
22
|
-
against: Kundër
|
|
23
|
-
in_favor: Pro
|
|
24
|
-
confirm_destroy: A je i sigurt që do ta fshish këtë koment?
|
|
25
|
-
delete: Fshi
|
|
26
|
-
deleted_at: Komenti u fshi në datën %{date}
|
|
27
|
-
edit: Përpuno
|
|
28
|
-
edited: Ndryshuar
|
|
29
|
-
hide_replies: Fshih përgjigjet
|
|
30
|
-
moderated_at: Komenti u moderua në datën %{date}
|
|
31
|
-
reply: Përgjigju
|
|
32
|
-
report:
|
|
33
|
-
action: Raporto
|
|
34
|
-
already_reported: Kjo përmbajtje është raportuar nga të tjerë dhe do rishikohet nga administratorët.
|
|
35
|
-
close: Mbyll
|
|
36
|
-
description: Përmbajtje e papërshtatshme?
|
|
37
|
-
details: Komente të tjera
|
|
38
|
-
reasons:
|
|
39
|
-
offensive: Përmban racizëm, seksizëm, ofendime, sulme personale, kërcënime me vdekje, shtyrje për vetëvrasje apo forma të tjera të gjuhës së urrejtjes.
|
data/config/locales/sv.yml
CHANGED
|
@@ -27,27 +27,19 @@ sv:
|
|
|
27
27
|
comments:
|
|
28
28
|
create:
|
|
29
29
|
error: Det gick inte att skapa kommentaren.
|
|
30
|
-
delete:
|
|
31
|
-
error: Kommentaren kunde inte tas bort.
|
|
32
30
|
update:
|
|
33
31
|
error: Det gick inte att uppdatera kommentaren.
|
|
34
|
-
|
|
35
|
-
comments_title: Kommentarer
|
|
36
|
-
last_activity:
|
|
37
|
-
new_comment_at_html: "<span>Ny kommentar på %{link}</span>"
|
|
38
|
-
view: Visa
|
|
32
|
+
comments_title: Kommentar
|
|
39
33
|
votes:
|
|
40
34
|
create:
|
|
41
35
|
error: Det gick inte att rösta om kommentaren.
|
|
42
36
|
components:
|
|
43
37
|
add_comment_form:
|
|
44
|
-
account_message: <a href="%{sign_in_url}">Logga in med ditt konto</a> eller <a href="%{sign_up_url}">registrera dig</a> för att lägga till din kommentar.
|
|
45
38
|
form:
|
|
46
39
|
body:
|
|
47
40
|
label: Kommentera
|
|
48
41
|
placeholder: Vad tycker du om detta?
|
|
49
|
-
|
|
50
|
-
submit: Skicka
|
|
42
|
+
submit_reply: Publicera svar
|
|
51
43
|
user_group_id:
|
|
52
44
|
label: Kommentera som
|
|
53
45
|
opinion:
|
|
@@ -81,7 +73,6 @@ sv:
|
|
|
81
73
|
description: Är detta innehåll olämpligt?
|
|
82
74
|
details: Ytterligare kommentarer
|
|
83
75
|
reasons:
|
|
84
|
-
does_not_belong: Innehåller olaglig aktivitet, självmordshot, personlig information eller något annat du tycker inte hör hemma på %{organization_name}.
|
|
85
76
|
offensive: Innehåller rasism, sexism, skällsord, personliga attacker, dödshot, uppmaningar att begå självmord eller någon form av hatpropaganda.
|
|
86
77
|
spam: Innehåller clickbait, reklam, bedrägerier eller skriptrobotar.
|
|
87
78
|
title: Rapportera olämpligt innehåll
|
|
@@ -96,8 +87,6 @@ sv:
|
|
|
96
87
|
older: Äldre
|
|
97
88
|
recent: Senaste
|
|
98
89
|
title: 'Sortera efter:'
|
|
99
|
-
comment_thread:
|
|
100
|
-
title: Samtal med %{authorName}
|
|
101
90
|
comments:
|
|
102
91
|
blocked_comments_for_unauthorized_user_warning: Du behöver verifiera dig för att kunna kommentera just nu, men du kan läsa tidigare kommentarer.
|
|
103
92
|
blocked_comments_for_user_warning: Du kan inte kommentera just nu, men du kan läsa tidigare kommentarer.
|
|
@@ -168,6 +157,3 @@ sv:
|
|
|
168
157
|
description: Antal kommentarer från deltagare
|
|
169
158
|
object: kommentarer
|
|
170
159
|
title: Kommentarer
|
|
171
|
-
errors:
|
|
172
|
-
messages:
|
|
173
|
-
cannot_have_comments: kan inte ha kommentarer
|