decidim-proposals 0.30.6 → 0.30.7
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/forms/decidim/proposals/admin/proposal_form.rb +51 -1
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +2 -1
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +2 -2
- data/config/locales/ar.yml +5 -2
- data/config/locales/bg.yml +3 -0
- data/config/locales/ca-IT.yml +9 -9
- data/config/locales/ca.yml +9 -9
- data/config/locales/cs.yml +3 -2
- data/config/locales/de.yml +3 -3
- data/config/locales/el.yml +3 -0
- data/config/locales/es-MX.yml +9 -9
- data/config/locales/es-PY.yml +5 -5
- data/config/locales/es.yml +8 -8
- data/config/locales/eu.yml +3 -3
- data/config/locales/fi-plain.yml +6 -4
- data/config/locales/fi.yml +4 -2
- data/config/locales/fr-CA.yml +10 -10
- data/config/locales/fr.yml +10 -10
- data/config/locales/ga-IE.yml +5 -0
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +5 -2
- data/config/locales/id-ID.yml +4 -3
- data/config/locales/is-IS.yml +24 -0
- data/config/locales/it.yml +11 -5
- data/config/locales/ja.yml +4 -4
- data/config/locales/lt.yml +6 -3
- data/config/locales/lv.yml +3 -2
- data/config/locales/nl.yml +9 -8
- data/config/locales/no.yml +3 -0
- data/config/locales/pl.yml +8 -5
- data/config/locales/pt-BR.yml +9 -5
- data/config/locales/pt.yml +5 -2
- data/config/locales/ro-RO.yml +5 -2
- data/config/locales/ru.yml +27 -0
- data/config/locales/sk.yml +4 -3
- data/config/locales/sl.yml +6 -0
- data/config/locales/sv.yml +107 -9
- data/config/locales/tr-TR.yml +9 -5
- data/config/locales/uk.yml +27 -0
- data/config/locales/zh-CN.yml +3 -0
- data/config/locales/zh-TW.yml +4 -1
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +20 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfd17544141f0439fbf59d86fed66b04650e77c8ac187a939c74744e6c9317d7
|
|
4
|
+
data.tar.gz: ff24c5b890273ad02206a23c666854f7834abc3ea11c866100267e2597c1fd64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fae136565d241ae4810b79969f9eab5564fd03c21cf819c1402e0580f762ca444829972c2fd5056514e86db38f7b0e89dd6db543899f67eb3f950d1d7d0e792
|
|
7
|
+
data.tar.gz: ec0bf4726c90150691354f0512d2b9886cc0f13b5c72ff8b59922c49fcc71df6ae3a1c56f807ec832db856f3091bb4b5c4d43b45c1dfb4409902330a8d6ec7d5
|
|
@@ -27,12 +27,62 @@ module Decidim
|
|
|
27
27
|
|
|
28
28
|
self.title = presenter.title(all_locales: title.is_a?(Hash))
|
|
29
29
|
self.body = presenter.editor_body(all_locales: body.is_a?(Hash))
|
|
30
|
-
self.documents = model.attachments
|
|
30
|
+
self.documents = model.attachments.ids
|
|
31
|
+
self.add_documents = model.attachments.map { |att| { id: att.id, title: att.title } }
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def documents=(value)
|
|
35
|
+
case value
|
|
36
|
+
when String
|
|
37
|
+
super(parse_string_documents(value))
|
|
38
|
+
when Integer
|
|
39
|
+
super([value])
|
|
40
|
+
else
|
|
41
|
+
super
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def documents
|
|
46
|
+
result = super
|
|
47
|
+
|
|
48
|
+
if should_use_add_documents?(result)
|
|
49
|
+
extract_ids_from_add_documents
|
|
50
|
+
else
|
|
51
|
+
result.is_a?(Array) ? result : []
|
|
52
|
+
end
|
|
31
53
|
end
|
|
32
54
|
|
|
33
55
|
def notify_missing_attachment_if_errored
|
|
34
56
|
errors.add(:add_documents, :needs_to_be_reattached) if errors.any? && add_documents.present?
|
|
35
57
|
end
|
|
58
|
+
|
|
59
|
+
private
|
|
60
|
+
|
|
61
|
+
def should_use_add_documents?(result)
|
|
62
|
+
(result.blank? || result.is_a?(String)) && add_documents.present?
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def extract_ids_from_add_documents
|
|
66
|
+
add_documents
|
|
67
|
+
.select { |doc| doc.is_a?(Hash) && (doc[:id].present? || doc["id"].present?) }
|
|
68
|
+
.map { |doc| (doc[:id] || doc["id"]).to_i }
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def parse_string_documents(value)
|
|
72
|
+
return [] if value.blank?
|
|
73
|
+
|
|
74
|
+
parse_document_ids(value)
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def parse_document_ids(value)
|
|
78
|
+
ids = begin
|
|
79
|
+
Array(JSON.parse(value))
|
|
80
|
+
rescue JSON::ParserError
|
|
81
|
+
value.split(",").map(&:strip)
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
ids.map(&:to_i).reject(&:zero?)
|
|
85
|
+
end
|
|
36
86
|
end
|
|
37
87
|
end
|
|
38
88
|
end
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
button_edit_label: t("decidim.proposals.collaborative_drafts.new.edit_file"),
|
|
38
38
|
button_class: "button button__lg button__transparent-secondary w-full",
|
|
39
39
|
help_text: t("attachment_legend", scope: "decidim.proposals.collaborative_drafts.edit"),
|
|
40
|
-
help_i18n_scope: "decidim.forms.file_help.file"
|
|
40
|
+
help_i18n_scope: "decidim.forms.file_help.file",
|
|
41
|
+
paragraph: true %>
|
|
41
42
|
<% end %>
|
|
42
43
|
|
|
43
44
|
<% if current_organization.user_groups_enabled? && Decidim::UserGroups::ManageableUserGroups.for(current_user).verified.any? %>
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
<%= filter_taxonomy_items_select_field form, :taxonomies, filter %>
|
|
39
39
|
<% end %>
|
|
40
40
|
<% end %>
|
|
41
|
-
|
|
42
41
|
<% if component_settings.attachments_allowed? && (new_proposal || @proposal) %>
|
|
43
42
|
<%= form.attachment :documents,
|
|
44
43
|
multiple: true,
|
|
@@ -47,7 +46,8 @@
|
|
|
47
46
|
button_edit_label: t("decidim.proposals.proposals.edit.edit_attachments"),
|
|
48
47
|
button_class: "button button__lg button__transparent-secondary w-full",
|
|
49
48
|
help_i18n_scope: "decidim.forms.file_help.file",
|
|
50
|
-
help_text: t("attachment_legend", scope: "decidim.proposals.proposals.edit")
|
|
49
|
+
help_text: t("attachment_legend", scope: "decidim.proposals.proposals.edit"),
|
|
50
|
+
paragraph: true %>
|
|
51
51
|
<% end %>
|
|
52
52
|
|
|
53
53
|
<% if current_organization.user_groups_enabled? && Decidim::UserGroups::ManageableUserGroups.for(current_user).verified.any? %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -202,6 +202,9 @@ ar:
|
|
|
202
202
|
proposal_note_created:
|
|
203
203
|
email_outro: تلقيت هذا الإشعار لأنك تستطيع تقييم الاقتراح.
|
|
204
204
|
email_subject: ترك شخص ملاحظة على الاقتراح %{resource_title}.
|
|
205
|
+
coauthor_invited:
|
|
206
|
+
actions:
|
|
207
|
+
accept: قبول
|
|
205
208
|
collaborative_draft_access_accepted:
|
|
206
209
|
email_intro: 'تم قبول %{requester_name} لأن يكون مسجلاً كمساهم في المسودة التعاونية <a href="%{resource_url}">%{resource_title}</a>.'
|
|
207
210
|
email_outro: لقد تلقيت هذا الإشعار لأنك مساهم مع <a href="%{resource_url}">%{resource_title}</a>.
|
|
@@ -486,7 +489,7 @@ ar:
|
|
|
486
489
|
all: الكل
|
|
487
490
|
amendment: تعديلات
|
|
488
491
|
open: افتح
|
|
489
|
-
published:
|
|
492
|
+
published: تم نشره
|
|
490
493
|
related_to: متعلق ب
|
|
491
494
|
search: بحث
|
|
492
495
|
state: الحالة
|
|
@@ -544,7 +547,7 @@ ar:
|
|
|
544
547
|
withdraw: سحب المشروع
|
|
545
548
|
states:
|
|
546
549
|
open: افتح
|
|
547
|
-
published:
|
|
550
|
+
published: تم نشره
|
|
548
551
|
withdrawn: سحب
|
|
549
552
|
update:
|
|
550
553
|
error: حدثت مشكلة في حفظ المسودة التعاونية.
|
data/config/locales/bg.yml
CHANGED
|
@@ -226,6 +226,9 @@ bg:
|
|
|
226
226
|
proposal_note_created:
|
|
227
227
|
email_outro: Получихте известие, защото можете да оценяте предложението.
|
|
228
228
|
email_subject: Някой е направил бележка в предложението %{resource_title}.
|
|
229
|
+
coauthor_invited:
|
|
230
|
+
actions:
|
|
231
|
+
accept: Приеми
|
|
229
232
|
collaborative_draft_access_accepted:
|
|
230
233
|
email_intro: '%{requester_name} получи достъп като сътрудник в съвместната чернова <a href="%{resource_url}">%{resource_title}</a>.'
|
|
231
234
|
email_outro: Получихте известие, защото сте сътрудник в <a href="%{resource_url}">%{resource_title}</a>.
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -366,9 +366,9 @@ ca-IT:
|
|
|
366
366
|
notification_title: La teva proposta <a href="%{resource_path}">%{resource_title}</a>ha canviat el seu estat a "%{state}".
|
|
367
367
|
follower:
|
|
368
368
|
email_intro: 'La proposta "%{resource_title}" ha canviat d''estat a "%{state}". Pots llegir la resposta en aquesta pàgina:'
|
|
369
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}". Pots deixar de seguir-ho des de l'enllaç anterior.
|
|
369
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{resource_title}". Pots deixar de seguir-ho des de l'enllaç anterior.
|
|
370
370
|
email_subject: Una proposta que segueixes ha canviat el seu estat (%{state})
|
|
371
|
-
notification_title: La
|
|
371
|
+
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a> ha canviat el seu estat a "%{state}".
|
|
372
372
|
proposal_update_taxonomies:
|
|
373
373
|
email_intro: 'Una administradora ha actualitzat les taxonomies de la teva proposta "%{resource_title}", fes-hi una ullada:'
|
|
374
374
|
email_outro: Has rebut aquesta notificació perquè ets l'autora de la proposta.
|
|
@@ -696,7 +696,7 @@ ca-IT:
|
|
|
696
696
|
success: El procés d'importació ha començat. T'avisarem quan hagi finalitzat.
|
|
697
697
|
new:
|
|
698
698
|
create: Importa propostes
|
|
699
|
-
no_components: No hi ha cap altre component de propostes en aquest espai
|
|
699
|
+
no_components: No hi ha cap altre component de propostes en aquest espai de participació des d'on importar-les.
|
|
700
700
|
select_component: Escull un component
|
|
701
701
|
select_states: Importa només les propostes amb aquests estats. Si no s'ha seleccionat cap estat, s'importaran totes les propostes.
|
|
702
702
|
title: Importar projectes des d'un altre component
|
|
@@ -780,11 +780,11 @@ ca-IT:
|
|
|
780
780
|
all: Tots
|
|
781
781
|
amendment: Esmenes
|
|
782
782
|
open: Obert
|
|
783
|
-
published:
|
|
783
|
+
published: Publicades
|
|
784
784
|
related_to: Relacionat amb
|
|
785
785
|
search: Cerca
|
|
786
786
|
state: Estat
|
|
787
|
-
withdrawn:
|
|
787
|
+
withdrawn: Retirada
|
|
788
788
|
filters_small_view:
|
|
789
789
|
close_modal: Tanca la finestra
|
|
790
790
|
filter: Filtre
|
|
@@ -814,7 +814,7 @@ ca-IT:
|
|
|
814
814
|
error: No s'ha pogut completar la teva sol·licitud, si us plau torna-ho a provar més tard.
|
|
815
815
|
success: La teva sol·licitud de contribució s'ha enviat correctament.
|
|
816
816
|
collaboration_requests:
|
|
817
|
-
accept_request:
|
|
817
|
+
accept_request: Acceptar
|
|
818
818
|
reject_request: Rebutja
|
|
819
819
|
title: Sol·licituds de col·laboració
|
|
820
820
|
rejected_request:
|
|
@@ -836,10 +836,10 @@ ca-IT:
|
|
|
836
836
|
withdraw: retira l'esborrany
|
|
837
837
|
states:
|
|
838
838
|
open: Obert
|
|
839
|
-
published:
|
|
840
|
-
withdrawn:
|
|
839
|
+
published: Publicades
|
|
840
|
+
withdrawn: Retirada
|
|
841
841
|
update:
|
|
842
|
-
error:
|
|
842
|
+
error: Hi ha hagut un error en desar l'esborrany col·laboratiu.
|
|
843
843
|
success: L'esborrany col·laboratiu s'ha actualitzat correctament.
|
|
844
844
|
wizard_aside:
|
|
845
845
|
back_from_collaborative_draft: Tornar a l'esborrany col·laboratiu
|
data/config/locales/ca.yml
CHANGED
|
@@ -366,9 +366,9 @@ ca:
|
|
|
366
366
|
notification_title: La teva proposta <a href="%{resource_path}">%{resource_title}</a>ha canviat el seu estat a "%{state}".
|
|
367
367
|
follower:
|
|
368
368
|
email_intro: 'La proposta "%{resource_title}" ha canviat d''estat a "%{state}". Pots llegir la resposta en aquesta pàgina:'
|
|
369
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}". Pots deixar de seguir-ho des de l'enllaç anterior.
|
|
369
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{resource_title}". Pots deixar de seguir-ho des de l'enllaç anterior.
|
|
370
370
|
email_subject: Una proposta que segueixes ha canviat el seu estat (%{state})
|
|
371
|
-
notification_title: La
|
|
371
|
+
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a> ha canviat el seu estat a "%{state}".
|
|
372
372
|
proposal_update_taxonomies:
|
|
373
373
|
email_intro: 'Una administradora ha actualitzat les taxonomies de la teva proposta "%{resource_title}", fes-hi una ullada:'
|
|
374
374
|
email_outro: Has rebut aquesta notificació perquè ets l'autora de la proposta.
|
|
@@ -696,7 +696,7 @@ ca:
|
|
|
696
696
|
success: El procés d'importació ha començat. T'avisarem quan hagi finalitzat.
|
|
697
697
|
new:
|
|
698
698
|
create: Importa propostes
|
|
699
|
-
no_components: No hi ha cap altre component de propostes en aquest espai
|
|
699
|
+
no_components: No hi ha cap altre component de propostes en aquest espai de participació des d'on importar-les.
|
|
700
700
|
select_component: Escull un component
|
|
701
701
|
select_states: Importa només les propostes amb aquests estats. Si no s'ha seleccionat cap estat, s'importaran totes les propostes.
|
|
702
702
|
title: Importar projectes des d'un altre component
|
|
@@ -780,11 +780,11 @@ ca:
|
|
|
780
780
|
all: Tots
|
|
781
781
|
amendment: Esmenes
|
|
782
782
|
open: Obert
|
|
783
|
-
published:
|
|
783
|
+
published: Publicades
|
|
784
784
|
related_to: Relacionat amb
|
|
785
785
|
search: Cerca
|
|
786
786
|
state: Estat
|
|
787
|
-
withdrawn:
|
|
787
|
+
withdrawn: Retirada
|
|
788
788
|
filters_small_view:
|
|
789
789
|
close_modal: Tanca la finestra
|
|
790
790
|
filter: Filtre
|
|
@@ -814,7 +814,7 @@ ca:
|
|
|
814
814
|
error: No s'ha pogut completar la teva sol·licitud, si us plau torna-ho a provar més tard.
|
|
815
815
|
success: La teva sol·licitud de contribució s'ha enviat correctament.
|
|
816
816
|
collaboration_requests:
|
|
817
|
-
accept_request:
|
|
817
|
+
accept_request: Acceptar
|
|
818
818
|
reject_request: Rebutja
|
|
819
819
|
title: Sol·licituds de col·laboració
|
|
820
820
|
rejected_request:
|
|
@@ -836,10 +836,10 @@ ca:
|
|
|
836
836
|
withdraw: retira l'esborrany
|
|
837
837
|
states:
|
|
838
838
|
open: Obert
|
|
839
|
-
published:
|
|
840
|
-
withdrawn:
|
|
839
|
+
published: Publicades
|
|
840
|
+
withdrawn: Retirada
|
|
841
841
|
update:
|
|
842
|
-
error:
|
|
842
|
+
error: Hi ha hagut un error en desar l'esborrany col·laboratiu.
|
|
843
843
|
success: L'esborrany col·laboratiu s'ha actualitzat correctament.
|
|
844
844
|
wizard_aside:
|
|
845
845
|
back_from_collaborative_draft: Tornar a l'esborrany col·laboratiu
|
data/config/locales/cs.yml
CHANGED
|
@@ -98,6 +98,7 @@ cs:
|
|
|
98
98
|
decidim:
|
|
99
99
|
proposals:
|
|
100
100
|
proposal:
|
|
101
|
+
budget_text: Návrh <span class="resource-link">%{link} byl vytvořen</span>
|
|
101
102
|
import_from_proposal_text: 'Stal se z něj tento návrh: %{link}'
|
|
102
103
|
merge_from_proposal_text: 'Stal se z něj tento návrh: %{link}'
|
|
103
104
|
merge_to_proposal_text: 'Tento návrh byl vytvořen: %{link}'
|
|
@@ -819,7 +820,7 @@ cs:
|
|
|
819
820
|
error: Vaše žádost nebyla dokončena, zkuste to znovu později.
|
|
820
821
|
success: Vaše žádost o spolupráci byla úspěšně odeslána.
|
|
821
822
|
collaboration_requests:
|
|
822
|
-
accept_request:
|
|
823
|
+
accept_request: Přijmout
|
|
823
824
|
reject_request: Odmítnout
|
|
824
825
|
title: Žádosti o spolupráci
|
|
825
826
|
rejected_request:
|
|
@@ -846,7 +847,7 @@ cs:
|
|
|
846
847
|
published: Publikováno
|
|
847
848
|
withdrawn: Staženo
|
|
848
849
|
update:
|
|
849
|
-
error: Při ukládání
|
|
850
|
+
error: Při ukládání konceptu návrhu došlo k chybám.
|
|
850
851
|
success: Protokol o spolupráci byl úspěšně aktualizován.
|
|
851
852
|
wizard_aside:
|
|
852
853
|
back_from_collaborative_draft: Zpět na koncepty spolupráce
|
data/config/locales/de.yml
CHANGED
|
@@ -779,8 +779,8 @@ de:
|
|
|
779
779
|
amendment: Änderungsanträge
|
|
780
780
|
open: Offen
|
|
781
781
|
published: Veröffentlicht
|
|
782
|
-
related_to:
|
|
783
|
-
search:
|
|
782
|
+
related_to: Bezüglich
|
|
783
|
+
search: Suche
|
|
784
784
|
state: Status
|
|
785
785
|
withdrawn: Zurückgezogen
|
|
786
786
|
filters_small_view:
|
|
@@ -837,7 +837,7 @@ de:
|
|
|
837
837
|
published: Veröffentlicht
|
|
838
838
|
withdrawn: Zurückgezogen
|
|
839
839
|
update:
|
|
840
|
-
error: Beim Speichern des
|
|
840
|
+
error: Beim Speichern des Vorschlagsentwurfs ist ein Fehler aufgetreten.
|
|
841
841
|
success: Collaborative Draft wurde erfolgreich aktualisiert.
|
|
842
842
|
wizard_aside:
|
|
843
843
|
back_from_collaborative_draft: Zurück zu gemeinschaftlichen Entwürfen
|
data/config/locales/el.yml
CHANGED
|
@@ -191,6 +191,9 @@ el:
|
|
|
191
191
|
proposal_note_created:
|
|
192
192
|
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή μπορείτε να εκτιμήσετε την πρόταση.
|
|
193
193
|
email_subject: Κάποιος άφησε μια σημείωση στην πρόταση %{resource_title}.
|
|
194
|
+
coauthor_invited:
|
|
195
|
+
actions:
|
|
196
|
+
accept: Αποδοχή
|
|
194
197
|
collaborative_draft_access_accepted:
|
|
195
198
|
email_intro: '%{requester_name} έχει γίνει δεκτή η πρόσβαση ως συνεισφέρων του <a href="%{resource_url}">%{resource_title}</a> συνεργατικού σχεδίου.'
|
|
196
199
|
email_outro: Έχετε λάβει αυτήν την ειδοποίηση επειδή είστε συνεργάτης του <a href="%{resource_url}">%{resource_title}</a>.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -190,7 +190,7 @@ es-MX:
|
|
|
190
190
|
random: Aleatorio
|
|
191
191
|
recent: Recientes
|
|
192
192
|
with_more_authors: Con más autoras
|
|
193
|
-
define_taxonomy_filters: Por favor, define algunos filtros para este espacio
|
|
193
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
194
194
|
edit_time: Las autoras pueden editar las propuestas antes de que pase este tiempo
|
|
195
195
|
edit_time_units:
|
|
196
196
|
days: Días
|
|
@@ -771,20 +771,20 @@ es-MX:
|
|
|
771
771
|
success: Borrador colaborativo creado con éxito.
|
|
772
772
|
edit:
|
|
773
773
|
attachment_legend: Añadir un documento o una imagen
|
|
774
|
-
back:
|
|
774
|
+
back: Atrás
|
|
775
775
|
send: Enviar
|
|
776
776
|
title: Editar borrador colaborativo
|
|
777
777
|
empty: Todavía no hay borradores colaborativos
|
|
778
778
|
empty_filters: No hay ningún borrador colaborativo con este criterio
|
|
779
779
|
filters:
|
|
780
|
-
all:
|
|
780
|
+
all: Todos
|
|
781
781
|
amendment: Enmiendas
|
|
782
782
|
open: Abierto
|
|
783
|
-
published:
|
|
784
|
-
related_to:
|
|
783
|
+
published: Publicadas
|
|
784
|
+
related_to: Relacionadas con
|
|
785
785
|
search: Buscar
|
|
786
786
|
state: Estado
|
|
787
|
-
withdrawn:
|
|
787
|
+
withdrawn: Retirada
|
|
788
788
|
filters_small_view:
|
|
789
789
|
close_modal: Cerrar modal
|
|
790
790
|
filter: Filtrar
|
|
@@ -836,10 +836,10 @@ es-MX:
|
|
|
836
836
|
withdraw: retirar el borrador
|
|
837
837
|
states:
|
|
838
838
|
open: Abierto
|
|
839
|
-
published:
|
|
840
|
-
withdrawn:
|
|
839
|
+
published: Publicadas
|
|
840
|
+
withdrawn: Retirada
|
|
841
841
|
update:
|
|
842
|
-
error: Ha habido errores al guardar el borrador
|
|
842
|
+
error: Ha habido errores al guardar el borrador de la propuesta.
|
|
843
843
|
success: Borrador colaborativo actualizado con éxito.
|
|
844
844
|
wizard_aside:
|
|
845
845
|
back_from_collaborative_draft: Volver al borrador colaborativo
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -190,7 +190,7 @@ es-PY:
|
|
|
190
190
|
random: Aleatorio
|
|
191
191
|
recent: Recientes
|
|
192
192
|
with_more_authors: Con más autoras
|
|
193
|
-
define_taxonomy_filters: Por favor, define algunos filtros para este espacio
|
|
193
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
194
194
|
edit_time: Las autoras pueden editar las propuestas antes de que pase este tiempo
|
|
195
195
|
edit_time_units:
|
|
196
196
|
days: Días
|
|
@@ -777,10 +777,10 @@ es-PY:
|
|
|
777
777
|
empty: Todavía no hay borradores colaborativos
|
|
778
778
|
empty_filters: No hay ningún borrador colaborativo con este criterio
|
|
779
779
|
filters:
|
|
780
|
-
all:
|
|
780
|
+
all: Todos
|
|
781
781
|
amendment: Enmiendas
|
|
782
782
|
open: Abierto
|
|
783
|
-
published:
|
|
783
|
+
published: Publicadas
|
|
784
784
|
related_to: Relacionado con
|
|
785
785
|
search: Buscar
|
|
786
786
|
state: Estado
|
|
@@ -836,10 +836,10 @@ es-PY:
|
|
|
836
836
|
withdraw: retirar el borrador
|
|
837
837
|
states:
|
|
838
838
|
open: Abierto
|
|
839
|
-
published:
|
|
839
|
+
published: Publicadas
|
|
840
840
|
withdrawn: Retirado
|
|
841
841
|
update:
|
|
842
|
-
error: Ha habido errores al guardar el borrador
|
|
842
|
+
error: Ha habido errores al guardar el borrador de la propuesta.
|
|
843
843
|
success: Borrador colaborativo actualizado con éxito.
|
|
844
844
|
wizard_aside:
|
|
845
845
|
back_from_collaborative_draft: Volver al borrador colaborativo
|
data/config/locales/es.yml
CHANGED
|
@@ -190,7 +190,7 @@ es:
|
|
|
190
190
|
random: Aleatorio
|
|
191
191
|
recent: Recientes
|
|
192
192
|
with_more_authors: Con más autoras
|
|
193
|
-
define_taxonomy_filters: Por favor, define algunos filtros para este espacio
|
|
193
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
194
194
|
edit_time: Las autoras pueden editar las propuestas antes de que pase este tiempo
|
|
195
195
|
edit_time_units:
|
|
196
196
|
days: Días
|
|
@@ -696,7 +696,7 @@ es:
|
|
|
696
696
|
success: El proceso de importación ha comenzado. Te avisaremos cuando haya terminado.
|
|
697
697
|
new:
|
|
698
698
|
create: Importar propuestas
|
|
699
|
-
no_components: No hay otros componentes de propuestas en este espacio
|
|
699
|
+
no_components: No hay otros componentes de propuestas en este espacio de participación desde donde importarlas.
|
|
700
700
|
select_component: Selecciona un componente
|
|
701
701
|
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
702
702
|
title: Importar propuestas desde otro componente
|
|
@@ -777,14 +777,14 @@ es:
|
|
|
777
777
|
empty: Todavía no hay borradores colaborativos
|
|
778
778
|
empty_filters: No hay ningún borrador colaborativo con este criterio
|
|
779
779
|
filters:
|
|
780
|
-
all:
|
|
780
|
+
all: Todos
|
|
781
781
|
amendment: Enmiendas
|
|
782
782
|
open: Abierto
|
|
783
|
-
published:
|
|
784
|
-
related_to:
|
|
783
|
+
published: Publicada
|
|
784
|
+
related_to: Relacionadas con
|
|
785
785
|
search: Buscar
|
|
786
786
|
state: Estado
|
|
787
|
-
withdrawn:
|
|
787
|
+
withdrawn: Retirada
|
|
788
788
|
filters_small_view:
|
|
789
789
|
close_modal: Cerrar la ventana
|
|
790
790
|
filter: Filtrar
|
|
@@ -836,8 +836,8 @@ es:
|
|
|
836
836
|
withdraw: retirar el borrador
|
|
837
837
|
states:
|
|
838
838
|
open: Abierto
|
|
839
|
-
published:
|
|
840
|
-
withdrawn:
|
|
839
|
+
published: Publicada
|
|
840
|
+
withdrawn: Retirada
|
|
841
841
|
update:
|
|
842
842
|
error: Se ha producido un error al guardar el borrador colaborativo.
|
|
843
843
|
success: Borrador colaborativo actualizado correctamente.
|
data/config/locales/eu.yml
CHANGED
|
@@ -781,10 +781,10 @@ eu:
|
|
|
781
781
|
amendment: Zuzenketak
|
|
782
782
|
open: Zabaldu
|
|
783
783
|
published: Argitaratua
|
|
784
|
-
related_to:
|
|
784
|
+
related_to: Honekin lotuta
|
|
785
785
|
search: Bilatu
|
|
786
786
|
state: Egoera
|
|
787
|
-
withdrawn:
|
|
787
|
+
withdrawn: Kendu
|
|
788
788
|
filters_small_view:
|
|
789
789
|
close_modal: Itxi leihoa
|
|
790
790
|
filter: Iragazi
|
|
@@ -839,7 +839,7 @@ eu:
|
|
|
839
839
|
published: Argitaratua
|
|
840
840
|
withdrawn: Kendu
|
|
841
841
|
update:
|
|
842
|
-
error:
|
|
842
|
+
error: Arazoak izan dira proposamenaren aurrebista gordetzean.
|
|
843
843
|
success: Ziriboro kolaboratiboa ondo eguneratu da.
|
|
844
844
|
wizard_aside:
|
|
845
845
|
back_from_collaborative_draft: Itzuli zirriborro kolaboratzaileetara
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -54,6 +54,7 @@ fi-pl:
|
|
|
54
54
|
file: Tiedosto
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Tuo ehdotuksia
|
|
57
|
+
keep_answers: Säilytä tilat ja vastaukset ennallaan
|
|
57
58
|
keep_authors: Säilytä alkuperäiset laatijat
|
|
58
59
|
valuation_assignment:
|
|
59
60
|
admin_log:
|
|
@@ -697,6 +698,7 @@ fi-pl:
|
|
|
697
698
|
create: Tuo ehdotuksia
|
|
698
699
|
no_components: Tässä osallisuustilassa ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
|
699
700
|
select_component: Valitse komponentti
|
|
701
|
+
select_states: Tuo ainoastaan ehdotukset, joilla on nämä tilat. Jos yhtään tilaa ei ole valittuna, kaikki ehdotukset tuodaan.
|
|
700
702
|
title: Tuo ehdotuksia toisesta komponentista
|
|
701
703
|
proposals_merges:
|
|
702
704
|
create:
|
|
@@ -779,10 +781,10 @@ fi-pl:
|
|
|
779
781
|
amendment: Muutokset
|
|
780
782
|
open: Avaa
|
|
781
783
|
published: Julkaistu
|
|
782
|
-
related_to: Liittyy
|
|
783
|
-
search:
|
|
784
|
+
related_to: Liittyy aiheeseen
|
|
785
|
+
search: Haku
|
|
784
786
|
state: Tila
|
|
785
|
-
withdrawn:
|
|
787
|
+
withdrawn: Peruutettu
|
|
786
788
|
filters_small_view:
|
|
787
789
|
close_modal: Sulje modaalinen
|
|
788
790
|
filter: Rajaa
|
|
@@ -837,7 +839,7 @@ fi-pl:
|
|
|
837
839
|
published: Julkaistu
|
|
838
840
|
withdrawn: Peruutettu
|
|
839
841
|
update:
|
|
840
|
-
error:
|
|
842
|
+
error: Ehdotusluonnoksen tallentamisessa tapahtui virheitä.
|
|
841
843
|
success: Yhteistyöluonnos on päivitetty onnistuneesti.
|
|
842
844
|
wizard_aside:
|
|
843
845
|
back_from_collaborative_draft: Takaisin yhteistyöluonnoksiin
|
data/config/locales/fi.yml
CHANGED
|
@@ -54,6 +54,7 @@ fi:
|
|
|
54
54
|
file: Tiedosto
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Tuo ehdotuksia
|
|
57
|
+
keep_answers: Säilytä tilat ja vastaukset ennallaan
|
|
57
58
|
keep_authors: Säilytä alkuperäiset laatijat
|
|
58
59
|
valuation_assignment:
|
|
59
60
|
admin_log:
|
|
@@ -697,6 +698,7 @@ fi:
|
|
|
697
698
|
create: Tuo ehdotuksia
|
|
698
699
|
no_components: Tässä osallistumistilassa ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
|
699
700
|
select_component: Valitse komponentti
|
|
701
|
+
select_states: Tuo ainoastaan ehdotukset, joilla on nämä tilat. Jos yhtään tilaa ei ole valittuna, kaikki ehdotukset tuodaan.
|
|
700
702
|
title: Tuo ehdotuksia toisesta komponentista
|
|
701
703
|
proposals_merges:
|
|
702
704
|
create:
|
|
@@ -779,8 +781,8 @@ fi:
|
|
|
779
781
|
amendment: Muutokset
|
|
780
782
|
open: Avaa
|
|
781
783
|
published: Julkaistu
|
|
782
|
-
related_to: Liittyy
|
|
783
|
-
search:
|
|
784
|
+
related_to: Liittyy aiheeseen
|
|
785
|
+
search: Haku
|
|
784
786
|
state: Tila
|
|
785
787
|
withdrawn: Peruttu
|
|
786
788
|
filters_small_view:
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -290,7 +290,7 @@ fr-CA:
|
|
|
290
290
|
notification_title: <a href="%{coauthor_path}">%{coauthor_name}</a> a accepté votre invitation à devenir co-auteur de la proposition <a href="%{resource_path}">%{resource_title}</a>.
|
|
291
291
|
coauthor_invited:
|
|
292
292
|
actions:
|
|
293
|
-
accept:
|
|
293
|
+
accept: Accepté
|
|
294
294
|
decline: Refuser
|
|
295
295
|
email_intro: 'Vous avez été invité à être co-auteur de la proposition "%{resource_title}". Vous pouvez accepter ou refuser l''invitation sur cette page :'
|
|
296
296
|
email_outro: Vous avez reçu cette notification parce que l'auteur de la proposition veut reconnaître vos contributions en devenant co-auteur.
|
|
@@ -700,11 +700,11 @@ fr-CA:
|
|
|
700
700
|
all: Tout
|
|
701
701
|
amendment: Amendements
|
|
702
702
|
open: Ouvrir
|
|
703
|
-
published:
|
|
704
|
-
related_to:
|
|
705
|
-
search:
|
|
703
|
+
published: Publiée
|
|
704
|
+
related_to: Liées à
|
|
705
|
+
search: Rechercher
|
|
706
706
|
state: État
|
|
707
|
-
withdrawn:
|
|
707
|
+
withdrawn: Retirée
|
|
708
708
|
filters_small_view:
|
|
709
709
|
close_modal: Fermer la fenêtre
|
|
710
710
|
filter: Filtre
|
|
@@ -725,7 +725,7 @@ fr-CA:
|
|
|
725
725
|
label: 'Ordre des brouillons par:'
|
|
726
726
|
most_contributed: La plupart ont contribué
|
|
727
727
|
random: Aléatoire
|
|
728
|
-
recent:
|
|
728
|
+
recent: Les plus récentes
|
|
729
729
|
requests:
|
|
730
730
|
accepted_request:
|
|
731
731
|
error: Ne peut être accepté en tant que collaborateur, réessayez plus tard.
|
|
@@ -741,7 +741,7 @@ fr-CA:
|
|
|
741
741
|
error: Ne peut être rejeté en tant que collaborateur, réessayez plus tard.
|
|
742
742
|
success: "@%{user} a été rejeté en tant que collaborateur avec succès."
|
|
743
743
|
show:
|
|
744
|
-
edit:
|
|
744
|
+
edit:
|
|
745
745
|
final_proposal: proposition finale
|
|
746
746
|
final_proposal_help_text: Ce brouillon est terminé. Vous pouvez voir la proposition finale terminée
|
|
747
747
|
hidden_authors_count:
|
|
@@ -756,10 +756,10 @@ fr-CA:
|
|
|
756
756
|
withdraw: retirer le projet
|
|
757
757
|
states:
|
|
758
758
|
open: Ouvrir
|
|
759
|
-
published:
|
|
760
|
-
withdrawn:
|
|
759
|
+
published: Publiée
|
|
760
|
+
withdrawn: Retirée
|
|
761
761
|
update:
|
|
762
|
-
error:
|
|
762
|
+
error: Des erreurs sont survenues lors de l'enregistrement du brouillon de la proposition.
|
|
763
763
|
success: Brouillon collaboratif mis à jour avec succès.
|
|
764
764
|
wizard_aside:
|
|
765
765
|
back_from_collaborative_draft: Retour aux brouillons collaboratifs
|
data/config/locales/fr.yml
CHANGED
|
@@ -700,11 +700,11 @@ fr:
|
|
|
700
700
|
all: Tout
|
|
701
701
|
amendment: Amendements
|
|
702
702
|
open: Ouvrir
|
|
703
|
-
published:
|
|
704
|
-
related_to:
|
|
705
|
-
search:
|
|
703
|
+
published: Publiée
|
|
704
|
+
related_to: Liées à
|
|
705
|
+
search: Rechercher
|
|
706
706
|
state: État
|
|
707
|
-
withdrawn:
|
|
707
|
+
withdrawn: Retirée
|
|
708
708
|
filters_small_view:
|
|
709
709
|
close_modal: Fermer la fenêtre
|
|
710
710
|
filter: Filtre
|
|
@@ -725,7 +725,7 @@ fr:
|
|
|
725
725
|
label: 'Ordre des brouillons par:'
|
|
726
726
|
most_contributed: La plupart ont contribué
|
|
727
727
|
random: Aléatoire
|
|
728
|
-
recent:
|
|
728
|
+
recent: Les plus récentes
|
|
729
729
|
requests:
|
|
730
730
|
accepted_request:
|
|
731
731
|
error: Ne peut être accepté en tant que collaborateur, réessayez plus tard.
|
|
@@ -734,14 +734,14 @@ fr:
|
|
|
734
734
|
error: Votre demande n'a pas pu être complétée, réessayez plus tard.
|
|
735
735
|
success: Votre demande de collaboration a été envoyée avec succès.
|
|
736
736
|
collaboration_requests:
|
|
737
|
-
accept_request:
|
|
737
|
+
accept_request: Accepter
|
|
738
738
|
reject_request: Rejeté
|
|
739
739
|
title: Demandes de collaboration
|
|
740
740
|
rejected_request:
|
|
741
741
|
error: Ne peut être rejeté en tant que collaborateur, réessayez plus tard.
|
|
742
742
|
success: "@%{user} a été rejeté en tant que collaborateur avec succès."
|
|
743
743
|
show:
|
|
744
|
-
edit:
|
|
744
|
+
edit:
|
|
745
745
|
final_proposal: Proposition finale
|
|
746
746
|
final_proposal_help_text: Ce brouillon est terminé. Vous pouvez voir la proposition finale terminée
|
|
747
747
|
hidden_authors_count:
|
|
@@ -756,10 +756,10 @@ fr:
|
|
|
756
756
|
withdraw: retirer le projet
|
|
757
757
|
states:
|
|
758
758
|
open: Ouvrir
|
|
759
|
-
published:
|
|
760
|
-
withdrawn:
|
|
759
|
+
published: Publiée
|
|
760
|
+
withdrawn: Retirée
|
|
761
761
|
update:
|
|
762
|
-
error:
|
|
762
|
+
error: Des erreurs sont survenues lors de l'enregistrement du brouillon de la proposition.
|
|
763
763
|
success: Brouillon collaboratif mis à jour avec succès.
|
|
764
764
|
wizard_aside:
|
|
765
765
|
back_from_collaborative_draft: Retour aux brouillons collaboratifs
|