decidim-initiatives 0.25.0 → 0.26.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/commands/decidim/initiatives/update_initiative.rb +5 -2
- data/app/packs/stylesheets/decidim/initiatives/initiatives.scss +0 -1
- data/app/queries/decidim/initiatives/similar_initiatives.rb +1 -1
- data/app/services/decidim/initiatives/initiative_search.rb +2 -3
- data/app/views/decidim/initiatives/admin/answers/_info_initiative.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/initiatives/show.html.erb +1 -1
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +1 -1
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_filters_small_view.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +3 -4
- data/app/views/decidim/initiatives/initiatives/_result.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/print.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/show.html.erb +1 -1
- data/config/locales/ca.yml +1 -1
- data/config/locales/cs.yml +1 -1
- data/config/locales/de.yml +0 -1
- data/config/locales/en.yml +1 -1
- data/config/locales/es-MX.yml +1 -1
- data/config/locales/es-PY.yml +1 -1
- data/config/locales/es.yml +1 -1
- data/config/locales/eu.yml +8 -9
- data/config/locales/fi-plain.yml +1 -1
- data/config/locales/fi.yml +1 -1
- data/config/locales/fr.yml +5 -5
- data/config/locales/it.yml +0 -1
- data/config/locales/ja.yml +14 -14
- data/config/locales/lb-LU.yml +342 -0
- data/config/locales/lb.yml +0 -1
- data/config/locales/nl.yml +5 -0
- data/config/locales/pl.yml +0 -1
- data/config/locales/pt-BR.yml +1 -2
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +138 -123
- data/config/locales/sv.yml +0 -1
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/val-ES.yml +1 -0
- data/lib/decidim/initiatives/engine.rb +4 -0
- data/lib/decidim/initiatives/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: a8915a0a9a8ad07a8ebd338377d28f6dbd434f15fd51377b8f31d3474486e827
|
4
|
+
data.tar.gz: 52323c7a2787dd94c7500e3a0e2ec2cf4004424ea936f0500b357a5b3ffe85eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b16f19d31d46cb72c2a8eaa3af05eb736752426ae982ebb8d978a10e1a3b7489e51d23c03939f522f264d1e0987fdea2c0ee8ba0eea51d5be3bebdce535b8099
|
7
|
+
data.tar.gz: 33327b6b28864965687c96be216dd647acc987540aed7941cdbdcebd3bd61e0ee9eb12addb13024ad4a2107af1946a033cece3dbaae5efd8950120d3043435c1
|
@@ -6,6 +6,7 @@ module Decidim
|
|
6
6
|
# existing initiative.
|
7
7
|
class UpdateInitiative < Rectify::Command
|
8
8
|
include ::Decidim::MultipleAttachmentsMethods
|
9
|
+
include ::Decidim::GalleryMethods
|
9
10
|
include CurrentLocale
|
10
11
|
|
11
12
|
# Public: Initializes the command.
|
@@ -29,18 +30,20 @@ module Decidim
|
|
29
30
|
return broadcast(:invalid) if form.invalid?
|
30
31
|
|
31
32
|
if process_attachments?
|
32
|
-
@initiative.attachments.where(id: form.documents).destroy_all
|
33
|
-
|
34
33
|
build_attachments
|
35
34
|
return broadcast(:invalid) if attachments_invalid?
|
36
35
|
end
|
36
|
+
|
37
37
|
@initiative = Decidim.traceability.update!(
|
38
38
|
initiative,
|
39
39
|
current_user,
|
40
40
|
attributes
|
41
41
|
)
|
42
42
|
|
43
|
+
photo_cleanup!
|
44
|
+
document_cleanup!
|
43
45
|
create_attachments if process_attachments?
|
46
|
+
|
44
47
|
broadcast(:ok, initiative)
|
45
48
|
rescue ActiveRecord::RecordInvalid
|
46
49
|
broadcast(:invalid, initiative)
|
@@ -30,7 +30,7 @@ module Decidim
|
|
30
30
|
.published
|
31
31
|
.where(organization: @organization)
|
32
32
|
.where(
|
33
|
-
"GREATEST(#{title_similarity}, #{description_similarity}) >= ?",
|
33
|
+
Arel.sql("GREATEST(#{title_similarity}, #{description_similarity}) >= ?").to_s,
|
34
34
|
form.title,
|
35
35
|
form.description,
|
36
36
|
Decidim::Initiatives.similarity_threshold
|
@@ -24,11 +24,10 @@ module Decidim
|
|
24
24
|
# Handle the search_text filter
|
25
25
|
def search_search_text
|
26
26
|
query
|
27
|
-
.where("title->>'#{current_locale}' ILIKE ?", "%#{search_text}%")
|
27
|
+
.where(Arel.sql("title->>'#{current_locale}' ILIKE ?").to_s, "%#{search_text}%")
|
28
28
|
.or(
|
29
29
|
query.where(
|
30
|
-
"description->>'#{current_locale}' ILIKE ?",
|
31
|
-
"%#{search_text}%"
|
30
|
+
Arel.sql("description->>'#{current_locale}' ILIKE ?").to_s, "%#{search_text}%"
|
32
31
|
)
|
33
32
|
)
|
34
33
|
.or(
|
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
<div class="card-section">
|
10
10
|
<div class="row column">
|
11
|
-
<strong><%= t ".description" %>: </strong> <%=
|
11
|
+
<strong><%= t ".description" %>: </strong> <%= decidim_sanitize_editor translated_attribute(initiative.description) %>
|
12
12
|
</div>
|
13
13
|
<div class="row column">
|
14
14
|
<strong><%= t ".created_at" %>: </strong> <%= l initiative.created_at, format: :decidim_short %>
|
@@ -103,7 +103,7 @@
|
|
103
103
|
<%= translated_attribute(current_initiative.type.title) %>
|
104
104
|
|
105
105
|
<h2 class="print-section-title">Definició de la Iniciativa:</h2>
|
106
|
-
<%=
|
106
|
+
<%= decidim_sanitize_editor translated_attribute(current_initiative.description) %>
|
107
107
|
|
108
108
|
<h2 class="print-section-title">Exposició de motius:</h2>
|
109
109
|
<br><br><br><br><br>
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<div class="row">
|
19
19
|
<div class="columns large-12">
|
20
20
|
<div class="section">
|
21
|
-
<%=
|
21
|
+
<%= decidim_sanitize_editor translated_attribute(current_initiative.description) %>
|
22
22
|
</div>
|
23
23
|
|
24
24
|
<div class="section">
|
@@ -1,13 +1,13 @@
|
|
1
1
|
<div class="filters-controls hide-for-mediumlarge">
|
2
|
-
<button data-open="filter-box" class="filters-controls__trigger">
|
2
|
+
<button data-open="filter-box" class="filters-controls__trigger" aria-controls="filter-box" aria-haspopup="dialog">
|
3
3
|
<%= t ".filter" %>
|
4
4
|
<%= icon "caret-bottom", class: "icon--small float-right", aria_label: t(".unfold"), role: "img" %>
|
5
5
|
</button>
|
6
6
|
</div>
|
7
7
|
|
8
|
-
<div class="reveal" id="filter-box" data-reveal>
|
8
|
+
<div class="reveal" id="filter-box" data-reveal role="dialog" aria-modal="true" aria-labelledby="filter-box-label">
|
9
9
|
<div class="reveal__header">
|
10
|
-
<h3 class="reveal__title"><%= t ".filter_by" %>:</h3>
|
10
|
+
<h3 id="filter-box-label" class="reveal__title"><%= t ".filter_by" %>:</h3>
|
11
11
|
<button class="close-button" data-close aria-label="<%= t(".close_modal") %>" type="button">
|
12
12
|
<span aria-hidden="true">×</span>
|
13
13
|
</button>
|
@@ -64,7 +64,7 @@
|
|
64
64
|
<%= form.select :signature_type, [], {}, { disabled: !@form.signature_type_updatable? } %>
|
65
65
|
</div>
|
66
66
|
<% if current_initiative.type.attachments_enabled? %>
|
67
|
-
<fieldset>
|
67
|
+
<fieldset class="attachments_container">
|
68
68
|
<legend><%= t("attachment_legend", scope: "decidim.initiatives.form") %></legend>
|
69
69
|
|
70
70
|
<% if @form.photos.any? %>
|
@@ -9,13 +9,13 @@
|
|
9
9
|
<%= icon "plus", role: "img", "aria-hidden": true %>
|
10
10
|
<% end %>
|
11
11
|
<% elsif current_user %>
|
12
|
-
<button type="button" class="title-action__action button small" data-open="not-authorized-modal" aria-controls="not-authorized-modal" aria-haspopup="
|
12
|
+
<button type="button" class="title-action__action button small" data-open="not-authorized-modal" aria-controls="not-authorized-modal" aria-haspopup="dialog" tabindex="0">
|
13
13
|
<%= t(".new_initiative") %>
|
14
14
|
<%= icon "plus", role: "img", "aria-hidden": true %>
|
15
15
|
</button>
|
16
16
|
<% else %>
|
17
17
|
<% content_for(:redirect_after_login) { create_initiative_url(:select_initiative_type) } %>
|
18
|
-
<button type="button" class="title-action__action button small" data-open="loginModal" aria-controls="loginModal" aria-haspopup="
|
18
|
+
<button type="button" class="title-action__action button small" data-open="loginModal" aria-controls="loginModal" aria-haspopup="dialog" tabindex="0">
|
19
19
|
<%= t(".new_initiative") %>
|
20
20
|
<%= icon "plus", role: "img", "aria-hidden": true %>
|
21
21
|
</button>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
<% end %>
|
24
24
|
</div>
|
25
25
|
|
26
|
-
<div class="reveal not-authorized-reveal" id="not-authorized-modal" aria-hidden="true" role="dialog" aria-labelledby="not-authorized-modal-title" data-reveal data-multiple-opened="true">
|
26
|
+
<div class="reveal not-authorized-reveal" id="not-authorized-modal" aria-hidden="true" role="dialog" aria-modal="true" aria-labelledby="not-authorized-modal-title" data-reveal data-multiple-opened="true">
|
27
27
|
<div class="reveal__header">
|
28
28
|
<h2 class="reveal__title" id="not-authorized-modal-title"><%= t(".not_authorized.title") %></h2>
|
29
29
|
<button class="close-button" data-close aria-label="<%= t(".not_authorized.close") %>"
|
@@ -41,5 +41,4 @@
|
|
41
41
|
<div class="not-authorized-modal-footer reveal__footer">
|
42
42
|
<%= link_to t(".not_authorized.authorizations_page"), decidim_verifications.authorizations_path(redirect_url: create_initiative_url(:select_initiative_type)), class: "button expanded" %>
|
43
43
|
</div>
|
44
|
-
</div>
|
45
44
|
</div>
|
@@ -6,10 +6,10 @@
|
|
6
6
|
<p>
|
7
7
|
<% if initiative.answer_url.present? %>
|
8
8
|
<a href="<%= initiative.answer_url %>" target="_blank">
|
9
|
-
<%=
|
9
|
+
<%= decidim_sanitize_editor translated_attribute initiative.answer %>
|
10
10
|
</a>
|
11
11
|
<% else %>
|
12
|
-
<%=
|
12
|
+
<%= decidim_sanitize_editor translated_attribute initiative.answer %>
|
13
13
|
<% end %>
|
14
14
|
</p>
|
15
15
|
</div>
|
@@ -91,7 +91,7 @@
|
|
91
91
|
<%= translated_attribute(current_initiative.title) %>
|
92
92
|
|
93
93
|
<h2 class="print-section-title"><%= t ".initiative.description" %></h2>
|
94
|
-
<%=
|
94
|
+
<%= decidim_sanitize_editor translated_attribute(current_initiative.description) %>
|
95
95
|
|
96
96
|
<div class="print-table">
|
97
97
|
<div class="print-table-header">
|
@@ -80,7 +80,7 @@ edit_link(
|
|
80
80
|
<br>
|
81
81
|
<div class="row column">
|
82
82
|
<%= render partial: "initiative_badge", locals: { initiative: current_initiative } %>
|
83
|
-
<%=
|
83
|
+
<%= decidim_sanitize_editor translated_attribute(current_initiative.description) %>
|
84
84
|
<%= render partial: "tags", locals: { resource: current_initiative } %>
|
85
85
|
</div>
|
86
86
|
|
data/config/locales/ca.yml
CHANGED
@@ -408,7 +408,7 @@ ca:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha sol·licitat formar part de la comissió promotora de la teva iniciativa <a href="%{resource_url}">%{resource_title}</a>. Per acceptar-ho o rebutjar-ho fes clic <a href="%{resource_url}/edit">aquí</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Documents
|
411
|
-
attachment_legend: "(Opcional) Afegir
|
411
|
+
attachment_legend: "(Opcional) Afegir un fitxer adjunt"
|
412
412
|
delete_attachment: Esborrar
|
413
413
|
index:
|
414
414
|
title: Iniciatives
|
data/config/locales/cs.yml
CHANGED
@@ -414,7 +414,7 @@ cs:
|
|
414
414
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> požádal o funkci ve výboru vaší iniciativy <a href="%{resource_url}">%{resource_title}</a>. Chcete-li přijmout nebo odmítnout <a href="%{resource_url}/edit">, klepněte zde</a>.
|
415
415
|
form:
|
416
416
|
add_attachments: Dokumenty
|
417
|
-
attachment_legend: "(Volitelné)
|
417
|
+
attachment_legend: "(Volitelné) Přidat přílohu"
|
418
418
|
delete_attachment: Smazat
|
419
419
|
index:
|
420
420
|
title: Iniciativy
|
data/config/locales/de.yml
CHANGED
@@ -406,7 +406,6 @@ de:
|
|
406
406
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> hat sich für das Promoter-Komittee Ihrer Initiative <a href="%{resource_url}">%{resource_title}</a> beworben. Um anzunehmen oder abzulehnen, klicken Sie <a href="%{resource_url}/edit">hier</a>.
|
407
407
|
form:
|
408
408
|
add_attachments: Dokumente
|
409
|
-
attachment_legend: "(Optional) Anhang hinzufügen"
|
410
409
|
delete_attachment: Löschen
|
411
410
|
index:
|
412
411
|
title: Initiativen
|
data/config/locales/en.yml
CHANGED
@@ -409,7 +409,7 @@ en:
|
|
409
409
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> applied for the promoter committee of your initiative <a href="%{resource_url}">%{resource_title}</a>. To accept or reject click <a href="%{resource_url}/edit">here</a>.
|
410
410
|
form:
|
411
411
|
add_attachments: Documents
|
412
|
-
attachment_legend: "(Optional) Add
|
412
|
+
attachment_legend: "(Optional) Add an attachment"
|
413
413
|
delete_attachment: Delete
|
414
414
|
index:
|
415
415
|
title: Initiatives
|
data/config/locales/es-MX.yml
CHANGED
@@ -408,7 +408,7 @@ es-MX:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha solicitado unirse al comité promotor de tu iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceptar o rechazar la solicitud haz clic <a href="%{resource_url}/edit">aquí</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Documentos
|
411
|
-
attachment_legend: "(Opcional) Añadir
|
411
|
+
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
412
412
|
delete_attachment: Borrar
|
413
413
|
index:
|
414
414
|
title: Iniciativas
|
data/config/locales/es-PY.yml
CHANGED
@@ -408,7 +408,7 @@ es-PY:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha solicitado unirse al comité promotor de tu iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceptar o rechazar la solicitud haz clic <a href="%{resource_url}/edit">aquí</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Documentos
|
411
|
-
attachment_legend: "(Opcional) Añadir
|
411
|
+
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
412
412
|
delete_attachment: Borrar
|
413
413
|
index:
|
414
414
|
title: Iniciativas
|
data/config/locales/es.yml
CHANGED
@@ -408,7 +408,7 @@ es:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha solicitado unirse al comité promotor de tu iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceptar o rechazar la solicitud haz clic <a href="%{resource_url}/edit">aquí</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Documentos
|
411
|
-
attachment_legend: "(Opcional) Añadir
|
411
|
+
attachment_legend: "(Opcional) Añadir un archivo adjunto"
|
412
412
|
delete_attachment: Borrar
|
413
413
|
index:
|
414
414
|
title: Iniciativas
|
data/config/locales/eu.yml
CHANGED
@@ -293,7 +293,7 @@ eu:
|
|
293
293
|
admin_states:
|
294
294
|
accepted: Beharrezko sinadurak lortu ditu
|
295
295
|
created: Sortu
|
296
|
-
discarded:
|
296
|
+
discarded: Baztertuta
|
297
297
|
published: Argitaratutako
|
298
298
|
rejected: Ez ditu lortu beharrezko sinadurak
|
299
299
|
validating: Balidazio teknikoa
|
@@ -334,12 +334,12 @@ eu:
|
|
334
334
|
select_area: Hautatu eremu bat
|
335
335
|
select_scope: Aukeratu esparrua
|
336
336
|
finish:
|
337
|
-
back:
|
338
|
-
back_to_initiatives:
|
337
|
+
back: Atzera
|
338
|
+
back_to_initiatives: Itzuli ekimenetara
|
339
339
|
callout_text: Zorionak! Zure ekimena zuzen sortu da.
|
340
340
|
confirm: Ekimena bidaliko duzu administratzaile batek berrikus eta argitara dezan. Argitaratu ondoren, ezin izango duzu editatu. Ziur zaude?
|
341
341
|
edit_my_initiative: Editatu nire ekimena
|
342
|
-
go_to_my_initiatives: Joan nire
|
342
|
+
go_to_my_initiatives: Joan nire ekimenetara
|
343
343
|
more_information: "(Informazio gehiago)"
|
344
344
|
send_my_initiative: Bidali nire ekimena baliozkotze eknikora
|
345
345
|
finish_help:
|
@@ -364,7 +364,7 @@ eu:
|
|
364
364
|
invite_to_committee_help: Sustapen batzordearen parte izango duten pertsonei gonbidatzeko esteka
|
365
365
|
show_similar_initiatives:
|
366
366
|
back: Back
|
367
|
-
compare_help: Honako ekimen hauetako bat zurea
|
367
|
+
compare_help: Honako ekimen hauetako bat zurea bezalakoa baldin bada, onar ezazu. Zure proposamenak aukera gehiago izango ditu aurrera ateratzeko.
|
368
368
|
continue: Nire ekimena desberdina da
|
369
369
|
more_information: "(Informazio gehiago)"
|
370
370
|
edit:
|
@@ -405,7 +405,6 @@ eu:
|
|
405
405
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> k eskatu du <a href="%{resource_url}">%{resource_title}</a> zure ekimenaren batzorde bultzatzailearekin bat egitea. eskaera onartzeko edo ez onartzeko, egin klik hemen <a href="%{resource_url}/edit">aquí</a>.
|
406
406
|
form:
|
407
407
|
add_attachments: Dokumentuak
|
408
|
-
attachment_legend: "(Aukerakoa) Gehitu eranskinak"
|
409
408
|
delete_attachment: Ezabatu
|
410
409
|
index:
|
411
410
|
title: Ekimenak
|
@@ -485,8 +484,8 @@ eu:
|
|
485
484
|
other: Oharrak
|
486
485
|
orders:
|
487
486
|
label: 'Sortu ekintzak honela:'
|
488
|
-
most_commented:
|
489
|
-
most_voted:
|
487
|
+
most_commented: Iruzkin gehien dutenak
|
488
|
+
most_voted: Sinadura gehien dutenak
|
490
489
|
random: Random
|
491
490
|
recent: Berrienak
|
492
491
|
recently_published: Oraintsu argitaratutakoa
|
@@ -507,7 +506,7 @@ eu:
|
|
507
506
|
phone_number: Telefono zenbakia
|
508
507
|
place_date: Lekua, data
|
509
508
|
postal_code: Posta-kodea/ZIP
|
510
|
-
print: Inprimatu
|
509
|
+
print: Inprimatu
|
511
510
|
province: Probintzia/Estatua
|
512
511
|
section: 'Antolakuntzak eskatzen badu, mesedez, inprimatu eta bete formulario hau, adierazten den tokira bidaltzeko:'
|
513
512
|
signature: Sinadura
|
data/config/locales/fi-plain.yml
CHANGED
@@ -408,7 +408,7 @@ fi-pl:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> haki jäseneksi aloitteesi <a href="%{resource_url}">%{resource_title}</a> kannatuskomiteaan. Voit hyväksyä tai hylätä pyynnön <a href="%{resource_url}/edit">aloitteen muokkaussivulta</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Asiakirjat
|
411
|
-
attachment_legend: "(
|
411
|
+
attachment_legend: "(Valinnainen) Lisää liitetiedosto"
|
412
412
|
delete_attachment: Poista
|
413
413
|
index:
|
414
414
|
title: Aloitteet
|
data/config/locales/fi.yml
CHANGED
@@ -408,7 +408,7 @@ fi:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> haki jäseneksi aloitteesi <a href="%{resource_url}">%{resource_title}</a> kannatuskomiteaan. Voit hyväksyä tai hylätä pyynnön <a href="%{resource_url}/edit">aloitteen muokkaussivulta</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Asiakirjat
|
411
|
-
attachment_legend: "(
|
411
|
+
attachment_legend: "(Valinnainen) Lisää liitetiedosto"
|
412
412
|
delete_attachment: Poista
|
413
413
|
index:
|
414
414
|
title: Aloitteet
|
data/config/locales/fr.yml
CHANGED
@@ -86,7 +86,7 @@ fr:
|
|
86
86
|
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Rechercher %{collection} par titre, description, ID ou nom de l'auteur.
|
87
87
|
menu:
|
88
88
|
attachments: Pièces jointes
|
89
|
-
committee_members: Membres
|
89
|
+
committee_members: Membres du comité
|
90
90
|
components: Fonctionnalités
|
91
91
|
information: Informations
|
92
92
|
initiatives: Initiatives
|
@@ -340,10 +340,10 @@ fr:
|
|
340
340
|
back_to_initiatives: Retour à l'index des initiatives
|
341
341
|
callout_text: Bravo ! Votre pétition a été créée avec succès.
|
342
342
|
confirm: Vous allez envoyer la pétition à un administrateur pour qu'il la consulte et la publie. Une fois publiée, vous ne serez plus en mesure de l'éditer. Êtes-vous sûr que votre pétition est prête ?
|
343
|
-
edit_my_initiative: Modifier
|
343
|
+
edit_my_initiative: Modifier ma pétition
|
344
344
|
go_to_my_initiatives: Consulter mes initiatives
|
345
345
|
more_information: "(Plus d'informations)"
|
346
|
-
send_my_initiative: Envoyer
|
346
|
+
send_my_initiative: Envoyer ma pétition pour validation technique
|
347
347
|
finish_help:
|
348
348
|
access_reminder: Vous pouvez accéder à vos pétitions via le filtre %{link} sur la page Pétitions.
|
349
349
|
publish_helper_text: N'oubliez pas que pour que votre pétition soit publiée, vous devez compléter les informations requises et <strong>l'envoyer à la validation technique</strong> pour qu'un administrateur puisse l'examiner.
|
@@ -397,7 +397,7 @@ fr:
|
|
397
397
|
email_subject: Initiative soutenue par %{author_nickname}
|
398
398
|
notification_title: L'initiative<a href="%{resource_path}">%{resource_title}</a> a été soutenue par <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
399
399
|
revoke_membership_request:
|
400
|
-
email_intro: "%{author_nickname} a
|
400
|
+
email_intro: "%{author_nickname} a rejeté votre candidature pour faire partie du comité de promotion de la pétition %{resource_title}."
|
401
401
|
email_outro: 'Vous avez reçu cette notification parce que vous avez demandé à rejoindre cette pétition : %{resource_title}.'
|
402
402
|
email_subject: "%{author_nickname} a rejeté votre candidature au comité de promotion"
|
403
403
|
notification_title: <a href="%{author_profile_url}">%{author_nickname}</a> a rejeté votre candidature pour faire partie du comité de promotion de la pétition suivante <a href="%{resource_url}">%{resource_title}</a>.
|
@@ -515,7 +515,7 @@ fr:
|
|
515
515
|
section: 'Si l''organisme le demande, veuillez imprimer et remplir ce formulaire pour soumettre si indiqué:'
|
516
516
|
signature: Signature
|
517
517
|
result:
|
518
|
-
answer_title: Cette
|
518
|
+
answer_title: Cette pétition a reçu une réponse
|
519
519
|
initiative_rejected_reason: Cette initiative a été rejetée car elle n'a pas atteint le nombre de signatures requis dans le délai de collecte.
|
520
520
|
show:
|
521
521
|
any_vote_method: Cette pétition recueille des signatures en ligne ainsi qu'en présentiel.
|
data/config/locales/it.yml
CHANGED
@@ -408,7 +408,6 @@ it:
|
|
408
408
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ha fatto domanda per il comitato promoter della tua iniziativa <a href="%{resource_url}">%{resource_title}</a>. Per accettare o rifiutare clicca <a href="%{resource_url}/edit">qui</a>.
|
409
409
|
form:
|
410
410
|
add_attachments: Documenti
|
411
|
-
attachment_legend: "(Opzionale) Aggiungere un allegato"
|
412
411
|
delete_attachment: Cancella
|
413
412
|
index:
|
414
413
|
title: Iniziative
|
data/config/locales/ja.yml
CHANGED
@@ -19,7 +19,7 @@ ja:
|
|
19
19
|
initiatives_committee_member:
|
20
20
|
user: 委員会メンバー
|
21
21
|
initiatives_type:
|
22
|
-
area_enabled:
|
22
|
+
area_enabled: 作成者がイニシアチブの領域を選択できるようにする
|
23
23
|
attachments_enabled: 添付ファイルを有効化
|
24
24
|
banner_image: バナー画像
|
25
25
|
child_scope_threshold_enabled: 下層スコープの署名を有効にする
|
@@ -30,7 +30,7 @@ ja:
|
|
30
30
|
extra_fields_legal_information: 個人データの収集に関する法的情報
|
31
31
|
minimum_committee_members: 委員の最小数
|
32
32
|
online_signature_enabled: オンライン署名は有効です
|
33
|
-
only_global_scope_enabled:
|
33
|
+
only_global_scope_enabled: グローバルスコープのイニシアチブの作成のみを許可する
|
34
34
|
promoting_committee_enabled: 推進委員会を有効にする
|
35
35
|
title: タイトル
|
36
36
|
undo_online_signatures_enabled: 参加者がオンライン署名を取り消すことを有効にする
|
@@ -55,7 +55,7 @@ ja:
|
|
55
55
|
activerecord:
|
56
56
|
models:
|
57
57
|
decidim/initiative:
|
58
|
-
other:
|
58
|
+
other: イニシアチブ
|
59
59
|
decidim/initiative_comittee:
|
60
60
|
other: Comittes
|
61
61
|
decidim/initiative_vote:
|
@@ -63,7 +63,7 @@ ja:
|
|
63
63
|
decidim:
|
64
64
|
admin:
|
65
65
|
actions:
|
66
|
-
new_initiative_type:
|
66
|
+
new_initiative_type: 新しいイニシアチブ種別
|
67
67
|
filters:
|
68
68
|
initiatives:
|
69
69
|
decidim_area_id_eq:
|
@@ -87,7 +87,7 @@ ja:
|
|
87
87
|
components: コンポーネント
|
88
88
|
information: 情報
|
89
89
|
initiatives: イニシアチブ
|
90
|
-
initiatives_types:
|
90
|
+
initiatives_types: イニシアチブ種別
|
91
91
|
moderations: モデレーション
|
92
92
|
models:
|
93
93
|
initiatives:
|
@@ -212,7 +212,7 @@ ja:
|
|
212
212
|
initiatives: イニシアチブ
|
213
213
|
initiatives:
|
214
214
|
edit:
|
215
|
-
accept:
|
215
|
+
accept: イニシアチブを承認する
|
216
216
|
confirm: よろしいですか?
|
217
217
|
confirm_send_to_technical_validation: 本当によろしいですか?
|
218
218
|
discard: イニシアチブを破棄する
|
@@ -272,11 +272,11 @@ ja:
|
|
272
272
|
form:
|
273
273
|
authorizations: 認証設定
|
274
274
|
child_scope_threshold_enabled_help: 'この設定では、対面での署名収集をサポートせず、サブスコープの署名フラグを有効にし、スコープとユーザーを関連付ける承認ハンドラと連携します。オーソリゼーションの設定で、下記のオーソリゼーションを必ず選択してください。これが機能するためには、1つのスコープ - N個のサブスコープというように、階層的に構成されている必要があります。この設定がどのように機能するかについては、この<a href="https://docs.decidim.org/admin-manual/en/initiatives/" target="_blank">リンク</a>を参照してください。'
|
275
|
-
only_global_scope_enabled_help: '「子スコープ署名」を有効にし、グローバルスコープを親スコープとして設定する場合、このフラグをチェックします。
|
275
|
+
only_global_scope_enabled_help: '「子スコープ署名」を有効にし、グローバルスコープを親スコープとして設定する場合、このフラグをチェックします。 これを有効にすると、イニシアチブ作成ウィザードでイニシアチブ種別の選択がスキップされます。 この設定の仕組みについての詳細は、この <a href="https://docs.decidim.org/admin-manual/en/initiatives/" target="_blank">リンク</a> を参照してください。'
|
276
276
|
options: オプション
|
277
277
|
title: 一般情報
|
278
278
|
initiative_type_scopes:
|
279
|
-
title:
|
279
|
+
title: イニシアチブ種別のスコープ
|
280
280
|
new:
|
281
281
|
create: 作成
|
282
282
|
title: 新しいイニシアチブ種別
|
@@ -351,7 +351,7 @@ ja:
|
|
351
351
|
more_information: "(詳細)"
|
352
352
|
promotal_committee:
|
353
353
|
back: 戻る
|
354
|
-
individual_help_text: この種類のイニシアチブでは、少なくとも%{committee_size} のメンバー(証人)
|
354
|
+
individual_help_text: この種類のイニシアチブでは、少なくとも%{committee_size} のメンバー(証人) で構成される推進委員会が必要です。以下のリンクを、このイニシアチブに参加している他の人々と共有する必要があります。あなたの連絡先がこのリンクを受け取ったら、指示された手順に従う必要があります。
|
355
355
|
more_information: "(詳細)"
|
356
356
|
select_initiative_type:
|
357
357
|
back: 戻る
|
@@ -391,8 +391,8 @@ ja:
|
|
391
391
|
endorse_initiative_event:
|
392
392
|
email_intro: "あなたがフォローしている%{author_name} %{author_nickname}は、次のイニシアチブを承認しました。会話に貢献したい場合もあります:"
|
393
393
|
email_outro: '%{author_nickname}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
|
394
|
-
email_subject: '%{author_nickname}
|
395
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> イニシアチブは、 <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
394
|
+
email_subject: '%{author_nickname} によってオススメされたイニシアチブ'
|
395
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> イニシアチブは、 <a href="%{author_path}">%{author_name} %{author_nickname}</a> によってオススメされました。
|
396
396
|
revoke_membership_request:
|
397
397
|
email_intro: "%{author_nickname} は、以下のイニシアチブ %{resource_title} の推進委員会に参加する申請を拒否しました。"
|
398
398
|
email_outro: 'この通知を受け取ったのは、イニシアチブ %{resource_title} に応募したためです。'
|
@@ -433,7 +433,7 @@ ja:
|
|
433
433
|
personal_data:
|
434
434
|
invalid: 個人データは、承認のために提供されたデータと一致しません。
|
435
435
|
sms_code:
|
436
|
-
invalid:
|
436
|
+
invalid: 確認コードが私たちのものと一致しません。SMSを送信したことを再確認してください。
|
437
437
|
sms_phone:
|
438
438
|
invalid: 電話番号が無効または承認待ちです。認証を確認してください。
|
439
439
|
initiatives:
|
@@ -483,8 +483,8 @@ ja:
|
|
483
483
|
orders:
|
484
484
|
label: 'イニシアチブの並べ替え:'
|
485
485
|
most_commented: コメントが多い順
|
486
|
-
most_voted:
|
487
|
-
random:
|
486
|
+
most_voted: 署名されている順
|
487
|
+
random: ランダム
|
488
488
|
recent: 直近のもの
|
489
489
|
recently_published: 直近に公開
|
490
490
|
print:
|