decidim-assemblies 0.27.3 → 0.27.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/commands/decidim/assemblies/admin/destroy_assembly_admin.rb +5 -0
- data/app/controllers/decidim/assemblies/admin/assemblies_types_controller.rb +1 -1
- data/app/controllers/decidim/assemblies/admin/assembly_members_controller.rb +1 -1
- data/app/controllers/decidim/assemblies/assemblies_controller.rb +1 -1
- data/app/helpers/decidim/assemblies/filter_assemblies_helper.rb +1 -1
- data/app/models/decidim/assembly.rb +1 -1
- data/app/permissions/decidim/assemblies/permissions.rb +7 -5
- data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +1 -0
- data/app/views/decidim/assemblies/admin/assemblies/new.html.erb +2 -0
- data/app/views/decidim/assemblies/admin/assemblies_settings/edit.html.erb +1 -0
- data/app/views/decidim/assemblies/admin/assemblies_types/edit.html.erb +1 -0
- data/app/views/decidim/assemblies/admin/assemblies_types/index.html.erb +2 -0
- data/app/views/decidim/assemblies/admin/assemblies_types/new.html.erb +1 -0
- data/app/views/layouts/decidim/admin/assembly.html.erb +1 -0
- data/config/environment.rb +3 -0
- data/config/locales/ar.yml +3 -14
- data/config/locales/bg.yml +4 -0
- data/config/locales/ca.yml +4 -4
- data/config/locales/cs.yml +13 -13
- data/config/locales/de.yml +21 -14
- data/config/locales/el.yml +29 -13
- data/config/locales/en.yml +2 -2
- data/config/locales/es-MX.yml +5 -5
- data/config/locales/es-PY.yml +5 -5
- data/config/locales/es.yml +5 -5
- data/config/locales/eu.yml +186 -170
- data/config/locales/fi-plain.yml +6 -6
- data/config/locales/fi.yml +9 -9
- data/config/locales/fr-CA.yml +9 -9
- data/config/locales/fr.yml +12 -12
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +2 -12
- data/config/locales/hu.yml +19 -13
- data/config/locales/id-ID.yml +3 -12
- data/config/locales/is-IS.yml +6 -14
- data/config/locales/it.yml +4 -15
- data/config/locales/ja.yml +5 -5
- data/config/locales/kaa.yml +59 -0
- data/config/locales/lb.yml +5 -12
- data/config/locales/lt.yml +16 -10
- data/config/locales/lv.yml +0 -9
- data/config/locales/nl.yml +4 -15
- data/config/locales/no.yml +2 -13
- data/config/locales/pl.yml +21 -10
- data/config/locales/pt-BR.yml +30 -13
- data/config/locales/pt.yml +0 -11
- data/config/locales/ro-RO.yml +1 -11
- data/config/locales/ru.yml +3 -13
- data/config/locales/sk.yml +18 -1
- data/config/locales/sl.yml +7 -5
- data/config/locales/sq-AL.yml +1 -0
- data/config/locales/sv.yml +6 -16
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +4 -15
- data/config/locales/uk.yml +3 -13
- data/config/locales/zh-CN.yml +0 -11
- data/config/locales/zh-TW.yml +3 -14
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +19 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff366233187676b828016789d18d4b0dcad3abab5ab8b17b15b25f92197cd2dc
|
|
4
|
+
data.tar.gz: ca7077b9830cc40fc875e9cf8ce31046c5822b57f6e653f7fc65330051ae0d5b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30ef186d3d8f329036800a4e6a12c87bae8ee6c7403e8f051106822386afca1f3f088936b23c4a69460e2e42606f1a92bdfa65bf418ded4d6b39912adf42b646
|
|
7
|
+
data.tar.gz: f8b3556b8ce56a8e6a5bd4724f0e1ee2401ef702b481a50314869928b2d0a2f261655bee749592551c254f035970696927264f8f0314fdd25ab83cb5f95ef749
|
|
@@ -23,6 +23,7 @@ module Decidim
|
|
|
23
23
|
# Returns nothing.
|
|
24
24
|
def call
|
|
25
25
|
destroy_role!
|
|
26
|
+
dispatch_system_event
|
|
26
27
|
broadcast(:ok)
|
|
27
28
|
end
|
|
28
29
|
|
|
@@ -30,6 +31,10 @@ module Decidim
|
|
|
30
31
|
|
|
31
32
|
attr_reader :role, :current_user
|
|
32
33
|
|
|
34
|
+
def dispatch_system_event
|
|
35
|
+
ActiveSupport::Notifications.publish("decidim.system.participatory_space.admin.destroyed", role.class.name, role.id)
|
|
36
|
+
end
|
|
37
|
+
|
|
33
38
|
def destroy_role!
|
|
34
39
|
extra_info = {
|
|
35
40
|
resource: {
|
|
@@ -211,9 +211,9 @@ module Decidim
|
|
|
211
211
|
end
|
|
212
212
|
|
|
213
213
|
def allowed_list_of_assemblies?
|
|
214
|
-
parent_assemblies =
|
|
214
|
+
parent_assemblies = assembly.ancestors.flat_map { |assembly| [assembly.id] + assembly.ancestors.pluck(:id) }
|
|
215
215
|
|
|
216
|
-
allowed_list_of_assemblies = Decidim::Assembly.where(id:
|
|
216
|
+
allowed_list_of_assemblies = Decidim::Assembly.where(id: [assembly.id] + parent_assemblies)
|
|
217
217
|
allowed_list_of_assemblies.uniq.member?(assembly)
|
|
218
218
|
end
|
|
219
219
|
|
|
@@ -308,10 +308,12 @@ module Decidim
|
|
|
308
308
|
end
|
|
309
309
|
|
|
310
310
|
def assembly_admin_allowed_assemblies
|
|
311
|
-
|
|
312
|
-
|
|
311
|
+
@assembly_admin_allowed ||= begin
|
|
312
|
+
assemblies = AssembliesWithUserRole.for(user, :admin).where(id: [assembly.id, assembly.parent_id])
|
|
313
|
+
child_assemblies = assemblies.flat_map { |assembly| [assembly.id] + assembly.children.pluck(:id) }
|
|
313
314
|
|
|
314
|
-
|
|
315
|
+
Decidim::Assembly.where(id: assemblies + child_assemblies)
|
|
316
|
+
end
|
|
315
317
|
end
|
|
316
318
|
end
|
|
317
319
|
end
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<% add_decidim_page_title(t("decidim.assemblies.admin.assemblies_settings.form.title")) %>
|
|
1
2
|
<%= decidim_form_for(@form, html: { class: "form edit_assemblies_settings" }, url: assemblies_settings_path, method: :put) do |f| %>
|
|
2
3
|
<%= render partial: "form", object: f %>
|
|
3
4
|
<div class="button--double form-general-submit">
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<% add_decidim_page_title(t("assemblies_types.new.title", scope: "decidim.admin")) %>
|
|
1
2
|
<%= decidim_form_for(@form, html: { class: "form new_assembly_type" }) do |f| %>
|
|
2
3
|
<%= render partial: "form", object: f, locals: { title: t("assemblies_types.new.title", scope: "decidim.admin") } %>
|
|
3
4
|
|
data/config/locales/ar.yml
CHANGED
|
@@ -59,7 +59,6 @@ ar:
|
|
|
59
59
|
subtitle: العنوان الفرعي
|
|
60
60
|
target: من يشارك
|
|
61
61
|
title: العنوان
|
|
62
|
-
twitter: تويتر
|
|
63
62
|
weight: موضع الطلب
|
|
64
63
|
youtube: يوتيوب
|
|
65
64
|
assembly_member:
|
|
@@ -301,7 +300,6 @@ ar:
|
|
|
301
300
|
select_an_area: اختر منطقة
|
|
302
301
|
select_an_assembly_type: حدد نوع الجمعية
|
|
303
302
|
select_parent_assembly: حدد الجمعية الأصلية
|
|
304
|
-
slug_help: 'يتم استخدام slugs URL لإنشاء عناوين URL التي تشير إلى هذا التجميع. يقبل الحروف والأرقام والشرطات فقط ، ويجب أن يبدأ بحرف. مثال: %{url}'
|
|
305
303
|
social_handlers: التواصل الاجتماعي
|
|
306
304
|
title: معلومات عامة
|
|
307
305
|
visbility: الرؤية
|
|
@@ -313,13 +311,9 @@ ar:
|
|
|
313
311
|
assemblies_types:
|
|
314
312
|
form:
|
|
315
313
|
title: العنوان
|
|
316
|
-
assembly_copies:
|
|
317
|
-
form:
|
|
318
|
-
slug_help: 'يتم استخدام slugs URL لإنشاء عناوين URL التي تشير إلى هذا التجميع. يقبل الحروف والأرقام والشرطات فقط ، ويجب أن يبدأ بحرف. مثال: %{url}'
|
|
319
314
|
assembly_imports:
|
|
320
315
|
form:
|
|
321
316
|
document_legend: إضافة وثيقة
|
|
322
|
-
slug_help: 'يتم استخدام سبائك URL لإنشاء عناوين URL التي تشير إلى هذا التجمع. تُقبل الحروف والأرقام والشرطات فقط، ويجب أن تبدأ بحرف. مثال: %{url}'
|
|
323
317
|
assembly_members:
|
|
324
318
|
form:
|
|
325
319
|
existing_user: المشارك الحالي
|
|
@@ -333,8 +327,6 @@ ar:
|
|
|
333
327
|
index:
|
|
334
328
|
filter:
|
|
335
329
|
all: الكل
|
|
336
|
-
ceased: توقف
|
|
337
|
-
not_ceased: لم تتوقف
|
|
338
330
|
filter_by: مصنف بواسطة
|
|
339
331
|
search: البحث
|
|
340
332
|
content_blocks:
|
|
@@ -381,9 +373,7 @@ ar:
|
|
|
381
373
|
pages:
|
|
382
374
|
home:
|
|
383
375
|
highlighted_assemblies:
|
|
384
|
-
active_assemblies: الجمعيات النشطة
|
|
385
376
|
assemblies_button_title: رابط إلى صفحة الجمعيات لاستعراض جميع الجمعيات
|
|
386
|
-
see_all_assemblies: عرض كافة الجمعيات
|
|
387
377
|
user_profile:
|
|
388
378
|
member_of:
|
|
389
379
|
member_of: عضو في
|
|
@@ -398,7 +388,6 @@ ar:
|
|
|
398
388
|
developer_group: مجموعة المروجين
|
|
399
389
|
duration: المدة الزمنية
|
|
400
390
|
included_at: المدرجة في
|
|
401
|
-
indefinite_duration: غير محدد
|
|
402
391
|
internal_organisation: التنظيم الداخلي
|
|
403
392
|
is_transparent:
|
|
404
393
|
'false': مبهمة
|
|
@@ -407,11 +396,11 @@ ar:
|
|
|
407
396
|
participatory_scope: ما الذي تقرر
|
|
408
397
|
participatory_structure: كيف تقرر ذلك
|
|
409
398
|
private_space: هذه جمعية خاصة
|
|
410
|
-
purpose_of_action: الغرض من
|
|
399
|
+
purpose_of_action: الغرض من العمل
|
|
411
400
|
read_less: أقرأ أقل
|
|
412
401
|
read_more: اقرأ المزيد
|
|
413
402
|
related_participatory_processes: العمليات التشاركية ذات الصلة
|
|
414
|
-
scope:
|
|
403
|
+
scope: النطاق
|
|
415
404
|
social_networks: شبكات التواصل الاجتماعي
|
|
416
405
|
social_networks_title: زيارة التجمع على
|
|
417
406
|
target: من يشارك
|
|
@@ -487,4 +476,4 @@ ar:
|
|
|
487
476
|
assembly_menu_item: الجمعية
|
|
488
477
|
assembly_widgets:
|
|
489
478
|
show:
|
|
490
|
-
take_part:
|
|
479
|
+
take_part: خذ جزء
|
data/config/locales/bg.yml
CHANGED
data/config/locales/ca.yml
CHANGED
|
@@ -59,7 +59,7 @@ ca:
|
|
|
59
59
|
subtitle: Subtítol
|
|
60
60
|
target: Qui participa
|
|
61
61
|
title: Títol
|
|
62
|
-
twitter:
|
|
62
|
+
twitter: X
|
|
63
63
|
weight: Ordre de posició
|
|
64
64
|
youtube: YouTube
|
|
65
65
|
assembly_member:
|
|
@@ -303,7 +303,7 @@ ca:
|
|
|
303
303
|
title: Títol
|
|
304
304
|
assembly_copies:
|
|
305
305
|
form:
|
|
306
|
-
slug_help: 'Els noms curts d''URL s''utilitzen per generar
|
|
306
|
+
slug_help: 'Els noms curts d''URL s''utilitzen per generar les URL que apunten a aquesta assemblea. Només accepta lletres, números i guions, i ha de començar amb una lletra. Exemple: %{url}'
|
|
307
307
|
assembly_imports:
|
|
308
308
|
form:
|
|
309
309
|
document_legend: Afegir un document
|
|
@@ -392,7 +392,7 @@ ca:
|
|
|
392
392
|
'false': opaca
|
|
393
393
|
'true': transparent
|
|
394
394
|
local_area: Àrea d'organització
|
|
395
|
-
participatory_scope: Què es decideix
|
|
395
|
+
participatory_scope: Què es decideix?
|
|
396
396
|
participatory_structure: Com es decideix
|
|
397
397
|
private_space: Aquesta és una assemblea privada
|
|
398
398
|
purpose_of_action: Propòsit de l'acció
|
|
@@ -405,7 +405,7 @@ ca:
|
|
|
405
405
|
target: Qui participa
|
|
406
406
|
assembly_members:
|
|
407
407
|
assembly_member:
|
|
408
|
-
designated_on:
|
|
408
|
+
designated_on: 'Data de designació:'
|
|
409
409
|
index:
|
|
410
410
|
title: Membres
|
|
411
411
|
events:
|
data/config/locales/cs.yml
CHANGED
|
@@ -59,7 +59,7 @@ cs:
|
|
|
59
59
|
subtitle: Podtitul
|
|
60
60
|
target: Kdo se účastní
|
|
61
61
|
title: Titul
|
|
62
|
-
twitter:
|
|
62
|
+
twitter: X
|
|
63
63
|
weight: Pozice v řazení
|
|
64
64
|
youtube: Youtube
|
|
65
65
|
assembly_member:
|
|
@@ -295,13 +295,13 @@ cs:
|
|
|
295
295
|
select_an_area: Vyberte oblast
|
|
296
296
|
select_an_assembly_type: Vyberte typ shromáždění
|
|
297
297
|
select_parent_assembly: Vybrat nadřazené shromáždění
|
|
298
|
-
slug_help: 'URL
|
|
298
|
+
slug_help: 'URL slugy se používají ke generování adres URL, které odkazují na toto shromáždění. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
|
299
299
|
social_handlers: Sociální
|
|
300
300
|
title: Obecná informace
|
|
301
301
|
visbility: Viditelnost
|
|
302
302
|
assemblies_settings:
|
|
303
303
|
edit:
|
|
304
|
-
update:
|
|
304
|
+
update: Aktualizace
|
|
305
305
|
form:
|
|
306
306
|
title: Nastavení pro Shromáždění
|
|
307
307
|
assemblies_types:
|
|
@@ -309,11 +309,11 @@ cs:
|
|
|
309
309
|
title: Titul
|
|
310
310
|
assembly_copies:
|
|
311
311
|
form:
|
|
312
|
-
slug_help: 'URL
|
|
312
|
+
slug_help: 'URL slugy se používají ke generování adres URL, které odkazují na toto shromáždění. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
|
313
313
|
assembly_imports:
|
|
314
314
|
form:
|
|
315
315
|
document_legend: Přidat dokument
|
|
316
|
-
slug_help: 'URL
|
|
316
|
+
slug_help: 'URL slugy se používají ke generování adres URL, které odkazují na toto shromáždění. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
|
317
317
|
assembly_members:
|
|
318
318
|
form:
|
|
319
319
|
existing_user: Existující účastník
|
|
@@ -327,8 +327,8 @@ cs:
|
|
|
327
327
|
index:
|
|
328
328
|
filter:
|
|
329
329
|
all: Vše
|
|
330
|
-
ceased:
|
|
331
|
-
not_ceased:
|
|
330
|
+
ceased: Ukončeno
|
|
331
|
+
not_ceased: Neukončeno
|
|
332
332
|
filter_by: Filtrovat podle
|
|
333
333
|
search: Vyhledávání
|
|
334
334
|
content_blocks:
|
|
@@ -377,7 +377,7 @@ cs:
|
|
|
377
377
|
highlighted_assemblies:
|
|
378
378
|
active_assemblies: Aktivní shromáždění
|
|
379
379
|
assemblies_button_title: Odkaz na stránku Shromáždění zobrazující všechna shromáždění
|
|
380
|
-
see_all_assemblies: Zobrazit
|
|
380
|
+
see_all_assemblies: Zobrazit všechna shromáždění
|
|
381
381
|
user_profile:
|
|
382
382
|
member_of:
|
|
383
383
|
member_of: Člen
|
|
@@ -385,21 +385,21 @@ cs:
|
|
|
385
385
|
area: Oblast
|
|
386
386
|
assembly_type: Typ shromáždění
|
|
387
387
|
children: Shromáždění
|
|
388
|
-
closing_date:
|
|
388
|
+
closing_date: Datum ukončení
|
|
389
389
|
composition: Složení
|
|
390
390
|
created_by: Vytvořil
|
|
391
391
|
creation_date: Datum vytvoření
|
|
392
|
-
developer_group: Skupina
|
|
392
|
+
developer_group: Skupina promotérů
|
|
393
393
|
duration: Doba trvání
|
|
394
|
-
included_at:
|
|
394
|
+
included_at: Zahrnuty v
|
|
395
395
|
indefinite_duration: Neurčité
|
|
396
|
-
internal_organisation:
|
|
396
|
+
internal_organisation: Vnitřní organizace
|
|
397
397
|
is_transparent:
|
|
398
398
|
'false': neprůhledný
|
|
399
399
|
'true': transparentní
|
|
400
400
|
local_area: Oblast působnosti organizace
|
|
401
401
|
participatory_scope: Co se rozhodlo
|
|
402
|
-
participatory_structure: Jak se
|
|
402
|
+
participatory_structure: Jak se to rozhoduje
|
|
403
403
|
private_space: Toto je soukromé shromáždění
|
|
404
404
|
purpose_of_action: Účel akce
|
|
405
405
|
read_less: Číst méně
|
data/config/locales/de.yml
CHANGED
|
@@ -4,7 +4,10 @@ de:
|
|
|
4
4
|
attributes:
|
|
5
5
|
assemblies_setting:
|
|
6
6
|
enable_organization_chart: Organisationsdiagramm aktivieren
|
|
7
|
+
assemblies_type:
|
|
8
|
+
title: Titel
|
|
7
9
|
assembly:
|
|
10
|
+
announcement: Ankündigung
|
|
8
11
|
area_id: Bereich
|
|
9
12
|
assembly_type: Versammlungstyp
|
|
10
13
|
assembly_type_other: Sonstiger Versammlungstyp
|
|
@@ -23,12 +26,16 @@ de:
|
|
|
23
26
|
decidim_scope_id: Umfang
|
|
24
27
|
description: Beschreibung
|
|
25
28
|
developer_group: Promoter-Gruppe
|
|
29
|
+
document: Dokument
|
|
26
30
|
domain: Domain
|
|
27
31
|
duration: Dauer
|
|
28
32
|
facebook: Facebook
|
|
29
33
|
github: GitHub
|
|
30
34
|
hashtag: Hashtag
|
|
31
35
|
hero_image: Hauptbild
|
|
36
|
+
import_attachments: Anhänge importieren
|
|
37
|
+
import_categories: Kategorien importieren
|
|
38
|
+
import_components: Komponenten importieren
|
|
32
39
|
included_at: Inbegriffen bei
|
|
33
40
|
instagram: Instagram
|
|
34
41
|
internal_organisation: Interne Organisation
|
|
@@ -52,7 +59,7 @@ de:
|
|
|
52
59
|
subtitle: Untertitel
|
|
53
60
|
target: Wer nimmt teil?
|
|
54
61
|
title: Titel
|
|
55
|
-
twitter:
|
|
62
|
+
twitter: X
|
|
56
63
|
weight: Reihenfolge
|
|
57
64
|
youtube: Youtube
|
|
58
65
|
assembly_member:
|
|
@@ -109,7 +116,7 @@ de:
|
|
|
109
116
|
title: Neues Gremium
|
|
110
117
|
update:
|
|
111
118
|
error: Beim Aktualisieren dieses Gremiums ist ein Fehler aufgetreten.
|
|
112
|
-
success:
|
|
119
|
+
success: Die Versammlung wurde erfolgreich aktualisiert.
|
|
113
120
|
assemblies_copies:
|
|
114
121
|
create:
|
|
115
122
|
error: Beim Duplizieren dieses Gremiums ist ein Fehler aufgetreten.
|
|
@@ -150,7 +157,7 @@ de:
|
|
|
150
157
|
destroy:
|
|
151
158
|
success: Mitglied wurde erfolgreich aus diesem Gremium entfernt.
|
|
152
159
|
edit:
|
|
153
|
-
title:
|
|
160
|
+
title: Gremiumsmitglieder aktualisieren.
|
|
154
161
|
update: Aktualisieren
|
|
155
162
|
index:
|
|
156
163
|
assembly_members_title: Gremienmitglieder
|
|
@@ -174,7 +181,7 @@ de:
|
|
|
174
181
|
destroy:
|
|
175
182
|
success: Benutzer wurde erfolgreich von dieser Assembly entfernt.
|
|
176
183
|
edit:
|
|
177
|
-
title:
|
|
184
|
+
title: Gremienadmin aktualisieren.
|
|
178
185
|
update: Aktualisieren
|
|
179
186
|
index:
|
|
180
187
|
assembly_admins_title: Assembly Benutzer
|
|
@@ -205,11 +212,11 @@ de:
|
|
|
205
212
|
models:
|
|
206
213
|
assemblies_types:
|
|
207
214
|
fields:
|
|
208
|
-
created_at:
|
|
215
|
+
created_at: Erstellt am
|
|
209
216
|
title: Titel
|
|
210
217
|
assembly:
|
|
211
218
|
fields:
|
|
212
|
-
created_at:
|
|
219
|
+
created_at: Erstellt am
|
|
213
220
|
private: Privat
|
|
214
221
|
promoted: Hervorgehoben
|
|
215
222
|
published: Veröffentlicht
|
|
@@ -281,8 +288,8 @@ de:
|
|
|
281
288
|
select_a_created_by: Wählen Sie eine erstellt von aus
|
|
282
289
|
select_an_area: Wählen Sie einen Bereich
|
|
283
290
|
select_an_assembly_type: Wählen Sie einen Gremiumstyp
|
|
284
|
-
select_parent_assembly:
|
|
285
|
-
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf
|
|
291
|
+
select_parent_assembly: Übergeordnetes Gremium auswählen
|
|
292
|
+
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf dieses Gremium verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und es muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
|
286
293
|
social_handlers: Sozial
|
|
287
294
|
title: Allgemeine Information
|
|
288
295
|
visbility: Sichtweite
|
|
@@ -296,11 +303,11 @@ de:
|
|
|
296
303
|
title: Titel
|
|
297
304
|
assembly_copies:
|
|
298
305
|
form:
|
|
299
|
-
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf
|
|
306
|
+
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf dieses Gremium verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und es muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
|
300
307
|
assembly_imports:
|
|
301
308
|
form:
|
|
302
309
|
document_legend: Dokument hinzufügen
|
|
303
|
-
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf
|
|
310
|
+
slug_help: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf dieses Gremium verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und es muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
|
304
311
|
assembly_members:
|
|
305
312
|
form:
|
|
306
313
|
existing_user: Existierender Benutzer
|
|
@@ -314,8 +321,8 @@ de:
|
|
|
314
321
|
index:
|
|
315
322
|
filter:
|
|
316
323
|
all: Alle
|
|
317
|
-
ceased:
|
|
318
|
-
not_ceased: Nicht
|
|
324
|
+
ceased: Eingestellt
|
|
325
|
+
not_ceased: Nicht eingestellt
|
|
319
326
|
filter_by: Filtern nach
|
|
320
327
|
search: Suche
|
|
321
328
|
content_blocks:
|
|
@@ -385,8 +392,8 @@ de:
|
|
|
385
392
|
'false': undurchsichtig
|
|
386
393
|
'true': transparent
|
|
387
394
|
local_area: Organisationsbereich
|
|
388
|
-
participatory_scope: Was
|
|
389
|
-
participatory_structure: Wie
|
|
395
|
+
participatory_scope: Was wird entschieden?
|
|
396
|
+
participatory_structure: Wie wird es entschieden?
|
|
390
397
|
private_space: Dies ist eine private Versammlung
|
|
391
398
|
purpose_of_action: Zweck der Aktion
|
|
392
399
|
read_less: Lese weniger
|
data/config/locales/el.yml
CHANGED
|
@@ -4,11 +4,14 @@ el:
|
|
|
4
4
|
attributes:
|
|
5
5
|
assemblies_setting:
|
|
6
6
|
enable_organization_chart: Ενεργοποίηση οργανογράμματος
|
|
7
|
+
assemblies_type:
|
|
8
|
+
title: Τίτλος
|
|
7
9
|
assembly:
|
|
10
|
+
announcement: Ανακοίνωση
|
|
8
11
|
area_id: Τομέας
|
|
9
12
|
assembly_type: Τύπος συνέλευσης
|
|
10
13
|
assembly_type_other: Άλλος τύπος συνέλευσης
|
|
11
|
-
banner_image: Εικόνα
|
|
14
|
+
banner_image: Εικόνα banner
|
|
12
15
|
closing_date: Ημερομηνία κλεισίματος
|
|
13
16
|
closing_date_reason: Αιτία ημερομηνίας κλεισίματος
|
|
14
17
|
composition: Σύνθεση
|
|
@@ -18,17 +21,21 @@ el:
|
|
|
18
21
|
created_by: Δημιουργήθηκε από
|
|
19
22
|
created_by_other: Δημιουργήθηκε από άλλο
|
|
20
23
|
creation_date: Ημερομηνία δημιουργίας
|
|
21
|
-
decidim_area_id:
|
|
24
|
+
decidim_area_id: Περιοχή
|
|
22
25
|
decidim_assemblies_type_id: Τύπος συνέλευσης
|
|
23
26
|
decidim_scope_id: Πεδίο εφαρμογής
|
|
24
27
|
description: Περιγραφή
|
|
25
28
|
developer_group: Ομάδα προώθησης
|
|
29
|
+
document: Έγγραφο
|
|
26
30
|
domain: Τομέας
|
|
27
31
|
duration: Διάρκεια
|
|
28
32
|
facebook: Facebook
|
|
29
33
|
github: GitHub
|
|
30
34
|
hashtag: Hashtag
|
|
31
35
|
hero_image: Εικόνα αρχικής σελίδας
|
|
36
|
+
import_attachments: Εισαγωγή συνημμένων
|
|
37
|
+
import_categories: Εισαγωγή κατηγοριών
|
|
38
|
+
import_components: Εισαγωγή Στοιχείων
|
|
32
39
|
included_at: Συμπεριλήφθηκε στις
|
|
33
40
|
instagram: Instagram
|
|
34
41
|
internal_organisation: Εσωτερικός οργανισμός
|
|
@@ -52,7 +59,6 @@ el:
|
|
|
52
59
|
subtitle: Υπότιτλος
|
|
53
60
|
target: Ποιος συμμετέχει
|
|
54
61
|
title: Τίτλος
|
|
55
|
-
twitter: Twitter
|
|
56
62
|
weight: Θέση κατάταξης
|
|
57
63
|
youtube: YouTube
|
|
58
64
|
assembly_member:
|
|
@@ -62,8 +68,10 @@ el:
|
|
|
62
68
|
designation_date: Ημερομηνία διορισμού
|
|
63
69
|
full_name: Ονοματεπώνυμο
|
|
64
70
|
gender: Φύλο
|
|
71
|
+
non_user_avatar: Άβαταρ
|
|
65
72
|
position: Θέση
|
|
66
73
|
user_id: Χρήστης ή ομάδα
|
|
74
|
+
weight: Θέση κατάταξης
|
|
67
75
|
assembly_user_role:
|
|
68
76
|
email: Email
|
|
69
77
|
name: Όνομα
|
|
@@ -176,6 +184,9 @@ el:
|
|
|
176
184
|
update:
|
|
177
185
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση ενός διαχειριστή για αυτήν τη συνέλευση.
|
|
178
186
|
success: Ο διαχειριστής ενημερώθηκε με επιτυχία για αυτήν τη συνέλευση.
|
|
187
|
+
filters:
|
|
188
|
+
decidim_assemblies_type_id_eq:
|
|
189
|
+
label: Τύπος συνέλευσης
|
|
179
190
|
menu:
|
|
180
191
|
assemblies: Συνελεύσεις
|
|
181
192
|
assemblies_settings: Ρυθμίσεις
|
|
@@ -233,6 +244,9 @@ el:
|
|
|
233
244
|
admin_log:
|
|
234
245
|
assembly:
|
|
235
246
|
create: "Ο χρήστης %{user_name} δημιούργησε τη συνέλευση %{resource_name}"
|
|
247
|
+
duplicate: "Ο χρήστης %{user_name} αντέγραψε τη συνέλευση %{resource_name}"
|
|
248
|
+
export: "Ο χρήστης %{user_name} εξήγαγε τη συνέλευση %{resource_name}"
|
|
249
|
+
import: "Ο χρήστης %{user_name} εισήγαγε τη συνέλευση %{resource_name}"
|
|
236
250
|
publish: "Ο χρήστης %{user_name} δημοσίευσε τη συνέλευση %{resource_name}"
|
|
237
251
|
unpublish: "Ο χρήστης %{user_name} κατάργησε τη δημοσίευση της συνέλευσης %{resource_name}"
|
|
238
252
|
update: "Ο χρήστης %{user_name} ενημέρωσε τη συνέλευση %{resource_name}"
|
|
@@ -261,13 +275,13 @@ el:
|
|
|
261
275
|
duration_help: Εάν η διάρκεια αυτής της συνέλευσης είναι περιορισμένη, επιλέξτε την ημερομηνία λήξης. Διαφορετικά, θα εμφανίζεται ως απεριόριστη.
|
|
262
276
|
filters: Φίλτρα
|
|
263
277
|
images: Εικόνες
|
|
278
|
+
included_at_help: Επιλέξτε την ημερομηνία προσθήκης αυτής της συνέλευσης στην πλατφόρμα. Δεν χρειάζεται απαραίτητα να είναι ίδια με την ημερομηνία δημιουργίας.
|
|
264
279
|
metadata: Μεταδεδομένα
|
|
265
280
|
other: Άλλο
|
|
266
281
|
select_a_created_by: Επιλέξτε «Δημιουργήθηκε από»
|
|
267
282
|
select_an_area: Επιλέξτε «Τομέα»
|
|
268
283
|
select_an_assembly_type: Επιλέξτε «Τύπο συνέλευσης»
|
|
269
284
|
select_parent_assembly: Επιλέξτε «Γονική συνέλευση»
|
|
270
|
-
slug_help: 'Τα slug διεύθυνσης URL χρησιμοποιούνται για τη δημιουργία διευθύνσεων URL που οδηγούν σε αυτήν τη συνέλευση. Δέχεται μόνο γράμματα, αριθμούς και παύλες, και πρέπει να ξεκινά με γράμμα. Παράδειγμα: διεύθυνση %{url}'
|
|
271
285
|
social_handlers: Μέσα κοινωνικής δικτύωσης
|
|
272
286
|
title: Γενικές πληροφορίες
|
|
273
287
|
visbility: Ορατότητα
|
|
@@ -279,30 +293,33 @@ el:
|
|
|
279
293
|
assemblies_types:
|
|
280
294
|
form:
|
|
281
295
|
title: Τίτλος
|
|
282
|
-
assembly_copies:
|
|
283
|
-
form:
|
|
284
|
-
slug_help: 'Τα slug διεύθυνσης URL χρησιμοποιούνται για τη δημιουργία διευθύνσεων URL που οδηγούν σε αυτήν τη συνέλευση. Δέχεται μόνο γράμματα, αριθμούς και παύλες, και πρέπει να ξεκινά με γράμμα. Παράδειγμα: διεύθυνση %{url}'
|
|
285
296
|
assembly_imports:
|
|
286
297
|
form:
|
|
287
298
|
document_legend: Προσθήκη εγγράφου
|
|
288
|
-
slug_help: 'Τα επιθέματα URL χρησιμοποιούνται για να δημιουργήσουν τα URL που δρομολογούν προς αυτή την συνέλευση. Εϊναι αποδεκτά μόνο γράμματα, αριθμοί και παύλες και πρέπει να ξεκινούν με γράμμα. Παράδειγμα: %{url}'
|
|
289
299
|
assembly_members:
|
|
290
300
|
form:
|
|
291
301
|
existing_user: Υπάρχων συμμετέχων
|
|
302
|
+
explanation: 'Οδηγίες για την εικόνα:'
|
|
303
|
+
image_guide: Κατά προτίμηση μια εικόνα με οριζόντιο προσανατολισμό που δεν περιέχει κείμενο.
|
|
292
304
|
non_user: Μη συμμετέχων
|
|
305
|
+
non_user_avatar_help: Θα πρέπει να λάβετε τη συγκατάθεση των προσώπων πριν τα δημοσιεύσετε ως μέλος.
|
|
293
306
|
select_a_position: Επιλέξτε θέση
|
|
294
307
|
select_user: Επιλέξτε συμμετέχοντα
|
|
295
308
|
user_type: Τύπος συμμετέχοντα
|
|
296
309
|
index:
|
|
297
310
|
filter:
|
|
298
311
|
all: Όλα
|
|
299
|
-
ceased: Τέθηκε σε παύση
|
|
300
|
-
not_ceased: Δεν τέθηκε σε παύση
|
|
301
312
|
filter_by: Φιλτράρισμα κατά
|
|
302
313
|
search: Αναζήτηση
|
|
303
314
|
content_blocks:
|
|
304
315
|
highlighted_assemblies:
|
|
305
316
|
max_results: Μέγιστη ποσότητα στοιχείων προς εμφάνιση
|
|
317
|
+
new_import:
|
|
318
|
+
accepted_types:
|
|
319
|
+
json: JSON
|
|
320
|
+
assemblies:
|
|
321
|
+
show:
|
|
322
|
+
title: Σχετικά με τη συνέλευση
|
|
306
323
|
assembly_members:
|
|
307
324
|
index:
|
|
308
325
|
members: Μέλη
|
|
@@ -338,9 +355,7 @@ el:
|
|
|
338
355
|
pages:
|
|
339
356
|
home:
|
|
340
357
|
highlighted_assemblies:
|
|
341
|
-
active_assemblies: Ενεργές συνελεύσεις
|
|
342
358
|
assemblies_button_title: Σύνδεσμος προς τη σελίδα «Συνελεύσεις» που εμφανίζει όλες τις συνελεύσεις
|
|
343
|
-
see_all_assemblies: Δείτε όλες τις συνελεύσεις
|
|
344
359
|
user_profile:
|
|
345
360
|
member_of:
|
|
346
361
|
member_of: Μέλος
|
|
@@ -355,7 +370,6 @@ el:
|
|
|
355
370
|
developer_group: Ομάδα προώθησης
|
|
356
371
|
duration: Διάρκεια
|
|
357
372
|
included_at: Συμπεριλήφθηκε στις
|
|
358
|
-
indefinite_duration: Αόριστη
|
|
359
373
|
internal_organisation: Εσωτερικός οργανισμός
|
|
360
374
|
is_transparent:
|
|
361
375
|
'false': αδιαφανής
|
|
@@ -370,6 +384,7 @@ el:
|
|
|
370
384
|
related_participatory_processes: Σχετικές διαδικασίες συμμετοχής
|
|
371
385
|
scope: Πεδίο εφαρμογής
|
|
372
386
|
social_networks: Κοινωνικά δίκτυα
|
|
387
|
+
social_networks_title: Επίσκεψη στη συνέλευση στις
|
|
373
388
|
target: Ποιος συμμετέχει
|
|
374
389
|
assembly_members:
|
|
375
390
|
assembly_member:
|
|
@@ -380,6 +395,7 @@ el:
|
|
|
380
395
|
assemblies:
|
|
381
396
|
create_assembly_member:
|
|
382
397
|
email_intro: Ένας διαχειριστής της συνέλευσης <a href="%{resource_url}">%{resource_name}</a> σας πρόσθεσε ως ένα από τα μέλη της.
|
|
398
|
+
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή έχετε προσκληθεί σε συνέλευση. Ελέγξτε τη <a href="%{resource_url}">σελίδα της συνέλευσης</a> για να συνεισφέρετε!
|
|
383
399
|
email_subject: Έχετε προσκληθεί να γίνετε μέλος της συνέλευσης %{resource_name}!
|
|
384
400
|
notification_title: Έχετε εγγραφεί ως μέλος της Συνέλευσης <a href="%{resource_path}">%{resource_name}</a>. Ελέγξτε τη <a href="%{resource_path}">σελίδα συνέλευσης</a> για να συνεισφέρετε!
|
|
385
401
|
assembly:
|