decidim-initiatives 0.25.2 → 0.26.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/commands/decidim/initiatives/update_initiative.rb +5 -2
  3. data/app/packs/stylesheets/decidim/initiatives/initiatives.scss +0 -1
  4. data/app/queries/decidim/initiatives/similar_initiatives.rb +1 -1
  5. data/app/services/decidim/initiatives/initiative_search.rb +2 -3
  6. data/app/views/decidim/initiatives/admin/answers/_info_initiative.html.erb +1 -1
  7. data/app/views/decidim/initiatives/admin/initiatives/show.html.erb +1 -1
  8. data/app/views/decidim/initiatives/committee_requests/new.html.erb +1 -1
  9. data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +1 -1
  10. data/app/views/decidim/initiatives/initiatives/_filters_small_view.html.erb +3 -3
  11. data/app/views/decidim/initiatives/initiatives/_form.html.erb +1 -1
  12. data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +3 -4
  13. data/app/views/decidim/initiatives/initiatives/_result.html.erb +2 -2
  14. data/app/views/decidim/initiatives/initiatives/print.html.erb +1 -1
  15. data/app/views/decidim/initiatives/initiatives/show.html.erb +1 -1
  16. data/config/locales/ca.yml +0 -1
  17. data/config/locales/cs.yml +1 -1
  18. data/config/locales/de.yml +0 -1
  19. data/config/locales/en.yml +1 -1
  20. data/config/locales/es-MX.yml +0 -1
  21. data/config/locales/es-PY.yml +0 -1
  22. data/config/locales/es.yml +1 -1
  23. data/config/locales/eu.yml +0 -1
  24. data/config/locales/fi-plain.yml +0 -1
  25. data/config/locales/fi.yml +1 -1
  26. data/config/locales/it.yml +0 -1
  27. data/config/locales/ja.yml +12 -12
  28. data/config/locales/lb-LU.yml +342 -0
  29. data/config/locales/lb.yml +0 -1
  30. data/config/locales/nl.yml +5 -0
  31. data/config/locales/pl.yml +0 -1
  32. data/config/locales/pt-BR.yml +1 -2
  33. data/config/locales/pt.yml +0 -1
  34. data/config/locales/ro-RO.yml +0 -1
  35. data/config/locales/sv.yml +0 -1
  36. data/config/locales/tr-TR.yml +0 -1
  37. data/config/locales/val-ES.yml +1 -0
  38. data/lib/decidim/initiatives/version.rb +1 -1
  39. metadata +16 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb5408f2cbd5da77b9e1f049bfb81e7d25a4952053b2d33592b3397735f83cc2
4
- data.tar.gz: 70db557755c69fd25c36ddaa684d7b96434d6ec79c857703ff1c3d82768c15f7
3
+ metadata.gz: acbc694f3ab5cd8458b802fef1f4ea2a132c217403ad5feb8ea816093457c723
4
+ data.tar.gz: 57a943df2ccf79c2386c11010e206c2bf1745850c62f7fa2a6a2f6c43900ef85
5
5
  SHA512:
6
- metadata.gz: 224f66453724afba86eea82a83fe10aad1791ca4d7e5db14cd5ec425528819f071787bae3c688fab8ac75cbd6ec2d133e0cfce9987aff0ed8de9fa647ebd4166
7
- data.tar.gz: dfcf5214812e36a938c06c806e9ff141ba1c36619a7a6fd67e4373be647aeb1dd11721ffc661c7856d9db2092b158b7f35054165b77ff086e1cbb46bbc5579cc
6
+ metadata.gz: d1c5f1ab379690f5f0bcb218d1bf29c557e517b1cc44fb2cf1e6541e79a42e5d113634c87b610ff9151678d429cadb5964a1ba0234ff9d56e8fc70e020b64697
7
+ data.tar.gz: 513d5f87aefa611ebe2f226e3cde4bc23cc662bf9cbfadafbe5fe42780190271660178831fc5999ed3380bf585f483a063f3b6db9d1b711519da861f1a2b1ee4
@@ -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)
@@ -59,7 +59,6 @@
59
59
  }
60
60
 
61
61
  fieldset{
62
- border: 1px solid #e8e8e8;
63
62
  padding: .5em;
64
63
  margin-bottom: 1em;
65
64
  }
