decidim-initiatives 0.26.7 → 0.26.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/decidim/initiatives/admin/committee_requests_controller.rb +1 -1
  3. data/app/controllers/decidim/initiatives/admin/exports_controller.rb +14 -0
  4. data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +1 -1
  5. data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +1 -1
  6. data/app/controllers/decidim/initiatives/committee_requests_controller.rb +1 -1
  7. data/app/controllers/decidim/initiatives/create_initiative_controller.rb +2 -2
  8. data/app/controllers/decidim/initiatives/initiatives_type_scopes_controller.rb +1 -1
  9. data/app/controllers/decidim/initiatives/initiatives_type_signature_types_controller.rb +1 -1
  10. data/app/permissions/decidim/initiatives/admin/permissions.rb +1 -0
  11. data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +2 -0
  12. data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +1 -0
  13. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +1 -0
  14. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/new.html.erb +1 -0
  15. data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +1 -0
  16. data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +2 -0
  17. data/app/views/decidim/initiatives/admin/initiatives_types/new.html.erb +1 -0
  18. data/config/environment.rb +0 -0
  19. data/config/locales/ar.yml +4 -5
  20. data/config/locales/ca.yml +5 -5
  21. data/config/locales/cs.yml +2 -2
  22. data/config/locales/de.yml +18 -3
  23. data/config/locales/el.yml +5 -5
  24. data/config/locales/es-MX.yml +2 -2
  25. data/config/locales/es-PY.yml +2 -2
  26. data/config/locales/es.yml +4 -4
  27. data/config/locales/eu.yml +1 -6
  28. data/config/locales/fi-plain.yml +2 -2
  29. data/config/locales/fi.yml +2 -2
  30. data/config/locales/fr-CA.yml +2 -7
  31. data/config/locales/fr.yml +2 -7
  32. data/config/locales/gl.yml +3 -5
  33. data/config/locales/hu.yml +13 -6
  34. data/config/locales/id-ID.yml +4 -5
  35. data/config/locales/is-IS.yml +3 -5
  36. data/config/locales/it.yml +2 -7
  37. data/config/locales/ja.yml +3 -3
  38. data/config/locales/lb.yml +1 -13
  39. data/config/locales/lt.yml +0 -5
  40. data/config/locales/lv.yml +5 -5
  41. data/config/locales/nl.yml +4 -5
  42. data/config/locales/no.yml +1 -6
  43. data/config/locales/pl.yml +0 -5
  44. data/config/locales/pt-BR.yml +2 -2
  45. data/config/locales/pt.yml +0 -5
  46. data/config/locales/ro-RO.yml +3 -8
  47. data/config/locales/ru.yml +5 -5
  48. data/config/locales/sk.yml +4 -5
  49. data/config/locales/sv.yml +1 -6
  50. data/config/locales/tr-TR.yml +1 -6
  51. data/config/locales/uk.yml +5 -5
  52. data/config/locales/zh-CN.yml +5 -5
  53. data/config/locales/zh-TW.yml +0 -5
  54. data/db/migrate/20181003082010_fix_user_groups_ids_on_initiatives.rb +18 -3
  55. data/lib/decidim/initiatives/engine.rb +1 -1
  56. data/lib/decidim/initiatives/version.rb +1 -1
  57. metadata +16 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5434782f1886bba7a75e2b762513b7de19548de11cd8e4197f0ae93485a13910
4
- data.tar.gz: 52496641bbb82f4ecd9b86ec7d6d4d6c7876a3105fba936c848bcc6f0e04ff19
3
+ metadata.gz: 1ec7404f2f14de6e3d919e9e6f0065a647a82a7ea9e91b57926401e19b548150
4
+ data.tar.gz: e7475a5217d0df0e928f11f2f53023ff44e9e4b22191039ebcfc54b1cf9a04fa
5
5
  SHA512:
