decidim-assemblies 0.23.3 → 0.24.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_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
@@ -65,7 +65,7 @@
|
|
65
65
|
<% end %>
|
66
66
|
</td>
|
67
67
|
<td>
|
68
|
-
<%= l(assembly.
|
68
|
+
<%= l(assembly.created_at, format: :short) %>
|
69
69
|
</td>
|
70
70
|
<td class="table-list__state">
|
71
71
|
<% if assembly.private_space? %>
|
@@ -84,14 +84,20 @@
|
|
84
84
|
<td class="table-list__actions">
|
85
85
|
<% if allowed_to? :create, :assembly, assembly: assembly %>
|
86
86
|
<%= icon_link_to "data-transfer-download", assembly_export_path(assembly), t("actions.export", scope: "decidim.admin"), method: :post, class: "action-icon--export" %>
|
87
|
+
<% else %>
|
88
|
+
<span class="action-space icon"></span>
|
87
89
|
<% end %>
|
88
90
|
|
89
91
|
<% if allowed_to? :create, :assembly, assembly: assembly %>
|
90
92
|
<%= icon_link_to "clipboard", new_assembly_copy_path(assembly), t("actions.duplicate", scope: "decidim.admin"), class: "action-icon--copy" %>
|
93
|
+
<% else %>
|
94
|
+
<span class="action-space icon"></span>
|
91
95
|
<% end %>
|
92
96
|
|
93
97
|
<% if allowed_to? :update, :assembly, assembly: assembly %>
|
94
98
|
<%= icon_link_to "pencil", edit_assembly_path(assembly), t("actions.configure", scope: "decidim.admin"), class: "action-icon--new" %>
|
99
|
+
<% else %>
|
100
|
+
<span class="action-space icon"></span>
|
95
101
|
<% end %>
|
96
102
|
|
97
103
|
<% if assembly.children.count.positive? || allowed_to?(:create, :assembly) %>
|
@@ -99,10 +105,14 @@
|
|
99
105
|
url_for(query_params_with(parent_id_eq: assembly.id)),
|
100
106
|
t("decidim.admin.titles.assemblies"),
|
101
107
|
class: "action-icon--dial #{'highlighted' if assembly.children.count.positive?}" %>
|
108
|
+
<% else %>
|
109
|
+
<span class="action-space icon"></span>
|
102
110
|
<% end %>
|
103
111
|
|
104
112
|
<% if allowed_to? :preview, :assembly, assembly: assembly %>
|
105
113
|
<%= icon_link_to "eye", decidim_assemblies.assembly_path(assembly), t("actions.preview", scope: "decidim.admin"), class: "action-icon--preview" %>
|
114
|
+
<% else %>
|
115
|
+
<span class="action-space icon"></span>
|
106
116
|
<% end %>
|
107
117
|
</td>
|
108
118
|
</tr>
|
@@ -1,23 +1,5 @@
|
|
1
|
-
<% content_for :
|
2
|
-
|
3
|
-
<ul>
|
4
|
-
<% if allowed_to?(:read, :assembly_list) %>
|
5
|
-
<li <% if is_active_link?(decidim_admin_assemblies.assemblies_path) %> class="is-active" <% end %>>
|
6
|
-
<%= aria_selected_link_to I18n.t("menu.assemblies", scope: "decidim.admin"), decidim_admin_assemblies.assemblies_path %>
|
7
|
-
</li>
|
8
|
-
<% end %>
|
9
|
-
<% if allowed_to?(:manage, :assemblies_type) %>
|
10
|
-
<li <% if is_active_link?(decidim_admin_assemblies.assemblies_types_path) %> class="is-active" <% end %>>
|
11
|
-
<%= aria_selected_link_to I18n.t("menu.assemblies_types", scope: "decidim.admin"), decidim_admin_assemblies.assemblies_types_path %>
|
12
|
-
</li>
|
13
|
-
<% end %>
|
14
|
-
<% if allowed_to?(:read, :assemblies_setting) %>
|
15
|
-
<li <% if is_active_link?(decidim_admin_assemblies.edit_assemblies_settings_path) %> class="is-active" <% end %>>
|
16
|
-
<%= aria_selected_link_to I18n.t("menu.assemblies_settings", scope: "decidim.admin"), decidim_admin_assemblies.edit_assemblies_settings_path %>
|
17
|
-
</li>
|
18
|
-
<% end %>
|
19
|
-
</ul>
|
20
|
-
</div>
|
1
|
+
<% content_for :sidebar_menu_nav do %>
|
2
|
+
<%= admin_assemblies_menu.render %>
|
21
3
|
<% end %>
|
22
4
|
|
23
5
|
<%= render "layouts/decidim/admin/application" do %>
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<ul id="components-list">
|
14
14
|
<% current_participatory_space.components.each do |component| %>
|
15
15
|
<% if component.manifest.admin_engine && user_role_config.component_is_accessible?(component.manifest_name) %>
|
16
|
-
<li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_assemblies.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_assemblies.edit_component_permissions_path(current_participatory_space, component)) %> class="is-active" <% end %>>
|
16
|
+
<li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_assemblies.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_assemblies.edit_component_permissions_path(current_participatory_space, component)) || participatory_space_active_link?(component) %> class="is-active" <% end %>>
|
17
17
|
<%= link_to manage_component_path(component) do %>
|
18
18
|
<%= translated_attribute component.name %>
|
19
19
|
<% if component.primary_stat.present? %>
|
@@ -68,6 +68,7 @@
|
|
68
68
|
<%= aria_selected_link_to t("moderations", scope: "decidim.admin.menu.assemblies_submenu"), decidim_admin_assemblies.moderations_path(current_participatory_space) %>
|
69
69
|
</li>
|
70
70
|
<% end %>
|
71
|
+
<%= Decidim::Admin.view_hooks.render(:admin_secondary_nav, deep_dup) %>
|
71
72
|
</ul>
|
72
73
|
</div>
|
73
74
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -52,6 +52,7 @@ ca:
|
|
52
52
|
target: Qui participa
|
53
53
|
title: Títol
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Pes
|
55
56
|
youtube: YouTube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Aniversari
|
@@ -249,7 +250,6 @@ ca:
|
|
249
250
|
update: "%{user_name} ha actualitzat la configuració de les assemblees"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} ha creat l'assemblea %{resource_name}"
|
252
|
-
delete: "%{user_name} ha eliminat el component %{resource_name} de l'espai %{space_name}"
|
253
253
|
publish: "%{user_name} ha publicat el tipus d'assemblea %{resource_name}"
|
254
254
|
unpublish: "%{user_name} ha despublicat el tipus d'assemblea %{resource_name}"
|
255
255
|
update: "%{user_name} ha actualitzat el tipus d'assemblea %{resource_name}"
|
@@ -386,7 +386,6 @@ ca:
|
|
386
386
|
comments_count: Comentaris
|
387
387
|
debates_count: Debats
|
388
388
|
endorsements_count: Adhesions
|
389
|
-
headline: Activitat
|
390
389
|
meetings_count: Trobades
|
391
390
|
orders_count: Suports
|
392
391
|
pages_count: Pàgines
|
@@ -443,8 +442,6 @@ ca:
|
|
443
442
|
home:
|
444
443
|
hero:
|
445
444
|
participate_title: Participa als processos de la plataforma
|
446
|
-
sub_hero:
|
447
|
-
register_title: Registra't per crear un compte a la plataforma
|
448
445
|
participatory_processes:
|
449
446
|
pages:
|
450
447
|
home:
|
data/config/locales/cs.yml
CHANGED
@@ -52,6 +52,7 @@ cs:
|
|
52
52
|
target: Kdo se účastní
|
53
53
|
title: Titul
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Váha
|
55
56
|
youtube: Youtube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Narozeniny
|
@@ -255,7 +256,7 @@ cs:
|
|
255
256
|
update: "%{user_name} aktualizoval nastavení Shromáždění"
|
256
257
|
assembly_type:
|
257
258
|
create: "%{user_name} vytvořil typ shromáždění %{resource_name}"
|
258
|
-
delete: "%{user_name} odstranil
|
259
|
+
delete: "%{user_name} odstranil typ shromáždění %{resource_name}"
|
259
260
|
publish: "%{user_name} publikoval typ shromáždění %{resource_name}"
|
260
261
|
unpublish: "%{user_name} zneveřejnil typ shromáždění %{resource_name}"
|
261
262
|
update: "%{user_name} aktualizoval typ shromáždění %{resource_name}"
|
@@ -392,14 +393,19 @@ cs:
|
|
392
393
|
comments_count: Komentáře
|
393
394
|
debates_count: Debaty
|
394
395
|
endorsements_count: Schválení
|
395
|
-
|
396
|
+
followers_count: Sledující
|
397
|
+
headline: Statistiky
|
396
398
|
meetings_count: Setkání
|
399
|
+
no_stats: Zatím nejsou žádné statistiky.
|
397
400
|
orders_count: Hlasy
|
398
401
|
pages_count: Stránky
|
402
|
+
participants_count: Účastníci
|
399
403
|
posts_count: Příspěvky
|
404
|
+
processes_count: Procesy
|
400
405
|
projects_count: Projekty
|
401
406
|
proposals_count: Návrhy
|
402
407
|
results_count: Výsledky
|
408
|
+
supports_count: Podpory
|
403
409
|
surveys_count: Průzkumy
|
404
410
|
users_count: Účastníci
|
405
411
|
votes_count: Hlasy
|
@@ -450,7 +456,7 @@ cs:
|
|
450
456
|
hero:
|
451
457
|
participate_title: Účast na procesech platformy
|
452
458
|
sub_hero:
|
453
|
-
register_title:
|
459
|
+
register_title: Zaregistrujte se pro vytvoření účtu
|
454
460
|
participatory_processes:
|
455
461
|
pages:
|
456
462
|
home:
|
data/config/locales/de.yml
CHANGED
@@ -52,6 +52,7 @@ de:
|
|
52
52
|
target: Wer nimmt teil?
|
53
53
|
title: Titel
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Gewicht
|
55
56
|
youtube: Youtube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Geburtstag
|
@@ -249,7 +250,7 @@ de:
|
|
249
250
|
update: "%{user_name} hat die Gremieneinstellungen aktualisiert"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} hat den Gremientyp %{resource_name} erstellt"
|
252
|
-
delete: "%{user_name} hat
|
253
|
+
delete: "%{user_name} hat den Gremientyp %{resource_name} entfernt"
|
253
254
|
publish: "%{user_name} hat den Gremientyp %{resource_name} veröffentlicht"
|
254
255
|
unpublish: "%{user_name} hat den Gremientyp %{resource_name} auf \"unveröffentlicht\" gesetzt"
|
255
256
|
update: "%{user_name} hat den Gremientyp %{resource_name} aktualisiert"
|
@@ -386,14 +387,19 @@ de:
|
|
386
387
|
comments_count: Bemerkungen
|
387
388
|
debates_count: Debatten
|
388
389
|
endorsements_count: Empfehlungen
|
389
|
-
|
390
|
+
followers_count: Beobachter
|
391
|
+
headline: Statistiken
|
390
392
|
meetings_count: Meetings
|
393
|
+
no_stats: Noch keine Statistik vorhanden.
|
391
394
|
orders_count: Stimmen
|
392
395
|
pages_count: Seiten
|
396
|
+
participants_count: Teilnehmer
|
393
397
|
posts_count: Beiträge
|
398
|
+
processes_count: Prozesse
|
394
399
|
projects_count: Projekte
|
395
400
|
proposals_count: Vorschläge
|
396
401
|
results_count: Ergebnisse
|
402
|
+
supports_count: Unterstützungen
|
397
403
|
surveys_count: Umfragen
|
398
404
|
users_count: Teilnehmer
|
399
405
|
votes_count: Stimmen
|
@@ -444,7 +450,7 @@ de:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Nehmen Sie an den Prozessen der Plattform teil
|
446
452
|
sub_hero:
|
447
|
-
register_title:
|
453
|
+
register_title: Benutzerkonto registrieren
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|
data/config/locales/el.yml
CHANGED
@@ -246,7 +246,6 @@ el:
|
|
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}"
|
@@ -380,7 +379,6 @@ el:
|
|
380
379
|
comments_count: Σχόλια
|
381
380
|
debates_count: Συζητήσεις
|
382
381
|
endorsements_count: Επιδοκιμασίες
|
383
|
-
headline: Δραστηριότητα
|
384
382
|
meetings_count: Συσκέψεις
|
385
383
|
orders_count: Υποστηρίξεις
|
386
384
|
pages_count: Σελίδες
|
@@ -437,8 +435,6 @@ el:
|
|
437
435
|
home:
|
438
436
|
hero:
|
439
437
|
participate_title: Συμμετάσχετε στις διαδικασίες της πλατφόρμας
|
440
|
-
sub_hero:
|
441
|
-
register_title: Εγγραφείτε για να δημιουργήσετε έναν λογαριασμό στην πλατφόρμα
|
442
438
|
participatory_processes:
|
443
439
|
pages:
|
444
440
|
home:
|
data/config/locales/en.yml
CHANGED
@@ -53,6 +53,7 @@ en:
|
|
53
53
|
target: Who participates
|
54
54
|
title: Title
|
55
55
|
twitter: Twitter
|
56
|
+
weight: Weight
|
56
57
|
youtube: YouTube
|
57
58
|
assembly_member:
|
58
59
|
birthday: Birthday
|
@@ -250,7 +251,7 @@ en:
|
|
250
251
|
update: "%{user_name} updated the assemblies settings"
|
251
252
|
assembly_type:
|
252
253
|
create: "%{user_name} created the %{resource_name} assembly type"
|
253
|
-
delete: "%{user_name} removed the %{resource_name}
|
254
|
+
delete: "%{user_name} removed the %{resource_name} assembly type"
|
254
255
|
publish: "%{user_name} published the %{resource_name} assembly type"
|
255
256
|
unpublish: "%{user_name} unpublished the %{resource_name} assembly type"
|
256
257
|
update: "%{user_name} updated the %{resource_name} assembly type"
|
@@ -387,14 +388,19 @@ en:
|
|
387
388
|
comments_count: Comments
|
388
389
|
debates_count: Debates
|
389
390
|
endorsements_count: Endorsements
|
390
|
-
|
391
|
+
followers_count: Followers
|
392
|
+
headline: Statistics
|
391
393
|
meetings_count: Meetings
|
394
|
+
no_stats: There are no statistics yet.
|
392
395
|
orders_count: Supports
|
393
396
|
pages_count: Pages
|
397
|
+
participants_count: Participants
|
394
398
|
posts_count: Posts
|
399
|
+
processes_count: Processes
|
395
400
|
projects_count: Projects
|
396
401
|
proposals_count: Proposals
|
397
402
|
results_count: Results
|
403
|
+
supports_count: Supports
|
398
404
|
surveys_count: Surveys
|
399
405
|
users_count: Participants
|
400
406
|
votes_count: Supports
|
@@ -445,7 +451,7 @@ en:
|
|
445
451
|
hero:
|
446
452
|
participate_title: Participate to the platform's processes
|
447
453
|
sub_hero:
|
448
|
-
register_title: Sign up to create an account
|
454
|
+
register_title: Sign up to create an account
|
449
455
|
participatory_processes:
|
450
456
|
pages:
|
451
457
|
home:
|
data/config/locales/es-MX.yml
CHANGED
@@ -249,7 +249,6 @@ es-MX:
|
|
249
249
|
update: "%{user_name} ha actualizado la configuración de las asambleas"
|
250
250
|
assembly_type:
|
251
251
|
create: "%{user_name} creó el tipo de asamblea %{resource_name}"
|
252
|
-
delete: "%{user_name} eliminó al miembro %{resource_name} del tipo de asamblea %{space_name}"
|
253
252
|
publish: "%{user_name} publicó el tipo de asamblea %{resource_name}"
|
254
253
|
unpublish: "%{user_name} despublicó el tipo de asamblea %{resource_name}"
|
255
254
|
update: "%{user_name} actualizó el tipo de asamblea %{resource_name}"
|
@@ -386,7 +385,6 @@ es-MX:
|
|
386
385
|
comments_count: Comentarios
|
387
386
|
debates_count: Debates
|
388
387
|
endorsements_count: Adhesiones
|
389
|
-
headline: Actividad
|
390
388
|
meetings_count: Encuentros
|
391
389
|
orders_count: Votos
|
392
390
|
pages_count: Páginas
|
@@ -443,8 +441,6 @@ es-MX:
|
|
443
441
|
home:
|
444
442
|
hero:
|
445
443
|
participate_title: Participar en los procesos de la plataforma
|
446
|
-
sub_hero:
|
447
|
-
register_title: Regístrate para crear una cuenta en la plataforma
|
448
444
|
participatory_processes:
|
449
445
|
pages:
|
450
446
|
home:
|
data/config/locales/es-PY.yml
CHANGED
@@ -249,7 +249,6 @@ es-PY:
|
|
249
249
|
update: "%{user_name} ha actualizado la configuración de las asambleas"
|
250
250
|
assembly_type:
|
251
251
|
create: "%{user_name} creó el tipo de asamblea %{resource_name}"
|
252
|
-
delete: "%{user_name} eliminó al miembro %{resource_name} del tipo de asamblea %{space_name}"
|
253
252
|
publish: "%{user_name} publicó el tipo de asamblea %{resource_name}"
|
254
253
|
unpublish: "%{user_name} despublicó el tipo de asamblea %{resource_name}"
|
255
254
|
update: "%{user_name} actualizó el tipo de asamblea %{resource_name}"
|
@@ -386,7 +385,6 @@ es-PY:
|
|
386
385
|
comments_count: Comentarios
|
387
386
|
debates_count: Debates
|
388
387
|
endorsements_count: Adhesiones
|
389
|
-
headline: Actividad
|
390
388
|
meetings_count: Encuentros
|
391
389
|
orders_count: Votos
|
392
390
|
pages_count: Páginas
|
@@ -443,8 +441,6 @@ es-PY:
|
|
443
441
|
home:
|
444
442
|
hero:
|
445
443
|
participate_title: Participar en los procesos de la plataforma
|
446
|
-
sub_hero:
|
447
|
-
register_title: Regístrate para crear una cuenta en la plataforma
|
448
444
|
participatory_processes:
|
449
445
|
pages:
|
450
446
|
home:
|
data/config/locales/es.yml
CHANGED
@@ -249,7 +249,6 @@ es:
|
|
249
249
|
update: "%{user_name} ha actualizado la configuración de las asambleas"
|
250
250
|
assembly_type:
|
251
251
|
create: "%{user_name} creó el tipo de asamblea %{resource_name}"
|
252
|
-
delete: "%{user_name} eliminó al miembro %{resource_name} del tipo de asamblea %{space_name}"
|
253
252
|
publish: "%{user_name} publicó el tipo de asamblea %{resource_name}"
|
254
253
|
unpublish: "%{user_name} despublicó el tipo de asamblea %{resource_name}"
|
255
254
|
update: "%{user_name} actualizó el tipo de asamblea %{resource_name}"
|
@@ -386,7 +385,6 @@ es:
|
|
386
385
|
comments_count: Comentarios
|
387
386
|
debates_count: Debates
|
388
387
|
endorsements_count: Adhesiones
|
389
|
-
headline: Actividad
|
390
388
|
meetings_count: Encuentros
|
391
389
|
orders_count: Apoyos
|
392
390
|
pages_count: Páginas
|
@@ -443,8 +441,6 @@ es:
|
|
443
441
|
home:
|
444
442
|
hero:
|
445
443
|
participate_title: Participar en los procesos de la plataforma
|
446
|
-
sub_hero:
|
447
|
-
register_title: Regístrate para crear una cuenta en la plataforma
|
448
444
|
participatory_processes:
|
449
445
|
pages:
|
450
446
|
home:
|
data/config/locales/eu.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
@@ -52,6 +52,7 @@ fi-pl:
|
|
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-pl:
|
|
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-pl:
|
|
386
387
|
comments_count: Kommentteja
|
387
388
|
debates_count: Keskusteluja
|
388
389
|
endorsements_count: Suosituksia
|
390
|
+
followers_count: Seuraajat
|
389
391
|
headline: Tilastot
|
390
392
|
meetings_count: Tapaamisia
|
393
|
+
no_stats: Tilastoja ei vielä ole.
|
391
394
|
orders_count: Ääniä
|
392
395
|
pages_count: Sivuja
|
396
|
+
participants_count: Osallistujaa
|
393
397
|
posts_count: Artikkeleja
|
398
|
+
processes_count: Prosessia
|
394
399
|
projects_count: Suunnitelmia
|
395
400
|
proposals_count: Ehdotuksia
|
396
401
|
results_count: Tuloksia
|
402
|
+
supports_count: Kannatusta
|
397
403
|
surveys_count: Kyselyitä
|
398
404
|
users_count: Osallistujia
|
399
405
|
votes_count: Ääniä
|
@@ -444,7 +450,7 @@ fi-pl:
|
|
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:
|