@@ -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> <%= decidim_sanitize translated_attribute(initiative.description) %>
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
- <%= decidim_sanitize translated_attribute(current_initiative.description) %>
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
- <%= decidim_sanitize translated_attribute(current_initiative.description) %>
21
+ <%= decidim_sanitize_editor translated_attribute(current_initiative.description) %>
22
22
  </div>
23
23
 
24
24
  <div class="section">
@@ -77,7 +77,7 @@
77
77
  <% end %>
78
78
 
79
79
  <% if initiative_type.attachments_enabled? %>
80
- <fieldset>
80
+ <fieldset class="attachments_container">
81
81
  <legend><%= t("attachment_legend", scope: "decidim.initiatives.form") %></legend>
82
82
 
83
83
  <div class="row column">
@@ -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">&times;</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="true" tabindex="0">
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="true" tabindex="0">
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
- <%= decidim_sanitize translated_attribute initiative.answer %>
9
+ <%= decidim_sanitize_editor translated_attribute initiative.answer %>
10
10
  </a>
11
11
  <% else %>
12
- <%= decidim_sanitize translated_attribute initiative.answer %>
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
- <%= decidim_sanitize translated_attribute(current_initiative.description) %>
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
- <%= decidim_sanitize translated_attribute(current_initiative.description) %>
83
+ <%= decidim_sanitize_editor translated_attribute(current_initiative.description) %>
84
84
  <%= render partial: "tags", locals: { resource: current_initiative } %>
85
85
  </div>
86
86
 
@@ -408,7 +408,6 @@ 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 adjunts"
412
411
  delete_attachment: Esborrar
413
412
  index:
414
413
  title: Iniciatives
@@ -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é) přidat přílohy"
417
+ attachment_legend: "(Volitelné) Přidat přílohu"
418
418
  delete_attachment: Smazat
419
419
  index:
420
420
  title: Iniciativy
@@ -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
@@ -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 Attachments"
412
+ attachment_legend: "(Optional) Add an attachment"
413
413
  delete_attachment: Delete
414
414
  index:
415
415
  title: Initiatives
@@ -408,7 +408,6 @@ 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 adjuntos"
412
411
  delete_attachment: Borrar
413
412
  index:
414
413
  title: Iniciativas
@@ -408,7 +408,6 @@ 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 adjuntos"
412
411
  delete_attachment: Borrar
413
412
  index:
414
413
  title: Iniciativas
@@ -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 adjuntos"
411
+ attachment_legend: "(Opcional) Añadir un archivo adjunto"
412
412
  delete_attachment: Borrar
413
413
  index:
414
414
  title: Iniciativas
@@ -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
@@ -408,7 +408,6 @@ 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: "(Vapaaehtoinen) Lisää liitteitä"
412
411
  delete_attachment: Poista
413
412
  index:
414
413
  title: Aloitteet
@@ -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: "(Vapaaehtoinen) Lisää liitteitä"
411
+ attachment_legend: "(Valinnainen) Lisää liitetiedosto"
412
412
  delete_attachment: Poista
413
413
  index:
414
414
  title: Aloitteet
@@ -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
@@ -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: '「子スコープ署名」を有効にし、グローバルスコープを親スコープとして設定する場合、このフラグをチェックします。 これを有効にすると、取り組み作成ウィザードで取り組みタイプの選択がスキップされます。 この設定の仕組みについての詳細は、この <a href="https://docs.decidim.org/admin-manual/en/initiatives/" target="_blank">リンク</a> を参照してください。'
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: 戻る
@@ -433,7 +433,7 @@ ja:
433
433
  personal_data:
434
434
  invalid: 個人データは、承認のために提供されたデータと一致しません。
435
435
  sms_code:
436
- invalid: 認証コードが私たちのものと一致しません。SMSを送信したことを再確認してください。
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: Random
486
+ most_voted: 署名されている順
487
+ random: ランダム
488
488
  recent: 直近のもの
489
489
  recently_published: 直近に公開
490
490
  print:
@@ -1 +1,343 @@
1
1
  lb:
