decidim-assemblies 0.23.3 → 0.24.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/assemblies/assembly_m_cell.rb +2 -0
- data/app/cells/decidim/assemblies/statistic/show.erb +9 -0
- data/app/cells/decidim/assemblies/statistic_cell.rb +20 -0
- data/app/cells/decidim/assemblies/statistics/show.erb +17 -0
- data/app/cells/decidim/assemblies/statistics_cell.rb +18 -0
- data/app/commands/decidim/assemblies/admin/create_assembly.rb +1 -0
- data/app/commands/decidim/assemblies/admin/create_assembly_admin.rb +12 -72
- data/app/commands/decidim/assemblies/admin/update_assembly.rb +2 -1
- data/app/controllers/decidim/assemblies/admin/imports_controller.rb +14 -0
- data/app/controllers/decidim/assemblies/admin/moderations/reports_controller.rb +14 -0
- data/app/controllers/decidim/assemblies/assemblies_controller.rb +1 -1
- data/app/events/decidim/role_assigned_to_assembly_event.rb +1 -1
- data/app/forms/decidim/assemblies/admin/assembly_form.rb +1 -0
- data/app/helpers/decidim/assemblies/admin/assemblies_admin_menu_helper.rb +15 -0
- data/app/models/decidim/assembly.rb +3 -3
- data/app/presenters/decidim/assemblies/assembly_stats_presenter.rb +35 -25
- data/app/queries/decidim/assemblies/organization_assemblies.rb +1 -1
- data/app/queries/decidim/assemblies/organization_published_assemblies.rb +1 -1
- data/app/serializers/decidim/assemblies/assembly_serializer.rb +1 -0
- data/app/views/decidim/assemblies/admin/assemblies/_form.html.erb +4 -0
- data/app/views/decidim/assemblies/admin/assemblies/index.html.erb +11 -1
- data/app/views/decidim/assemblies/assemblies/show.html.erb +1 -1
- data/app/views/layouts/decidim/admin/assemblies.html.erb +2 -20
- data/app/views/layouts/decidim/admin/assembly.html.erb +2 -1
- data/config/locales/ar.yml +0 -1
- data/config/locales/ca.yml +1 -4
- data/config/locales/cs.yml +9 -3
- data/config/locales/de.yml +9 -3
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +9 -3
- data/config/locales/es-MX.yml +0 -4
- data/config/locales/es-PY.yml +0 -4
- data/config/locales/es.yml +0 -4
- data/config/locales/eu.yml +0 -1
- data/config/locales/fi-plain.yml +8 -2
- data/config/locales/fi.yml +8 -2
- data/config/locales/fr-CA.yml +9 -3
- data/config/locales/fr.yml +9 -3
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +0 -4
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +0 -4
- data/config/locales/ja.yml +0 -4
- data/config/locales/lv.yml +0 -4
- data/config/locales/nl.yml +12 -3
- data/config/locales/no.yml +0 -4
- data/config/locales/pl.yml +15 -3
- data/config/locales/pt-BR.yml +0 -1
- data/config/locales/pt.yml +0 -4
- data/config/locales/ro-RO.yml +14 -4
- data/config/locales/ru.yml +0 -1
- data/config/locales/sk.yml +0 -3
- data/config/locales/sl.yml +0 -1
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +1 -4
- data/config/locales/tr-TR.yml +0 -4
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -4
- data/db/migrate/20210204152393_add_weight_field_to_assembly.rb +7 -0
- data/lib/decidim/api/assemblies_type_type.rb +16 -0
- data/lib/decidim/api/assembly_member_type.rb +28 -0
- data/lib/decidim/api/assembly_type.rb +64 -0
- data/lib/decidim/assemblies.rb +1 -0
- data/lib/decidim/assemblies/admin_engine.rb +31 -1
- data/lib/decidim/assemblies/api.rb +9 -0
- data/lib/decidim/assemblies/engine.rb +3 -5
- data/lib/decidim/assemblies/participatory_space.rb +38 -38
- data/lib/decidim/assemblies/query_extensions.rb +39 -20
- data/lib/decidim/assemblies/test/factories.rb +5 -4
- data/lib/decidim/assemblies/version.rb +1 -1
- metadata +24 -16
- data/app/types/decidim/assemblies/assemblies_type_type.rb +0 -17
- data/app/types/decidim/assemblies/assembly_member_type.rb +0 -29
- data/app/types/decidim/assemblies/assembly_type.rb +0 -67
- data/app/views/decidim/assemblies/assemblies/_statistics.html.erb +0 -10
data/config/locales/fi.yml
CHANGED
@@ -52,6 +52,7 @@ fi:
|
|
52
52
|
target: Kuka osallistuu
|
53
53
|
title: Otsikko
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Painoarvo
|
55
56
|
youtube: YouTube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Syntymäpäivä
|
@@ -249,7 +250,7 @@ fi:
|
|
249
250
|
update: "%{user_name} päivitti ryhmän asetuksia"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} loi ryhmätyypin %{resource_name}"
|
252
|
-
delete: "%{user_name} poisti
|
253
|
+
delete: "%{user_name} poisti ryhmätyypin %{resource_name}"
|
253
254
|
publish: "%{user_name} julkaisi ryhmätyypin %{resource_name}"
|
254
255
|
unpublish: "%{user_name} lopetti ryhmätyypin %{resource_name} julkaisun"
|
255
256
|
update: "%{user_name} päivitti ryhmätyypin %{resource_name}"
|
@@ -386,14 +387,19 @@ fi:
|
|
386
387
|
comments_count: Kommenttia
|
387
388
|
debates_count: Keskustelua
|
388
389
|
endorsements_count: Suositusta
|
390
|
+
followers_count: Seuraajat
|
389
391
|
headline: Tilastot
|
390
392
|
meetings_count: Tapaamista
|
393
|
+
no_stats: Tilastoja ei vielä ole.
|
391
394
|
orders_count: Kannatusta
|
392
395
|
pages_count: Sivua
|
396
|
+
participants_count: Osallistujaa
|
393
397
|
posts_count: Artikkeleja
|
398
|
+
processes_count: Prosessia
|
394
399
|
projects_count: Suunnitelmaa
|
395
400
|
proposals_count: Ehdotusta
|
396
401
|
results_count: Tulosta
|
402
|
+
supports_count: Kannatusta
|
397
403
|
surveys_count: Kyselyä
|
398
404
|
users_count: Osallistujaa
|
399
405
|
votes_count: Kannatusta
|
@@ -444,7 +450,7 @@ fi:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Osallistu palvelun prosesseihin
|
446
452
|
sub_hero:
|
447
|
-
register_title:
|
453
|
+
register_title: Rekisteröidy luodaksesi itsellesi oman tilin
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -52,6 +52,7 @@ fr-CA:
|
|
52
52
|
target: Participants
|
53
53
|
title: Titre
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Rang d'affichage
|
55
56
|
youtube: Youtube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Date de naissance
|
@@ -249,7 +250,7 @@ fr-CA:
|
|
249
250
|
update: "%{user_name} a mis à jour les paramètres des assemblées"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} a créé le type d'assemblée %{resource_name}"
|
252
|
-
delete: "%{user_name} a
|
253
|
+
delete: "%{user_name} a supprimé le type d'assemblée %{resource_name}"
|
253
254
|
publish: "%{user_name} a publié le type d'assemblée %{resource_name}"
|
254
255
|
unpublish: "%{user_name} a dépublié le type d'assemblée %{resource_name}"
|
255
256
|
update: "%{user_name} a mis à jour le type d'assemblée %{resource_name}"
|
@@ -386,14 +387,19 @@ fr-CA:
|
|
386
387
|
comments_count: Commentaires
|
387
388
|
debates_count: Débats
|
388
389
|
endorsements_count: Soutiens
|
389
|
-
|
390
|
+
followers_count: Abonnés
|
391
|
+
headline: Statistiques
|
390
392
|
meetings_count: Rencontres
|
393
|
+
no_stats: Il n'y a pas encore de statistiques.
|
391
394
|
orders_count: Votes
|
392
395
|
pages_count: Pages
|
396
|
+
participants_count: Participants
|
393
397
|
posts_count: Publications
|
398
|
+
processes_count: Concertations
|
394
399
|
projects_count: Projets
|
395
400
|
proposals_count: Propositions
|
396
401
|
results_count: Réalisations
|
402
|
+
supports_count: Votes
|
397
403
|
surveys_count: Enquêtes
|
398
404
|
users_count: Participants
|
399
405
|
votes_count: Votes
|
@@ -444,7 +450,7 @@ fr-CA:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Participer aux processus de la plateforme
|
446
452
|
sub_hero:
|
447
|
-
register_title: Inscrivez-vous pour
|
453
|
+
register_title: Inscrivez-vous pour créer un compte
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|
data/config/locales/fr.yml
CHANGED
@@ -52,6 +52,7 @@ fr:
|
|
52
52
|
target: Participants
|
53
53
|
title: Titre
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Rang d'affichage
|
55
56
|
youtube: Youtube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Date de naissance
|
@@ -249,7 +250,7 @@ fr:
|
|
249
250
|
update: "%{user_name} a mis à jour les paramètres des assemblées"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} a créé le type d'assemblée %{resource_name}"
|
252
|
-
delete: "%{user_name} a
|
253
|
+
delete: "%{user_name} a supprimé le type d'assemblée %{resource_name}"
|
253
254
|
publish: "%{user_name} a publié le type d'assemblée %{resource_name}"
|
254
255
|
unpublish: "%{user_name} a dépublié le type d'assemblée %{resource_name}"
|
255
256
|
update: "%{user_name} a mis à jour le type d'assemblée %{resource_name}"
|
@@ -386,14 +387,19 @@ fr:
|
|
386
387
|
comments_count: Commentaires
|
387
388
|
debates_count: Débats
|
388
389
|
endorsements_count: Soutiens
|
389
|
-
|
390
|
+
followers_count: Abonnés
|
391
|
+
headline: Statistiques
|
390
392
|
meetings_count: Rencontres
|
393
|
+
no_stats: Il n'y a pas encore de statistiques.
|
391
394
|
orders_count: Votes
|
392
395
|
pages_count: Pages
|
396
|
+
participants_count: Participants
|
393
397
|
posts_count: Publications
|
398
|
+
processes_count: Concertations
|
394
399
|
projects_count: Projets
|
395
400
|
proposals_count: Propositions
|
396
401
|
results_count: Réalisations
|
402
|
+
supports_count: Votes
|
397
403
|
surveys_count: Enquêtes
|
398
404
|
users_count: Participants
|
399
405
|
votes_count: Votes
|
@@ -444,7 +450,7 @@ fr:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Participer aux processus de la plateforme
|
446
452
|
sub_hero:
|
447
|
-
register_title: Inscrivez-vous pour
|
453
|
+
register_title: Inscrivez-vous pour créer un compte
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|
data/config/locales/gl.yml
CHANGED
data/config/locales/hu.yml
CHANGED
@@ -246,7 +246,6 @@ hu:
|
|
246
246
|
update: "%{user_name} frissítette a gyűlések beállításait"
|
247
247
|
assembly_type:
|
248
248
|
create: "%{user_name} létrehozta a(z) %{resource_name} gyűlés típust"
|
249
|
-
delete: "%{user_name} törölte a(z) %{resource_name} nevű tagot a(z) %{space_name} gyűlés típusból"
|
250
249
|
publish: "%{user_name} közzétette a(z) %{resource_name} gyűlés típust"
|
251
250
|
unpublish: "%{user_name} visszavonta a(z) %{resource_name} gyűlés típus közzétételét"
|
252
251
|
update: "%{user_name} frissítette a(z) %{resource_name} gyűlés típust"
|
@@ -379,7 +378,6 @@ hu:
|
|
379
378
|
comments_count: Hozzászólások
|
380
379
|
debates_count: Viták
|
381
380
|
endorsements_count: Jóváhagyások
|
382
|
-
headline: Tevékenység
|
383
381
|
meetings_count: Találkozók
|
384
382
|
orders_count: Támogatja
|
385
383
|
pages_count: Oldalak
|
@@ -423,8 +421,6 @@ hu:
|
|
423
421
|
home:
|
424
422
|
hero:
|
425
423
|
participate_title: Részvétel a platform folyamataiban
|
426
|
-
sub_hero:
|
427
|
-
register_title: Feliratkozás a platformon a fiók létesítéséhez
|
428
424
|
participatory_processes:
|
429
425
|
pages:
|
430
426
|
home:
|
data/config/locales/id-ID.yml
CHANGED
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -249,7 +249,6 @@ it:
|
|
249
249
|
update: "%{user_name} ha aggiornato le impostazioni delle assemblee"
|
250
250
|
assembly_type:
|
251
251
|
create: "%{user_name} ha creato il tipo di assemblea %{resource_name}"
|
252
|
-
delete: "%{user_name} ha rimosso il %{resource_name} membro dal tipo di assemblea %{space_name}"
|
253
252
|
publish: "%{user_name} ha creato il tipo di assemblea %{resource_name}"
|
254
253
|
unpublish: "%{user_name} ha rimosso la pubblicazione del tipo di assemblea %{resource_name}"
|
255
254
|
update: "%{user_name} ha aggiornato il tipo di assemblea %{resource_name}"
|
@@ -386,7 +385,6 @@ it:
|
|
386
385
|
comments_count: Commenti
|
387
386
|
debates_count: Discussioni
|
388
387
|
endorsements_count: Mi piace
|
389
|
-
headline: Attività
|
390
388
|
meetings_count: Riunioni
|
391
389
|
orders_count: Supporti
|
392
390
|
pages_count: Pagine
|
@@ -443,8 +441,6 @@ it:
|
|
443
441
|
home:
|
444
442
|
hero:
|
445
443
|
participate_title: Partecipa ai processi della piattaforma
|
446
|
-
sub_hero:
|
447
|
-
register_title: Iscriviti per creare un account sulla piattaforma
|
448
444
|
participatory_processes:
|
449
445
|
pages:
|
450
446
|
home:
|
data/config/locales/ja.yml
CHANGED
@@ -246,7 +246,6 @@ ja:
|
|
246
246
|
update: "%{user_name} が参加スペース設定を更新しました"
|
247
247
|
assembly_type:
|
248
248
|
create: "%{user_name} が %{resource_name} 参加スペース種別を作成しました"
|
249
|
-
delete: "%{user_name} が %{resource_name} 参加スペース種別から %{space_name} メンバーを削除しました"
|
250
249
|
publish: "%{user_name} が %{resource_name} 参加スペース種別を公開しました"
|
251
250
|
unpublish: "%{user_name} が %{resource_name} 参加スペース種別を非公開にしました"
|
252
251
|
update: "%{user_name} が %{resource_name} 参加スペース種別を更新しました"
|
@@ -383,7 +382,6 @@ ja:
|
|
383
382
|
comments_count: コメント
|
384
383
|
debates_count: ディベート
|
385
384
|
endorsements_count: 支持
|
386
|
-
headline: アクティビティ
|
387
385
|
meetings_count: ミーティング
|
388
386
|
orders_count: サポート
|
389
387
|
pages_count: ページ
|
@@ -440,8 +438,6 @@ ja:
|
|
440
438
|
home:
|
441
439
|
hero:
|
442
440
|
participate_title: プラットフォームの参加型プロセスに参加する
|
443
|
-
sub_hero:
|
444
|
-
register_title: アカウントを作成するにはユーザ登録してください
|
445
441
|
participatory_processes:
|
446
442
|
pages:
|
447
443
|
home:
|
data/config/locales/lv.yml
CHANGED
@@ -229,7 +229,6 @@ lv:
|
|
229
229
|
update: "%{user_name} atjaunināja asamblejas iestatījumus"
|
230
230
|
assembly_type:
|
231
231
|
create: "%{user_name} izveidoja %{resource_name} asamblejas veidu"
|
232
|
-
delete: "%{user_name} noņēma dalībnieku %{resource_name} no %{space_name} asamblejas veida"
|
233
232
|
publish: "%{user_name} publicēja %{resource_name} asamblejas veidu"
|
234
233
|
unpublish: "%{user_name} atcēla %{resource_name} asamblejas veida publicēšanu"
|
235
234
|
update: "%{user_name} atjaunināja %{resource_name} asamblejas veidu"
|
@@ -358,7 +357,6 @@ lv:
|
|
358
357
|
assemblies_count: Asambleja
|
359
358
|
comments_count: Komentāri
|
360
359
|
endorsements_count: Atbalsts
|
361
|
-
headline: Aktivitāte
|
362
360
|
meetings_count: Sanāksmes
|
363
361
|
orders_count: Atbalsta
|
364
362
|
pages_count: Lapas
|
@@ -415,8 +413,6 @@ lv:
|
|
415
413
|
home:
|
416
414
|
hero:
|
417
415
|
participate_title: Piedalieties platformā notiekošajos procesos
|
418
|
-
sub_hero:
|
419
|
-
register_title: Reģistrējieties, lai izveidotu kontu platformā
|
420
416
|
participatory_processes:
|
421
417
|
pages:
|
422
418
|
home:
|
data/config/locales/nl.yml
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
nl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
assemblies_setting:
|
5
|
+
enable_organization_chart: Organigram tonen
|
4
6
|
assembly:
|
5
7
|
area_id: Onderwerp
|
6
8
|
assembly_type: Groepstype
|
@@ -50,6 +52,7 @@ nl:
|
|
50
52
|
target: Wie neemt deel
|
51
53
|
title: Titel
|
52
54
|
twitter: Twitter
|
55
|
+
weight: Gewicht
|
53
56
|
youtube: YouTube
|
54
57
|
assembly_member:
|
55
58
|
birthday: Geboortedatum
|
@@ -60,6 +63,7 @@ nl:
|
|
60
63
|
full_name: Volledige naam
|
61
64
|
gender: Geslacht
|
62
65
|
position: Positie
|
66
|
+
user_id: Gebruiker
|
63
67
|
assembly_user_role:
|
64
68
|
email: E-mail
|
65
69
|
name: Naam
|
@@ -246,7 +250,7 @@ nl:
|
|
246
250
|
update: "%{user_name} heeft de instellingen van de Buurderijen bijgewerkt"
|
247
251
|
assembly_type:
|
248
252
|
create: "%{user_name} heeft de groep %{resource_name} bijgewerkt"
|
249
|
-
delete: "%{user_name}
|
253
|
+
delete: "%{user_name} heeft het groepstype %{resource_name} bijgewerkt"
|
250
254
|
publish: "%{user_name} heeft de %{resource_name} groep gepubliceerd"
|
251
255
|
unpublish: "%{user_name} heeft de publicatie van de groep %{resource_name} ongedaan gemaakt"
|
252
256
|
update: "%{user_name} heeft de groep %{resource_name} bijgewerkt"
|
@@ -383,14 +387,19 @@ nl:
|
|
383
387
|
comments_count: Reacties
|
384
388
|
debates_count: Debatten
|
385
389
|
endorsements_count: Aanbevelingen
|
386
|
-
|
390
|
+
followers_count: Volgers
|
391
|
+
headline: Statistieken
|
387
392
|
meetings_count: Events
|
393
|
+
no_stats: Er zijn nog geen statistieken.
|
388
394
|
orders_count: Ondersteunt
|
389
395
|
pages_count: Pagina's
|
396
|
+
participants_count: Deelnemers
|
390
397
|
posts_count: Berichten
|
398
|
+
processes_count: Processen
|
391
399
|
projects_count: Projecten
|
392
400
|
proposals_count: Voorstellen
|
393
401
|
results_count: Resultaten
|
402
|
+
supports_count: Aantal keer gesteund
|
394
403
|
surveys_count: Enquêtes
|
395
404
|
users_count: Deelnemers
|
396
405
|
votes_count: Ondersteunt
|
@@ -441,7 +450,7 @@ nl:
|
|
441
450
|
hero:
|
442
451
|
participate_title: Neem deel aan de processen van het platform
|
443
452
|
sub_hero:
|
444
|
-
register_title:
|
453
|
+
register_title: Meld je aan voor een account
|
445
454
|
participatory_processes:
|
446
455
|
pages:
|
447
456
|
home:
|
data/config/locales/no.yml
CHANGED
@@ -246,7 +246,6 @@
|
|
246
246
|
update: "%{user_name} oppdaterte forsamlingens innstillinger"
|
247
247
|
assembly_type:
|
248
248
|
create: "%{user_name} opprettet %{resource_name} forsamlingstypen"
|
249
|
-
delete: "%{user_name} fjernet %{resource_name} medlemmet fra %{space_name} forsamlingstypen"
|
250
249
|
publish: "%{user_name} publiserte %{resource_name} forsamlingstypen"
|
251
250
|
unpublish: "%{user_name} avpubliserte %{resource_name} forsamlingstypen"
|
252
251
|
update: "%{user_name} oppdaterte %{resource_name} forsamlingstypen"
|
@@ -383,7 +382,6 @@
|
|
383
382
|
comments_count: Kommentarer
|
384
383
|
debates_count: Debatter
|
385
384
|
endorsements_count: Påtegnelser
|
386
|
-
headline: Aktivitet
|
387
385
|
meetings_count: Møter
|
388
386
|
orders_count: Støtter
|
389
387
|
pages_count: Sider
|
@@ -440,8 +438,6 @@
|
|
440
438
|
home:
|
441
439
|
hero:
|
442
440
|
participate_title: Delta i plattformens prosesser
|
443
|
-
sub_hero:
|
444
|
-
register_title: Registrer deg for å opprette en konto på plattformen
|
445
441
|
participatory_processes:
|
446
442
|
pages:
|
447
443
|
home:
|
data/config/locales/pl.yml
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
pl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
assemblies_setting:
|
5
|
+
enable_organization_chart: Włącz wykres dla organizacji
|
4
6
|
assembly:
|
5
7
|
area_id: Kategoria
|
6
8
|
assembly_type: Typ zespołu
|
@@ -50,6 +52,7 @@ pl:
|
|
50
52
|
target: Do kogo kierowane
|
51
53
|
title: Tytuł
|
52
54
|
twitter: Twitter
|
55
|
+
weight: Kolejność na stronie
|
53
56
|
youtube: YouTube
|
54
57
|
assembly_member:
|
55
58
|
birthday: Urodziny
|
@@ -60,6 +63,7 @@ pl:
|
|
60
63
|
full_name: Pełne imię i nazwisko
|
61
64
|
gender: Płeć
|
62
65
|
position: Pozycja
|
66
|
+
user_id: Użytkownik
|
63
67
|
assembly_user_role:
|
64
68
|
email: E-mail
|
65
69
|
name: Nazwa
|
@@ -252,7 +256,7 @@ pl:
|
|
252
256
|
update: "%{user_name} zaktualizował(a) ustawienia zespołów"
|
253
257
|
assembly_type:
|
254
258
|
create: "%{user_name} utworzył(a) typ zespołu %{resource_name}"
|
255
|
-
delete: "%{user_name} usunął/usunęła typ zespołu %{resource_name}
|
259
|
+
delete: "%{user_name} usunął/usunęła typ zespołu %{resource_name}"
|
256
260
|
publish: "%{user_name} opublikował(a) typ zespołu %{resource_name}"
|
257
261
|
unpublish: "%{user_name} anulował(a) publikację typu zespołu %{resource_name}"
|
258
262
|
update: "%{user_name} zaktualizował(a) typ zespołu %{resource_name}"
|
@@ -311,6 +315,9 @@ pl:
|
|
311
315
|
content_blocks:
|
312
316
|
highlighted_assemblies:
|
313
317
|
max_results: Maksymalna ilość elementów do pokazania
|
318
|
+
new_import:
|
319
|
+
accepted_types:
|
320
|
+
json: JSON
|
314
321
|
assembly_members:
|
315
322
|
index:
|
316
323
|
members: Członkowie
|
@@ -386,14 +393,19 @@ pl:
|
|
386
393
|
comments_count: Komentarze
|
387
394
|
debates_count: Debaty
|
388
395
|
endorsements_count: Rekomendacje
|
389
|
-
|
396
|
+
followers_count: Obserwujący
|
397
|
+
headline: Statystyki
|
390
398
|
meetings_count: Spotkania
|
399
|
+
no_stats: Nie ma jeszcze żadnych statystyk.
|
391
400
|
orders_count: Wsparcia
|
392
401
|
pages_count: Strony
|
402
|
+
participants_count: Użytkownicy
|
393
403
|
posts_count: Posty
|
404
|
+
processes_count: Procesy
|
394
405
|
projects_count: Projekty
|
395
406
|
proposals_count: Propozycje
|
396
407
|
results_count: Wyniki
|
408
|
+
supports_count: Podpisy
|
397
409
|
surveys_count: Ankiety
|
398
410
|
users_count: Użytkownicy
|
399
411
|
votes_count: Głosy
|
@@ -444,7 +456,7 @@ pl:
|
|
444
456
|
hero:
|
445
457
|
participate_title: Weź udział w procesach udostępnionych na platformie
|
446
458
|
sub_hero:
|
447
|
-
register_title:
|
459
|
+
register_title: Zapisz się by utworzyć konto
|
448
460
|
participatory_processes:
|
449
461
|
pages:
|
450
462
|
home:
|
data/config/locales/pt-BR.yml
CHANGED
data/config/locales/pt.yml
CHANGED
@@ -246,7 +246,6 @@ pt:
|
|
246
246
|
update: "%{user_name} atualizou as definições de reuniões"
|
247
247
|
assembly_type:
|
248
248
|
create: "%{user_name} criou o tipo de reunião %{resource_name}"
|
249
|
-
delete: "%{user_name} removeu o membro %{resource_name} do tipo de reunião %{space_name}"
|
250
249
|
publish: "%{user_name} publicou o tipo de reunião %{resource_name}"
|
251
250
|
unpublish: "%{user_name} removeu a publicação do tipo de reunião %{resource_name}"
|
252
251
|
update: "%{user_name} atualizou o tipo de reunião %{resource_name}"
|
@@ -380,7 +379,6 @@ pt:
|
|
380
379
|
comments_count: Comentários
|
381
380
|
debates_count: Debates
|
382
381
|
endorsements_count: Endossos
|
383
|
-
headline: Atividade
|
384
382
|
meetings_count: Reuniões
|
385
383
|
orders_count: Votos
|
386
384
|
pages_count: Páginas
|
@@ -437,8 +435,6 @@ pt:
|
|
437
435
|
home:
|
438
436
|
hero:
|
439
437
|
participate_title: Participar nos processos da plataforma
|
440
|
-
sub_hero:
|
441
|
-
register_title: Inscreva-se para criar uma conta na plataforma
|
442
438
|
participatory_processes:
|
443
439
|
pages:
|
444
440
|
home:
|