6
- metadata.gz: 644b87421cc7c3623ec05c1c61b2f055ace79e6671b201237296cb2135de43769f54b6c85a6ae16d6eb1c4f964c2ce56ee5817481f7b902d4e2b74b0f8cac36c
7
- data.tar.gz: b171982c491930b9e7154ac7d10e0d09da2d982ab352107e4990fda8e72252210beccbd7ed3a802ee8a289c66e32844382de5ef6d8d9185502b70646e38c0b97
6
+ metadata.gz: 99ba503d981ac7ffb4bb23835f2871a9fe4271e5f1d6ff22abdede9e373a2d52531e1e39660c9b2c469f19351f8fd551fd11dc8ab31860ce1630606afdd43b94
7
+ data.tar.gz: 7140e8705068d3641d3e7e1e9ff64042a940db2f90b14a7472b2f30d99884a59b49501c8a9554800a539c6f5f4f6c742f6ba82f74c200d66ed83b9a69b22a05d
@@ -41,7 +41,7 @@ module Decidim
41
41
  private
42
42
 
43
43
  def membership_request
44
- @membership_request ||= InitiativesCommitteeMember.find(params[:id])
44
+ @membership_request ||= InitiativesCommitteeMember.where(initiative: current_participatory_space).find(params[:id])
45
45
  end
46
46
  end
47
47
  end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Initiatives
5
+ module Admin
6
+ # This controller allows exporting things.
7
+ # It is targeted for customizations for exporting things that lives under
8
+ # a participatory process.
9
+ class ExportsController < Decidim::Admin::ExportsController
10
+ include InitiativeAdmin
11
+ end
12
+ end
13
+ end
14
+ end
@@ -69,7 +69,7 @@ module Decidim
69
69
  private
70
70
 
71
71
  def current_initiative_type_scope
72
- @current_initiative_type_scope ||= InitiativesTypeScope.find(params[:id])
72
+ @current_initiative_type_scope ||= InitiativesTypeScope.joins(:type).where(decidim_initiatives_types: { decidim_organization_id: current_organization }).find(params[:id])
73
73
  end
74
74
 
75
75
  def initiative_type_scope_form
@@ -81,7 +81,7 @@ module Decidim
81
81
  private
82
82
 
83
83
  def current_initiative_type
84
- @current_initiative_type ||= InitiativesType.find(params[:id])
84
+ @current_initiative_type ||= InitiativesType.where(organization: current_organization).find(params[:id])
85
85
  end
86
86
 
87
87
  def initiative_type_form
@@ -70,7 +70,7 @@ module Decidim
70
70
  private
71
71
 
72
72
  def membership_request
73
- @membership_request ||= InitiativesCommitteeMember.find(params[:id])
73
+ @membership_request ||= InitiativesCommitteeMember.where(initiative: current_participatory_space).find(params[:id])
74
74
  end
75
75
  end
76
76
  end
@@ -163,11 +163,11 @@ module Decidim
163
163
  end
164
164
 
165
165
  def current_initiative
166
- Initiative.find(session_initiative[:id]) if session_initiative.has_key?(:id)
166
+ Initiative.where(organization: current_organization).find_by(id: session_initiative[:id]) if session_initiative.has_key?(:id)
167
167
  end
168
168
 
169
169
  def initiative_type
170
- @initiative_type ||= InitiativesType.find(initiative_type_id)
170
+ @initiative_type ||= InitiativesType.where(organization: current_organization).find_by(id: initiative_type_id)
171
171
  end
172
172
 
173
173
  def initiative_type_id
@@ -23,7 +23,7 @@ module Decidim
23
23
  end
24
24
 
25
25
  def initiative_type
26
- @initiative_type ||= InitiativesType.find(params[:type_id])
26
+ @initiative_type ||= InitiativesType.where(organization: current_organization).find(params[:type_id])
27
27
  end
28
28
  end
29
29
  end
@@ -14,7 +14,7 @@ module Decidim
14
14
  private
15
15
 
16
16
  def allowed_signature_types_for_initiatives
17
- @allowed_signature_types_for_initiatives ||= InitiativesType.find(params[:type_id]).allowed_signature_types_for_initiatives
17
+ @allowed_signature_types_for_initiatives ||= InitiativesType.where(organization: current_organization).find(params[:type_id]).allowed_signature_types_for_initiatives
18
18
  end
19
19
  end
20
20
  end
@@ -163,6 +163,7 @@ module Decidim
163
163
 
164
164
  def initiative_export_action?
