decidim-assemblies 0.27.3 → 0.27.4
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/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 +0 -0
- data/config/locales/ar.yml +3 -6
- data/config/locales/bg.yml +4 -0
- data/config/locales/ca.yml +2 -2
- data/config/locales/cs.yml +6 -6
- data/config/locales/de.yml +9 -2
- data/config/locales/el.yml +29 -5
- data/config/locales/en.yml +1 -1
- data/config/locales/es-MX.yml +2 -2
- data/config/locales/es-PY.yml +2 -2
- data/config/locales/es.yml +4 -4
- data/config/locales/eu.yml +6 -7
- data/config/locales/fi-plain.yml +3 -3
- data/config/locales/fi.yml +4 -4
- data/config/locales/fr-CA.yml +3 -3
- data/config/locales/fr.yml +3 -3
- data/config/locales/gl.yml +1 -4
- data/config/locales/hu.yml +13 -5
- data/config/locales/id-ID.yml +0 -5
- data/config/locales/is-IS.yml +3 -7
- data/config/locales/it.yml +4 -7
- data/config/locales/kaa.yml +60 -0
- data/config/locales/lb.yml +2 -5
- data/config/locales/lt.yml +1 -4
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +4 -7
- data/config/locales/no.yml +2 -5
- data/config/locales/pl.yml +1 -4
- data/config/locales/pt-BR.yml +21 -5
- data/config/locales/pt.yml +0 -3
- data/config/locales/ro-RO.yml +1 -3
- data/config/locales/ru.yml +0 -6
- data/config/locales/sk.yml +15 -0
- data/config/locales/sl.yml +7 -4
- data/config/locales/sv.yml +6 -9
- data/config/locales/tr-TR.yml +4 -7
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +3 -6
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48024e946f3a50f03b3bdfe807ee019839db8146490ddd7a7b2c387e760ac1af
|
|
4
|
+
data.tar.gz: 4e0a804d38d8bd7b60a08989b01db9483aff245aae974dbc4d01a2734a9f9893
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b1f34ce1d5a53e59e8f2d4684e1fa306088c781c9bdb5bc192bcbe4ec153533bc6d8a809a2a8da27b05ad8bfef0cf637f19b9311930233a0217891549960db6
|
|
7
|
+
data.tar.gz: b87c8df57fd5e2f00666278dfde2dde7a0102e3a7049d4f635beabf287877277f6e4a7cd053a616aeb3a14cd5eebcccec41cd39b4f7404b25f37ed2d6bb9d66a
|
|
@@ -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: {
|
|
@@ -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
|
|
|
File without changes
|
data/config/locales/ar.yml
CHANGED
|
@@ -381,9 +381,7 @@ ar:
|
|
|
381
381
|
pages:
|
|
382
382
|
home:
|
|
383
383
|
highlighted_assemblies:
|
|
384
|
-
active_assemblies: الجمعيات النشطة
|
|
385
384
|
assemblies_button_title: رابط إلى صفحة الجمعيات لاستعراض جميع الجمعيات
|
|
386
|
-
see_all_assemblies: عرض كافة الجمعيات
|
|
387
385
|
user_profile:
|
|
388
386
|
member_of:
|
|
389
387
|
member_of: عضو في
|
|
@@ -398,7 +396,6 @@ ar:
|
|
|
398
396
|
developer_group: مجموعة المروجين
|
|
399
397
|
duration: المدة الزمنية
|
|
400
398
|
included_at: المدرجة في
|
|
401
|
-
indefinite_duration: غير محدد
|
|
402
399
|
internal_organisation: التنظيم الداخلي
|
|
403
400
|
is_transparent:
|
|
404
401
|
'false': مبهمة
|
|
@@ -407,11 +404,11 @@ ar:
|
|
|
407
404
|
participatory_scope: ما الذي تقرر
|
|
408
405
|
participatory_structure: كيف تقرر ذلك
|
|
409
406
|
private_space: هذه جمعية خاصة
|
|
410
|
-
purpose_of_action: الغرض من
|
|
407
|
+
purpose_of_action: الغرض من العمل
|
|
411
408
|
read_less: أقرأ أقل
|
|
412
409
|
read_more: اقرأ المزيد
|
|
413
410
|
related_participatory_processes: العمليات التشاركية ذات الصلة
|
|
414
|
-
scope:
|
|
411
|
+
scope: النطاق
|
|
415
412
|
social_networks: شبكات التواصل الاجتماعي
|
|
416
413
|
social_networks_title: زيارة التجمع على
|
|
417
414
|
target: من يشارك
|
|
@@ -487,4 +484,4 @@ ar:
|
|
|
487
484
|
assembly_menu_item: الجمعية
|
|
488
485
|
assembly_widgets:
|
|
489
486
|
show:
|
|
490
|
-
take_part:
|
|
487
|
+
take_part: خذ جزء
|
data/config/locales/bg.yml
CHANGED
data/config/locales/ca.yml
CHANGED
|
@@ -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
|
@@ -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
|
|
@@ -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: Εσωτερικός οργανισμός
|
|
@@ -62,8 +69,10 @@ el:
|
|
|
62
69
|
designation_date: Ημερομηνία διορισμού
|
|
63
70
|
full_name: Ονοματεπώνυμο
|
|
64
71
|
gender: Φύλο
|
|
72
|
+
non_user_avatar: Άβαταρ
|
|
65
73
|
position: Θέση
|
|
66
74
|
user_id: Χρήστης ή ομάδα
|
|
75
|
+
weight: Θέση κατάταξης
|
|
67
76
|
assembly_user_role:
|
|
68
77
|
email: Email
|
|
69
78
|
name: Όνομα
|
|
@@ -176,6 +185,9 @@ el:
|
|
|
176
185
|
update:
|
|
177
186
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση ενός διαχειριστή για αυτήν τη συνέλευση.
|
|
178
187
|
success: Ο διαχειριστής ενημερώθηκε με επιτυχία για αυτήν τη συνέλευση.
|
|
188
|
+
filters:
|
|
189
|
+
decidim_assemblies_type_id_eq:
|
|
190
|
+
label: Τύπος συνέλευσης
|
|
179
191
|
menu:
|
|
180
192
|
assemblies: Συνελεύσεις
|
|
181
193
|
assemblies_settings: Ρυθμίσεις
|
|
@@ -233,6 +245,9 @@ el:
|
|
|
233
245
|
admin_log:
|
|
234
246
|
assembly:
|
|
235
247
|
create: "Ο χρήστης %{user_name} δημιούργησε τη συνέλευση %{resource_name}"
|
|
248
|
+
duplicate: "Ο χρήστης %{user_name} αντέγραψε τη συνέλευση %{resource_name}"
|
|
249
|
+
export: "Ο χρήστης %{user_name} εξήγαγε τη συνέλευση %{resource_name}"
|
|
250
|
+
import: "Ο χρήστης %{user_name} εισήγαγε τη συνέλευση %{resource_name}"
|
|
236
251
|
publish: "Ο χρήστης %{user_name} δημοσίευσε τη συνέλευση %{resource_name}"
|
|
237
252
|
unpublish: "Ο χρήστης %{user_name} κατάργησε τη δημοσίευση της συνέλευσης %{resource_name}"
|
|
238
253
|
update: "Ο χρήστης %{user_name} ενημέρωσε τη συνέλευση %{resource_name}"
|
|
@@ -261,6 +276,7 @@ el:
|
|
|
261
276
|
duration_help: Εάν η διάρκεια αυτής της συνέλευσης είναι περιορισμένη, επιλέξτε την ημερομηνία λήξης. Διαφορετικά, θα εμφανίζεται ως απεριόριστη.
|
|
262
277
|
filters: Φίλτρα
|
|
263
278
|
images: Εικόνες
|
|
279
|
+
included_at_help: Επιλέξτε την ημερομηνία προσθήκης αυτής της συνέλευσης στην πλατφόρμα. Δεν χρειάζεται απαραίτητα να είναι ίδια με την ημερομηνία δημιουργίας.
|
|
264
280
|
metadata: Μεταδεδομένα
|
|
265
281
|
other: Άλλο
|
|
266
282
|
select_a_created_by: Επιλέξτε «Δημιουργήθηκε από»
|
|
@@ -289,7 +305,10 @@ el:
|
|
|
289
305
|
assembly_members:
|
|
290
306
|
form:
|
|
291
307
|
existing_user: Υπάρχων συμμετέχων
|
|
308
|
+
explanation: 'Οδηγίες για την εικόνα:'
|
|
309
|
+
image_guide: Κατά προτίμηση μια εικόνα με οριζόντιο προσανατολισμό που δεν περιέχει κείμενο.
|
|
292
310
|
non_user: Μη συμμετέχων
|
|
311
|
+
non_user_avatar_help: Θα πρέπει να λάβετε τη συγκατάθεση των προσώπων πριν τα δημοσιεύσετε ως μέλος.
|
|
293
312
|
select_a_position: Επιλέξτε θέση
|
|
294
313
|
select_user: Επιλέξτε συμμετέχοντα
|
|
295
314
|
user_type: Τύπος συμμετέχοντα
|
|
@@ -303,6 +322,12 @@ el:
|
|
|
303
322
|
content_blocks:
|
|
304
323
|
highlighted_assemblies:
|
|
305
324
|
max_results: Μέγιστη ποσότητα στοιχείων προς εμφάνιση
|
|
325
|
+
new_import:
|
|
326
|
+
accepted_types:
|
|
327
|
+
json: JSON
|
|
328
|
+
assemblies:
|
|
329
|
+
show:
|
|
330
|
+
title: Σχετικά με τη συνέλευση
|
|
306
331
|
assembly_members:
|
|
307
332
|
index:
|
|
308
333
|
members: Μέλη
|
|
@@ -338,9 +363,7 @@ el:
|
|
|
338
363
|
pages:
|
|
339
364
|
home:
|
|
340
365
|
highlighted_assemblies:
|
|
341
|
-
active_assemblies: Ενεργές συνελεύσεις
|
|
342
366
|
assemblies_button_title: Σύνδεσμος προς τη σελίδα «Συνελεύσεις» που εμφανίζει όλες τις συνελεύσεις
|
|
343
|
-
see_all_assemblies: Δείτε όλες τις συνελεύσεις
|
|
344
367
|
user_profile:
|
|
345
368
|
member_of:
|
|
346
369
|
member_of: Μέλος
|
|
@@ -355,7 +378,6 @@ el:
|
|
|
355
378
|
developer_group: Ομάδα προώθησης
|
|
356
379
|
duration: Διάρκεια
|
|
357
380
|
included_at: Συμπεριλήφθηκε στις
|
|
358
|
-
indefinite_duration: Αόριστη
|
|
359
381
|
internal_organisation: Εσωτερικός οργανισμός
|
|
360
382
|
is_transparent:
|
|
361
383
|
'false': αδιαφανής
|
|
@@ -370,6 +392,7 @@ el:
|
|
|
370
392
|
related_participatory_processes: Σχετικές διαδικασίες συμμετοχής
|
|
371
393
|
scope: Πεδίο εφαρμογής
|
|
372
394
|
social_networks: Κοινωνικά δίκτυα
|
|
395
|
+
social_networks_title: Επίσκεψη στη συνέλευση στις
|
|
373
396
|
target: Ποιος συμμετέχει
|
|
374
397
|
assembly_members:
|
|
375
398
|
assembly_member:
|
|
@@ -380,6 +403,7 @@ el:
|
|
|
380
403
|
assemblies:
|
|
381
404
|
create_assembly_member:
|
|
382
405
|
email_intro: Ένας διαχειριστής της συνέλευσης <a href="%{resource_url}">%{resource_name}</a> σας πρόσθεσε ως ένα από τα μέλη της.
|
|
406
|
+
email_outro: Λάβατε αυτήν την ειδοποίηση επειδή έχετε προσκληθεί σε συνέλευση. Ελέγξτε τη <a href="%{resource_url}">σελίδα της συνέλευσης</a> για να συνεισφέρετε!
|
|
383
407
|
email_subject: Έχετε προσκληθεί να γίνετε μέλος της συνέλευσης %{resource_name}!
|
|
384
408
|
notification_title: Έχετε εγγραφεί ως μέλος της Συνέλευσης <a href="%{resource_path}">%{resource_name}</a>. Ελέγξτε τη <a href="%{resource_path}">σελίδα συνέλευσης</a> για να συνεισφέρετε!
|
|
385
409
|
assembly:
|
data/config/locales/en.yml
CHANGED
|
@@ -300,7 +300,7 @@ en:
|
|
|
300
300
|
title: Settings for assemblies
|
|
301
301
|
assemblies_types:
|
|
302
302
|
form:
|
|
303
|
-
title:
|
|
303
|
+
title: Edit assembly type
|
|
304
304
|
assembly_copies:
|
|
305
305
|
form:
|
|
306
306
|
slug_help: 'URL slugs are used to generate the URLs that point to this assembly. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -382,11 +382,11 @@ es-MX:
|
|
|
382
382
|
closing_date: Fecha de cierre
|
|
383
383
|
composition: Composición
|
|
384
384
|
created_by: Creado por
|
|
385
|
-
creation_date: Fecha de
|
|
385
|
+
creation_date: Fecha de creacion
|
|
386
386
|
developer_group: Grupo promotor
|
|
387
387
|
duration: Duración
|
|
388
388
|
included_at: Incluido en
|
|
389
|
-
indefinite_duration:
|
|
389
|
+
indefinite_duration: Indefinida
|
|
390
390
|
internal_organisation: Organización interna
|
|
391
391
|
is_transparent:
|
|
392
392
|
'false': opaco
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -382,11 +382,11 @@ es-PY:
|
|
|
382
382
|
closing_date: Fecha de cierre
|
|
383
383
|
composition: Composición
|
|
384
384
|
created_by: Creado por
|
|
385
|
-
creation_date: Fecha de
|
|
385
|
+
creation_date: Fecha de creacion
|
|
386
386
|
developer_group: Grupo promotor
|
|
387
387
|
duration: Duración
|
|
388
388
|
included_at: Incluido en
|
|
389
|
-
indefinite_duration:
|
|
389
|
+
indefinite_duration: Indefinida
|
|
390
390
|
internal_organisation: Organización interna
|
|
391
391
|
is_transparent:
|
|
392
392
|
'false': opaco
|
data/config/locales/es.yml
CHANGED
|
@@ -286,7 +286,7 @@ es:
|
|
|
286
286
|
metadata: Metadatos
|
|
287
287
|
other: Otro
|
|
288
288
|
select_a_created_by: Selecciona una creadora
|
|
289
|
-
select_an_area:
|
|
289
|
+
select_an_area: Selecciona un área
|
|
290
290
|
select_an_assembly_type: Selecciona un tipo de asamblea
|
|
291
291
|
select_parent_assembly: Selecciona una asamblea principal
|
|
292
292
|
slug_help: 'Los textos cortos de URL se utilizan para generar las URL que apuntan a esta asamblea. Sólo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
|
@@ -379,10 +379,10 @@ es:
|
|
|
379
379
|
area: Área
|
|
380
380
|
assembly_type: Tipo de asambleas
|
|
381
381
|
children: Asambleas
|
|
382
|
-
closing_date: Fecha de
|
|
382
|
+
closing_date: Fecha de cierre
|
|
383
383
|
composition: Composición
|
|
384
384
|
created_by: Creado por
|
|
385
|
-
creation_date: Fecha de
|
|
385
|
+
creation_date: Fecha de creacion
|
|
386
386
|
developer_group: Grupo promotor
|
|
387
387
|
duration: Duración
|
|
388
388
|
included_at: Incluido en
|
|
@@ -405,7 +405,7 @@ es:
|
|
|
405
405
|
target: Quién participa
|
|
406
406
|
assembly_members:
|
|
407
407
|
assembly_member:
|
|
408
|
-
designated_on:
|
|
408
|
+
designated_on: 'Fecha de designación:'
|
|
409
409
|
index:
|
|
410
410
|
title: Miembros
|
|
411
411
|
events:
|
data/config/locales/eu.yml
CHANGED
|
@@ -4,6 +4,8 @@ eu:
|
|
|
4
4
|
attributes:
|
|
5
5
|
assemblies_setting:
|
|
6
6
|
enable_organization_chart: Gaitu organigrama
|
|
7
|
+
assemblies_type:
|
|
8
|
+
title: Izenburua
|
|
7
9
|
assembly:
|
|
8
10
|
area_id: Arloa
|
|
9
11
|
assembly_type: Batzar mota
|
|
@@ -289,7 +291,7 @@ eu:
|
|
|
289
291
|
title: Batzarren konfigurazioa
|
|
290
292
|
assemblies_types:
|
|
291
293
|
form:
|
|
292
|
-
title:
|
|
294
|
+
title: Batzar mota berria
|
|
293
295
|
assembly_copies:
|
|
294
296
|
form:
|
|
295
297
|
slug_help: 'URL slugs erabiltzen dira muntatze hau adierazten duten URLak sortzeko. Letrak, zenbakiak eta marratxoak soilik onartzen ditu eta letra batekin hasi behar duzu. Adibidea: %{url}'
|
|
@@ -355,16 +357,14 @@ eu:
|
|
|
355
357
|
pages:
|
|
356
358
|
home:
|
|
357
359
|
highlighted_assemblies:
|
|
358
|
-
active_assemblies: Batzar aktiboak
|
|
359
360
|
assemblies_button_title: Lotura batzar guztiak erakusten dituen Batzarren orrialdera
|
|
360
|
-
see_all_assemblies: Ikusi biltzar guztiak
|
|
361
361
|
user_profile:
|
|
362
362
|
member_of:
|
|
363
363
|
member_of: Kidea
|
|
364
364
|
show:
|
|
365
|
-
area:
|
|
365
|
+
area: Arloa
|
|
366
366
|
assembly_type: Muntatze-mota
|
|
367
|
-
children:
|
|
367
|
+
children: Biltzarrak
|
|
368
368
|
closing_date: Amaiera data
|
|
369
369
|
composition: Konposizio
|
|
370
370
|
created_by: Sortuta
|
|
@@ -372,7 +372,6 @@ eu:
|
|
|
372
372
|
developer_group: Sustatzailearen taldea
|
|
373
373
|
duration: Iraupena
|
|
374
374
|
included_at: Barruan sartzen da
|
|
375
|
-
indefinite_duration: mugagabeak
|
|
376
375
|
internal_organisation: Barneko antolaketa
|
|
377
376
|
is_transparent:
|
|
378
377
|
'false': opakua
|
|
@@ -385,7 +384,7 @@ eu:
|
|
|
385
384
|
read_less: Irakurri gutxiago
|
|
386
385
|
read_more: Irakurri gehiago
|
|
387
386
|
related_participatory_processes: Partaidetza prozesu erlazionatuak
|
|
388
|
-
scope:
|
|
387
|
+
scope: esparrua
|
|
389
388
|
social_networks: Sare sozialak
|
|
390
389
|
target: Nor parte hartzen du
|
|
391
390
|
assembly_members:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -376,10 +376,10 @@ fi-pl:
|
|
|
376
376
|
member_of:
|
|
377
377
|
member_of: Jäsen ryhmässä
|
|
378
378
|
show:
|
|
379
|
-
area:
|
|
379
|
+
area: Alue
|
|
380
380
|
assembly_type: Ryhmän tyyppi
|
|
381
381
|
children: Ryhmät
|
|
382
|
-
closing_date:
|
|
382
|
+
closing_date: Sulkeutumispäivä
|
|
383
383
|
composition: Kokoonpano
|
|
384
384
|
created_by: Luonut
|
|
385
385
|
creation_date: Luontipäivämäärä
|
|
@@ -464,7 +464,7 @@ fi-pl:
|
|
|
464
464
|
one: "%{count} ryhmä"
|
|
465
465
|
other: "%{count} ryhmää"
|
|
466
466
|
promoted_assembly:
|
|
467
|
-
more_info:
|
|
467
|
+
more_info: Lisätietoja
|
|
468
468
|
take_part: Osallistu
|
|
469
469
|
assembly_navigation:
|
|
470
470
|
assembly_member_menu_item: Jäsenet
|
data/config/locales/fi.yml
CHANGED
|
@@ -300,7 +300,7 @@ fi:
|
|
|
300
300
|
title: Ryhmien asetukset
|
|
301
301
|
assemblies_types:
|
|
302
302
|
form:
|
|
303
|
-
title:
|
|
303
|
+
title: Muokkaa ryhmätyyppiä
|
|
304
304
|
assembly_copies:
|
|
305
305
|
form:
|
|
306
306
|
slug_help: 'URL-tunnisteita käytetään tähän ryhmään osoittavien URL-osoitteiden luonnissa. Hyväksyy kirjaimet, numerot ja viivat. Ensimmäinen merkki on oltava kirjain. Esimerkiksi: %{url}'
|
|
@@ -376,10 +376,10 @@ fi:
|
|
|
376
376
|
member_of:
|
|
377
377
|
member_of: Jäsen ryhmässä
|
|
378
378
|
show:
|
|
379
|
-
area:
|
|
379
|
+
area: Alue
|
|
380
380
|
assembly_type: Ryhmän tyyppi
|
|
381
381
|
children: Ryhmät
|
|
382
|
-
closing_date:
|
|
382
|
+
closing_date: Sulkeutumispäivä
|
|
383
383
|
composition: Kokoonpano
|
|
384
384
|
created_by: Luonut
|
|
385
385
|
creation_date: Luontipäivämäärä
|
|
@@ -464,7 +464,7 @@ fi:
|
|
|
464
464
|
one: "%{count} ryhmä"
|
|
465
465
|
other: "%{count} ryhmää"
|
|
466
466
|
promoted_assembly:
|
|
467
|
-
more_info:
|
|
467
|
+
more_info: Lisätietoja
|
|
468
468
|
take_part: Osallistu
|
|
469
469
|
assembly_navigation:
|
|
470
470
|
assembly_member_menu_item: Jäsenet
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -378,20 +378,20 @@ fr-CA:
|
|
|
378
378
|
show:
|
|
379
379
|
area: Zone d'application
|
|
380
380
|
assembly_type: Type d'assemblée
|
|
381
|
-
children:
|
|
381
|
+
children: Assemblées
|
|
382
382
|
closing_date: Date de clôture
|
|
383
383
|
composition: Composition
|
|
384
384
|
created_by: Créé par
|
|
385
385
|
creation_date: Date de création
|
|
386
386
|
developer_group: Organisateur
|
|
387
387
|
duration: Durée
|
|
388
|
-
included_at:
|
|
388
|
+
included_at: Intégrée à cette plateforme le
|
|
389
389
|
indefinite_duration: Indéfinie
|
|
390
390
|
internal_organisation: Organisation interne
|
|
391
391
|
is_transparent:
|
|
392
392
|
'false': non-visible par les non-membres
|
|
393
393
|
'true': visible par les non-membres
|
|
394
|
-
local_area:
|
|
394
|
+
local_area: Espace d'organisation
|
|
395
395
|
participatory_scope: Objectifs
|
|
396
396
|
participatory_structure: Modalités de décision
|
|
397
397
|
private_space: Ceci est une assemblée privée
|
data/config/locales/fr.yml
CHANGED
|
@@ -378,20 +378,20 @@ fr:
|
|
|
378
378
|
show:
|
|
379
379
|
area: Périmètre d'assemblée
|
|
380
380
|
assembly_type: Type d'assemblée
|
|
381
|
-
children:
|
|
381
|
+
children: Assemblées
|
|
382
382
|
closing_date: Date de clôture
|
|
383
383
|
composition: Composition
|
|
384
384
|
created_by: Créé par
|
|
385
385
|
creation_date: Date de création
|
|
386
386
|
developer_group: Organisateur
|
|
387
387
|
duration: Durée
|
|
388
|
-
included_at:
|
|
388
|
+
included_at: Intégrée à cette plateforme le
|
|
389
389
|
indefinite_duration: Indéfinie
|
|
390
390
|
internal_organisation: Organisation interne
|
|
391
391
|
is_transparent:
|
|
392
392
|
'false': non-visible par les non-membres
|
|
393
393
|
'true': visible par les non-membres
|
|
394
|
-
local_area:
|
|
394
|
+
local_area: Espace d'organisation
|
|
395
395
|
participatory_scope: Objectifs
|
|
396
396
|
participatory_structure: Modalités de décision
|
|
397
397
|
private_space: Ceci est une assemblée privée
|
data/config/locales/gl.yml
CHANGED
|
@@ -351,9 +351,7 @@ gl:
|
|
|
351
351
|
pages:
|
|
352
352
|
home:
|
|
353
353
|
highlighted_assemblies:
|
|
354
|
-
active_assemblies: Asembleas activas
|
|
355
354
|
assemblies_button_title: Ligazón á páxina de Xuntanzas que amosa todas as xuntanzas
|
|
356
|
-
see_all_assemblies: Ver todos os conxuntos
|
|
357
355
|
user_profile:
|
|
358
356
|
member_of:
|
|
359
357
|
member_of: Membro de
|
|
@@ -364,11 +362,10 @@ gl:
|
|
|
364
362
|
closing_date: Data de peche
|
|
365
363
|
composition: Composición
|
|
366
364
|
created_by: Creado por
|
|
367
|
-
creation_date: Data
|
|
365
|
+
creation_date: Data de creación
|
|
368
366
|
developer_group: Grupo promotor
|
|
369
367
|
duration: Duración
|
|
370
368
|
included_at: Incluído en
|
|
371
|
-
indefinite_duration: Indefinido
|
|
372
369
|
internal_organisation: Organización interna
|
|
373
370
|
is_transparent:
|
|
374
371
|
'false': opaco
|