decidim-assemblies 0.28.6 → 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 -10
- 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 +51 -56
- 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 +3 -11
- data/config/locales/he-IL.yml +0 -174
- data/config/locales/hu.yml +2 -8
- data/config/locales/id-ID.yml +0 -10
- data/config/locales/is-IS.yml +5 -12
- data/config/locales/it.yml +4 -81
- 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 -88
- data/config/locales/ro-RO.yml +18 -28
- data/config/locales/ru.yml +6 -14
- data/config/locales/sk.yml +0 -20
- data/config/locales/sl.yml +0 -17
- data/config/locales/sq-AL.yml +5 -9
- data/config/locales/sv.yml +137 -203
- data/config/locales/tr-TR.yml +4 -9
- data/config/locales/uk.yml +5 -13
- 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 -22
- 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/ca-IT.yml +0 -465
data/config/locales/lb.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
lb:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Titel
|
7
5
|
assembly:
|
8
6
|
area_id: Bereich
|
9
7
|
assembly_type: Versammlungstyp
|
@@ -46,7 +44,6 @@ lb:
|
|
46
44
|
scope_id: Umfang
|
47
45
|
scopes_enabled: Bereiche aktiviert
|
48
46
|
short_description: Kurze Beschreibung
|
49
|
-
show_statistics: Zeige Statistiken
|
50
47
|
slug: URL-Block
|
51
48
|
special_features: Besondere Merkmale
|
52
49
|
subtitle: Untertitel
|
@@ -167,9 +164,6 @@ lb:
|
|
167
164
|
update:
|
168
165
|
error: Bei einem Fehler ist ein Benutzer für diese Assembly aktualisiert worden.
|
169
166
|
success: Der Benutzer wurde für diese Assembly erfolgreich aktualisiert.
|
170
|
-
filters:
|
171
|
-
decidim_assemblies_type_id_eq:
|
172
|
-
label: Versammlungstyp
|
173
167
|
menu:
|
174
168
|
assemblies: Gremien
|
175
169
|
assemblies_submenu:
|
@@ -180,6 +174,7 @@ lb:
|
|
180
174
|
categories: Kategorien
|
181
175
|
components: Komponenten
|
182
176
|
moderations: Moderationen
|
177
|
+
assemblies_types: Versammlungstypen
|
183
178
|
models:
|
184
179
|
assemblies_types:
|
185
180
|
fields:
|
@@ -236,11 +231,11 @@ lb:
|
|
236
231
|
members: Mitglieder
|
237
232
|
assembly_types:
|
238
233
|
commission: Kommission
|
239
|
-
consultative_advisory:
|
240
|
-
executive:
|
234
|
+
consultative_advisory: Beratende / Beratende
|
235
|
+
executive: Exekutive
|
241
236
|
government: Regierung
|
242
237
|
others: Andere
|
243
|
-
participatory:
|
238
|
+
participatory: Teilnehmend
|
244
239
|
working_group: Arbeitsgruppe
|
245
240
|
content_blocks:
|
246
241
|
highlighted_assemblies:
|
@@ -266,13 +261,9 @@ lb:
|
|
266
261
|
member_of:
|
267
262
|
member_of: Mitglied von
|
268
263
|
show:
|
269
|
-
assembly_type:
|
264
|
+
assembly_type: Montageart
|
270
265
|
duration: Dauer
|
271
|
-
is_transparent:
|
272
|
-
'false': undurchsichtig
|
273
|
-
'true': transparent
|
274
266
|
private_space: Dies ist eine private Versammlung
|
275
|
-
related_participatory_processes: Ähnliche Beteiligungsprozesse
|
276
267
|
assembly_members:
|
277
268
|
assembly_member:
|
278
269
|
designated_on: Bezeichnet am
|
data/config/locales/lt.yml
CHANGED
@@ -51,7 +51,6 @@ lt:
|
|
51
51
|
scope_id: Apimtis
|
52
52
|
scopes_enabled: Įgalintos apimtys
|
53
53
|
short_description: Trumpas aprašymas
|
54
|
-
show_statistics: Rodyti statistiką
|
55
54
|
slug: URL priedas
|
56
55
|
special_features: Specialiosios ypatybės
|
57
56
|
subtitle: Paantraštė
|
@@ -219,7 +218,7 @@ lt:
|
|
219
218
|
ceased_date: Nutraukimo data
|
220
219
|
designation_date: Paskyrimo data
|
221
220
|
full_name: Vardas
|
222
|
-
position:
|
221
|
+
position: Pareigos
|
223
222
|
name: Narys
|
224
223
|
positions:
|
225
224
|
other: Kita
|
@@ -290,7 +289,6 @@ lt:
|
|
290
289
|
form:
|
291
290
|
existing_user: Egzistuojantis dalyvis
|
292
291
|
explanation: 'Paveikslėliui skirtos gairės:'
|
293
|
-
image_guide: Pageidautina, kad tai būtų vertikalaus formato paveikslėlis be teksto.
|
294
292
|
non_user: Neturintis dalyvio statuso subjektas
|
295
293
|
non_user_avatar_help: Turite gauti naudotojų sutikimą prieš publikuodami juos kaip narius.
|
296
294
|
select_a_position: Pasirinkti poziciją
|
@@ -332,7 +330,7 @@ lt:
|
|
332
330
|
commission: Komisija
|
333
331
|
consultative_advisory: Konsultacinė / Patariamoji
|
334
332
|
executive: Vykdomoji
|
335
|
-
government:
|
333
|
+
government: Vyriausybe
|
336
334
|
others: Kita
|
337
335
|
participatory: Dalyvaujamoji
|
338
336
|
working_group: Darbo grupė
|
@@ -376,11 +374,7 @@ lt:
|
|
376
374
|
show:
|
377
375
|
assembly_type: Asamblėjos tipas
|
378
376
|
duration: Trukmė
|
379
|
-
is_transparent:
|
380
|
-
'false': neskaidru
|
381
|
-
'true': skaidru
|
382
377
|
private_space: Tai yra uždara asamblėja
|
383
|
-
related_participatory_processes: Susiję dalyvaujamieji procesai
|
384
378
|
social_networks_title: Aplankyti asamblėją
|
385
379
|
assembly_members:
|
386
380
|
assembly_member:
|
data/config/locales/lv.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
lv:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Nosaukums
|
7
5
|
assembly:
|
8
6
|
area_id: Joma
|
9
7
|
assembly_type: Asamblejas veids
|
@@ -43,7 +41,6 @@ lv:
|
|
43
41
|
scope_id: Darbības tvērums
|
44
42
|
scopes_enabled: Darbības tvērumi ir iespējoti
|
45
43
|
short_description: Īss apraksts
|
46
|
-
show_statistics: Rādīt statistiku
|
47
44
|
slug: URL sadaļas adrese (slug)
|
48
45
|
special_features: Īpašas funkcijas
|
49
46
|
subtitle: Apakšvirsraksts
|
@@ -154,9 +151,6 @@ lv:
|
|
154
151
|
update:
|
155
152
|
error: Atjauninot administratoru šai asamblejai, radās problēma.
|
156
153
|
success: Šīs asamblejas administrators ir veiksmīgi atjaunināts.
|
157
|
-
filters:
|
158
|
-
decidim_assemblies_type_id_eq:
|
159
|
-
label: Asamblejas veids
|
160
154
|
menu:
|
161
155
|
assemblies: Asambleja
|
162
156
|
assemblies_submenu:
|
@@ -299,11 +293,7 @@ lv:
|
|
299
293
|
show:
|
300
294
|
assembly_type: Asamblejas veids
|
301
295
|
duration: Ilgums
|
302
|
-
is_transparent:
|
303
|
-
'false': neskaidra
|
304
|
-
'true': caurskatāma
|
305
296
|
private_space: Šī ir privāta asambleja
|
306
|
-
related_participatory_processes: Saistītie līdzdalības procesi
|
307
297
|
assembly_members:
|
308
298
|
assembly_member:
|
309
299
|
designated_on: Izraudzīts
|
data/config/locales/nl.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
nl:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Titel
|
7
5
|
assembly:
|
8
6
|
area_id: Onderwerp
|
9
7
|
assembly_type: Groepstype
|
@@ -43,10 +41,9 @@ nl:
|
|
43
41
|
promoted: Gepromoveerd
|
44
42
|
published_at: Gepubliceerd op
|
45
43
|
purpose_of_action: Doelstelling
|
46
|
-
scope_id:
|
44
|
+
scope_id: Scope
|
47
45
|
scopes_enabled: Scopes ingeschakeld
|
48
46
|
short_description: Korte beschrijving
|
49
|
-
show_statistics: Toon statistieken
|
50
47
|
slug: URL pad
|
51
48
|
special_features: Speciale functionaliteiten
|
52
49
|
subtitle: Ondertiteling
|
@@ -141,7 +138,7 @@ nl:
|
|
141
138
|
index:
|
142
139
|
assembly_members_title: Groepsleden
|
143
140
|
new:
|
144
|
-
create:
|
141
|
+
create: Creëren
|
145
142
|
update:
|
146
143
|
error: Er is een fout opgetreden bij het bijwerken van het lid voor deze groep.
|
147
144
|
success: Lid is succesvol bijgewerkt voor deze groep.
|
@@ -181,7 +178,7 @@ nl:
|
|
181
178
|
categories: Categorieën
|
182
179
|
components: Onderdelen
|
183
180
|
moderations: Moderaties
|
184
|
-
assemblies_types:
|
181
|
+
assemblies_types: Soorten groepen
|
185
182
|
models:
|
186
183
|
assemblies_types:
|
187
184
|
fields:
|
@@ -271,7 +268,6 @@ nl:
|
|
271
268
|
form:
|
272
269
|
existing_user: Bestaande deelnemer
|
273
270
|
explanation: 'Eigenschappen afbeelding:'
|
274
|
-
image_guide: Bij voorkeur een afbeelding in 'portretmodus' (staand) die geen tekst bevat.
|
275
271
|
non_user: Niet deelnemer
|
276
272
|
non_user_avatar_help: Je hebt de toestemming nodig van de personen voordat je ze als lid publiceert.
|
277
273
|
select_a_position: Selecteer een positie
|
@@ -326,11 +322,7 @@ nl:
|
|
326
322
|
show:
|
327
323
|
assembly_type: Groepstype
|
328
324
|
duration: Duur
|
329
|
-
is_transparent:
|
330
|
-
'false': ondoorzichtig
|
331
|
-
'true': Transparant
|
332
325
|
private_space: Dit is een privé event
|
333
|
-
related_participatory_processes: Verwante inspraakprocessen
|
334
326
|
social_networks_title: Bezoek groep op
|
335
327
|
assembly_members:
|
336
328
|
assembly_member:
|
data/config/locales/no.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
"no":
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Tittel
|
7
5
|
assembly:
|
8
6
|
area_id: Område
|
9
7
|
assembly_type: Forsamlingstype
|
@@ -46,7 +44,6 @@
|
|
46
44
|
scope_id: Tema
|
47
45
|
scopes_enabled: Temaer aktivert
|
48
46
|
short_description: Kort beskrivelse
|
49
|
-
show_statistics: Vis statistikk
|
50
47
|
slug: URL slug
|
51
48
|
special_features: Spesialfunksjoner
|
52
49
|
subtitle: Undertittel
|
@@ -267,7 +264,6 @@
|
|
267
264
|
form:
|
268
265
|
existing_user: Eksisterende deltaker
|
269
266
|
explanation: 'Veiledning for bilde:'
|
270
|
-
image_guide: Helst et portrettbilde uten tekst.
|
271
267
|
non_user: Ingen deltakende
|
272
268
|
non_user_avatar_help: Du bør få samtykke fra personene før du offentliggjør dem som medlem.
|
273
269
|
select_a_position: Velg en posisjon
|
@@ -320,11 +316,7 @@
|
|
320
316
|
show:
|
321
317
|
assembly_type: Forsamlingstype
|
322
318
|
duration: Varighet
|
323
|
-
is_transparent:
|
324
|
-
'false': opaque
|
325
|
-
'true': privat
|
326
319
|
private_space: Dette er en privat forsamling
|
327
|
-
related_participatory_processes: Relaterte deltakerprosesser
|
328
320
|
assembly_members:
|
329
321
|
assembly_member:
|
330
322
|
designated_on: Utpekt på
|
data/config/locales/pl.yml
CHANGED
@@ -51,7 +51,6 @@ pl:
|
|
51
51
|
scope_id: Zakres
|
52
52
|
scopes_enabled: Zakresy dozwolone
|
53
53
|
short_description: Krótki opis
|
54
|
-
show_statistics: Pokaż statystyki
|
55
54
|
slug: URL slug
|
56
55
|
special_features: Cechy szczególne
|
57
56
|
subtitle: Podtytuł
|
@@ -236,7 +235,7 @@ pl:
|
|
236
235
|
assembly_member:
|
237
236
|
fields:
|
238
237
|
ceased_date: Data zakończenia
|
239
|
-
designation_date: Data
|
238
|
+
designation_date: Data wyznaczenia
|
240
239
|
full_name: Imię
|
241
240
|
position: Pozycja
|
242
241
|
name: Członek
|
@@ -303,7 +302,7 @@ pl:
|
|
303
302
|
slug_help_html: 'Slugi URL służą do generowania adresów URL kierujących bezpośrednio do tego zgromadzenia. Można użyć liter, cyfr i myślników. Musi zaczynać się od litery. Przykład: %{url}'
|
304
303
|
social_handlers: Profile społecznościowe
|
305
304
|
title: Informacje ogólne
|
306
|
-
|
305
|
+
visibility: Widoczność
|
307
306
|
assemblies_types:
|
308
307
|
form:
|
309
308
|
title: Tytuł
|
@@ -360,7 +359,7 @@ pl:
|
|
360
359
|
consultative_advisory: Konsultacyjne / doradcze
|
361
360
|
executive: Wykonawcze
|
362
361
|
government: Rząd
|
363
|
-
others:
|
362
|
+
others: Inne
|
364
363
|
participatory: Uczestniczące
|
365
364
|
working_group: Grupa robocza
|
366
365
|
content_blocks:
|
@@ -403,11 +402,7 @@ pl:
|
|
403
402
|
show:
|
404
403
|
assembly_type: Typ zespołu
|
405
404
|
duration: Czas trwania
|
406
|
-
is_transparent:
|
407
|
-
'false': nietransparentny
|
408
|
-
'true': transparentny
|
409
405
|
private_space: To jest prywatny zespół
|
410
|
-
related_participatory_processes: Powiązane procesy partycypacyjne
|
411
406
|
social_networks_title: Odwiedź zespół na
|
412
407
|
assembly_members:
|
413
408
|
assembly_member:
|
@@ -459,12 +454,6 @@ pl:
|
|
459
454
|
take_part: Dołącz
|
460
455
|
index:
|
461
456
|
promoted_assemblies: Wyróżnione zespoły
|
462
|
-
metadata:
|
463
|
-
children_item:
|
464
|
-
one: "%{count} zespół"
|
465
|
-
few: "%{count} zespoły"
|
466
|
-
many: "%{count} zespołów"
|
467
|
-
other: "%{count} zespołów"
|
468
457
|
order_by_assemblies:
|
469
458
|
assemblies:
|
470
459
|
one: "%{count} zespół"
|
data/config/locales/pt-BR.yml
CHANGED
@@ -51,7 +51,6 @@ pt-BR:
|
|
51
51
|
scope_id: Âmbito
|
52
52
|
scopes_enabled: Escopos ativados
|
53
53
|
short_description: Pequena descrição
|
54
|
-
show_statistics: Mostre estatisticas
|
55
54
|
slug: Slug de URL
|
56
55
|
special_features: Funcionalidades especiais
|
57
56
|
subtitle: Subtítulo
|
@@ -309,7 +308,6 @@ pt-BR:
|
|
309
308
|
form:
|
310
309
|
existing_user: Participante existente
|
311
310
|
explanation: 'Orientação para a imagem:'
|
312
|
-
image_guide: De preferência, uma imagem em formato paisagem que não tenha nenhum texto.
|
313
311
|
non_user: Não-participante
|
314
312
|
non_user_avatar_help: Você deve receber o consentimento das pessoas antes de publicá-las como membro.
|
315
313
|
select_a_position: Selecione uma posição
|
@@ -395,11 +393,7 @@ pt-BR:
|
|
395
393
|
show:
|
396
394
|
assembly_type: Tipo de assembleia
|
397
395
|
duration: Duração
|
398
|
-
is_transparent:
|
399
|
-
'false': opaco
|
400
|
-
'true': transparente
|
401
396
|
private_space: Esta é uma assembleia privada
|
402
|
-
related_participatory_processes: Processos participativos relacionados
|
403
397
|
social_networks_title: Visite assembleia em
|
404
398
|
assembly_members:
|
405
399
|
assembly_member:
|
data/config/locales/pt.yml
CHANGED
@@ -2,10 +2,7 @@
|
|
2
2
|
pt:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Título
|
7
5
|
assembly:
|
8
|
-
announcement: Anúncio
|
9
6
|
area_id: Área
|
10
7
|
assembly_type: Tipo de reunião
|
11
8
|
assembly_type_other: Outro tipo de reunião
|
@@ -24,16 +21,12 @@ pt:
|
|
24
21
|
decidim_scope_id: Âmbito
|
25
22
|
description: Descrição
|
26
23
|
developer_group: Grupo promotor
|
27
|
-
document: Documento
|
28
24
|
domain: Domínio
|
29
25
|
duration: Duração
|
30
26
|
facebook: Facebook
|
31
27
|
github: GitHub
|
32
28
|
hashtag: Hashtag
|
33
29
|
hero_image: Imagem inicial
|
34
|
-
import_attachments: Importar anexos
|
35
|
-
import_categories: Importar categorias
|
36
|
-
import_components: Importar componentes
|
37
30
|
included_at: Incluído em
|
38
31
|
instagram: Instagram
|
39
32
|
internal_organisation: Organização interna
|
@@ -51,13 +44,11 @@ pt:
|
|
51
44
|
scope_id: Âmbito
|
52
45
|
scopes_enabled: Âmbitos ativados
|
53
46
|
short_description: Pequena descrição
|
54
|
-
show_statistics: Mostrar estatísticas
|
55
47
|
slug: Campo de dados dinâmicos de URL
|
56
48
|
special_features: Características especiais
|
57
49
|
subtitle: Subtítulo
|
58
50
|
target: Quem participa
|
59
51
|
title: Título
|
60
|
-
twitter: X
|
61
52
|
weight: Posição de ordenamento
|
62
53
|
youtube: Youtube
|
63
54
|
assembly_member:
|
@@ -70,17 +61,10 @@ pt:
|
|
70
61
|
non_user_avatar: Avatar
|
71
62
|
position: Posição
|
72
63
|
user_id: Utilizador ou grupo
|
73
|
-
weight: Posição de ordenamento
|
74
64
|
assembly_user_role:
|
75
65
|
email: E-mail
|
76
66
|
name: Nome
|
77
67
|
role: Função
|
78
|
-
errors:
|
79
|
-
models:
|
80
|
-
assembly:
|
81
|
-
attributes:
|
82
|
-
document:
|
83
|
-
allowed_file_content_types: 'Tipo de documento inválido. Só são permitidos ficheiros com as seguintes extensões: %{types}.'
|
84
68
|
activerecord:
|
85
69
|
models:
|
86
70
|
decidim/assembly:
|
@@ -98,7 +82,6 @@ pt:
|
|
98
82
|
import_assembly: Importar
|
99
83
|
new_assembly: Nova reunião
|
100
84
|
new_assembly_type: Novo tipo de reunião
|
101
|
-
new_assembly_user_role: Administrador da nova reunião
|
102
85
|
assemblies:
|
103
86
|
create:
|
104
87
|
error: Ocorreu um problema ao criar uma nova reunião.
|
@@ -109,7 +92,6 @@ pt:
|
|
109
92
|
private: Privado
|
110
93
|
public: Público
|
111
94
|
published: Publicado
|
112
|
-
unpublished: Não publicado
|
113
95
|
new:
|
114
96
|
create: Criar
|
115
97
|
title: Nova assembléia
|
@@ -174,26 +156,17 @@ pt:
|
|
174
156
|
destroy:
|
175
157
|
success: Administrador removido corretamente desta reunião.
|
176
158
|
edit:
|
177
|
-
title: Atualizar o administrador da reunião
|
178
159
|
update: Atualizar
|
179
160
|
index:
|
180
161
|
assembly_admins_title: Administradores da reunião
|
181
162
|
new:
|
182
163
|
create: Criar
|
183
|
-
title: Administrador da nova reunião
|
184
164
|
update:
|
185
165
|
error: Ocorreu um problema ao atualizar um administrador para esta reunião.
|
186
166
|
success: Administrador atualizador corretamente para esta reunião.
|
187
167
|
filters:
|
188
|
-
ceased_date_not_null:
|
189
|
-
label: Cessou
|
190
|
-
values:
|
191
|
-
'false': Não cessou
|
192
|
-
'true': Cessou
|
193
168
|
decidim_assemblies_type_id_eq:
|
194
|
-
label: Tipo de
|
195
|
-
search_placeholder:
|
196
|
-
full_name_or_user_name_or_user_nickname_cont: Pesquisar por nome ou apelido
|
169
|
+
label: Tipo de assembleia
|
197
170
|
menu:
|
198
171
|
assemblies: Reuniões
|
199
172
|
assemblies_submenu:
|
@@ -204,10 +177,7 @@ pt:
|
|
204
177
|
attachments: Anexos
|
205
178
|
categories: Categorias
|
206
179
|
components: Componentes
|
207
|
-
info: Sobre esta reunião
|
208
|
-
landing_page: Página de destino
|
209
180
|
moderations: Moderação
|
210
|
-
see_assembly: Veja a reunião
|
211
181
|
assemblies_types: Tipos de reuniões
|
212
182
|
models:
|
213
183
|
assemblies_types:
|
@@ -216,7 +186,6 @@ pt:
|
|
216
186
|
title: Título
|
217
187
|
assembly:
|
218
188
|
fields:
|
219
|
-
actions: Ações
|
220
189
|
created_at: Criado em
|
221
190
|
private: Privado
|
222
191
|
promoted: Realçado
|
@@ -252,9 +221,6 @@ pt:
|
|
252
221
|
admin_log:
|
253
222
|
assembly:
|
254
223
|
create: "%{user_name} criou a reunião %{resource_name}"
|
255
|
-
duplicate: "%{user_name} duplicou a reunião %{resource_name}"
|
256
|
-
export: "%{user_name} exportou a reunião %{resource_name}"
|
257
|
-
import: "%{user_name} importou a reunião %{resource_name}"
|
258
224
|
publish: "%{user_name} publicou a reunião %{resource_name}"
|
259
225
|
unpublish: "%{user_name} removeu a publicação da reunião %{resource_name}"
|
260
226
|
update: "%{user_name} atualizou a reunião %{resource_name}"
|
@@ -283,31 +249,21 @@ pt:
|
|
283
249
|
duration_help: Se a duração desta reunião for limitada, selecione a data final. Caso contrário, aparecerá como indefinida.
|
284
250
|
filters: Filtros
|
285
251
|
images: Imagens
|
286
|
-
included_at_help: Selecione a data em que esta reunião foi adicionada à plataforma. Não precisa de ser necessariamente a mesma que a data de criação.
|
287
252
|
metadata: Metadados
|
288
253
|
other: Outros
|
289
254
|
select_a_created_by: Selecione um criado por
|
290
255
|
select_an_area: Selecione uma Área
|
291
256
|
select_an_assembly_type: Selecione um tipo de reunião
|
292
257
|
select_parent_assembly: Selecione a reunião pai
|
293
|
-
slug_help_html: 'São usados slugs de URL para gerar URLs que apontam para esta reunião. Aceita apenas letras, números e traços, e deve começar com uma letra. Exemplo: %{url}'
|
294
258
|
social_handlers: Social
|
295
259
|
title: Informação geral
|
296
|
-
visbility: Visibilidade
|
297
260
|
assemblies_types:
|
298
261
|
form:
|
299
262
|
title: Título
|
300
|
-
assembly_copies:
|
301
|
-
form:
|
302
|
-
slug_help_html: 'São usados slugs de URL para gerar URLs que apontam para esta reunião. Aceita apenas letras, números e traços, e deve começar com uma letra. Exemplo: %{url}'
|
303
|
-
assembly_imports:
|
304
|
-
form:
|
305
|
-
slug_help_html: 'São usados slugs de URL para gerar URLs que apontam para esta reunião. Aceita apenas letras, números e traços, e deve começar com uma letra. Exemplo: %{url}'
|
306
263
|
assembly_members:
|
307
264
|
form:
|
308
265
|
existing_user: Participante existente
|
309
266
|
explanation: 'Orientações para imagem:'
|
310
|
-
image_guide: De preferência uma imagem em formato paisagem sem texto algum.
|
311
267
|
non_user: Não participante
|
312
268
|
non_user_avatar_help: Deve obter o consentimento das pessoas antes de as publicar como membros.
|
313
269
|
select_a_position: Selecione uma posição
|
@@ -320,28 +276,9 @@ pt:
|
|
320
276
|
accepted_types:
|
321
277
|
json: JSON
|
322
278
|
assemblies:
|
323
|
-
description:
|
324
|
-
area_name: Área
|
325
|
-
closing_date: Data de encerramento
|
326
|
-
created_by: Criado por
|
327
|
-
creation_date: Data de criação
|
328
|
-
data: Dados da reunião
|
329
|
-
developer_group: Grupo promotor
|
330
|
-
duration: Duração
|
331
|
-
included_at: Incluído em
|
332
|
-
indefinite_duration: Indeterminada
|
333
|
-
local_area: Área de organização
|
334
|
-
meta_scope: Âmbito
|
335
|
-
participatory_scope: O que é decidido
|
336
|
-
participatory_structure: Como é decidido
|
337
|
-
target: Quem participa
|
338
|
-
title: Sobre esta reunião
|
339
279
|
filters:
|
340
280
|
names:
|
341
281
|
all: Todos
|
342
|
-
type: Tipo
|
343
|
-
show:
|
344
|
-
title: Sobre esta reunião
|
345
282
|
assembly_members:
|
346
283
|
index:
|
347
284
|
members: Membros
|
@@ -354,16 +291,8 @@ pt:
|
|
354
291
|
participatory: Participativo
|
355
292
|
working_group: Grupo de trabalho
|
356
293
|
content_blocks:
|
357
|
-
children_assemblies:
|
358
|
-
name: Reuniões
|
359
|
-
dates_metadata:
|
360
|
-
name: Metadados de datas
|
361
|
-
extra_data:
|
362
|
-
name: Tipo e duração
|
363
294
|
highlighted_assemblies:
|
364
295
|
name: Reuniões realçadas
|
365
|
-
related_assemblies:
|
366
|
-
name: Reuniões relacionadas
|
367
296
|
created_by:
|
368
297
|
city_council: Câmara Municipal
|
369
298
|
others: Outros
|
@@ -380,25 +309,14 @@ pt:
|
|
380
309
|
working_group: Grupo de trabalho
|
381
310
|
index:
|
382
311
|
title: Reuniões
|
383
|
-
last_activity:
|
384
|
-
new_assembly: 'Nova reunião:'
|
385
312
|
pages:
|
386
|
-
home:
|
387
|
-
highlighted_assemblies:
|
388
|
-
active_spaces: Reuniões ativas
|
389
|
-
see_all_spaces: Ver todas as reuniões
|
390
313
|
user_profile:
|
391
314
|
member_of:
|
392
315
|
member_of: Membro de
|
393
316
|
show:
|
394
317
|
assembly_type: Tipo de reunião
|
395
318
|
duration: Duração
|
396
|
-
is_transparent:
|
397
|
-
'false': opaco
|
398
|
-
'true': transparente
|
399
319
|
private_space: Esta é uma reunião privada
|
400
|
-
related_participatory_processes: Processos participativos relacionados
|
401
|
-
social_networks_title: Visite a reunião em
|
402
320
|
assembly_members:
|
403
321
|
assembly_member:
|
404
322
|
designated_on: Designado em
|
@@ -408,7 +326,6 @@ pt:
|
|
408
326
|
assemblies:
|
409
327
|
create_assembly_member:
|
410
328
|
email_intro: Um administrador da reunião <a href="%{resource_url}">%{resource_name}</a> adicionou-o como um dos seus membros.
|
411
|
-
email_outro: Recebeu esta notificação porque foi convidado para uma reunião. Verifique a <a href="%{resource_url}">página da reunião</a> para contribuir!
|
412
329
|
email_subject: Foi convidado para ser membro da reunião %{resource_name}!
|
413
330
|
notification_title: Foi registado como membro da Reunião <a href="%{resource_path}">%{resource_name}</a>. Consulte a página da reunião <a href="%{resource_path}"></a> para contribuir!
|
414
331
|
assembly:
|
@@ -449,10 +366,6 @@ pt:
|
|
449
366
|
take_part: Participar
|
450
367
|
index:
|
451
368
|
promoted_assemblies: Reuniões realçadas
|
452
|
-
metadata:
|
453
|
-
children_item:
|
454
|
-
one: "%{count} reunião"
|
455
|
-
other: "%{count} reuniões"
|
456
369
|
order_by_assemblies:
|
457
370
|
assemblies:
|
458
371
|
one: "%{count} reunião"
|