165
165
  allow! if permission_action.subject == :initiatives && permission_action.action == :export
166
+ allow! if permission_action.action == :export && permission_action.subject == :component_data
166
167
  end
167
168
 
168
169
  def moderator_action?
@@ -1,3 +1,5 @@
1
+ <% add_decidim_page_title(translated_attribute(current_participatory_space.title)) %>
2
+
1
3
  <%= decidim_form_for @form, html: { class: "form edit_initiative" } do |f| %>
2
4
  <%= render partial: "form", object: f %>
3
5
  <div class="button--double form-general-submit">
@@ -1,3 +1,4 @@
1
+ <% add_decidim_page_title(t("decidim.admin.titles.initiatives")) %>
1
2
  <div class="card with-overflow" id="initiatives">
2
3
  <div class="card-divider">
3
4
  <h2 class="card-title">
@@ -1,3 +1,4 @@
1
+ <% add_decidim_page_title(t(".title")) %>
1
2
  <div class="card">
2
3
  <div class="card-divider">
3
4
  <h2 class="card-title"><%= t ".title" %></h2>
@@ -1,3 +1,4 @@
1
+ <% add_decidim_page_title(t(".title")) %>
1
2
  <div class="card">
2
3
  <div class="card-divider">
3
4
  <h2 class="card-title"><%= t ".title" %></h2>
@@ -1,3 +1,4 @@
1
+ <% add_decidim_page_title(translated_attribute(current_initiative_type.title)) %>
1
2
  <%= decidim_form_for(@form, html: { class: "form edit_initiative_type" }) do |f| %>
2
3
  <%= render partial: "form", object: f %>
3
4
  <div class="button--double form-general-submit">
@@ -1,3 +1,5 @@
1
+ <% add_decidim_page_title(t("decidim.admin.titles.initiatives_types")) %>
2
+
1
3
  <div class="card" id="initiative-types">
2
4
  <div class="card-divider">
3
5
  <h2 class="card-title">
@@ -1,3 +1,4 @@
1
+ <% add_decidim_page_title(t(".title")) %>
1
2
  <h2 class="process-title-summary">
2
3
  <%= t ".title" %>
3
4
  </h2>
File without changes
@@ -232,6 +232,8 @@ ar:
232
232
  published: نشرت
233
233
  validating: المصادقة الفنية
234
234
  application_helper:
235
+ filter_area_values:
236
+ all: الكل
235
237
  filter_scope_values:
236
238
  all: الكل
237
239
  filter_state_values:
@@ -334,6 +336,8 @@ ar:
334
336
  few: و %{count} المزيد من الناس
335
337
  many: و %{count} المزيد من الناس
336
338
  other: و %{count} المزيد من الناس
339
+ committee_members:
340
+ revoke: سحب
337
341
  count:
338
342
  title:
339
343
  zero: "%{count} مبادرات"
@@ -416,11 +420,6 @@ ar:
416
420
  status_change_for: لقد غيرت المبادرة %{title} حالتها
417
421
  last_activity:
418
422
  new_initiative: مبادرة جديدة
419
- pages:
420
- home:
421
- highlighted_initiatives:
422
- active_initiatives: المبادرات النشطة
423
- see_all_initiatives: رؤية جميع المبادرات
424
423
  show:
425
424
  badge_name:
426
425
  accepted: ما يكفي من التوقيعات
@@ -311,7 +311,7 @@ ca:
311
311
  validating: Validació tècnica
312
312
  application_helper:
313
313
  filter_area_values:
314
- all: Totes
314
+ all: Tots
315
315
  filter_scope_values:
316
316
  all: Tots
317
317
  filter_state_values:
@@ -419,7 +419,7 @@ ca:
419
419
  form:
420
420
  add_attachments: Documents
421
421
  attachment_legend: "(Opcional) Afegir un fitxer adjunt"
422
- delete_attachment: Esborrar
422
+ delete_attachment: Suprimeix
423
423
  index:
424
424
  title: Iniciatives
425
425
  uninitialized: Les iniciatives no han estat configurades encara des de l'administració.
@@ -579,8 +579,8 @@ ca:
579
579
  rejected: No ha aconseguit les signatures
