decidim-assemblies 0.28.5 → 0.29.0.rc1
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/cells/decidim/assemblies/assembly_g_cell.rb +2 -2
- data/app/cells/decidim/assemblies/content_blocks/highlighted_assemblies_cell.rb +0 -4
- data/app/cells/decidim/assemblies/content_blocks/stats_cell.rb +1 -1
- data/app/commands/decidim/assemblies/admin/create_assemblies_type.rb +3 -31
- data/app/commands/decidim/assemblies/admin/create_assembly.rb +30 -89
- data/app/commands/decidim/assemblies/admin/create_assembly_member.rb +14 -66
- data/app/commands/decidim/assemblies/admin/destroy_assembly_member.rb +5 -37
- data/app/commands/decidim/assemblies/admin/import_assembly.rb +1 -1
- data/app/commands/decidim/assemblies/admin/update_assemblies_type.rb +2 -35
- data/app/commands/decidim/assemblies/admin/update_assembly.rb +22 -99
- data/app/commands/decidim/assemblies/admin/update_assembly_member.rb +8 -69
- data/app/controllers/decidim/assemblies/admin/assemblies_controller.rb +5 -20
- data/app/controllers/decidim/assemblies/admin/assemblies_types_controller.rb +4 -4
- data/app/controllers/decidim/assemblies/admin/assembly_landing_page_content_blocks_controller.rb +0 -6
- data/app/controllers/decidim/assemblies/admin/assembly_members_controller.rb +1 -1
- data/app/controllers/decidim/assemblies/admin/participatory_space_private_users_controller.rb +1 -1
- data/app/controllers/decidim/assemblies/admin/participatory_space_private_users_csv_imports_controller.rb +1 -1
- data/app/controllers/decidim/assemblies/application_controller.rb +4 -1
- data/app/controllers/decidim/assemblies/assemblies_controller.rb +0 -3
- data/app/controllers/decidim/assemblies/assembly_members_controller.rb +0 -2
- data/app/forms/decidim/assemblies/admin/assembly_form.rb +8 -9
- data/app/helpers/decidim/assemblies/assemblies_helper.rb +0 -26
- data/app/models/decidim/assembly.rb +1 -6
- data/app/permissions/decidim/assemblies/permissions.rb +2 -2
- data/app/presenters/decidim/assemblies/admin_log/assembly_presenter.rb +0 -1
- data/app/presenters/decidim/assemblies/assembly_presenter.rb +2 -2
- data/app/serializers/decidim/assemblies/assembly_importer.rb +0 -1
- data/app/serializers/decidim/assemblies/assembly_serializer.rb +1 -2
- data/app/views/decidim/assemblies/admin/assemblies/_form.html.erb +5 -9
- data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +2 -2
- data/app/views/decidim/assemblies/admin/assembly_members/index.html.erb +1 -1
- data/app/views/decidim/assemblies/admin/assembly_user_roles/index.html.erb +1 -1
- data/app/views/decidim/assemblies/assemblies/show.html.erb +22 -18
- data/app/views/decidim/assemblies/assembly_members/index.html.erb +2 -1
- data/app/views/layouts/decidim/admin/assemblies.html.erb +1 -1
- data/config/locales/ar.yml +7 -14
- data/config/locales/bg.yml +2 -7
- data/config/locales/ca.yml +9 -14
- data/config/locales/cs.yml +3 -8
- data/config/locales/de.yml +20 -25
- data/config/locales/el.yml +0 -6
- data/config/locales/en.yml +2 -7
- data/config/locales/es-MX.yml +6 -11
- data/config/locales/es-PY.yml +5 -10
- data/config/locales/es.yml +8 -13
- data/config/locales/eu.yml +48 -53
- data/config/locales/fi-plain.yml +6 -11
- data/config/locales/fi.yml +10 -15
- data/config/locales/fr-CA.yml +7 -12
- data/config/locales/fr.yml +7 -12
- data/config/locales/ga-IE.yml +0 -5
- data/config/locales/gl.yml +2 -10
- data/config/locales/he-IL.yml +0 -171
- data/config/locales/hu.yml +2 -8
- data/config/locales/id-ID.yml +0 -10
- data/config/locales/is-IS.yml +5 -9
- data/config/locales/it.yml +3 -11
- data/config/locales/ja.yml +3 -8
- data/config/locales/ko.yml +8 -1
- data/config/locales/lb.yml +5 -14
- data/config/locales/lt.yml +2 -8
- data/config/locales/lv.yml +0 -10
- data/config/locales/nl.yml +3 -11
- data/config/locales/no.yml +0 -8
- data/config/locales/pl.yml +3 -14
- data/config/locales/pt-BR.yml +0 -6
- data/config/locales/pt.yml +1 -9
- data/config/locales/ro-RO.yml +2 -12
- data/config/locales/ru.yml +6 -11
- data/config/locales/sk.yml +0 -20
- data/config/locales/sl.yml +0 -17
- data/config/locales/sq-AL.yml +5 -6
- data/config/locales/sv.yml +137 -203
- data/config/locales/tr-TR.yml +4 -9
- data/config/locales/uk.yml +5 -10
- data/config/locales/zh-CN.yml +0 -10
- data/config/locales/zh-TW.yml +1 -7
- data/db/migrate/20240712061153_change_show_statistics_from_decidim_assemblies.rb +11 -0
- data/decidim-assemblies.gemspec +2 -2
- data/lib/decidim/api/assembly_type.rb +5 -6
- data/lib/decidim/assemblies/content_blocks/registry_manager.rb +1 -1
- data/lib/decidim/assemblies/engine.rb +1 -0
- data/lib/decidim/assemblies/menu.rb +11 -0
- data/lib/decidim/assemblies/seeds.rb +1 -11
- data/lib/decidim/assemblies/test/factories.rb +0 -1
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +18 -21
- data/app/commands/decidim/assemblies/admin/destroy_assemblies_type.rb +0 -45
- data/app/views/layouts/decidim/assembly.html.erb +0 -18
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -44
data/config/locales/bg.yml
CHANGED
@@ -51,7 +51,6 @@ bg:
|
|
51
51
|
scope_id: Обхват
|
52
52
|
scopes_enabled: Обхватите са активирани
|
53
53
|
short_description: Кратко описание
|
54
|
-
show_statistics: Покажи статистиката
|
55
54
|
slug: Съкратен URL
|
56
55
|
special_features: Специални функции
|
57
56
|
subtitle: Подзаглавие
|
@@ -296,7 +295,7 @@ bg:
|
|
296
295
|
slug_help_html: 'Използват се променливи полета в URL адреса, за да се генерират URL адреси, които водят към това събрание. Допуска се използването само на букви, цифри и тирета и адресът трябва да започва с буква. Пример: %{url}'
|
297
296
|
social_handlers: Социални мрежи
|
298
297
|
title: Основна информация
|
299
|
-
|
298
|
+
visibility: Видимост
|
300
299
|
assemblies_types:
|
301
300
|
form:
|
302
301
|
title: Редактиране на типа събрание
|
@@ -310,7 +309,7 @@ bg:
|
|
310
309
|
form:
|
311
310
|
existing_user: Съществуващ участник
|
312
311
|
explanation: 'Указания за изображението:'
|
313
|
-
image_guide: За предпочитане
|
312
|
+
image_guide: За предпочитане е портретно (вертикално) изображение без текст.
|
314
313
|
non_user: Не е участник
|
315
314
|
non_user_avatar_help: Трябва да получите съгласието на лицата, преди да ги публикувате като членове.
|
316
315
|
select_a_position: Изберете длъжност
|
@@ -396,11 +395,7 @@ bg:
|
|
396
395
|
show:
|
397
396
|
assembly_type: Тип събрание
|
398
397
|
duration: Продължителност
|
399
|
-
is_transparent:
|
400
|
-
'false': непрозрачно
|
401
|
-
'true': прозрачно
|
402
398
|
private_space: Това е частно събрание
|
403
|
-
related_participatory_processes: Свързани процеси за участие
|
404
399
|
social_networks_title: Посетете събранието на
|
405
400
|
assembly_members:
|
406
401
|
assembly_member:
|
data/config/locales/ca.yml
CHANGED
@@ -40,7 +40,7 @@ ca:
|
|
40
40
|
is_transparent: És transparent
|
41
41
|
local_area: Àrea d'organització
|
42
42
|
meta_scope: Metadades d'àmbit
|
43
|
-
parent_id: Assemblea
|
43
|
+
parent_id: Assemblea principal
|
44
44
|
participatory_processes_ids: Processos participatius relacionats
|
45
45
|
participatory_scope: Què es decideix?
|
46
46
|
participatory_structure: Com es decideix
|
@@ -51,7 +51,6 @@ ca:
|
|
51
51
|
scope_id: Àmbit
|
52
52
|
scopes_enabled: Àmbits habilitats
|
53
53
|
short_description: Descripció breu
|
54
|
-
show_statistics: Mostra estadístiques
|
55
54
|
slug: Nom curt d'URL
|
56
55
|
special_features: Característiques especials
|
57
56
|
subtitle: Subtítol
|
@@ -154,7 +153,7 @@ ca:
|
|
154
153
|
success: El membre per a aquesta assemblea s'ha eliminat correctament.
|
155
154
|
edit:
|
156
155
|
title: Actualitzar membre de l'assemblea
|
157
|
-
update:
|
156
|
+
update: Actualitza
|
158
157
|
index:
|
159
158
|
assembly_members_title: Membres de l'assemblea
|
160
159
|
new:
|
@@ -207,7 +206,7 @@ ca:
|
|
207
206
|
attachments: Adjunts
|
208
207
|
categories: Categories
|
209
208
|
components: Components
|
210
|
-
info:
|
209
|
+
info: Sobre aquesta assemblea
|
211
210
|
landing_page: Pàgina d'inici
|
212
211
|
moderations: Moderacions
|
213
212
|
private_users: Participants privades
|
@@ -293,11 +292,11 @@ ca:
|
|
293
292
|
select_a_created_by: Selecciona una creadora
|
294
293
|
select_an_area: Selecciona una Àrea
|
295
294
|
select_an_assembly_type: Selecciona un tipus d'assemblea
|
296
|
-
select_parent_assembly: Selecciona una assemblea
|
295
|
+
select_parent_assembly: Selecciona una assemblea principal
|
297
296
|
slug_help_html: '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}'
|
298
297
|
social_handlers: Social
|
299
298
|
title: Informació general
|
300
|
-
|
299
|
+
visibility: Visibilitat
|
301
300
|
assemblies_types:
|
302
301
|
form:
|
303
302
|
title: Títol
|
@@ -339,23 +338,23 @@ ca:
|
|
339
338
|
participatory_scope: Què es decideix
|
340
339
|
participatory_structure: Com es decideix
|
341
340
|
target: Qui participa
|
342
|
-
title:
|
341
|
+
title: Sobre aquesta assemblea
|
343
342
|
filters:
|
344
343
|
names:
|
345
344
|
all: Totes
|
346
345
|
type: Tipus
|
347
346
|
show:
|
348
|
-
title:
|
347
|
+
title: Sobre aquesta assemblea
|
349
348
|
assembly_members:
|
350
349
|
index:
|
351
350
|
members: Membres
|
352
351
|
assembly_types:
|
353
352
|
commission: Comissió
|
354
353
|
consultative_advisory: Consultiva / Assessora
|
355
|
-
executive:
|
354
|
+
executive: Executiva
|
356
355
|
government: Govern
|
357
356
|
others: Altres
|
358
|
-
participatory:
|
357
|
+
participatory: Participativa
|
359
358
|
working_group: Grup de treball
|
360
359
|
content_blocks:
|
361
360
|
children_assemblies:
|
@@ -397,11 +396,7 @@ ca:
|
|
397
396
|
show:
|
398
397
|
assembly_type: Tipus d'assemblea
|
399
398
|
duration: Durada
|
400
|
-
is_transparent:
|
401
|
-
'false': opaca
|
402
|
-
'true': transparent
|
403
399
|
private_space: Aquesta és una assemblea privada
|
404
|
-
related_participatory_processes: Processos participatius relacionats
|
405
400
|
social_networks_title: Visita l'assemblea a
|
406
401
|
assembly_members:
|
407
402
|
assembly_member:
|
data/config/locales/cs.yml
CHANGED
@@ -3,7 +3,7 @@ cs:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
assemblies_type:
|
6
|
-
title:
|
6
|
+
title: Název
|
7
7
|
assembly:
|
8
8
|
announcement: Oznámení
|
9
9
|
area_id: Oblast
|
@@ -51,7 +51,6 @@ cs:
|
|
51
51
|
scope_id: Oblast působnosti
|
52
52
|
scopes_enabled: Oblasti působnosti povoleny
|
53
53
|
short_description: Stručný popis
|
54
|
-
show_statistics: Zobrazit statistiky
|
55
54
|
slug: URL slug
|
56
55
|
special_features: Speciální funkce
|
57
56
|
subtitle: Podtitul
|
@@ -303,7 +302,7 @@ cs:
|
|
303
302
|
slug_help_html: '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}'
|
304
303
|
social_handlers: Sociální
|
305
304
|
title: Obecná informace
|
306
|
-
|
305
|
+
visibility: Viditelnost
|
307
306
|
assemblies_types:
|
308
307
|
form:
|
309
308
|
title: Titul
|
@@ -357,7 +356,7 @@ cs:
|
|
357
356
|
members: Členové
|
358
357
|
assembly_types:
|
359
358
|
commission: Komise
|
360
|
-
consultative_advisory:
|
359
|
+
consultative_advisory: Konzultační / poradní
|
361
360
|
executive: Výkonný
|
362
361
|
government: Vládní
|
363
362
|
others: Ostatní
|
@@ -403,11 +402,7 @@ cs:
|
|
403
402
|
show:
|
404
403
|
assembly_type: Typ shromáždění
|
405
404
|
duration: Doba trvání
|
406
|
-
is_transparent:
|
407
|
-
'false': neprůhledný
|
408
|
-
'true': transparentní
|
409
405
|
private_space: Toto je soukromé shromáždění
|
410
|
-
related_participatory_processes: Související participativní procesy
|
411
406
|
social_networks_title: Navštivte shromáždění na
|
412
407
|
assembly_members:
|
413
408
|
assembly_member:
|
data/config/locales/de.yml
CHANGED
@@ -10,15 +10,15 @@ de:
|
|
10
10
|
assembly_type: Versammlungstyp
|
11
11
|
assembly_type_other: Sonstiger Versammlungstyp
|
12
12
|
banner_image: Banner-Bild
|
13
|
-
closing_date:
|
14
|
-
closing_date_reason: Grund
|
13
|
+
closing_date: Einsendeschluss
|
14
|
+
closing_date_reason: Schlussdatums Grund
|
15
15
|
composition: Zusammensetzung
|
16
16
|
copy_categories: Kategorien kopieren
|
17
17
|
copy_components: Komponenten kopieren
|
18
18
|
copy_features: Funktionen kopieren
|
19
19
|
created_by: Erstellt von
|
20
20
|
created_by_other: Erstellt von anderen
|
21
|
-
creation_date:
|
21
|
+
creation_date: Datum erstellt
|
22
22
|
decidim_area_id: Bereich
|
23
23
|
decidim_assemblies_type_id: Versammlungstyp
|
24
24
|
decidim_scope_id: Umfang
|
@@ -26,7 +26,7 @@ de:
|
|
26
26
|
developer_group: Promoter-Gruppe
|
27
27
|
document: Dokument
|
28
28
|
domain: Domain
|
29
|
-
duration:
|
29
|
+
duration: Dauer
|
30
30
|
facebook: Facebook
|
31
31
|
github: GitHub
|
32
32
|
hashtag: Hashtag
|
@@ -34,7 +34,7 @@ de:
|
|
34
34
|
import_attachments: Anhänge importieren
|
35
35
|
import_categories: Kategorien importieren
|
36
36
|
import_components: Komponenten importieren
|
37
|
-
included_at: Inbegriffen
|
37
|
+
included_at: Inbegriffen bei
|
38
38
|
instagram: Instagram
|
39
39
|
internal_organisation: Interne Organisation
|
40
40
|
is_transparent: Ist transparent
|
@@ -47,11 +47,10 @@ de:
|
|
47
47
|
private_space: Privatsphäre
|
48
48
|
promoted: Hervorgehoben
|
49
49
|
published_at: Veröffentlicht am
|
50
|
-
purpose_of_action:
|
50
|
+
purpose_of_action: Zweck der Aktion
|
51
51
|
scope_id: Umfang
|
52
52
|
scopes_enabled: Bereiche aktiviert
|
53
53
|
short_description: Kurze Beschreibung
|
54
|
-
show_statistics: Zeige Statistiken
|
55
54
|
slug: URL-Block
|
56
55
|
special_features: Besondere Merkmale
|
57
56
|
subtitle: Untertitel
|
@@ -249,7 +248,7 @@ de:
|
|
249
248
|
admin: Administrator
|
250
249
|
collaborator: Mitarbeiter
|
251
250
|
moderator: Moderator
|
252
|
-
valuator:
|
251
|
+
valuator: Schätzer
|
253
252
|
titles:
|
254
253
|
assemblies: Gremien
|
255
254
|
assemblies_types: Versammlungstypen
|
@@ -283,11 +282,11 @@ de:
|
|
283
282
|
assemblies:
|
284
283
|
form:
|
285
284
|
announcement_help: Der Text, den Sie hier eingeben, wird dem Benutzer direkt unter den Gremien-Informationen angezeigt.
|
286
|
-
duration:
|
287
|
-
duration_help: Wenn die Dauer
|
285
|
+
duration: Dauer
|
286
|
+
duration_help: Wenn die Dauer dieser Assembly begrenzt ist, wählen Sie das Enddatum aus. Andernfalls wird es als unbestimmt angezeigt.
|
288
287
|
filters: Filter
|
289
288
|
images: Bilder
|
290
|
-
included_at_help: Wählen Sie das Datum aus, an dem dieses Gremium
|
289
|
+
included_at_help: Wählen Sie das Datum aus, an dem dieses Gremium zu Decidim hinzugefügt wurde. Es muss nicht unbedingt mit dem Erstellungsdatum identisch sein.
|
291
290
|
metadata: Metadaten
|
292
291
|
other: Andere
|
293
292
|
select_a_created_by: Wählen Sie eine erstellt von aus
|
@@ -297,7 +296,7 @@ de:
|
|
297
296
|
slug_help_html: '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}'
|
298
297
|
social_handlers: Sozial
|
299
298
|
title: Allgemeine Information
|
300
|
-
|
299
|
+
visibility: Sichtbarkeit
|
301
300
|
assemblies_types:
|
302
301
|
form:
|
303
302
|
title: Titel
|
@@ -311,7 +310,7 @@ de:
|
|
311
310
|
form:
|
312
311
|
existing_user: Existierender Benutzer
|
313
312
|
explanation: 'Hinweise für das Bild:'
|
314
|
-
image_guide: Vorzugsweise ein
|
313
|
+
image_guide: Vorzugsweise ein Portraitbild, das keinen Text enthält.
|
315
314
|
non_user: Nichtbenutzer
|
316
315
|
non_user_avatar_help: Sie sollten die Zustimmung der Personen einholen, bevor Sie sie als Mitglied veröffentlichen.
|
317
316
|
select_a_position: Wählen Sie eine Position
|
@@ -331,8 +330,8 @@ de:
|
|
331
330
|
creation_date: Erstellungsdatum
|
332
331
|
data: Gremiendaten
|
333
332
|
developer_group: Gruppe der Unterstützenden
|
334
|
-
duration:
|
335
|
-
included_at:
|
333
|
+
duration: Dauer
|
334
|
+
included_at: Inbegriffen in
|
336
335
|
indefinite_duration: Unbestimmt
|
337
336
|
local_area: Gebiet der Organisation
|
338
337
|
meta_scope: Bereich
|
@@ -351,11 +350,11 @@ de:
|
|
351
350
|
members: Mitglieder
|
352
351
|
assembly_types:
|
353
352
|
commission: Kommission
|
354
|
-
consultative_advisory:
|
355
|
-
executive:
|
353
|
+
consultative_advisory: Beratende / Beratende
|
354
|
+
executive: Exekutive
|
356
355
|
government: Regierung
|
357
356
|
others: Andere
|
358
|
-
participatory:
|
357
|
+
participatory: Teilnehmend
|
359
358
|
working_group: Arbeitsgruppe
|
360
359
|
content_blocks:
|
361
360
|
children_assemblies:
|
@@ -395,13 +394,9 @@ de:
|
|
395
394
|
member_of:
|
396
395
|
member_of: Mitglied von
|
397
396
|
show:
|
398
|
-
assembly_type:
|
399
|
-
duration:
|
400
|
-
is_transparent:
|
401
|
-
'false': undurchsichtig
|
402
|
-
'true': transparent
|
397
|
+
assembly_type: Montageart
|
398
|
+
duration: Dauer
|
403
399
|
private_space: Dies ist eine private Versammlung
|
404
|
-
related_participatory_processes: Ähnliche Beteiligungsprozesse
|
405
400
|
social_networks_title: Gremium besuchen unter
|
406
401
|
assembly_members:
|
407
402
|
assembly_member:
|
@@ -414,7 +409,7 @@ de:
|
|
414
409
|
email_intro: Ein Administrator des Gremiums <a href="%{resource_url}">%{resource_name}</a> hat Sie als Mitglied eingeladen.
|
415
410
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie zu einem Gremium eingeladen wurden. Gehen Sie zur <a href="%{resource_url}">Gremiumsseite</a>, um mitzumachen!
|
416
411
|
email_subject: Sie wurden als Mitglied des Gremiums %{resource_name} eingeladen!
|
417
|
-
notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a>
|
412
|
+
notification_title: Sie wurden als Mitglied des Gremiums <a href="%{resource_path}">%{resource_name}</a> registriert. Gehen Sie zur <a href="%{resource_path}">Gremiumsseite</a>, um mitzuwirken!
|
418
413
|
assembly:
|
419
414
|
role_assigned:
|
420
415
|
email_intro: Sie wurden als %{role} für die Versammlung "%{resource_title}" ausgewählt.
|
data/config/locales/el.yml
CHANGED
@@ -51,7 +51,6 @@ el:
|
|
51
51
|
scope_id: Πεδίο εφαρμογής
|
52
52
|
scopes_enabled: Ενεργοποιημένα πεδία εφαρμογών
|
53
53
|
short_description: Σύντομη περιγραφή
|
54
|
-
show_statistics: Εμφάνιση στατιστικών
|
55
54
|
slug: Slug διεύθυνσης URL
|
56
55
|
special_features: Ειδικά χαρακτηριστικά
|
57
56
|
subtitle: Υπότιτλος
|
@@ -283,7 +282,6 @@ el:
|
|
283
282
|
form:
|
284
283
|
existing_user: Υπάρχων συμμετέχων
|
285
284
|
explanation: 'Οδηγίες για την εικόνα:'
|
286
|
-
image_guide: Κατά προτίμηση μια εικόνα με οριζόντιο προσανατολισμό που δεν περιέχει κείμενο.
|
287
285
|
non_user: Μη συμμετέχων
|
288
286
|
non_user_avatar_help: Θα πρέπει να λάβετε τη συγκατάθεση των προσώπων πριν τα δημοσιεύσετε ως μέλος.
|
289
287
|
select_a_position: Επιλέξτε θέση
|
@@ -340,11 +338,7 @@ el:
|
|
340
338
|
show:
|
341
339
|
assembly_type: Τύπος συνέλευσης
|
342
340
|
duration: Διάρκεια
|
343
|
-
is_transparent:
|
344
|
-
'false': αδιαφανής
|
345
|
-
'true': διαφανής
|
346
341
|
private_space: Αυτή είναι μια ιδιωτική συνέλευση
|
347
|
-
related_participatory_processes: Σχετικές διαδικασίες συμμετοχής
|
348
342
|
social_networks_title: Επίσκεψη στη συνέλευση στις
|
349
343
|
assembly_members:
|
350
344
|
assembly_member:
|
data/config/locales/en.yml
CHANGED
@@ -51,7 +51,6 @@ en:
|
|
51
51
|
scope_id: Scope
|
52
52
|
scopes_enabled: Scopes enabled
|
53
53
|
short_description: Short description
|
54
|
-
show_statistics: Show statistics
|
55
54
|
slug: URL slug
|
56
55
|
special_features: Special features
|
57
56
|
subtitle: Subtitle
|
@@ -297,7 +296,7 @@ en:
|
|
297
296
|
slug_help_html: '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}'
|
298
297
|
social_handlers: Social
|
299
298
|
title: General Information
|
300
|
-
|
299
|
+
visibility: Visibility
|
301
300
|
assemblies_types:
|
302
301
|
form:
|
303
302
|
title: Edit assembly type
|
@@ -311,7 +310,7 @@ en:
|
|
311
310
|
form:
|
312
311
|
existing_user: Existing participant
|
313
312
|
explanation: 'Guidance for image:'
|
314
|
-
image_guide:
|
313
|
+
image_guide: Preferably a portrait image that does not have any text.
|
315
314
|
non_user: Non participant
|
316
315
|
non_user_avatar_help: You should get the consent of the persons before publishing them as a member.
|
317
316
|
select_a_position: Select a position
|
@@ -397,11 +396,7 @@ en:
|
|
397
396
|
show:
|
398
397
|
assembly_type: Assembly type
|
399
398
|
duration: Duration
|
400
|
-
is_transparent:
|
401
|
-
'false': opaque
|
402
|
-
'true': transparent
|
403
399
|
private_space: This is a private assembly
|
404
|
-
related_participatory_processes: Related participatory processes
|
405
400
|
social_networks_title: Visit assembly on
|
406
401
|
assembly_members:
|
407
402
|
assembly_member:
|
data/config/locales/es-MX.yml
CHANGED
@@ -51,7 +51,6 @@ es-MX:
|
|
51
51
|
scope_id: Ámbito
|
52
52
|
scopes_enabled: Ámbitos habilitados
|
53
53
|
short_description: Descripción breve
|
54
|
-
show_statistics: Mostrar estadísticas
|
55
54
|
slug: Texto corto de URL
|
56
55
|
special_features: Características especiales
|
57
56
|
subtitle: Subtítulo
|
@@ -194,7 +193,7 @@ es-MX:
|
|
194
193
|
'false': No cesada
|
195
194
|
'true': Cesada
|
196
195
|
decidim_assemblies_type_id_eq:
|
197
|
-
label: Tipo de
|
196
|
+
label: Tipo de asamblea
|
198
197
|
search_placeholder:
|
199
198
|
full_name_or_user_name_or_user_nickname_cont: Buscar por nombre o alias
|
200
199
|
menu:
|
@@ -212,7 +211,7 @@ es-MX:
|
|
212
211
|
moderations: Moderaciones
|
213
212
|
private_users: Participantes privadas
|
214
213
|
see_assembly: Ver la asamblea
|
215
|
-
assemblies_types:
|
214
|
+
assemblies_types: Tipos de asamblea
|
216
215
|
models:
|
217
216
|
assemblies_types:
|
218
217
|
fields:
|
@@ -297,7 +296,7 @@ es-MX:
|
|
297
296
|
slug_help_html: '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}'
|
298
297
|
social_handlers: Social
|
299
298
|
title: Información general
|
300
|
-
|
299
|
+
visibility: Visibilidad
|
301
300
|
assemblies_types:
|
302
301
|
form:
|
303
302
|
title: Título
|
@@ -311,7 +310,7 @@ es-MX:
|
|
311
310
|
form:
|
312
311
|
existing_user: Usuario existente
|
313
312
|
explanation: 'Instrucciones para la imagen:'
|
314
|
-
image_guide: Preferiblemente una imagen
|
313
|
+
image_guide: Preferiblemente una imagen apaisada que no tenga ningún texto.
|
315
314
|
non_user: No usuario
|
316
315
|
non_user_avatar_help: Debes obtener el consentimiento de las personas antes de publicarles como miembros.
|
317
316
|
select_a_position: Selecciona una posición
|
@@ -351,7 +350,7 @@ es-MX:
|
|
351
350
|
members: Miembros
|
352
351
|
assembly_types:
|
353
352
|
commission: Comisión
|
354
|
-
consultative_advisory: Consultivo /
|
353
|
+
consultative_advisory: Consultivo / Asesor
|
355
354
|
executive: Ejecutivo
|
356
355
|
government: Gobierno
|
357
356
|
others: Otros
|
@@ -395,13 +394,9 @@ es-MX:
|
|
395
394
|
member_of:
|
396
395
|
member_of: Miembro de
|
397
396
|
show:
|
398
|
-
assembly_type: Tipo de
|
397
|
+
assembly_type: Tipo de asambleas
|
399
398
|
duration: Duración
|
400
|
-
is_transparent:
|
401
|
-
'false': opaco
|
402
|
-
'true': transparente
|
403
399
|
private_space: Esta es una asamblea privada
|
404
|
-
related_participatory_processes: Procesos participativos relacionados
|
405
400
|
social_networks_title: Visita la asamblea en
|
406
401
|
assembly_members:
|
407
402
|
assembly_member:
|
data/config/locales/es-PY.yml
CHANGED
@@ -51,7 +51,6 @@ es-PY:
|
|
51
51
|
scope_id: Ámbito
|
52
52
|
scopes_enabled: Ámbitos habilitados
|
53
53
|
short_description: Descripción breve
|
54
|
-
show_statistics: Mostrar estadísticas
|
55
54
|
slug: Texto corto de URL
|
56
55
|
special_features: Características especiales
|
57
56
|
subtitle: Subtítulo
|
@@ -194,7 +193,7 @@ es-PY:
|
|
194
193
|
'false': No cesada
|
195
194
|
'true': Cesada
|
196
195
|
decidim_assemblies_type_id_eq:
|
197
|
-
label: Tipo de
|
196
|
+
label: Tipo de asamblea
|
198
197
|
search_placeholder:
|
199
198
|
full_name_or_user_name_or_user_nickname_cont: Buscar por nombre o alias
|
200
199
|
menu:
|
@@ -212,7 +211,7 @@ es-PY:
|
|
212
211
|
moderations: Moderaciones
|
213
212
|
private_users: Participantes privadas
|
214
213
|
see_assembly: Ver la asamblea
|
215
|
-
assemblies_types:
|
214
|
+
assemblies_types: Tipos de asamblea
|
216
215
|
models:
|
217
216
|
assemblies_types:
|
218
217
|
fields:
|
@@ -297,7 +296,7 @@ es-PY:
|
|
297
296
|
slug_help_html: '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}'
|
298
297
|
social_handlers: Social
|
299
298
|
title: Información general
|
300
|
-
|
299
|
+
visibility: Visibilidad
|
301
300
|
assemblies_types:
|
302
301
|
form:
|
303
302
|
title: Título
|
@@ -351,7 +350,7 @@ es-PY:
|
|
351
350
|
members: Miembros
|
352
351
|
assembly_types:
|
353
352
|
commission: Comisión
|
354
|
-
consultative_advisory: Consultivo /
|
353
|
+
consultative_advisory: Consultivo / Asesor
|
355
354
|
executive: Ejecutivo
|
356
355
|
government: Gobierno
|
357
356
|
others: Otros
|
@@ -395,13 +394,9 @@ es-PY:
|
|
395
394
|
member_of:
|
396
395
|
member_of: Miembro de
|
397
396
|
show:
|
398
|
-
assembly_type: Tipo de
|
397
|
+
assembly_type: Tipo de asambleas
|
399
398
|
duration: Duración
|
400
|
-
is_transparent:
|
401
|
-
'false': opaco
|
402
|
-
'true': transparente
|
403
399
|
private_space: Esta es una asamblea privada
|
404
|
-
related_participatory_processes: Procesos participativos relacionados
|
405
400
|
social_networks_title: Visita la asamblea en
|
406
401
|
assembly_members:
|
407
402
|
assembly_member:
|
data/config/locales/es.yml
CHANGED
@@ -40,7 +40,7 @@ es:
|
|
40
40
|
is_transparent: Es transparente
|
41
41
|
local_area: Área de organización
|
42
42
|
meta_scope: Metadatos de ámbito
|
43
|
-
parent_id: Asamblea
|
43
|
+
parent_id: Asamblea principal
|
44
44
|
participatory_processes_ids: Procesos participativos relacionados
|
45
45
|
participatory_scope: Qué se decide
|
46
46
|
participatory_structure: Cómo se decide
|
@@ -51,7 +51,6 @@ es:
|
|
51
51
|
scope_id: Ámbito
|
52
52
|
scopes_enabled: Ámbitos habilitados
|
53
53
|
short_description: Descripción breve
|
54
|
-
show_statistics: Mostrar estadísticas
|
55
54
|
slug: Texto corto de URL
|
56
55
|
special_features: Características especiales
|
57
56
|
subtitle: Subtítulo
|
@@ -212,7 +211,7 @@ es:
|
|
212
211
|
moderations: Moderaciones
|
213
212
|
private_users: Participantes privadas
|
214
213
|
see_assembly: Ver la asamblea
|
215
|
-
assemblies_types:
|
214
|
+
assemblies_types: Tipos de asamblea
|
216
215
|
models:
|
217
216
|
assemblies_types:
|
218
217
|
fields:
|
@@ -237,7 +236,7 @@ es:
|
|
237
236
|
positions:
|
238
237
|
other: Otro
|
239
238
|
president: Presidencia
|
240
|
-
secretary:
|
239
|
+
secretary: Secretaria
|
241
240
|
vice_president: Vicepresidencia
|
242
241
|
assembly_user_role:
|
243
242
|
fields:
|
@@ -293,11 +292,11 @@ es:
|
|
293
292
|
select_a_created_by: Selecciona una creadora
|
294
293
|
select_an_area: Selecciona un área
|
295
294
|
select_an_assembly_type: Selecciona un tipo de asamblea
|
296
|
-
select_parent_assembly: Selecciona una asamblea
|
295
|
+
select_parent_assembly: Selecciona una asamblea principal
|
297
296
|
slug_help_html: '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}'
|
298
297
|
social_handlers: Social
|
299
298
|
title: Información general
|
300
|
-
|
299
|
+
visibility: Visibilidad
|
301
300
|
assemblies_types:
|
302
301
|
form:
|
303
302
|
title: Editar tipo de asamblea
|
@@ -352,10 +351,10 @@ es:
|
|
352
351
|
assembly_types:
|
353
352
|
commission: Comisión
|
354
353
|
consultative_advisory: Consultiva / Asesora
|
355
|
-
executive:
|
354
|
+
executive: Ejecutiva
|
356
355
|
government: Gobierno
|
357
356
|
others: Otros
|
358
|
-
participatory:
|
357
|
+
participatory: Participativa
|
359
358
|
working_group: Grupo de trabajo
|
360
359
|
content_blocks:
|
361
360
|
children_assemblies:
|
@@ -395,13 +394,9 @@ es:
|
|
395
394
|
member_of:
|
396
395
|
member_of: Miembro de
|
397
396
|
show:
|
398
|
-
assembly_type: Tipo de
|
397
|
+
assembly_type: Tipo de asambleas
|
399
398
|
duration: Duración
|
400
|
-
is_transparent:
|
401
|
-
'false': opaca
|
402
|
-
'true': transparente
|
403
399
|
private_space: Esta es una asamblea privada
|
404
|
-
related_participatory_processes: Procesos participativos relacionados
|
405
400
|
social_networks_title: Visita la asamblea en
|
406
401
|
assembly_members:
|
407
402
|
assembly_member:
|