2
+ activemodel:
3
+ attributes:
4
+ initiative:
5
+ decidim_user_group_id: Autor
6
+ description: Beschreibung
7
+ offline_votes: Face-to-Face-Unterstützung
8
+ offline_votes_for_scope: Persönliche Unterschriften für %{scope_name}
9
+ scope_id: Umfang
10
+ signature_end_date: Ende der Unterschriftensammlung
11
+ signature_start_date: Beginn der Unterschriftensammlung
12
+ signature_type: Signatursammeltyp
13
+ signature_type_values:
14
+ any: Gemischt
15
+ offline: Angesicht zu Angesicht
16
+ online: Online
17
+ state: Zustand
18
+ title: Titel
19
+ initiatives_committee_member:
20
+ user: Ausschussmitglied
21
+ initiatives_type:
22
+ area_enabled: Die Auswahl des Bereichs von Initiativen für Autoren freigeben
23
+ attachments_enabled: Anhänge freigeben
24
+ banner_image: Banner-Bild
25
+ child_scope_threshold_enabled: Unterschriften von Unterbereichen aktivieren
26
+ collect_user_extra_fields: Sammeln Sie persönliche Daten des Benutzers bei der Unterschrift
27
+ custom_signature_end_date_enabled: Die Auswahl des Enddatums der Unterschriftensammlung für Autoren freigeben
28
+ description: Beschreibung
29
+ document_number_authorization_handler: Berechtigung zur Überprüfung der Belegnummer bei Abstimmungen
30
+ extra_fields_legal_information: Rechtliche Informationen zur Erhebung personenbezogener Daten
31
+ minimum_committee_members: Minimum der Ausschussmitglieder
32
+ online_signature_enabled: Online-Signatur aktiviert
33
+ only_global_scope_enabled: Nur die Erstellung globaler Initiativen zulassen
34
+ promoting_committee_enabled: Förderkomitee freigeben
35
+ title: Titel
36
+ undo_online_signatures_enabled: Ermöglichen Sie Benutzern, ihre Online-Signaturen rückgängig zu machen
37
+ validate_sms_code_on_votes: Fügen Sie dem Signaturprozess einen SMS-Validierungsschritt hinzu
38
+ initiatives_vote:
39
+ date_of_birth: Geburtsdatum
40
+ document_number: Dokumentnummer
41
+ name_and_surname: Name und Nachname
42
+ postal_code: Postleitzahl
43
+ decidim:
44
+ admin:
45
+ menu:
46
+ components: Komponenten
47
+ information: Information
48
+ titles:
49
+ initiatives: Initiativen
50
+ initiatives_types: Arten von Initiativen
51
+ events:
52
+ initiatives:
53
+ admin:
54
+ initiative_sent_to_technical_validation:
55
+ email_intro: Die Initiative "%{resource_title}" wurde zur technischen Validierung gesendet. Über das <a href="%{admin_initiative_url}">Admin-Panel</a> können Sie sie aufrufen
56
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator der Plattform sind.
57
+ email_subject: Die Initiative "%{resource_title}" wurde zur technischen Validierung gesendet.
58
+ notification_title: Die Initiative "%{resource_title}" wurde zur technischen Validierung gesendet. Über das <a href="%{admin_initiative_path}">Admin-Panel</a> können Sie sie aufrufen
59
+ initiative_extended:
60
+ email_intro: Das Enddatum der Unterschriftensammlung für die Initiative %{resource_title} wurde verlängert!
61
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{resource_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
62
+ email_subject: Enddatum der Unterschriftensammlung verlängert!
63
+ notification_title: Das Enddatum der Unterschriftensammlung für die Initiative <a href="%{resource_path}">%{resource_title}</a> wurde verlängert.
64
+ initiative_sent_to_technical_validation:
65
+ email_intro: Die Initiative „%{resource_title}“ wurde zur technischen Validierung gesendet. Über das <a href="%{admin_initiative_url}">Admin-Panel</a> können Sie sie aufrufen
66
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator der Plattform sind.
67
+ email_subject: Die Initiative "%{resource_title}" wurde zur technischen Validierung gesendet.
68
+ notification_title: Die Initiative "%{resource_title}" wurde zur technischen Validierung gesendet. Über das <a href="%{admin_initiative_path}">Admin-Panel</a> können Sie sie aufrufen
69
+ milestone_completed:
70
+ affected_user:
71
+ email_intro: Ihre Initiative %{resource_title} hat %{percentage}% der Unterschriften erreicht!
72
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor der Initiative %{resource_title} sind.
73
+ email_subject: Neuer Meilenstein abgeschlossen!
74
+ notification_title: Ihre Initiative <a href="%{resource_path}">%{resource_title}</a> hat %{percentage}% der Unterschriften erreicht.
75
+ follower:
76
+ email_intro: Die Initiative %{resource_title} hat %{percentage}% der Unterschriften erreicht!
77
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{resource_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
78
+ email_subject: Neuer Meilenstein abgeschlossen!
79
+ notification_title: Die Initiative <a href="%{resource_path}">%{resource_title}</a> hat %{percentage}% der Unterschriften erreicht.
80
+ support_threshold_reached:
81
+ email_intro: Die Initiative %{resource_title} hat die Mindestanzahl an Unterschriften erreicht
82
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator der Plattform sind.
83
+ email_subject: Mindestanzahl an Unterschriften erreicht
84
+ notification_title: Die Initiative <a href="%{resource_path}">%{resource_title}</a> hat die Mindestanzahl an Unterschriften erreicht
85
+ gamification:
86
+ badges:
87
+ initiatives:
88
+ conditions:
89
+ - Gehe zum Teilnehmerbereich von Intiativen
90
+ - Befolgen Sie die Schritte, um eine neue Initiative zu erstellen
91
+ description: Dieses Abzeichen wird gewährt, wenn Sie neue Initiativen starten und mit anderen zusammenarbeiten, um sie durchzuführen.
92
+ description_another: Dieser Benutzer hat %{score} Initiativen veröffentlicht.
93
+ description_own: Du hast %{score} Initiativen veröffentlicht.
94
+ name: Veröffentlichte Initiativen
95
+ next_level_in: Holen Sie sich %{score} weitere Initiativen veröffentlicht, um das nächste Level zu erreichen!
96
+ unearned_another: Dieser Benutzer hat noch keine Initiativen veröffentlicht.
97
+ unearned_own: Sie haben noch keine Initiativen veröffentlicht.
98
+ help:
99
+ participatory_spaces:
100
+ initiatives:
101
+ contextual: "<p>Eine Initiative ist ein Vorschlag, der von jedermann aus eigener Initiative (unabhängig von anderen Kanälen oder Beteiligungsräumen) durch die Sammlung von (digitalen) Unterschriften für die Organisation zur Durchführung einer bestimmten Aktion (Änderung einer Verordnung, Initiierung eines Projekts) gefördert werden kann , ändern Sie den Namen einer Abteilung oder einer Straße usw.).</p> <p>Die Initiatoren einer Initiative können ihre Ziele festlegen, Unterstützung sammeln, diskutieren, verbreiten und Treffpunkte definieren, an denen Unterschriften der Teilnehmer oder Debatten gesammelt werden können, die für andere Teilnehmer offen sind.</p> <p>Beispiele: Eine Initiative kann Unterschriften sammeln, um eine Konsultation unter allen Mitarbeitern einer Organisation einzuberufen, eine Versammlung zu gründen oder einzuberufen oder einen Prozess zur Aufstockung des Budgets für ein Gebiet oder einen Bereich der Organisation einzuleiten. Während des Sammelns von Unterschriften können mehr Personen zu diesem Bedarf beitragen und ihn in der Organisation vorantreiben.</p>\n"
102
+ page: "<p>Eine Initiative ist ein Vorschlag, der von jedermann aus eigener Initiative (unabhängig von anderen Kanälen oder Beteiligungsräumen) durch die Sammlung von (digitalen) Unterschriften für die Organisation zur Durchführung einer bestimmten Aktion (Änderung einer Verordnung, Initiierung eines Projekts) gefördert werden kann , ändern Sie den Namen einer Abteilung oder einer Straße usw.).</p> <p>Die Initiatoren einer Initiative können ihre Ziele festlegen, Unterstützung sammeln, diskutieren, verbreiten und Treffpunkte definieren, an denen Unterschriften der Teilnehmer oder Debatten gesammelt werden können, die für andere Teilnehmer offen sind.</p> <p>Beispiele: Eine Initiative kann Unterschriften sammeln, um eine Konsultation unter allen Mitarbeitern einer Organisation einzuberufen, eine Versammlung zu gründen oder einzuberufen oder einen Prozess zur Aufstockung des Budgets für ein Gebiet oder einen Bereich der Organisation einzuleiten. Während des Sammelns von Unterschriften können mehr Personen zu diesem Bedarf beitragen und ihn in der Organisation vorantreiben.</p>\n"
103
+ title: Was sind Initiativen?
104
+ initiatives:
105
+ actions:
106
+ answer: Antworten
107
+ admin:
108
+ answers:
109
+ edit:
110
+ answer: Antworten
111
+ title: Antwort für %{title}
112
+ info_initiative:
113
+ created_at: Hergestellt in
114
+ description: Beschreibung
115
+ initiative_votes_count: Stimmen zählen
116
+ initiatives: Initiativen
117
+ state: Zustand
118
+ committee_requests:
119
+ index:
120
+ approve: Genehmigen
121
+ confirm_revoke: Bist du sicher?
122
+ invite_to_committee_help: Teilen Sie diesen Link, um andere Benutzer zum Promotionskomitee einzuladen
123
+ no_members_yet: Es gibt keine Mitglieder im Promoter-Ausschuss
124
+ initiatives_types:
125
+ form:
126
+ options: Optionen
127
+ title: Allgemeine Information
128
+ initiative_type_scopes:
129
+ title: Bereiche für den Typ der Initiative
130
+ new:
131
+ create: Erstellen
132
+ title: Neuer Initiativentyp
133
+ update:
134
+ error: Ein Fehler ist aufgetreten
135
+ success: Der Initiativentyp wurde erfolgreich aktualisiert
136
+ admin_log:
137
+ initiative:
138
+ publish: "%{user_name} hat die Initiative %{resource_name} veröffentlicht"
139
+ send_to_technical_validation: "%{user_name} hat die Initiative %{resource_name} zur technischen Validierung gesendet"
140
+ unpublish: "%{user_name} hat die Initiative %{resource_name} verworfen"
141
+ update: "%{user_name} hat die Initiative %{resource_name} aktualisiert"
142
+ admin_states:
143
+ accepted: Ausreichend Unterschriften
144
+ created: Erstellt
145
+ discarded: Verworfen
146
+ published: Veröffentlicht
147
+ rejected: Ungenügend Unterschriften
148
+ validating: Technische Validierung
149
+ application_helper:
150
+ filter_area_values:
151
+ all: Alle
152
+ filter_scope_values:
153
+ all: Alle
154
+ filter_state_values:
155
+ accepted: Ausreichend Unterschriften
156
+ all: Alle
157
+ answered: Beantwortet
158
+ closed: Geschlossen
159
+ open: Öffnen
160
+ rejected: Ungenügend Unterschriften
161
+ filter_type_values:
162
+ all: Alle
163
+ committee_requests:
164
+ approve:
165
+ success: Anfrage wurde bestätigt.
166
+ new:
167
+ continue: Fortsetzen
168
+ help_text: Sie sind dabei, ein Mitglied des Promoter-Komitees dieser Initiative zu werden
169
+ revoke:
170
+ success: Anfrage wurde zurückgezogen.
171
+ spawn:
172
+ success: Ihre Anfrage wurde an den Initiativautor gesendet.
173
+ content_blocks:
174
+ highlighted_initiatives:
175
+ name: Hervorgehobene Initiativen
176
+ create_initiative:
177
+ fill_data:
178
+ back: Zurück
179
+ continue: Fortsetzen
180
+ fill_data_help: "<ul> <li>Inhalt Ihrer Initiative überprüfen. Ist Ihr Titel leicht verständlich? Ist das Ziel Ihrer Initiative klar?</li> <li>Sie müssen die Art der Unterschrift wählen. Persönlich, online oder eine Kombination aus beidem</li> <li>Was ist die geografische Reichweite der Initiative? Stadt, Bezirk?</li> </ul>"
181
+ initiative_type: Art der Initiative
182
+ more_information: "(Weitere Informationen)"
183
+ select_area: Wählen Sie einen Bereich aus
184
+ select_scope: Wählen Sie einen Bereich aus
185
+ finish:
186
+ back: Zurück
187
+ back_to_initiatives: Zurück zu den Initiativen
188
+ callout_text: Herzlichen Glückwunsch! Ihre Initiative wurde erfolgreich erstellt.
189
+ confirm: Sie werden die Initiative an einen Administrator senden, welcher sie zu überprüft und veröffentlicht. Sobald die Initiative veröffentlicht ist, können Sie sie nicht bearbeiten. Sind Sie sicher?
190
+ edit_my_initiative: Meine Initiativen bearbeiten
191
+ go_to_my_initiatives: Geh zu meinen Initiativen
192
+ more_information: "(Weitere Informationen)"
193
+ send_my_initiative: Meine Initiative zur technischen Validierung senden
194
+ finish_help:
195
+ access_reminder: Sie können auf Ihre Initiativen über den Filter %{link} auf der Seite Initiativen zugreifen.
196
+ form:
197
+ add_attachments: Dokumente
198
+ attachment_legend: "(Optional) Anhang hinzufügen"
199
+ delete_attachment: Löschen
200
+ index:
201
+ title: Initiativen
202
+ initiative_signatures:
203
+ fill_personal_data:
204
+ continue: Fortsetzen
205
+ date_select:
206
+ day: Tag
207
+ month: Monat
208
+ year: Jahr
209
+ help: Bitte füllen Sie die folgenden Felder mit Ihren persönlichen Daten aus, um die Initiative zu unterzeichnen
210
+ finish:
211
+ back_to_initiative: Zurück zur Initiative
212
+ sms_code:
213
+ continue: Code überprüfen und fortfahren
214
+ help: Überprüfen Sie die an Ihrem Telefon empfangene SMS
215
+ sms_phone_number:
216
+ continue: Senden Sie mir eine SMS
217
+ help: Füllen Sie das Formular mit Ihrer bestätigten Telefonnummer aus, um Ihren Bestätigungscode anzufordern
218
+ initiative_votes:
219
+ create:
220
+ error: Beim Signieren der Initiative sind Fehler aufgetreten.
221
+ invalid: Die zur Unterzeichnung der Initiative bereitgestellten Daten sind nicht gültig
222
+ success_html: Herzliche Glückwünsche! Die <strong> %{title}</strong> -Initiative wurde korrekt unterzeichnet
223
+ personal_data:
224
+ invalid: Persönliche Daten stimmen nicht mit den zur Autorisierung angegebenen Daten überein.
225
+ sms_code:
226
+ invalid: Ihr Bestätigungscode stimmt nicht mit unserem überein. Bitte überprüfen Sie noch einmal die SMS, die wir Ihnen gesendet haben.
227
+ sms_phone:
228
+ invalid: Die Telefonnummer ist ungültig oder muss noch autorisiert werden. Bitte überprüfen Sie Ihre Berechtigungen.
229
+ initiatives:
230
+ author:
231
+ deleted: Gelöscht
232
+ author_list:
233
+ hidden_authors_count:
234
+ one: und 1 weitere Person
235
+ other: und %{count} weitere Leute
236
+ committee_members:
237
+ approve: Genehmigen
238
+ confirm_revoke: Bist du dir sicher?
239
+ invite_to_committee_help: Teilen Sie diesen Link, um andere Benutzer zum Promotionskomitee einzuladen
240
+ no_members_yet: Es gibt keine Mitglieder im Promoter-Ausschuss
241
+ revoke: Widerrufen
242
+ title: Ausschussmitglieder
243
+ count:
244
+ title:
245
+ one: "%{count} Initiative"
246
+ other: "%{count} Initiativen"
247
+ filters:
248
+ any: Irgendein
249
+ area: Bereich
250
+ author: Autor
251
+ myself: Meine Initiativen
252
+ scope: Umfang
253
+ search: Suche
254
+ state: Zustand
255
+ type: Art
256
+ filters_small_view:
257
+ close_modal: Fenster schließen
258
+ filter: Filter
259
+ filter_by: Filtern nach
260
+ unfold: Entfalten
261
+ index_header:
262
+ new_initiative: Neue Initiative
263
+ not_authorized:
264
+ authorizations_page: Autorisierungen anzeigen
265
+ close: Schließen
266
+ explanation: Sie müssen überprüft werden, um eine neue Initiative zu schaffen.
267
+ title: Autorisierung erforderlich
268
+ initiatives:
269
+ closed_initiatives_warning: Derzeit gibt es keine offenen Initiativen, aber hier finden Sie alle abgeschlossenen Initiativen aufgelistet.
270
+ no_initiatives_warning: Keine Initiativen entsprechen Ihren Suchkriterien.
271
+ interactions:
272
+ comments_count:
273
+ count:
274
+ one: Kommentar
275
+ other: Bemerkungen
276
+ orders:
277
+ label: 'Initiativen sortieren nach:'
278
+ last_activity:
279
+ new_initiative: Neue Initiative
280
+ pages:
281
+ home:
282
+ highlighted_initiatives:
283
+ active_initiatives: Aktive Initiativen
284
+ see_all_initiatives: Sehen Sie alle Initiativen
285
+ show:
286
+ badge_name:
287
+ accepted: Ausreichend Unterschriften
288
+ created: Erstellt
289
+ discarded: Verworfen
290
+ published: Veröffentlicht
291
+ rejected: Ungenügend Unterschriften
292
+ validating: Technische Validierung
293
+ states:
294
+ accepted: Akzeptiert
295
+ expired: Abgelaufen
296
+ unavailable_scope: Nicht verfügbarer Umfang
297
+ update:
298
+ error: Ein Fehler ist aufgetreten
299
+ success: Die Initiative wurde erfolgreich aktualisiert
300
+ versions:
301
+ shared:
302
+ back_to_resource: Zurück zur Initiative
303
+ menu:
304
+ initiatives: Initiativen
305
+ resources:
306
+ initiative:
307
+ actions:
308
+ comment: Kommentar
309
+ initiatives_type:
310
+ actions:
311
+ title: Aktionen
312
+ vote: Abstimmung
313
+ layouts:
314
+ decidim:
315
+ initiative_creation_header:
316
+ back: Zurück
317
+ fill_data: Erstellen
318
+ finish: Fertig
319
+ previous_form: Anfang
320
+ promotal_committee: Promoter-Komitee
321
+ select_initiative_type: Wählen
322
+ show_similar_initiatives: Vergleichen
323
+ step: Schritt %{current} von %{total}
324
+ title: Neue Initiative schaffen
325
+ initiative_header:
326
+ initiative_menu_item: Initiative
327
+ initiative_signature_creation_header:
328
+ back: Zurück
329
+ fill_personal_data: Ergänzen Sie Ihre Daten
330
+ finish: Fertig
331
+ finished: Initiativsignatur erstellt
332
+ see_steps: siehe Schritte
333
+ select_identity: Identität auswählen
334
+ sms_code: SMS-Code-Bestätigung
335
+ sms_phone_number: Handynummer
336
+ step: Schritt %{current} von %{total}
337
+ title: Zeichen %{initiative_title}
338
+ initiatives:
339
+ initiative:
340
+ check: Hör zu
341
+ check_and_support: Überprüfe es und unterschreibe es
342
+ no_initiatives_yet:
343
+ no_initiatives_yet: Keine Initiativen bisher!
@@ -338,7 +338,6 @@ lb:
338
338
  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>.
339
339
  form:
340
340
  add_attachments: Dokumente
341
- attachment_legend: "(Optional) Anhang hinzufügen"
342
341
  delete_attachment: Löschen
343
342
  index:
344
343
  title: Initiativen
@@ -360,6 +360,8 @@ nl:
360
360
  email_outro: 'Je hebt deze melding ontvangen omdat je de auteur bent van het initiatief %{resource_title}'
361
361
  email_subject: "%{applicant_nickname} wil deelnemen aan je initiatief"
362
362
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> wil graag deel uitmaken van de promotiecommissie voor jouw initiatief <a href="%{resource_url}">%{resource_title}</a>. Om te accepteren of te weigeren, klik <a href="%{resource_url}/edit">hier</a>.
363
+ form:
364
+ attachment_legend: "(Optioneel) Voeg een bijlage toe"
363
365
  index:
364
366
  title: Initiatieven
365
367
  initiative_signatures:
@@ -493,6 +495,9 @@ nl:
493
495
  menu:
494
496
  initiatives: Initiatieven
495
497
  resources:
498
+ initiative:
499
+ actions:
500
+ comment: Reactie
496
501
  initiatives_type:
497
502
  actions:
498
503
  title: acties
@@ -414,7 +414,6 @@ pl:
414
414
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> złożył wniosek na członka komitetu organizacyjnego Twojej inicjatywy <a href="%{resource_url}">%{resource_title}</a>. Aby zaakceptować lub odrzucić kliknij <a href="%{resource_url}/edit">tutaj</a>.
415
415
  form:
416
416
  add_attachments: Dokumenty
417
- attachment_legend: "(Opcjonalnie) Dodaj załącznik"
418
417
  delete_attachment: Usuń
419
418
  index:
420
419
  title: Inicjatywy
@@ -1,4 +1,4 @@
1
- pt:
1
+ pt-BR:
2
2
  activemodel:
3
3
  attributes:
4
4
  initiative:
@@ -408,7 +408,6 @@ pt:
408
408
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> se candidatou ao comitê de promotores da sua iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceitar ou rejeitar, clique <a href="%{resource_url}/edit">aqui</a>.
409
409
  form:
410
410
  add_attachments: Documentos
411
- attachment_legend: "(Opcional) Adicionar um anexo"
412
411
  delete_attachment: Excluir
413
412
  index:
414
413
  title: Iniciativas
@@ -408,7 +408,6 @@ pt:
408
408
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> candidatou-se para a comissão promotora da sua iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceitar ou rejeitar clique <a href="%{resource_url}/edit">aqui</a>.
409
409
  form:
410
410
  add_attachments: Documentos
411
- attachment_legend: "(Opcional) Adicionar Anexos"
412
411
  delete_attachment: Eliminar
413
412
  index:
414
413
  title: Iniciativas
@@ -411,7 +411,6 @@ ro:
411
411
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a depus cerere pentru comitetul de promovare al inițiativa tale <a href="%{resource_url}">%{resource_title}</a>. Pentru a accepta sau respinge apasă <a href="%{resource_url}/edit">aici</a>.
412
412
  form:
413
413
  add_attachments: Documente
414
- attachment_legend: "(Opțional) Adăugați atașamente"
415
414
  delete_attachment: Șterge
416
415
  index:
417
416
  title: Inițiative
@@ -366,7 +366,6 @@ sv:
366
366
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> instämde i initiativet <a href="%{resource_path}">%{resource_title}</a>.
367
367
  form:
368
368
  add_attachments: Dokument
369
- attachment_legend: "(Valfritt) Lägg till bilagor"
370
369
  delete_attachment: Radera
371
370
  index:
372
371
  title: Initiativ
@@ -379,7 +379,6 @@ tr:
379
379
  notification_title: <a href="%{resource_path}">%{resource_title} </a> girişimi <a href="%{author_path}">%{author_name} %{author_nickname} </a> tarafından onaylandı.
380
380
  form:
381
381
  add_attachments: Dokümanlar
382
- attachment_legend: "(İsteğe bağlı) Ekler Ekleyin"
383
382
  delete_attachment: Sil
384
383
  index:
385
384
  title: Girişimler
@@ -0,0 +1 @@
1
+ val:
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-initiatives version.
5
5
  module Initiatives
6
6
  def self.version
7
- "0.25.2"
7
+ "0.26.0.rc1"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-initiatives
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.2
4
+ version: 0.26.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Salvador Perez Garcia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-25 00:00:00.000000000 Z
11
+ date: 2022-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: decidim-admin
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.25.2
19
+ version: 0.26.0.rc1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.25.2
26
+ version: 0.26.0.rc1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: decidim-comments
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.25.2
33
+ version: 0.26.0.rc1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.25.2
40
+ version: 0.26.0.rc1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: decidim-core
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 0.25.2
47
+ version: 0.26.0.rc1
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 0.25.2
54
+ version: 0.26.0.rc1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: decidim-verifications
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 0.25.2
61
+ version: 0.26.0.rc1
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 0.25.2
68
+ version: 0.26.0.rc1
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: origami
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -142,14 +142,14 @@ dependencies:
142
142
  requirements:
143
143
  - - '='
144
144
  - !ruby/object:Gem::Version
145
- version: 0.25.2
145
+ version: 0.26.0.rc1
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - '='
151
151
  - !ruby/object:Gem::Version
152
- version: 0.25.2
152
+ version: 0.26.0.rc1
153
153
  description: Citizen initiatives plugin for decidim.
154
154
  email:
155
155
  - jsperezg@gmail.com
@@ -445,6 +445,7 @@ files:
445
445
  - config/locales/ti-ER.yml
446
446
  - config/locales/tr-TR.yml
447
447
  - config/locales/uk.yml
448
+ - config/locales/val-ES.yml
448
449
  - config/locales/vi-VN.yml
449
450
  - config/locales/vi.yml
450
451
  - config/locales/zh-CN.yml
@@ -540,11 +541,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
540
541
  version: '2.7'
541
542
  required_rubygems_version: !ruby/object:Gem::Requirement
542
543
  requirements:
543
- - - ">="
544
+ - - ">"
544
545
  - !ruby/object:Gem::Version
545
- version: '0'
546
+ version: 1.3.1
546
547
  requirements: []
547
- rubygems_version: 3.1.2
548
+ rubygems_version: 3.1.6
548
549
  signing_key:
549
550
  specification_version: 4
550
551
  summary: Decidim initiatives module