580
580
  validating: Validació tècnica
581
581
  states:
582
- accepted: Acceptat
583
- expired: Vençut
582
+ accepted: Acceptada
583
+ expired: Vençuda
584
584
  unavailable_scope: Àmbit no disponible
585
585
  update:
586
586
  error: S'ha produït un error
@@ -601,7 +601,7 @@ ca:
601
601
  layouts:
602
602
  decidim:
603
603
  initiative_creation_header:
604
- back: Tornar
604
+ back: Torna
605
605
  fill_data: Crear
606
606
  finish: Acabar
607
607
  previous_form: Començar
@@ -425,7 +425,7 @@ cs:
425
425
  form:
426
426
  add_attachments: Dokumenty
427
427
  attachment_legend: "(Volitelné) Přidat přílohu"
428
- delete_attachment: Smazat
428
+ delete_attachment: Odstranit
429
429
  index:
430
430
  title: Iniciativy
431
431
  uninitialized: Iniciativy ještě nejsou nakonfigurovány správcem
@@ -470,7 +470,7 @@ cs:
470
470
  confirm_revoke: Jste si jist?
471
471
  invite_to_committee_help: Sdílejte tento odkaz pro pozvání ostatních účastníků do propagačního výboru
472
472
  no_members_yet: V propagačním výboru nejsou žádní členové
473
- revoke: Odvolat
473
+ revoke: Zrušit
474
474
  title: Členové výboru
475
475
  count:
476
476
  title:
@@ -2,8 +2,13 @@ de:
2
2
  activemodel:
3
3
  attributes:
4
4
  initiative:
5
+ answer: Antwort
6
+ answer_url: Antwort-URL
7
+ area_id: Gebiet
8
+ decidim_scope_id: Thema
5
9
  decidim_user_group_id: Autor
6
10
  description: Beschreibung
11
+ hashtag: Hashtag
7
12
  offline_votes: Face-to-Face-Unterstützung
8
13
  offline_votes_for_scope: Persönliche Unterschriften für %{scope_name}
9
14
  scope_id: Umfang
@@ -16,6 +21,7 @@ de:
16
21
  online: Online
17
22
  state: Zustand
18
23
  title: Titel
24
+ type_id: Typ
19
25
  initiatives_committee_member:
20
26
  user: Ausschussmitglied
21
27
  initiatives_settings:
@@ -34,9 +40,13 @@ de:
34
40
  online_signature_enabled: Online-Signatur aktiviert
35
41
  only_global_scope_enabled: Nur die Erstellung globaler Initiativen zulassen
36
42
  promoting_committee_enabled: Förderkomitee freigeben
43
+ signature_type: Unterschrifttyp
37
44
  title: Titel
38
45
  undo_online_signatures_enabled: Ermöglichen Sie Benutzern, ihre Online-Signaturen rückgängig zu machen
39
46
  validate_sms_code_on_votes: Fügen Sie dem Signaturprozess einen SMS-Validierungsschritt hinzu
47
+ initiatives_type_scope:
48
+ decidim_scopes_id: Themen
49
+ supports_required: Erforderliche Unterstützungen
40
50
  initiatives_vote:
41
51
  date_of_birth: Geburtsdatum
42
52
  document_number: Dokumentnummer
@@ -98,7 +108,7 @@ de:
98
108
  initiatives:
99
109
  fields:
100
110
  created_at: Hergestellt in
101
- id: ICH WÜRDE
111
+ id: ID
102
112
  published_at: Veröffentlicht am
103
113
  state: Zustand
104
114
  supports_count: Unterschriften
@@ -274,6 +284,8 @@ de:
274
284
  update: Aktualisieren
275
285
  form:
276
286
  authorizations: Autorisierungseinstellungen
