decidim-proposals 0.26.2 → 0.26.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/events/decidim/proposals/publish_proposal_event.rb +8 -0
- data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +1 -1
- data/config/locales/ca.yml +4 -2
- data/config/locales/cs.yml +20 -18
- data/config/locales/de.yml +45 -0
- data/config/locales/en.yml +2 -0
- data/config/locales/es-MX.yml +3 -1
- data/config/locales/es-PY.yml +3 -1
- data/config/locales/es.yml +3 -1
- data/config/locales/fi-plain.yml +2 -0
- data/config/locales/fi.yml +2 -0
- data/config/locales/fr-CA.yml +3 -0
- data/config/locales/fr.yml +3 -0
- data/config/locales/hu.yml +3 -0
- data/config/locales/ja.yml +43 -41
- data/config/locales/lt.yml +993 -0
- data/config/locales/oc-FR.yml +1 -0
- data/config/locales/sv.yml +3 -3
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +19 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 150f7d8d2ea2d55ed352b3a67f3d146e1611279e9aa83874335d7ee5402dd55d
|
4
|
+
data.tar.gz: f5795dd963aacd0e08f500b8c5882ec7fe9da6859d26891c059158b19a401020
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ffab11785aae6f93e0c3705cb4e616adf8c214c00c4f89c8245232581081e7662a7bb395a3059c8d31b95036739a2f46bcf2d2a43e5d0564280626bc6fcc658
|
7
|
+
data.tar.gz: ccea814663db142d1faaf0ddacc89f3200600c2f9f9ee999102ce4cc11fa7260e998f131ce8e9c5f091e9120c598f7987ea3167c7ad55b10557fea636d564a6d
|
@@ -13,6 +13,8 @@ module Decidim
|
|
13
13
|
end
|
14
14
|
|
15
15
|
def i18n_options
|
16
|
+
return super if author.blank?
|
17
|
+
|
16
18
|
author_path = link_to("@#{author.nickname}", profile_path(author.nickname))
|
17
19
|
author_string = "#{author.name} #{author_path}"
|
18
20
|
super.merge({ author: author_string })
|
@@ -35,6 +37,12 @@ module Decidim
|
|
35
37
|
I18n.with_locale(I18n.locale) { translated_attribute(resource_text, nil, true).to_s.html_safe }
|
36
38
|
end
|
37
39
|
|
40
|
+
def notification_title
|
41
|
+
i18n_key = resource.official? ? "notification_title_official" : "notification_title"
|
42
|
+
|
43
|
+
I18n.t(i18n_key, **i18n_options).html_safe
|
44
|
+
end
|
45
|
+
|
38
46
|
private
|
39
47
|
|
40
48
|
def i18n_scope
|
@@ -8,7 +8,7 @@ module Decidim
|
|
8
8
|
|
9
9
|
linked_proposals.each do |proposal_id|
|
10
10
|
proposal = Proposal.find(proposal_id)
|
11
|
-
affected_users = proposal.notifiable_identities
|
11
|
+
affected_users = proposal.notifiable_identities - [comment.author]
|
12
12
|
|
13
13
|
Decidim::EventsManager.publish(
|
14
14
|
event: "decidim.events.proposals.proposal_mentioned",
|
data/config/locales/ca.yml
CHANGED
@@ -213,6 +213,7 @@ ca:
|
|
213
213
|
endorsements_enabled: Adhesions habilitades
|
214
214
|
proposal_answering_enabled: Resposta a propostes activada
|
215
215
|
publish_answers_immediately: Publica les respostes a les propostes immediatament
|
216
|
+
publish_answers_immediately_help_html: 'Tingues present que si respons alguna proposta sense que això estigui habilitat, l''hauràs de publicar-les manualment seleccionant-les i fent servir l''acció de publicar. Per a més informació sobre el funcionament, consulta la <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">pàgina de documentació de les respostes a les propostes</a>.'
|
216
217
|
suggested_hashtags: Hashtags suggerits a les participants per a noves propostes
|
217
218
|
votes_blocked: Suports bloquejats
|
218
219
|
votes_enabled: Suports habilitats
|
@@ -302,6 +303,7 @@ ca:
|
|
302
303
|
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
303
304
|
email_subject: Nova proposta "%{resource_title}" afegida a %{participatory_space_title}
|
304
305
|
notification_title: '%{author} ha afegit la proposta <a href="%{resource_path}">%{resource_title}</a> a %{participatory_space_title}'
|
306
|
+
notification_title_official: S'ha afegit la proposta oficial <a href="%{resource_path}">%{resource_title}</a> a %{participatory_space_title}
|
305
307
|
proposal_rejected:
|
306
308
|
affected_user:
|
307
309
|
email_intro: 'La teva proposta "%{resource_title}" ha estat rebutjada. Pots llegir la resposta en aquesta pàgina:'
|
@@ -433,14 +435,14 @@ ca:
|
|
433
435
|
info_1: Les seccions següents s'han convertit a propostes. Ara pots revisar-les i ajustar-les abans de publicar.
|
434
436
|
publish_document: Publicar el document
|
435
437
|
save_draft: Desa l'esborrany
|
436
|
-
title:
|
438
|
+
title: Previsualitzar el text participatiu
|
437
439
|
new_import:
|
438
440
|
accepted_mime_types:
|
439
441
|
md: Markdown
|
440
442
|
odt: ODT
|
441
443
|
bottom_hint: "(Podràs previsualitzar i ordenar les seccions del document)"
|
442
444
|
document_legend: 'Afegeix un document de menys de 2 Mb, cadascuna de les seccions (fins a 3 nivells de profunditat) es convertiran a propostes. Els formats suportats són: %{valid_mime_types}'
|
443
|
-
title:
|
445
|
+
title: Afegir document
|
444
446
|
upload_document: Puja el document
|
445
447
|
publish:
|
446
448
|
invalid: No s'han pogut publicar propostes
|
data/config/locales/cs.yml
CHANGED
@@ -15,14 +15,14 @@ cs:
|
|
15
15
|
address: Adresa
|
16
16
|
answer: Odpovědět
|
17
17
|
answered_at: Odpovězeno na
|
18
|
-
automatic_hashtags:
|
18
|
+
automatic_hashtags: Hashtagy automaticky přidány
|
19
19
|
body: Tělo
|
20
20
|
category_id: Kategorie
|
21
21
|
decidim_scope_id: Rozsah
|
22
22
|
has_address: Má adresu
|
23
23
|
scope_id: Oblast působnosti
|
24
24
|
state: Stav
|
25
|
-
suggested_hashtags: Navrhované
|
25
|
+
suggested_hashtags: Navrhované hashtagy
|
26
26
|
title: Titul
|
27
27
|
user_group_id: Vytvořit návrh jako
|
28
28
|
proposal_answer:
|
@@ -148,12 +148,12 @@ cs:
|
|
148
148
|
amendments_wizard_help_text: Nápověda průvodce k Pozměňovacím návrhům
|
149
149
|
announcement: Oznámení
|
150
150
|
attachments_allowed: Povolit přílohy
|
151
|
-
can_accumulate_supports_beyond_threshold: Mohou hromadit
|
151
|
+
can_accumulate_supports_beyond_threshold: Mohou hromadit podpory za prahem
|
152
152
|
collaborative_drafts_enabled: Společné koncepty povoleny
|
153
153
|
comments_enabled: Komentáře povoleny
|
154
154
|
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
155
155
|
default_sort_order: Výchozí řazení návrhu
|
156
|
-
default_sort_order_help: Výchozí znamená, že pokud jsou podporované funkce povoleny, budou návrhy zobrazeny náhodně, a pokud jsou
|
156
|
+
default_sort_order_help: Výchozí znamená, že pokud jsou podporované funkce povoleny, budou návrhy zobrazeny náhodně, a pokud jsou podpory blokovány, pak budou seřazeny podle nejpodporovanější.
|
157
157
|
default_sort_order_options:
|
158
158
|
default: Výchozí
|
159
159
|
most_commented: Nejvíce komentované
|
@@ -205,9 +205,9 @@ cs:
|
|
205
205
|
automatic_hashtags: Do všech návrhů byly přidány značky Hashtags
|
206
206
|
comments_blocked: Komentáře byly blokovány
|
207
207
|
creation_enabled: Účastníci mohou vytvářet návrhy
|
208
|
-
creation_enabled_readonly: Toto nastavení je zakázáno,
|
208
|
+
creation_enabled_readonly: Toto nastavení je zakázáno, když aktivujete funkci Participativní texty. Chcete-li návrhy nahrát jako participativní text, klikněte na tlačítko Participativní texty a postupujte podle pokynů.
|
209
209
|
default_sort_order: Výchozí řazení návrhu
|
210
|
-
default_sort_order_help:
|
210
|
+
default_sort_order_help: Ve výchozím nastavení to znamená, že pokud jsou podpory povoleny, budou návrhy zobrazeny náhodně seřazené, a pokud jsou podpory blokovány, budou seřazeny podle nejvíce podporovaných.
|
211
211
|
default_sort_order_options:
|
212
212
|
default: Výchozí
|
213
213
|
most_commented: Nejvíce komentované
|
@@ -221,6 +221,7 @@ cs:
|
|
221
221
|
endorsements_enabled: Schvalování povoleno
|
222
222
|
proposal_answering_enabled: Odpovídání návrhu je povoleno
|
223
223
|
publish_answers_immediately: Okamžitě publikovat odpovědi návrhu
|
224
|
+
publish_answers_immediately_help_html: 'Mějte na paměti, že pokud odpovíte na jakýkoli návrh bez tohoto povolení, budete je muset publikovat ručně jejich výběrem a použitím publikační akce. Více informací o tom, jak to funguje, naleznete na <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">stránce odpovědi návrhů</a>.'
|
224
225
|
suggested_hashtags: Hashtagy navržené uživatelům pro nové návrhy
|
225
226
|
votes_blocked: Hlasování bylo blokováno
|
226
227
|
votes_enabled: Hlasování povoleno
|
@@ -310,6 +311,7 @@ cs:
|
|
310
311
|
email_outro: Toto oznámení jste obdrželi, protože jste sledovali "%{participatory_space_title}". Můžete jej odhlásit od předchozího odkazu.
|
311
312
|
email_subject: Nový návrh "%{resource_title}" byl přidán k %{participatory_space_title}
|
312
313
|
notification_title: Návrh <a href="%{resource_path}">%{resource_title}</a> byl přidán do %{participatory_space_title} uživatelem %{author}
|
314
|
+
notification_title_official: Oficiální návrh <a href="%{resource_path}">%{resource_title}</a> byl přidán do %{participatory_space_title}
|
313
315
|
proposal_rejected:
|
314
316
|
affected_user:
|
315
317
|
email_intro: 'Váš návrh "%{resource_title}" byl zamítnut. Odpověď můžete číst na této stránce:'
|
@@ -355,11 +357,11 @@ cs:
|
|
355
357
|
- Podpořte návrhy, které se vám líbí nebo které jsou zajímavé
|
356
358
|
description: Tento odznak je udělen při podpoře návrhů jiných lidí.
|
357
359
|
description_another: Tento uživatel podpořil %{score} návrhů.
|
358
|
-
description_own:
|
360
|
+
description_own: Podpořili jste %{score} návrhů.
|
359
361
|
name: Podpora návrhů
|
360
362
|
next_level_in: Poskytněte podporu %{score} dalších návrhů, abyste dosáhli další úrovně!
|
361
363
|
unearned_another: Tento uživatel zatím nepodporoval žádné návrhy.
|
362
|
-
unearned_own:
|
364
|
+
unearned_own: Zatím jste nepodpořili žádné návrhy.
|
363
365
|
proposals:
|
364
366
|
conditions:
|
365
367
|
- Zvolte participační prostor pro účast vašeho zájmu s povoleným podáním návrhů
|
@@ -500,7 +502,7 @@ cs:
|
|
500
502
|
actions: Akce
|
501
503
|
assign_to_valuator: Přiřadit hodnotiteli
|
502
504
|
assign_to_valuator_button: Přiřadit
|
503
|
-
cancel:
|
505
|
+
cancel: Zrušit
|
504
506
|
change_category: Změnit kategorii
|
505
507
|
change_scope: Změnit rozsah
|
506
508
|
merge: Sloučit do nového
|
@@ -630,7 +632,7 @@ cs:
|
|
630
632
|
error: Při publikování konceptu spolupráce došlo k chybám.
|
631
633
|
irreversible_action_modal:
|
632
634
|
body: Po zveřejnění návrhu jako návrhu návrh již nebude upravitelný. Návrh nepřijme nové autory ani příspěvky.
|
633
|
-
cancel:
|
635
|
+
cancel: Zrušit
|
634
636
|
ok: Publikovat jako návrh
|
635
637
|
title: Následující akce je nevratná
|
636
638
|
success: Projekt spolupráce byl úspěšně zveřejněn jako návrh.
|
@@ -639,7 +641,7 @@ cs:
|
|
639
641
|
error: Došlo k chybě při uzavření návrhu spolupráce.
|
640
642
|
irreversible_action_modal:
|
641
643
|
body: Po uzavření konceptu již návrh nebude upravitelný. Návrh nepřijme nové autory nebo příspěvky.
|
642
|
-
cancel:
|
644
|
+
cancel: Zrušit
|
643
645
|
ok: Vyjměte návrh spolupráce
|
644
646
|
title: Následující akce je nevratná
|
645
647
|
success: Kolaborativní návrh byl úspěšně zrušen.
|
@@ -662,7 +664,7 @@ cs:
|
|
662
664
|
all: Vše
|
663
665
|
amendment: Změny
|
664
666
|
category: Kategorie
|
665
|
-
open:
|
667
|
+
open: Otevřeno
|
666
668
|
published: Publikováno
|
667
669
|
related_to: Související s
|
668
670
|
scope: Rozsah
|
@@ -707,7 +709,7 @@ cs:
|
|
707
709
|
few: a %{count} dalších lidí
|
708
710
|
many: a %{count} dalších lidí
|
709
711
|
other: a %{count} dalších lidí
|
710
|
-
info-message:
|
712
|
+
info-message: Toto je <strong>kolaborativní návrh</strong> k návrhu. To znamená, že můžete pomoci jejich autorům formovat návrh pomocí níže uvedené poznámky nebo je vylepšit přímo tím, že požádáte o přístup k jeho úpravám. Jakmile vám autoři udělí přístup, budete moci tento návrh provést.
|
711
713
|
publish: Publikovat
|
712
714
|
publish_info: Publikujte tuto verzi konceptu nebo
|
713
715
|
published_proposal: zveřejněný návrh
|
@@ -716,7 +718,7 @@ cs:
|
|
716
718
|
version_history: viz historii verzí tohoto návrhu
|
717
719
|
withdraw: stáhnout návrh
|
718
720
|
states:
|
719
|
-
open:
|
721
|
+
open: Otevřeno
|
720
722
|
published: Publikováno
|
721
723
|
withdrawn: Staženo
|
722
724
|
update:
|
@@ -914,10 +916,10 @@ cs:
|
|
914
916
|
votes_blocked: Hlasování je zakázáno
|
915
917
|
votes_count:
|
916
918
|
count:
|
917
|
-
one:
|
918
|
-
few:
|
919
|
-
many:
|
920
|
-
other:
|
919
|
+
one: Podpora
|
920
|
+
few: Podpory
|
921
|
+
many: Podpor
|
922
|
+
other: Podpor
|
921
923
|
most_popular_proposal: Nejoblíbenější návrh
|
922
924
|
need_more_votes: Potřebujete více hlasů
|
923
925
|
voting_rules:
|
data/config/locales/de.yml
CHANGED
@@ -57,6 +57,14 @@ de:
|
|
57
57
|
identical: UND Titel dürfen nicht identisch sein
|
58
58
|
title:
|
59
59
|
identical: Der UND-Körper kann nicht identisch sein
|
60
|
+
proposals_merge:
|
61
|
+
attributes:
|
62
|
+
base:
|
63
|
+
not_official: Sind nicht offiziell
|
64
|
+
proposals_split:
|
65
|
+
attributes:
|
66
|
+
base:
|
67
|
+
not_official: Sind nicht offiziell
|
60
68
|
models:
|
61
69
|
decidim/proposals/accepted_proposal_event: Vorschlag angenommen
|
62
70
|
decidim/proposals/admin/update_proposal_category_event: Vorschlagskategorie geändert
|
@@ -134,6 +142,16 @@ de:
|
|
134
142
|
collaborative_drafts_enabled: Kollaborative Entwürfe aktiviert
|
135
143
|
comments_enabled: Kommentare aktiviert
|
136
144
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
145
|
+
default_sort_order: Standardsortierung für Vorschläge
|
146
|
+
default_sort_order_options:
|
147
|
+
default: Standard
|
148
|
+
most_commented: Am häufigsten kommentiert
|
149
|
+
most_endorsed: Am häufigsten befürwortet
|
150
|
+
most_followed: Am häufigsten gefolgt
|
151
|
+
most_voted: Am meisten unterstützt
|
152
|
+
random: Zufällig
|
153
|
+
recent: Neueste
|
154
|
+
with_more_authors: Mit mehr Autoren
|
137
155
|
geocoding_enabled: Geocoding aktiviert
|
138
156
|
minimum_votes_per_user: Mindeststimmen pro Nutzer
|
139
157
|
new_proposal_body_template: Textvorlage für neuen Vorschlag
|
@@ -175,6 +193,17 @@ de:
|
|
175
193
|
answers_with_costs: Kosten für Vorschlagsantworten aktivieren
|
176
194
|
automatic_hashtags: Hashtags wurden allen Vorschlägen hinzugefügt
|
177
195
|
comments_blocked: Kommentare blockiert
|
196
|
+
creation_enabled: Teilnehmer können Vorschläge erstellen
|
197
|
+
default_sort_order: Standardsortierung für Vorschläge
|
198
|
+
default_sort_order_options:
|
199
|
+
default: Standard
|
200
|
+
most_commented: Am meisten kommentiert
|
201
|
+
most_endorsed: Am meisten befürwortet
|
202
|
+
most_followed: Am häufigsten gefolgt
|
203
|
+
most_voted: Am häufigsten unterstützt
|
204
|
+
random: Zufällig
|
205
|
+
recent: Neueste
|
206
|
+
with_more_authors: Mit mehr Autoren
|
178
207
|
endorsements_blocked: Zustimmungen blockiert
|
179
208
|
endorsements_enabled: Bestätigungen aktiviert
|
180
209
|
proposal_answering_enabled: Vorschlagsantworten aktiviert
|
@@ -351,6 +380,16 @@ de:
|
|
351
380
|
exports:
|
352
381
|
proposal_comments: Kommentare
|
353
382
|
proposals: Vorschläge
|
383
|
+
imports:
|
384
|
+
label:
|
385
|
+
answers: Antworten aus einer Datei importieren
|
386
|
+
proposals: Vorschläge aus einer Datei importieren
|
387
|
+
resources:
|
388
|
+
proposals:
|
389
|
+
one: Vorschlag
|
390
|
+
other: Vorschläge
|
391
|
+
title:
|
392
|
+
proposals: Vorschläge importieren
|
354
393
|
models:
|
355
394
|
proposal:
|
356
395
|
name: Vorschlag
|
@@ -392,6 +431,7 @@ de:
|
|
392
431
|
accepted: Angenommen
|
393
432
|
answer_proposal: Antworten
|
394
433
|
evaluating: In Bewertung
|
434
|
+
not_answered: Unbeantwortet
|
395
435
|
rejected: Abgelehnt
|
396
436
|
title: Antwort auf Vorschlag %{title}
|
397
437
|
proposal_notes:
|
@@ -698,6 +738,8 @@ de:
|
|
698
738
|
proposals_count:
|
699
739
|
one: "%{count} Vorschlag"
|
700
740
|
other: "%{count} Vorschläge"
|
741
|
+
dynamic_map_instructions:
|
742
|
+
instructions: Sie können den Marker auf der Karte verschieben.
|
701
743
|
edit:
|
702
744
|
add_documents: Unterlagen
|
703
745
|
add_images: Datei
|
@@ -733,8 +775,10 @@ de:
|
|
733
775
|
filter_by: Filtern nach
|
734
776
|
unfold: Aufklappen
|
735
777
|
index:
|
778
|
+
click_here: Alle Vorschläge ansehen
|
736
779
|
collaborative_drafts_list: Greifen Sie auf gemeinsame Entwürfe zu
|
737
780
|
new_proposal: Neuer Vorschlag
|
781
|
+
see_all: Alle Vorschläge ansehen
|
738
782
|
see_all_withdrawn: Sehen Sie sich alle zurückgezogenen Vorschläge an
|
739
783
|
view_proposal: Vorschlag anzeigen
|
740
784
|
linked_proposals:
|
@@ -743,6 +787,7 @@ de:
|
|
743
787
|
other: Stimmen
|
744
788
|
new:
|
745
789
|
send: Fortsetzen
|
790
|
+
title: Ihren Vorschlag erstellen
|
746
791
|
orders:
|
747
792
|
label: 'Vorschläge sortieren nach:'
|
748
793
|
most_commented: Am meisten kommentiert
|
data/config/locales/en.yml
CHANGED
@@ -214,6 +214,7 @@ en:
|
|
214
214
|
endorsements_enabled: Endorsements enabled
|
215
215
|
proposal_answering_enabled: Proposal answering enabled
|
216
216
|
publish_answers_immediately: Publish proposal answers immediately
|
217
|
+
publish_answers_immediately_help_html: Mind that if you answer any proposal without this enabled, you'll need to publish them manually by selecting them and using the action for publication. For more info on how this works, see <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">proposals' answers documentation page</a>.
|
217
218
|
suggested_hashtags: Hashtags suggested to participants for new proposals
|
218
219
|
votes_blocked: Supports blocked
|
219
220
|
votes_enabled: Supports enabled
|
@@ -303,6 +304,7 @@ en:
|
|
303
304
|
email_outro: You have received this notification because you are following "%{participatory_space_title}". You can stop receiving notifications following the previous link.
|
304
305
|
email_subject: New proposal "%{resource_title}" added to %{participatory_space_title}
|
305
306
|
notification_title: The proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title} by %{author}
|
307
|
+
notification_title_official: The official proposal <a href="%{resource_path}">%{resource_title}</a> has been added to %{participatory_space_title}
|
306
308
|
proposal_rejected:
|
307
309
|
affected_user:
|
308
310
|
email_intro: 'Your proposal "%{resource_title}" has been rejected. You can read the answer in this page:'
|
data/config/locales/es-MX.yml
CHANGED
@@ -197,7 +197,7 @@ es-MX:
|
|
197
197
|
automatic_hashtags: Hashtags añadidos a todas las propuestas.
|
198
198
|
comments_blocked: Comentarios bloqueados
|
199
199
|
creation_enabled: Las participantes pueden crear propuestas
|
200
|
-
creation_enabled_readonly: Esta opción se desactiva cuando activas la funcionalidad de Textos Participativos. Para subir propuestas como texto participativo
|
200
|
+
creation_enabled_readonly: Esta opción se desactiva cuando activas la funcionalidad de Textos Participativos. Para subir propuestas como texto participativo haz clic en el botón Textos Participativos y sigue las instrucciones.
|
201
201
|
default_sort_order: Orden predeterminado de propuestas
|
202
202
|
default_sort_order_help: Por defecto significa que si los apoyos están habilitados, las propuestas se mostrarán en orden aleatorio, y si los apoyos están bloqueados, se ordenarán por las más apoyadas.
|
203
203
|
default_sort_order_options:
|
@@ -213,6 +213,7 @@ es-MX:
|
|
213
213
|
endorsements_enabled: Adhesiones habilitadas
|
214
214
|
proposal_answering_enabled: Respuesta a propuestas activadas
|
215
215
|
publish_answers_immediately: Publicar respuestas a las propuestas inmediatamente
|
216
|
+
publish_answers_immediately_help_html: 'Ten en cuenta que si respondes a alguna propuesta sin que esto esté habilitado, tendrás que publicarlas manualmente seleccionándolas y utilizando la acción de publicar. Para más información sobre el funcionamiento, consulta la <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">página de documentación de respuestas a las propuestas</a>.'
|
216
217
|
suggested_hashtags: Hashtags sugeridos a los usuarios para nuevas propuestas.
|
217
218
|
votes_blocked: Votación deshabilitada
|
218
219
|
votes_enabled: Votación habilitada
|
@@ -302,6 +303,7 @@ es-MX:
|
|
302
303
|
email_outro: Recibiste esta notificación porque estás siguiendo "%{participatory_space_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
303
304
|
email_subject: Nueva propuesta "%{resource_title}" añadida a %{participatory_space_title}
|
304
305
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido añadida a %{participatory_space_title} por %{author}
|
306
|
+
notification_title_official: Se ha añadido la propuesta oficial <a href="%{resource_path}">%{resource_title}</a> en %{participatory_space_title}
|
305
307
|
proposal_rejected:
|
306
308
|
affected_user:
|
307
309
|
email_intro: 'Su propuesta "%{resource_title}" ha sido rechazada. Puedes leer la respuesta en esta página:'
|
data/config/locales/es-PY.yml
CHANGED
@@ -197,7 +197,7 @@ es-PY:
|
|
197
197
|
automatic_hashtags: Hashtags añadidos a todas las propuestas.
|
198
198
|
comments_blocked: Comentarios bloqueados
|
199
199
|
creation_enabled: Las participantes pueden crear propuestas
|
200
|
-
creation_enabled_readonly: Esta opción se desactiva cuando activas la funcionalidad de Textos Participativos. Para subir propuestas como texto participativo
|
200
|
+
creation_enabled_readonly: Esta opción se desactiva cuando activas la funcionalidad de Textos Participativos. Para subir propuestas como texto participativo haz clic en el botón Textos Participativos y sigue las instrucciones.
|
201
201
|
default_sort_order: Orden predeterminado de propuestas
|
202
202
|
default_sort_order_help: Por defecto significa que si los apoyos están habilitados, las propuestas se mostrarán en orden aleatorio, y si los apoyos están bloqueados, se ordenarán por las más apoyadas.
|
203
203
|
default_sort_order_options:
|
@@ -213,6 +213,7 @@ es-PY:
|
|
213
213
|
endorsements_enabled: Adhesiones habilitados
|
214
214
|
proposal_answering_enabled: Contestación de propuesta habilitada
|
215
215
|
publish_answers_immediately: Publicar respuestas a las propuestas inmediatamente
|
216
|
+
publish_answers_immediately_help_html: 'Ten en cuenta que si respondes a alguna propuesta sin que esto esté habilitado, tendrás que publicarlas manualmente seleccionándolas y utilizando la acción de publicar. Para más información sobre el funcionamiento, consulta la <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">página de documentación de respuestas a las propuestas</a>.'
|
216
217
|
suggested_hashtags: Hashtags sugeridos a los usuarios para nuevas propuestas.
|
217
218
|
votes_blocked: Votación bloqueada
|
218
219
|
votes_enabled: Votación habilitada
|
@@ -302,6 +303,7 @@ es-PY:
|
|
302
303
|
email_outro: Recibiste esta notificación porque estás siguiendo "%{participatory_space_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
303
304
|
email_subject: Nueva propuesta "%{resource_title}" añadida a %{participatory_space_title}
|
304
305
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido añadida a %{participatory_space_title} por %{author}
|
306
|
+
notification_title_official: Se ha añadido la propuesta oficial <a href="%{resource_path}">%{resource_title}</a> en %{participatory_space_title}
|
305
307
|
proposal_rejected:
|
306
308
|
affected_user:
|
307
309
|
email_intro: 'Su propuesta "%{resource_title}" ha sido rechazada. Puedes leer la respuesta en esta página:'
|
data/config/locales/es.yml
CHANGED
@@ -197,7 +197,7 @@ es:
|
|
197
197
|
automatic_hashtags: Hashtags añadidos a todas las propuestas.
|
198
198
|
comments_blocked: Comentarios bloqueados
|
199
199
|
creation_enabled: Las participantes pueden crear propuestas
|
200
|
-
creation_enabled_readonly: Esta opción se desactiva cuando activas la funcionalidad de Textos Participativos. Para subir propuestas como texto participativo
|
200
|
+
creation_enabled_readonly: Esta opción se desactiva cuando activas la funcionalidad de Textos Participativos. Para subir propuestas como texto participativo haz clic en el botón Textos Participativos y sigue las instrucciones.
|
201
201
|
default_sort_order: Orden predeterminado de propuestas
|
202
202
|
default_sort_order_help: Por defecto significa que si los apoyos están habilitados, las propuestas se mostrarán en orden aleatorio, y si los apoyos están bloqueados, se ordenarán por las más apoyadas.
|
203
203
|
default_sort_order_options:
|
@@ -213,6 +213,7 @@ es:
|
|
213
213
|
endorsements_enabled: Adhesiones habilitadas
|
214
214
|
proposal_answering_enabled: Respuesta a propuestas activadas
|
215
215
|
publish_answers_immediately: Publicar respuestas a las propuestas inmediatamente
|
216
|
+
publish_answers_immediately_help_html: 'Ten en cuenta que si respondes a alguna propuesta sin que esto esté habilitado, tendrás que publicarlas manualmente seleccionándolas y utilizando la acción de publicar. Para más información sobre el funcionamiento, consulta la <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">página de documentación de respuestas a las propuestas</a>.'
|
216
217
|
suggested_hashtags: Hashtags sugeridos a las participantes para nuevas propuestas
|
217
218
|
votes_blocked: Apoyos bloqueados
|
218
219
|
votes_enabled: Apoyos habilitados
|
@@ -302,6 +303,7 @@ es:
|
|
302
303
|
email_outro: Recibiste esta notificación porque estás siguiendo "%{participatory_space_title}". Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
303
304
|
email_subject: Nueva propuesta "%{resource_title}" añadida a %{participatory_space_title}
|
304
305
|
notification_title: La propuesta <a href="%{resource_path}">%{resource_title}</a> ha sido añadida a %{participatory_space_title} por %{author}
|
306
|
+
notification_title_official: Se ha añadido la propuesta oficial <a href="%{resource_path}">%{resource_title}</a> en %{participatory_space_title}
|
305
307
|
proposal_rejected:
|
306
308
|
affected_user:
|
307
309
|
email_intro: 'Tu propuesta "%{resource_title}" ha sido rechazada. Puedes leer la respuesta en esta página:'
|
data/config/locales/fi-plain.yml
CHANGED
@@ -213,6 +213,7 @@ fi-pl:
|
|
213
213
|
endorsements_enabled: Suositukset käytössä
|
214
214
|
proposal_answering_enabled: Ehdotukseen vastaaminen käytössä
|
215
215
|
publish_answers_immediately: Julkaise ehdotusten vastaukset heti
|
216
|
+
publish_answers_immediately_help_html: 'Huomioithan, että jos vastaat mihin tahansa ehdotukseen ilman tätä asetusta, sinun on julkaistava vastaukset manuaalisesti valitsemalla vastaukset sisältävät ehdotukset ja käyttämällä julkaisutoimintoa. Lisätietoja, miten tämä toimii, löytyy <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">dokumentaation osiosta ehdotuksiin vastaaminen</a>.'
|
216
217
|
suggested_hashtags: Käyttäjille ehdotettavat hashtagit uusille ehdotuksille
|
217
218
|
votes_blocked: Äänestys estetty
|
218
219
|
votes_enabled: Äänestys käytössä
|
@@ -302,6 +303,7 @@ fi-pl:
|
|
302
303
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta "%{participatory_space_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
303
304
|
email_subject: Uusi ehdotus "%{resource_title}" lisätty kohteeseen %{participatory_space_title}
|
304
305
|
notification_title: '%{author} on lisännyt ehdotuksen <a href="%{resource_path}">%{resource_title}</a> kohteeseen %{participatory_space_title}'
|
306
|
+
notification_title_official: Virallinen ehdotus <a href="%{resource_path}">%{resource_title}</a> on lisätty kohteeseen %{participatory_space_title}
|
305
307
|
proposal_rejected:
|
306
308
|
affected_user:
|
307
309
|
email_intro: 'Ehdotuksesi "%{resource_title}" on hylätty. Voit lukea vastauksen täältä:'
|
data/config/locales/fi.yml
CHANGED
@@ -213,6 +213,7 @@ fi:
|
|
213
213
|
endorsements_enabled: Suositukset käytössä
|
214
214
|
proposal_answering_enabled: Ehdotukseen vastaaminen käytössä
|
215
215
|
publish_answers_immediately: Julkaise ehdotusten vastaukset heti
|
216
|
+
publish_answers_immediately_help_html: 'Huomioithan, että jos vastaat mihin tahansa ehdotukseen ilman tätä asetusta, sinun on julkaistava vastaukset manuaalisesti valitsemalla vastaukset sisältävät ehdotukset ja käyttämällä julkaisutoimintoa. Lisätietoja, miten tämä toimii, löytyy <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">dokumentaation osiosta ehdotuksiin vastaaminen</a>.'
|
216
217
|
suggested_hashtags: Käyttäjille ehdotettavat aihetunnisteet (hashtag) uusille ehdotuksille
|
217
218
|
votes_blocked: Kannatukset estetty
|
218
219
|
votes_enabled: Kannatukset käytössä
|
@@ -302,6 +303,7 @@ fi:
|
|
302
303
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta "%{participatory_space_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
303
304
|
email_subject: Uusi ehdotus "%{resource_title}" lisätty kohteeseen %{participatory_space_title}
|
304
305
|
notification_title: '%{author} on lisännyt ehdotuksen <a href="%{resource_path}">%{resource_title}</a> kohteeseen %{participatory_space_title}'
|
306
|
+
notification_title_official: Virallinen ehdotus <a href="%{resource_path}">%{resource_title}</a> on lisätty kohteeseen %{participatory_space_title}
|
305
307
|
proposal_rejected:
|
306
308
|
affected_user:
|
307
309
|
email_intro: 'Ehdotuksesi "%{resource_title}" on hylätty. Voit lukea vastauksen täältä:'
|
data/config/locales/fr-CA.yml
CHANGED
@@ -197,6 +197,7 @@ fr-CA:
|
|
197
197
|
automatic_hashtags: Hashtags ajoutés à toutes les propositions
|
198
198
|
comments_blocked: Bloquer la création de nouveaux commentaires
|
199
199
|
creation_enabled: Les participants peuvent créer des propositions
|
200
|
+
creation_enabled_readonly: Ce paramètre est désactivé lorsque vous activez la fonctionnalité Textes participatifs. Pour télécharger des propositions sous forme de texte participatif, cliquez sur le bouton Textes participatifs et suivez les instructions.
|
200
201
|
default_sort_order: Tri des propositions par défaut
|
201
202
|
default_sort_order_help: Par défaut, si les aides sont activés, les propositions seront affichées par ordre aléatoire, et si les aides sont bloqués, alors ils seront triés par l’aide le plus soutenu.
|
202
203
|
default_sort_order_options:
|
@@ -212,6 +213,7 @@ fr-CA:
|
|
212
213
|
endorsements_enabled: Activer le module de soutiens
|
213
214
|
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
214
215
|
publish_answers_immediately: Publier immédiatement les réponses à la proposition
|
216
|
+
publish_answers_immediately_help_html: 'N''oubliez pas que si vous répondez à une proposition sans cette option, vous devrez la publier manuellement en les sélectionnant et en utilisant l''action de publication. Pour plus d''informations sur comment cela fonctionne, voir la page de documentation de <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">propositions</a>.'
|
215
217
|
suggested_hashtags: Hashtags suggérés aux utilisateurs pour de nouvelles propositions
|
216
218
|
votes_blocked: Bloquer les votes
|
217
219
|
votes_enabled: Activer le module de vote simple
|
@@ -301,6 +303,7 @@ fr-CA:
|
|
301
303
|
email_outro: Vous avez reçu cette notification parce que vous suivez "%{participatory_space_title}". Vous pouvez cesser de le suivre en cliquant sur le lien précédent.
|
302
304
|
email_subject: Nouvelle proposition "%{resource_title}" ajoutée à %{participatory_space_title}
|
303
305
|
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title} par %{author}
|
306
|
+
notification_title_official: La proposition officielle <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title}
|
304
307
|
proposal_rejected:
|
305
308
|
affected_user:
|
306
309
|
email_intro: 'Votre proposition "%{resource_title}" a été rejetée. Vous pouvez lire la réponse sur cette page:'
|
data/config/locales/fr.yml
CHANGED
@@ -197,6 +197,7 @@ fr:
|
|
197
197
|
automatic_hashtags: Hashtags ajoutés à toutes les propositions
|
198
198
|
comments_blocked: Bloquer la création de nouveaux commentaires
|
199
199
|
creation_enabled: Les participants peuvent créer des propositions
|
200
|
+
creation_enabled_readonly: Ce paramètre est désactivé lorsque vous activez la fonctionnalité Textes participatifs. Pour télécharger des propositions sous forme de texte participatif, cliquez sur le bouton Textes participatifs et suivez les instructions.
|
200
201
|
default_sort_order: Tri des propositions par défaut
|
201
202
|
default_sort_order_help: L'option par défaut signifie que si les votes sont activés, les propositions seront affichées par ordre aléatoire, et si les votes sont bloqués, alors elles seront triées par nombre de votes.
|
202
203
|
default_sort_order_options:
|
@@ -212,6 +213,7 @@ fr:
|
|
212
213
|
endorsements_enabled: Activer le module de soutiens
|
213
214
|
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
214
215
|
publish_answers_immediately: Publier immédiatement les réponses à la proposition
|
216
|
+
publish_answers_immediately_help_html: 'N''oubliez pas que si vous répondez à une proposition sans cette option, vous devrez la publier manuellement en les sélectionnant et en utilisant l''action de publication. Pour plus d''informations sur comment cela fonctionne, voir la page de documentation de <a href="https://docs.decidim.org/en/admin/components/proposals/answers#_publication" target="_blank">propositions</a>.'
|
215
217
|
suggested_hashtags: Hashtags suggérés aux utilisateurs pour de nouvelles propositions
|
216
218
|
votes_blocked: Bloquer les votes
|
217
219
|
votes_enabled: Activer le module de vote simple
|
@@ -301,6 +303,7 @@ fr:
|
|
301
303
|
email_outro: Vous avez reçu cette notification parce que vous suivez "%{participatory_space_title}". Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
302
304
|
email_subject: Nouvelle proposition "%{resource_title}" ajoutée à %{participatory_space_title}
|
303
305
|
notification_title: La proposition <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title} par %{author}
|
306
|
+
notification_title_official: La proposition officielle <a href="%{resource_path}">%{resource_title}</a> a été ajoutée à %{participatory_space_title}
|
304
307
|
proposal_rejected:
|
305
308
|
affected_user:
|
306
309
|
email_intro: 'Votre proposition "%{resource_title}" a été rejetée. Vous pouvez lire la réponse sur cette page:'
|
data/config/locales/hu.yml
CHANGED
@@ -671,8 +671,11 @@ hu:
|
|
671
671
|
other: "%{count} javaslatot"
|
672
672
|
edit:
|
673
673
|
add_documents: Dokumentumok
|
674
|
+
add_images: Fájl
|
674
675
|
attachment_legend: "(Nem kötelező) Melléklet hozzáadása"
|
675
676
|
back: Vissza
|
677
|
+
delete_document: Dokumentum törlése
|
678
|
+
delete_image: Kép törlése
|
676
679
|
select_a_category: Válassz kategóriát
|
677
680
|
send: Küldés
|
678
681
|
title: Javaslat szerkesztése
|