decidim-assemblies 0.23.3 → 0.24.1
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 +3 -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 +2 -1
- data/config/locales/ca.yml +9 -3
- data/config/locales/cs.yml +9 -3
- data/config/locales/de.yml +9 -3
- data/config/locales/el.yml +2 -4
- data/config/locales/en.yml +9 -3
- data/config/locales/es-MX.yml +9 -3
- data/config/locales/es-PY.yml +9 -3
- data/config/locales/es.yml +9 -3
- data/config/locales/eu.yml +2 -1
- data/config/locales/fi-plain.yml +9 -3
- data/config/locales/fi.yml +9 -3
- data/config/locales/fr-CA.yml +9 -3
- data/config/locales/fr.yml +9 -3
- data/config/locales/gl.yml +59 -1
- data/config/locales/hu.yml +2 -4
- data/config/locales/id-ID.yml +2 -1
- data/config/locales/is-IS.yml +1 -1
- data/config/locales/it.yml +2 -4
- data/config/locales/ja.yml +2 -4
- data/config/locales/lv.yml +2 -4
- data/config/locales/nl.yml +12 -3
- data/config/locales/no.yml +2 -4
- data/config/locales/pl.yml +21 -9
- data/config/locales/pt-BR.yml +2 -1
- data/config/locales/pt.yml +2 -4
- data/config/locales/ro-RO.yml +149 -102
- data/config/locales/ru.yml +3 -2
- data/config/locales/sk.yml +0 -3
- data/config/locales/sl.yml +2 -1
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +11 -3
- data/config/locales/tr-TR.yml +2 -4
- data/config/locales/uk.yml +3 -2
- data/config/locales/zh-CN.yml +2 -4
- data/db/migrate/20210204152393_add_weight_field_to_assembly.rb +7 -0
- data/db/migrate/20210310120444_add_followable_counter_cache_to_assemblies.rb +16 -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 +23 -14
- 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
@@ -353,13 +353,14 @@ ar:
|
|
353
353
|
comments_count: تعليقات
|
354
354
|
debates_count: مناقشات
|
355
355
|
endorsements_count: موافقات
|
356
|
-
headline: نشاط
|
357
356
|
meetings_count: اجتماعات
|
358
357
|
orders_count: تأييدات
|
359
358
|
pages_count: صفحات
|
359
|
+
participants_count: مشارك
|
360
360
|
projects_count: مشاريع
|
361
361
|
proposals_count: اقتراحات
|
362
362
|
results_count: نتائج
|
363
|
+
supports_count: تأييدات
|
363
364
|
surveys_count: دراسات استقصائية
|
364
365
|
users_count: مشارك
|
365
366
|
votes_count: الدعم
|
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,7 @@ 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
|
253
|
+
delete: "%{user_name} ha eliminat el tipus d'assemblea %{resource_name}"
|
253
254
|
publish: "%{user_name} ha publicat el tipus d'assemblea %{resource_name}"
|
254
255
|
unpublish: "%{user_name} ha despublicat el tipus d'assemblea %{resource_name}"
|
255
256
|
update: "%{user_name} ha actualitzat el tipus d'assemblea %{resource_name}"
|
@@ -386,14 +387,19 @@ ca:
|
|
386
387
|
comments_count: Comentaris
|
387
388
|
debates_count: Debats
|
388
389
|
endorsements_count: Adhesions
|
389
|
-
|
390
|
+
followers_count: Seguidors
|
391
|
+
headline: Estadístiques
|
390
392
|
meetings_count: Trobades
|
393
|
+
no_stats: Encara no hi ha estadístiques.
|
391
394
|
orders_count: Suports
|
392
395
|
pages_count: Pàgines
|
396
|
+
participants_count: Participants
|
393
397
|
posts_count: Publicacions
|
398
|
+
processes_count: Processos
|
394
399
|
projects_count: Projectes
|
395
400
|
proposals_count: Propostes
|
396
401
|
results_count: Resultats
|
402
|
+
supports_count: Suports
|
397
403
|
surveys_count: Enquestes
|
398
404
|
users_count: Participants
|
399
405
|
votes_count: Suports
|
@@ -444,7 +450,7 @@ ca:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Participa als processos de la plataforma
|
446
452
|
sub_hero:
|
447
|
-
register_title: Registra't
|
453
|
+
register_title: Registra't
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
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: Hlasy
|
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: Stimmen
|
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,14 +379,15 @@ 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: Σελίδες
|
385
|
+
participants_count: Συμμετέχοντες
|
387
386
|
posts_count: Δημοσιεύσεις
|
388
387
|
projects_count: Έργα
|
389
388
|
proposals_count: Προτάσεις
|
390
389
|
results_count: Αποτελέσματα
|
390
|
+
supports_count: Υποστηρίξεις
|
391
391
|
surveys_count: Έρευνες
|
392
392
|
users_count: Συμμετέχοντες
|
393
393
|
votes_count: Υποστηρίξεις
|
@@ -437,8 +437,6 @@ el:
|
|
437
437
|
home:
|
438
438
|
hero:
|
439
439
|
participate_title: Συμμετάσχετε στις διαδικασίες της πλατφόρμας
|
440
|
-
sub_hero:
|
441
|
-
register_title: Εγγραφείτε για να δημιουργήσετε έναν λογαριασμό στην πλατφόρμα
|
442
440
|
participatory_processes:
|
443
441
|
pages:
|
444
442
|
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
@@ -52,6 +52,7 @@ es-MX:
|
|
52
52
|
target: Quién participa
|
53
53
|
title: Título
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Peso
|
55
56
|
youtube: Youtube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Cumpleaños
|
@@ -249,7 +250,7 @@ es-MX:
|
|
249
250
|
update: "%{user_name} ha actualizado la configuración de las asambleas"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} creó el tipo de asamblea %{resource_name}"
|
252
|
-
delete: "%{user_name} eliminó
|
253
|
+
delete: "%{user_name} eliminó el tipo de asamblea %{resource_name}"
|
253
254
|
publish: "%{user_name} publicó el tipo de asamblea %{resource_name}"
|
254
255
|
unpublish: "%{user_name} despublicó el tipo de asamblea %{resource_name}"
|
255
256
|
update: "%{user_name} actualizó el tipo de asamblea %{resource_name}"
|
@@ -386,14 +387,19 @@ es-MX:
|
|
386
387
|
comments_count: Comentarios
|
387
388
|
debates_count: Debates
|
388
389
|
endorsements_count: Adhesiones
|
389
|
-
|
390
|
+
followers_count: Seguidoras
|
391
|
+
headline: Estatísticas
|
390
392
|
meetings_count: Encuentros
|
393
|
+
no_stats: No hay estadísticas aún.
|
391
394
|
orders_count: Votos
|
392
395
|
pages_count: Páginas
|
396
|
+
participants_count: Participantes
|
393
397
|
posts_count: Publicaciones
|
398
|
+
processes_count: Procesos
|
394
399
|
projects_count: Proyectos
|
395
400
|
proposals_count: Propuestas
|
396
401
|
results_count: Resultados
|
402
|
+
supports_count: Votos
|
397
403
|
surveys_count: Encuestas
|
398
404
|
users_count: Participantes
|
399
405
|
votes_count: Soportes
|
@@ -444,7 +450,7 @@ es-MX:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Participar en los procesos de la plataforma
|
446
452
|
sub_hero:
|
447
|
-
register_title:
|
453
|
+
register_title: Inicia sesión o crea una cuenta
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|
data/config/locales/es-PY.yml
CHANGED
@@ -52,6 +52,7 @@ es-PY:
|
|
52
52
|
target: Quién participa
|
53
53
|
title: Título
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Peso
|
55
56
|
youtube: Youtube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Cumpleaños
|
@@ -249,7 +250,7 @@ es-PY:
|
|
249
250
|
update: "%{user_name} ha actualizado la configuración de las asambleas"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} creó el tipo de asamblea %{resource_name}"
|
252
|
-
delete: "%{user_name} eliminó
|
253
|
+
delete: "%{user_name} eliminó el tipo de asamblea %{resource_name}"
|
253
254
|
publish: "%{user_name} publicó el tipo de asamblea %{resource_name}"
|
254
255
|
unpublish: "%{user_name} despublicó el tipo de asamblea %{resource_name}"
|
255
256
|
update: "%{user_name} actualizó el tipo de asamblea %{resource_name}"
|
@@ -386,14 +387,19 @@ es-PY:
|
|
386
387
|
comments_count: Comentarios
|
387
388
|
debates_count: Debates
|
388
389
|
endorsements_count: Adhesiones
|
389
|
-
|
390
|
+
followers_count: Seguidoras
|
391
|
+
headline: Estatísticas
|
390
392
|
meetings_count: Encuentros
|
393
|
+
no_stats: No hay estadísticas aún.
|
391
394
|
orders_count: Votos
|
392
395
|
pages_count: Páginas
|
396
|
+
participants_count: Participantes
|
393
397
|
posts_count: Publicaciones
|
398
|
+
processes_count: Procesos
|
394
399
|
projects_count: Proyectos
|
395
400
|
proposals_count: Propuestas
|
396
401
|
results_count: Resultados
|
402
|
+
supports_count: Votos
|
397
403
|
surveys_count: Encuestas
|
398
404
|
users_count: Participantes
|
399
405
|
votes_count: Soportes
|
@@ -444,7 +450,7 @@ es-PY:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Participar en los procesos de la plataforma
|
446
452
|
sub_hero:
|
447
|
-
register_title:
|
453
|
+
register_title: Inicia sesión o crea una cuenta
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|
data/config/locales/es.yml
CHANGED
@@ -52,6 +52,7 @@ es:
|
|
52
52
|
target: Quién participa
|
53
53
|
title: Título
|
54
54
|
twitter: Twitter
|
55
|
+
weight: Peso
|
55
56
|
youtube: YouTube
|
56
57
|
assembly_member:
|
57
58
|
birthday: Cumpleaños
|
@@ -249,7 +250,7 @@ es:
|
|
249
250
|
update: "%{user_name} ha actualizado la configuración de las asambleas"
|
250
251
|
assembly_type:
|
251
252
|
create: "%{user_name} creó el tipo de asamblea %{resource_name}"
|
252
|
-
delete: "%{user_name} eliminó
|
253
|
+
delete: "%{user_name} eliminó el tipo de asamblea %{resource_name}"
|
253
254
|
publish: "%{user_name} publicó el tipo de asamblea %{resource_name}"
|
254
255
|
unpublish: "%{user_name} despublicó el tipo de asamblea %{resource_name}"
|
255
256
|
update: "%{user_name} actualizó el tipo de asamblea %{resource_name}"
|
@@ -386,14 +387,19 @@ es:
|
|
386
387
|
comments_count: Comentarios
|
387
388
|
debates_count: Debates
|
388
389
|
endorsements_count: Adhesiones
|
389
|
-
|
390
|
+
followers_count: Seguidoras
|
391
|
+
headline: Estatísticas
|
390
392
|
meetings_count: Encuentros
|
393
|
+
no_stats: No hay estadísticas aún.
|
391
394
|
orders_count: Apoyos
|
392
395
|
pages_count: Páginas
|
396
|
+
participants_count: Participantes
|
393
397
|
posts_count: Publicaciones
|
398
|
+
processes_count: Procesos
|
394
399
|
projects_count: Proyectos
|
395
400
|
proposals_count: Propuestas
|
396
401
|
results_count: Resultados
|
402
|
+
supports_count: Apoyos
|
397
403
|
surveys_count: Encuestas
|
398
404
|
users_count: Participantes
|
399
405
|
votes_count: Apoyos
|
@@ -444,7 +450,7 @@ es:
|
|
444
450
|
hero:
|
445
451
|
participate_title: Participar en los procesos de la plataforma
|
446
452
|
sub_hero:
|
447
|
-
register_title:
|
453
|
+
register_title: Inicia sesión o crea una cuenta
|
448
454
|
participatory_processes:
|
449
455
|
pages:
|
450
456
|
home:
|