287
+ child_scope_threshold_enabled_help: 'Diese Einstellung unterstützt keine Offline-Abstimmungen. Es aktiviert Unter-Themenbereiche und arbeitet mit einem Autorisierungs-Handler zusammen, der dem Teilnehmenden einen Themenbereich zuordnet. Stellen Sie sicher, dass Sie diese Autorisierung unten in den Autorisierungseinstellungen auswählen. Hierfür müssen die Themenbereiche auf hierarchische Weise konfiguriert werden: 1 Überthema - N Unterthemen. Weitere Informationen wie diese Konfiguration funktioniert, finden Sie unter diesem <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">Link</a>.'
288
+ only_global_scope_enabled_help: Aktivieren Sie diese Einstellung, wenn Sie "Unterthemen-Signaturen" aktiviert haben und den globalen Themenbereich als Ihren Elternbereich konfiguriert haben. Dadurch wird die Auswahl des Initialtyps im Assistenten zur Erstellung der Initiative übersprungen. Weitere Informationen darüber, wie diese Konfiguration funktioniert, finden Sie <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">hier</a>.
277
289
  options: Optionen
278
290
  title: Allgemeine Information
279
291
  initiative_type_scopes:
@@ -328,6 +340,7 @@ de:
328
340
  fill_data:
329
341
  back: Zurück
330
342
  continue: Fortsetzen
343
+ decidim_user_group_id_help: Es ist nicht möglich, die Autorschaft der Initiative nach der Erstellung zu ändern
331
344
  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>"
332
345
  more_information: "(Weitere Informationen)"
333
346
  select_area: Wählen Sie einen Bereich aus
@@ -404,11 +417,12 @@ de:
404
417
  email_subject: "%{applicant_nickname} möchte Ihrer Initiative beitreten"
405
418
  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>.
406
419
  form:
407
- add_attachments: Dokumente
420
+ add_attachments: Unterlagen
408
421
  attachment_legend: "(Optional) Anhang hinzufügen"
409
422
  delete_attachment: Löschen
410
423
  index:
411
424
  title: Initiativen
425
+ uninitialized: Initiativen sind noch nicht von einem Admin konfiguriert
412
426
  initiative_signatures:
413
427
  fill_personal_data:
414
428
  continue: Fortsetzen
@@ -504,6 +518,7 @@ de:
504
518
  title: 'Titel:'
505
519
  type: Art der Initiative
506
520
  legal_text: Die erhobenen personenbezogenen Daten werden von der Organisation entsprechend der geltenden Gesetzgebung vertraulich behandelt und aufgenommen.
521
+ members_header: Mitglieder des Unterstützungskomitees der Initiative
507
522
  phone_number: Telefonnummer
508
523
  place_date: Ort, Datum
509
524
  postal_code: Postleitzahl
@@ -554,7 +569,7 @@ de:
554
569
  home:
555
570
  highlighted_initiatives:
556
571
  active_initiatives: Aktive Initiativen
557
- see_all_initiatives: Sehen Sie alle Initiativen
572
+ see_all_initiatives: Alle Initiativen anzeigen
558
573
  show:
559
574
  badge_name:
560
575
  accepted: Ausreichend Unterschriften
@@ -321,6 +321,9 @@ el:
321
321
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_nickname}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
322
322
  email_subject: Η πρωτοβουλία επιδοκιμάστηκε από τον συντάκτη %{author_nickname}
323
323
  notification_title: Η <a href="%{resource_path}">%{resource_title}</a> πρωτοβουλία επιδοκιμάστηκε από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
324
+ form:
325
+ add_attachments: Έγγραφα
326
+ delete_attachment: Διαγραφή
324
327
  index:
325
328
  title: Πρωτοβουλίες
326
329
  initiative_signatures:
@@ -357,6 +360,8 @@ el:
357
360
  hidden_authors_count:
358
361
  one: και 1 ακόμη άτομο
359
362
  other: και %{count} ακόμη άτομα
363
+ committee_members:
364
+ revoke: Ανάκληση
360
365
  count:
361
366
  title:
362
367
  one: "%{count} πρωτοβουλία"
@@ -423,11 +428,6 @@ el:
423
428
  status_change_for: Η κατάσταση της πρωτοβουλίας %{title} άλλαξε
424
429
  last_activity:
425
430
  new_initiative: Νέα πρωτοβουλία
426
- pages:
427
- home:
428
- highlighted_initiatives:
429
- active_initiatives: Ενεργές πρωτοβουλίες
430
- see_all_initiatives: Δείτε όλες τις πρωτοβουλίες
431
431
  show:
