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/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,8 +2,6 @@
|
|
2
2
|
pt:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Título
|
7
5
|
assembly:
|
8
6
|
area_id: Área
|
9
7
|
assembly_type: Tipo de reunião
|
@@ -46,7 +44,6 @@ pt:
|
|
46
44
|
scope_id: Âmbito
|
47
45
|
scopes_enabled: Âmbitos ativados
|
48
46
|
short_description: Pequena descrição
|
49
|
-
show_statistics: Mostrar estatísticas
|
50
47
|
slug: Campo de dados dinâmicos de URL
|
51
48
|
special_features: Características especiais
|
52
49
|
subtitle: Subtítulo
|
@@ -169,7 +166,7 @@ pt:
|
|
169
166
|
success: Administrador atualizador corretamente para esta reunião.
|
170
167
|
filters:
|
171
168
|
decidim_assemblies_type_id_eq:
|
172
|
-
label: Tipo de
|
169
|
+
label: Tipo de assembleia
|
173
170
|
menu:
|
174
171
|
assemblies: Reuniões
|
175
172
|
assemblies_submenu:
|
@@ -267,7 +264,6 @@ pt:
|
|
267
264
|
form:
|
268
265
|
existing_user: Participante existente
|
269
266
|
explanation: 'Orientações para imagem:'
|
270
|
-
image_guide: De preferência uma imagem em formato paisagem sem texto algum.
|
271
267
|
non_user: Não participante
|
272
268
|
non_user_avatar_help: Deve obter o consentimento das pessoas antes de as publicar como membros.
|
273
269
|
select_a_position: Selecione uma posição
|
@@ -320,11 +316,7 @@ pt:
|
|
320
316
|
show:
|
321
317
|
assembly_type: Tipo de reunião
|
322
318
|
duration: Duração
|
323
|
-
is_transparent:
|
324
|
-
'false': opaco
|
325
|
-
'true': transparente
|
326
319
|
private_space: Esta é uma reunião privada
|
327
|
-
related_participatory_processes: Processos participativos relacionados
|
328
320
|
assembly_members:
|
329
321
|
assembly_member:
|
330
322
|
designated_on: Designado em
|
data/config/locales/ro-RO.yml
CHANGED
@@ -48,10 +48,9 @@ ro:
|
|
48
48
|
promoted: Evidenţiat
|
49
49
|
published_at: Publicat la
|
50
50
|
purpose_of_action: Scopul acțiunii
|
51
|
-
scope_id: Domeniu
|
51
|
+
scope_id: Domeniu de interes
|
52
52
|
scopes_enabled: Domenii activate
|
53
53
|
short_description: Descriere scurtă
|
54
|
-
show_statistics: Arată statistici
|
55
54
|
slug: URL slug
|
56
55
|
special_features: Funcționalități speciale
|
57
56
|
subtitle: Subtitlu
|
@@ -287,7 +286,6 @@ ro:
|
|
287
286
|
form:
|
288
287
|
existing_user: Participant existent
|
289
288
|
explanation: 'Îndrumare pentru imagine:'
|
290
|
-
image_guide: Este de preferat o imagine pe format orizontal care să nu conțină text deloc.
|
291
289
|
non_user: Non participant
|
292
290
|
non_user_avatar_help: Ar trebui să obţii consimţământul persoanelor înainte de a îi publica drept membri.
|
293
291
|
select_a_position: Selectaţi o poziţie
|
@@ -326,7 +324,7 @@ ro:
|
|
326
324
|
consultative_advisory: Organ consultativ
|
327
325
|
executive: Executiv
|
328
326
|
government: Conducere
|
329
|
-
others:
|
327
|
+
others: Altele
|
330
328
|
participatory: Participativ
|
331
329
|
working_group: Sub-grup de lucru
|
332
330
|
content_blocks:
|
@@ -351,21 +349,13 @@ ro:
|
|
351
349
|
last_activity:
|
352
350
|
new_assembly: 'Adunare nouă:'
|
353
351
|
pages:
|
354
|
-
home:
|
355
|
-
highlighted_assemblies:
|
356
|
-
active_spaces: Grupuri de lucru active
|
357
|
-
see_all_spaces: Vedeți tot
|
358
352
|
user_profile:
|
359
353
|
member_of:
|
360
354
|
member_of: Membru al
|
361
355
|
show:
|
362
356
|
assembly_type: Tipul grupului de lucru
|
363
357
|
duration: Durată
|
364
|
-
is_transparent:
|
365
|
-
'false': opac
|
366
|
-
'true': transparent
|
367
358
|
private_space: Acesta este un grup de lucru privat
|
368
|
-
related_participatory_processes: Procese participative asociate
|
369
359
|
social_networks_title: Vizitează adunarea pe
|
370
360
|
assembly_members:
|
371
361
|
assembly_member:
|
data/config/locales/ru.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
ru:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Название
|
7
5
|
assembly:
|
8
6
|
area_id: Участок
|
9
7
|
assembly_type: Вид собрания
|
@@ -45,7 +43,6 @@ ru:
|
|
45
43
|
scope_id: Охват
|
46
44
|
scopes_enabled: Охваты включены
|
47
45
|
short_description: Краткое описание
|
48
|
-
show_statistics: Показывать статистику
|
49
46
|
slug: Сокращенный веб-адрес
|
50
47
|
special_features: Особенности
|
51
48
|
subtitle: Подзаголовок
|
@@ -150,9 +147,6 @@ ru:
|
|
150
147
|
update:
|
151
148
|
error: При попытке обновить члена президиума этого собрания произошла ошибка.
|
152
149
|
success: Участник этого собрания успешно обновлен.
|
153
|
-
filters:
|
154
|
-
decidim_assemblies_type_id_eq:
|
155
|
-
label: Вид собрания
|
156
150
|
menu:
|
157
151
|
assemblies: Собрания
|
158
152
|
assemblies_submenu:
|
@@ -244,7 +238,12 @@ ru:
|
|
244
238
|
members: Члены президиума
|
245
239
|
assembly_types:
|
246
240
|
commission: Комиссия
|
247
|
-
|
241
|
+
consultative_advisory: Совещательное / Консультативное
|
242
|
+
executive: Исполнительное
|
243
|
+
government: Правительственное
|
244
|
+
others: Другое
|
245
|
+
participatory: Соучастное
|
246
|
+
working_group: Рабочая группа
|
248
247
|
content_blocks:
|
249
248
|
highlighted_assemblies:
|
250
249
|
name: Рекомендуемые собрания
|
@@ -261,11 +260,7 @@ ru:
|
|
261
260
|
show:
|
262
261
|
assembly_type: Вид собрания
|
263
262
|
duration: Длительность
|
264
|
-
is_transparent:
|
265
|
-
'false': непрозрачное
|
266
|
-
'true': прозрачное
|
267
263
|
private_space: Это частное собрание
|
268
|
-
related_participatory_processes: Сопутствующие движения соучастия
|
269
264
|
assembly_members:
|
270
265
|
assembly_member:
|
271
266
|
designated_on: 'Полномочия предоставлены:'
|
data/config/locales/sk.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
sk:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Názov
|
7
5
|
assembly:
|
8
6
|
area_id: Oblasť
|
9
7
|
assembly_type: Typ zhromaždenia
|
@@ -46,7 +44,6 @@ sk:
|
|
46
44
|
scope_id: Rozsah
|
47
45
|
scopes_enabled: Povolené rozsahy
|
48
46
|
short_description: Stručný opis
|
49
|
-
show_statistics: Zobraziť štatistiky
|
50
47
|
slug: URL krátky odkaz
|
51
48
|
special_features: Špeciálne funkcie
|
52
49
|
subtitle: Podnadpis
|
@@ -115,26 +112,12 @@ sk:
|
|
115
112
|
update:
|
116
113
|
error: Pri tvorbe nového typu zhromaždenia nastala chyba.
|
117
114
|
success: Typ zhromaždenia úspešne aktualizovaný.
|
118
|
-
assembly_members:
|
119
|
-
edit:
|
120
|
-
update: Aktualizovať
|
121
|
-
new:
|
122
|
-
create: Vytvoriť
|
123
|
-
filters:
|
124
|
-
decidim_assemblies_type_id_eq:
|
125
|
-
label: Typ zhromaždenia
|
126
115
|
menu:
|
127
116
|
assemblies_types: Typy zhromaždení
|
128
117
|
models:
|
129
118
|
assemblies_types:
|
130
119
|
fields:
|
131
120
|
title: Názov
|
132
|
-
assembly_member:
|
133
|
-
fields:
|
134
|
-
ceased_date: Dátum ukončenia
|
135
|
-
designation_date: Dátum konania
|
136
|
-
full_name: Meno
|
137
|
-
position: Pozícia
|
138
121
|
assembly_user_role:
|
139
122
|
roles:
|
140
123
|
valuator: Hodnotiteľ
|
@@ -151,9 +134,6 @@ sk:
|
|
151
134
|
assemblies_types:
|
152
135
|
form:
|
153
136
|
title: Názov
|
154
|
-
show:
|
155
|
-
assembly_type: Typ zhromaždenia
|
156
|
-
related_participatory_processes: Súvisiace participatívne procesy
|
157
137
|
events:
|
158
138
|
assemblies:
|
159
139
|
create_assembly_member:
|
data/config/locales/sl.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
sl:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
assemblies_type:
|
6
|
-
title: Naziv
|
7
5
|
assembly:
|
8
6
|
area_id: Področje
|
9
7
|
assembly_type: Vrsta združbe
|
@@ -43,7 +41,6 @@ sl:
|
|
43
41
|
scope_id: Obseg
|
44
42
|
scopes_enabled: Omogočeni obsegi
|
45
43
|
short_description: Kratek opis
|
46
|
-
show_statistics: Pokaži statistike
|
47
44
|
special_features: Posebne funkcije
|
48
45
|
subtitle: Podnapis
|
49
46
|
target: Kdor je prisostoval
|
@@ -135,13 +132,6 @@ sl:
|
|
135
132
|
success: Član uspešno kreiran v tej združbi.
|
136
133
|
destroy:
|
137
134
|
success: Član uspešno izbrisan v tej združbi.
|
138
|
-
edit:
|
139
|
-
update: Posodobi
|
140
|
-
new:
|
141
|
-
create: Ustvari
|
142
|
-
filters:
|
143
|
-
decidim_assemblies_type_id_eq:
|
144
|
-
label: Vrsta združbe
|
145
135
|
menu:
|
146
136
|
assemblies: Združbe
|
147
137
|
assemblies_submenu:
|
@@ -157,12 +147,6 @@ sl:
|
|
157
147
|
assemblies_types:
|
158
148
|
fields:
|
159
149
|
title: Naziv
|
160
|
-
assembly_member:
|
161
|
-
fields:
|
162
|
-
ceased_date: Datum prenehanja
|
163
|
-
designation_date: Datum imenovanja
|
164
|
-
full_name: Ime
|
165
|
-
position: Položaj
|
166
150
|
titles:
|
167
151
|
assemblies: Združbe
|
168
152
|
assemblies_types: Vrste združb
|
@@ -205,7 +189,6 @@ sl:
|
|
205
189
|
show:
|
206
190
|
assembly_type: Vrsta združbe
|
207
191
|
duration: Trajanje
|
208
|
-
related_participatory_processes: Povezani participativni procesi
|
209
192
|
help:
|
210
193
|
participatory_spaces:
|
211
194
|
assemblies:
|
data/config/locales/sq-AL.yml
CHANGED
@@ -50,7 +50,6 @@ sq:
|
|
50
50
|
scope_id: Qëllimi
|
51
51
|
scopes_enabled: Fushveprimet e aktivizuara
|
52
52
|
short_description: Përshkrim i shkurtër
|
53
|
-
show_statistics: Trego statistikat
|
54
53
|
slug: Identifikues URL-je
|
55
54
|
special_features: Karaktersitika të veçanta
|
56
55
|
subtitle: Nëntitull
|
@@ -182,7 +181,7 @@ sq:
|
|
182
181
|
'false': E papërfunduar
|
183
182
|
'true': Përfunduar
|
184
183
|
decidim_assemblies_type_id_eq:
|
185
|
-
label:
|
184
|
+
label: Tipi i asamblesë
|
186
185
|
search_placeholder:
|
187
186
|
full_name_or_user_name_or_user_nickname_cont: Kërko me emër ose nofkë
|
188
187
|
menu:
|
@@ -284,7 +283,7 @@ sq:
|
|
284
283
|
slug_help_html: 'Për gjenerimin e URL së kësaj asambleje përdoren URL slugs. Pranohen vetëm gërma, numra dhe viza horizontale, dhe duhet të fillojë me gërmë. Shembull: %{url}'
|
285
284
|
social_handlers: Rrjete sociale
|
286
285
|
title: Informacion i përgjithshëm
|
287
|
-
|
286
|
+
visibility: Vizibiliteti
|
288
287
|
assemblies_types:
|
289
288
|
form:
|
290
289
|
title: Modifiko tipin e asamblesë
|
@@ -298,6 +297,7 @@ sq:
|
|
298
297
|
form:
|
299
298
|
existing_user: Pjesëmarrës ekzistues
|
300
299
|
explanation: 'Udhëzime për imazhin:'
|
300
|
+
image_guide: Preferohet imazh me format portret (vertikal) pa tekst.
|
301
301
|
non_user: Mospjesëmarrës
|
302
302
|
non_user_avatar_help: Duhet të marrësh pëlqimin e personit para se ta publikosh si anëtar.
|
303
303
|
select_a_position: Zgjidh një pozicion
|
@@ -338,7 +338,7 @@ sq:
|
|
338
338
|
consultative_advisory: Këshilluese
|
339
339
|
executive: Ekzekutive
|
340
340
|
government: Qeverisja
|
341
|
-
others:
|
341
|
+
others: Tjetër
|
342
342
|
participatory: Pjesëmarrëse
|
343
343
|
working_group: Grup pune
|
344
344
|
content_blocks:
|
@@ -379,10 +379,9 @@ sq:
|
|
379
379
|
member_of:
|
380
380
|
member_of: Anëtar i
|
381
381
|
show:
|
382
|
-
assembly_type:
|
382
|
+
assembly_type: Tipi i asamblesë
|
383
383
|
duration: Kohëzgjatja
|
384
384
|
private_space: Kjo është asamble private
|
385
|
-
related_participatory_processes: Procese pjesëmarrëse të përafërta
|
386
385
|
social_networks_title: Vizito asamblenë në
|
387
386
|
assembly_members:
|
388
387
|
assembly_member:
|