432
432
  badge_name:
433
433
  accepted: Αρκετές υπογραφές
@@ -311,7 +311,7 @@ es-MX:
311
311
  validating: Validación técnica
312
312
  application_helper:
313
313
  filter_area_values:
314
- all: Todas
314
+ all: Todos
315
315
  filter_scope_values:
316
316
  all: Todos
317
317
  filter_state_values:
@@ -601,7 +601,7 @@ es-MX:
601
601
  layouts:
602
602
  decidim:
603
603
  initiative_creation_header:
604
- back: Espalda
604
+ back: Volver
605
605
  fill_data: Crear
606
606
  finish: Terminar
607
607
  previous_form: Iniciar
@@ -311,7 +311,7 @@ es-PY:
311
311
  validating: Validación técnica
312
312
  application_helper:
313
313
  filter_area_values:
314
- all: Todas
314
+ all: Todos
315
315
  filter_scope_values:
316
316
  all: Todos
317
317
  filter_state_values:
@@ -601,7 +601,7 @@ es-PY:
601
601
  layouts:
602
602
  decidim:
603
603
  initiative_creation_header:
604
- back: Espalda
604
+ back: Volver
605
605
  fill_data: Crear
606
606
  finish: Terminar
607
607
  previous_form: Iniciar
@@ -311,7 +311,7 @@ es:
311
311
  validating: Validación técnica
312
312
  application_helper:
313
313
  filter_area_values:
314
- all: Todas
314
+ all: Todos
315
315
  filter_scope_values:
316
316
  all: Todos
317
317
  filter_state_values:
@@ -344,7 +344,7 @@ es:
344
344
  fill_data_help: "<ul> <li>Revisa el contenido de tu iniciativa. ¿Tu título es fácil de entender? ¿Está claro el objetivo de tu iniciativa?</li> <li>Tienes que elegir el tipo de firma. En persona, en línea o una combinación de ambos</li> <li>¿Cuál es el alcance geográfico de la iniciativa?</li> </ul>"
345
345
  more_information: "(Más información)"
346
346
  select_area: Selecciona un área
347
- select_scope: Seleccione un alcance
347
+ select_scope: Selecciona un ámbito
348
348
  finish:
349
349
  back: Volver
350
350
  back_to_initiatives: Volver a iniciativas
@@ -579,8 +579,8 @@ es:
579
579
  rejected: No ha conseguido las firmas
580
580
  validating: Validación técnica
581
581
  states:
582
- accepted: Aceptado
583
- expired: Caducado
582
+ accepted: Aceptada
583
+ expired: Caducada
584
584
  unavailable_scope: Ámbito no disponible
585
585
  update:
586
586
  error: Se ha producido un error
@@ -401,7 +401,7 @@ eu:
401
401
  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>.
402
402
  form:
403
403
  add_attachments: Dokumentuak
404
- delete_attachment: Ezabatu
404
+ delete_attachment: ezabatu
405
405
  index:
406
406
  title: Ekimenak
407
407
  initiative_signatures:
@@ -545,11 +545,6 @@ eu:
545
545
  status_change_for: '%{title} ekimena bere egoera aldatu du'
546
546
  last_activity:
547
547
  new_initiative: Ekimen berria
548
- pages:
549
- home:
550
- highlighted_initiatives:
551
- active_initiatives: Ekimen aktiboak
552
- see_all_initiatives: Ikusi ekimen guztiak
553
548
  show:
554
549
  badge_name:
555
550
  accepted: Beharrezko sinadurekin
@@ -462,7 +462,7 @@ fi-pl:
462
462
  confirm_revoke: Oletko varma?
463
463
  invite_to_committee_help: Jaa tämä linkki ja kutsu muita käyttäjiä kannatuskomiteaan
464
464
  no_members_yet: Kannatuskomiteassa ei ole jäseniä
465
- revoke: Peruuta
465
+ revoke: Kumoa
466
466
  title: Komitean jäsenet
467
467
  count:
468
468
  title:
@@ -569,7 +569,7 @@ fi-pl:
569
569
  home:
570
570
  highlighted_initiatives:
571
571
  active_initiatives: Aktiiviset aloitteet
572
- see_all_initiatives: Katso kaikki aloitteet
572
+ see_all_initiatives: Näytä kaikki aloitteet
573
573
  show:
574
574
  badge_name:
575
575
  accepted: Tarpeeksi allekirjoituksia
@@ -462,7 +462,7 @@ fi:
462
462
  confirm_revoke: Oletko varma?
463
463
  invite_to_committee_help: Jaa tämä linkki ja kutsu muita käyttäjiä kannatuskomiteaan
464
464
  no_members_yet: Kannatuskomiteassa ei ole jäseniä
465
- revoke: Peruuta
465
+ revoke: Kumoa
466
466
  title: Komitean jäsenet
467
467
  count:
468
468
  title:
@@ -569,7 +569,7 @@ fi:
569
569
  home:
570
570
  highlighted_initiatives:
571
571
  active_initiatives: Aktiiviset aloitteet
572
- see_all_initiatives: Katso kaikki aloitteet
572
+ see_all_initiatives: Näytä kaikki aloitteet
573
573
  show:
574
574
  badge_name:
575
575
  accepted: Tarpeeksi allekirjoituksia
@@ -417,7 +417,7 @@ fr-CA:
417
417
  email_subject: "%{applicant_nickname} veut rejoindre le comité de promotion de votre pétition"
418
418
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a postulé pour faire partie du comité de promotion de votre pétition <a href="%{resource_url}">%{resource_title}</a>. Pour accepter ou rejeter la demande, cliquez <a href="%{resource_url}/edit">ici</a>.
419
419
  form:
420
- add_attachments: Pièces-jointes
420
+ add_attachments: Documents
421
421
  attachment_legend: "(Facultatif) Ajouter une pièce jointe"
422
422
  delete_attachment: Supprimer
423
423
  index:
@@ -565,11 +565,6 @@ fr-CA:
565
565
  status_change_for: L'initiative %{title} a changé de statut
566
566
  last_activity:
567
567
  new_initiative: Nouvelle initiative
568
- pages:
569
- home:
570
- highlighted_initiatives:
571
- active_initiatives: Initiatives actives
572
- see_all_initiatives: Voir toutes les initiatives
573
568
  show:
574
569
  badge_name:
575
570
  accepted: Assez de signatures
@@ -608,7 +603,7 @@ fr-CA:
608
603
  promotal_committee: Comité de promotion
609
604
  select_initiative_type: Sélectionnez le type de d'initiative
610
605
  show_similar_initiatives: Comparez avec les autres initiatives
611
- step: Étape %{current} de %{total}
606
+ step: Étape %{current} sur %{total}
612
607
  title: Créer une nouvelle initiative
613
608
  initiative_header:
614
609
  initiative_menu_item: Pétition
@@ -417,7 +417,7 @@ fr:
417
417
  email_subject: "%{applicant_nickname} veut rejoindre le comité de promotion de votre pétition"
418
418
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a postulé pour faire partie du comité de promotion de votre pétition <a href="%{resource_url}">%{resource_title}</a>. Pour accepter ou rejeter la demande, cliquez <a href="%{resource_url}/edit">ici</a>.
419
419
  form:
420
- add_attachments: Pièces-jointes
420
+ add_attachments: Documents
421
421
  attachment_legend: "(Facultatif) Ajouter une pièce jointe"
422
422
  delete_attachment: Supprimer
423
423
  index:
@@ -565,11 +565,6 @@ fr:
565
565
  status_change_for: La pétition %{title} a changé de statut
566
566
  last_activity:
567
567
  new_initiative: Nouvelle pétition
568
- pages:
569
- home:
570
- highlighted_initiatives:
571
- active_initiatives: Pétitions actives
572
- see_all_initiatives: Voir toutes les pétitions
573
568
  show:
574
569
  badge_name:
575
570
  accepted: Assez de signatures
@@ -608,7 +603,7 @@ fr:
608
603
  promotal_committee: Comité de promotion
609
604
  select_initiative_type: Sélectionnez le type de pétition
610
605
  show_similar_initiatives: Comparez avec les autres pétitions
611
- step: Étape %{current} de %{total}
606
+ step: Étape %{current} sur %{total}
612
607
  title: Créer une nouvelle pétition
613
608
  initiative_header:
614
609
  initiative_menu_item: Pétition
@@ -282,6 +282,7 @@ gl:
282
282
  notification_title: A <a href="%{resource_path}">%{resource_title}</a> iniciativa foi aprobada por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
283
283
  form:
284
284
  attachment_legend: "(Opcional) Engade un anexo"
285
+ delete_attachment: Eliminar
285
286
  index:
286
287
  title: Iniciativas
287
288
  initiative_signatures:
@@ -318,6 +319,8 @@ gl:
318
319
  hidden_authors_count:
319
320
  one: e 1 persoa máis
320
321
  other: e %{count} persoas máis
322
+ committee_members:
323
+ revoke: Revocar
321
324
  count:
322
325
  title:
323
326
  one: "Iniciativa %{count}"
@@ -381,11 +384,6 @@ gl:
381
384
  status_change_for: A iniciativa %{title} cambiou o seu estado
382
385
  last_activity:
383
386
  new_initiative: Nova iniciativa
384
- pages:
385
- home:
386
- highlighted_initiatives:
387
- active_initiatives: Iniciativas activas
388
- see_all_initiatives: Ver todas as iniciativas
389
387
  states:
390
388
  accepted: Aceptada
391
389
  expired: Vencido
@@ -2,8 +2,13 @@ hu:
2
2
  activemodel:
3
3
  attributes:
4
4
  initiative:
5
+ answer: Válasz
6
+ answer_url: Válasz URL
7
+ area_id: Terület
8
+ decidim_scope_id: Hatókör
5
9
  decidim_user_group_id: Szerző
6
10
  description: Leírás
11
+ hashtag: Kettőskereszt
7
12
  offline_votes: Támogatás szemtől szembe
8
13
  offline_votes_for_scope: 'Személyesen aláírások erre: %{scope_name}'
9
14
  scope_id: Hatáskör
@@ -16,8 +21,11 @@ hu:
16
21
  online: Online
17
22
  state: Állapot
18
23
  title: Cím
24
+ type_id: Típus
19
25
  initiatives_committee_member:
20
26
  user: Bizottsági tag
27
+ initiatives_settings:
28
+ initiatives_order: Sorrend
21
29
  initiatives_type:
22
30
  area_enabled: Lehetővé teszi a szerzők számára, hogy kiválasszák a kezdeményezésük területét
23
31
  attachments_enabled: Mellékletek engedélyezése
@@ -32,9 +40,13 @@ hu:
32
40
  online_signature_enabled: Online aláírás engedélyezve
33
41
  only_global_scope_enabled: Csak globális hatókörű kezdeményezések létrehozását engedélyezze
34
42
  promoting_committee_enabled: Előléptetési bizottság engedélyezése
43
+ signature_type: Aláírás típusa
35
44
  title: Cím
36
45
  undo_online_signatures_enabled: Engedélyezze a felhasználók számára az online aláírások visszavonását
37
46
  validate_sms_code_on_votes: SMS-kód érvényesítési lépés hozzáadása az aláíráshoz
47
+ initiatives_type_scope:
48
+ decidim_scopes_id: Hatókörök
49
+ supports_required: Támogatás szükséges
38
50
  initiatives_vote:
39
51
  date_of_birth: Születési dátum
40
52
  document_number: Dokumentum szám
@@ -548,11 +560,6 @@ hu:
548
560
  status_change_for: A(z) %{title} kezdeményezés állapota változott
549
561
  last_activity:
550
562
  new_initiative: Új kezdeményezés
551
- pages:
552
- home:
553
- highlighted_initiatives:
554
- active_initiatives: Aktív kezdeményezések
555
- see_all_initiatives: Összes kezdeményezés
556
563
  show:
557
564
  badge_name:
558
565
  accepted: Elegendő aláírás
@@ -584,7 +591,7 @@ hu:
584
591
  layouts:
585
592
  decidim:
586
593
  initiative_creation_header:
587
- back: Hát
594
+ back: Vissza
588
595
  fill_data: Létrehozás
589
596
  finish: Befejezés
590
597
  previous_form: Kezdés