decidim-admin 0.8.4 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/README.md +1 -1
- data/app/assets/javascripts/decidim/admin/application.js.es6 +5 -2
- data/app/assets/stylesheets/decidim/admin/_decidim.scss +2 -5
- data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +4 -4
- data/app/assets/stylesheets/decidim/admin/extra/_cards.scss +3 -2
- data/app/assets/stylesheets/decidim/admin/extra/_categories.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_dropdown_inverted.scss +8 -1
- data/app/assets/stylesheets/decidim/admin/extra/_label-required.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_login.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/extra/_quill.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/extra/_select_multiple.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_sort.scss +5 -4
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +17 -7
- data/app/assets/stylesheets/decidim/admin/modules/_action-icon.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +6 -2
- data/app/assets/stylesheets/decidim/admin/modules/_callouts.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +12 -0
- data/app/assets/stylesheets/decidim/admin/modules/_char-counter.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/modules/_forms.scss +5 -1
- data/app/assets/stylesheets/decidim/admin/modules/_icons.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_layout.scss +9 -1
- data/app/assets/stylesheets/decidim/admin/modules/_main-nav.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/modules/_process-header.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +10 -5
- data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +7 -1
- data/app/assets/stylesheets/decidim/admin/modules/_tabs.scss +7 -0
- data/app/assets/stylesheets/decidim/admin/modules/_title-bar.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/modules/_user-login.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/plugins/_foundation-datepicker.scss +36 -36
- data/app/assets/stylesheets/decidim/admin/utils/_fontface.scss +22 -20
- data/app/assets/stylesheets/decidim/admin/utils/_helpers.scss +6 -6
- data/app/assets/stylesheets/decidim/admin/utils/_keyframes.scss +6 -6
- data/app/assets/stylesheets/decidim/admin/utils/_mixins.scss +2 -3
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +406 -129
- data/app/assets/stylesheets/decidim/admin/utils/_toggle-expand.scss +1 -0
- data/app/commands/decidim/admin/create_attachment.rb +13 -3
- data/app/commands/decidim/admin/create_feature.rb +1 -0
- data/app/commands/decidim/admin/create_managed_user.rb +20 -10
- data/app/commands/decidim/admin/impersonate_managed_user.rb +7 -9
- data/app/commands/decidim/admin/officialize_user.rb +47 -0
- data/app/commands/decidim/admin/unofficialize_user.rb +35 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +32 -5
- data/app/controllers/decidim/admin/categories_controller.rb +1 -1
- data/app/controllers/decidim/admin/features/base_controller.rb +1 -1
- data/app/controllers/decidim/admin/features_controller.rb +7 -0
- data/app/controllers/decidim/admin/managed_users/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users_controller.rb +23 -9
- data/app/controllers/decidim/admin/newsletters_controller.rb +2 -2
- data/app/controllers/decidim/admin/officializations_controller.rb +64 -0
- data/app/events/decidim/attachment_created_event.rb +25 -0
- data/app/events/decidim/feature_published_event.rb +27 -0
- data/app/events/decidim/participatory_process_step_activated_event.rb +31 -0
- data/app/forms/decidim/admin/managed_user_form.rb +0 -11
- data/app/forms/decidim/admin/officialization_form.rb +30 -0
- data/app/forms/decidim/admin/organization_appearance_form.rb +46 -1
- data/app/helpers/decidim/admin/application_helper.rb +1 -3
- data/app/models/decidim/admin/abilities/admin_ability.rb +1 -0
- data/app/models/decidim/admin/abilities/participatory_process_moderator_ability.rb +1 -1
- data/app/queries/decidim/admin/user_groups_evaluation.rb +9 -8
- data/app/queries/decidim/admin/users_officialization.rb +53 -0
- data/app/views/decidim/admin/managed_users/new.html.erb +5 -5
- data/app/views/decidim/admin/officializations/index.html.erb +82 -0
- data/app/views/decidim/admin/officializations/new.html.erb +18 -0
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +60 -0
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +1 -1
- data/app/views/layouts/decidim/admin/users.html.erb +5 -0
- data/config/locales/ca.yml +44 -2
- data/config/locales/en.yml +44 -1
- data/config/locales/es.yml +47 -5
- data/config/locales/eu.yml +46 -3
- data/config/locales/fi.yml +55 -12
- data/config/locales/fr.yml +45 -2
- data/config/locales/gl.yml +514 -0
- data/config/locales/it.yml +47 -4
- data/config/locales/nl.yml +47 -4
- data/config/locales/pl.yml +44 -1
- data/config/locales/pt-BR.yml +514 -0
- data/config/locales/pt.yml +106 -63
- data/config/locales/ru.yml +36 -6
- data/config/locales/sv.yml +514 -0
- data/config/locales/uk.yml +36 -8
- data/config/routes.rb +2 -0
- data/db/migrate/20171219154507_add_officialization_to_users.rb +10 -0
- data/lib/decidim/admin/engine.rb +1 -2
- data/lib/decidim/admin/test/manage_feature_permissions_examples.rb +0 -1
- data/lib/decidim/admin/test/manage_moderations_examples.rb +64 -0
- data/lib/decidim/admin/test.rb +5 -0
- data/lib/decidim/admin/version.rb +1 -1
- data/vendor/assets/javascripts/moment.min.js +1 -7
- metadata +37 -38
- data/app/assets/javascripts/decidim/admin/scopes.js.es6 +0 -20
- data/app/assets/javascripts/decidim/admin/select2.js.es6 +0 -8
- data/app/assets/stylesheets/decidim/admin/plugins/_select2.scss +0 -27
@@ -0,0 +1,18 @@
|
|
1
|
+
<h2 class="process-title-summary">
|
2
|
+
<%= t('.title', name: user.name) %>
|
3
|
+
</h2>
|
4
|
+
|
5
|
+
<%= decidim_form_for(@form, html: { class: "form new_officialization" }, url: officializations_path, method: :post) do |f| %>
|
6
|
+
<div class="card">
|
7
|
+
<div class="card-section">
|
8
|
+
<div class="row column">
|
9
|
+
<%= f.hidden_field :user_id %>
|
10
|
+
<%= f.translated :text_field, :officialized_as, label: t('.badge') %>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="button--double form-general-submit">
|
16
|
+
<%= f.submit t(".officialize") %>
|
17
|
+
</div>
|
18
|
+
<% end %>
|
@@ -37,6 +37,66 @@
|
|
37
37
|
</div>
|
38
38
|
</div>
|
39
39
|
|
40
|
+
<div class="card">
|
41
|
+
<div class="card-divider">
|
42
|
+
<h2 class="card-title"><%= t ".homepage_highlighted_content_banner_title" %></h2>
|
43
|
+
</div>
|
44
|
+
<div class="card-section">
|
45
|
+
<div class="row column">
|
46
|
+
<%= form.check_box :highlighted_content_banner_enabled %>
|
47
|
+
</div>
|
48
|
+
|
49
|
+
<div class="row column">
|
50
|
+
<%= form.translated :text_area, :highlighted_content_banner_title %>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div class="row column">
|
54
|
+
<%= form.translated :editor, :highlighted_content_banner_short_description %>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<div class="row column">
|
58
|
+
<%= form.translated :text_area, :highlighted_content_banner_action_title %>
|
59
|
+
</div>
|
60
|
+
|
61
|
+
<div class="row column">
|
62
|
+
<%= form.translated :text_area, :highlighted_content_banner_action_subtitle %>
|
63
|
+
</div>
|
64
|
+
|
65
|
+
<div class="row column">
|
66
|
+
<%= form.url_field :highlighted_content_banner_action_url %>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<div class="row">
|
70
|
+
<div class="columns xlarge-6">
|
71
|
+
<%= form.upload :highlighted_content_banner_image %>
|
72
|
+
</div>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<div class="card">
|
78
|
+
<div class="card-divider">
|
79
|
+
<h2 class="card-title"><%= t ".omnipresent_banner_appearance_title" %></h2>
|
80
|
+
</div>
|
81
|
+
<div class="card-section">
|
82
|
+
<div class="row column">
|
83
|
+
<%= form.check_box :enable_omnipresent_banner %>
|
84
|
+
</div>
|
85
|
+
|
86
|
+
<div class="row column">
|
87
|
+
<%= form.translated :text_field, :omnipresent_banner_title %>
|
88
|
+
</div>
|
89
|
+
|
90
|
+
<div class="row column">
|
91
|
+
<%= form.translated :text_field, :omnipresent_banner_short_description %>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
<div class="row column">
|
95
|
+
<%= form.url_field :omnipresent_banner_url %>
|
96
|
+
</div>
|
97
|
+
</div>
|
98
|
+
</div>
|
99
|
+
|
40
100
|
<div class="card">
|
41
101
|
<div class="card-divider">
|
42
102
|
<h2 class="card-title"><%= t ".layout_appearance_title" %></h2>
|
@@ -28,7 +28,7 @@
|
|
28
28
|
<li class="is-dropdown-submenu-parent">
|
29
29
|
<a href="#"><%= current_user.email %></a>
|
30
30
|
<ul class="menu is-dropdown-submenu">
|
31
|
-
<li><%= link_to(
|
31
|
+
<li><%= link_to(t("layouts.decidim.user_menu.sign_out"), decidim.destroy_user_session_path, method: :delete) %></li>
|
32
32
|
</ul>
|
33
33
|
</li>
|
34
34
|
</ul>
|
@@ -14,6 +14,11 @@
|
|
14
14
|
<%= link_to t("menu.user_groups", scope: "decidim.admin"), decidim_admin.user_groups_path %>
|
15
15
|
</li>
|
16
16
|
<% end %>
|
17
|
+
<% if can? :index, :officializations %>
|
18
|
+
<li <% if is_active_link?(decidim_admin.officializations_path) %> class="is-active" <% end %>>
|
19
|
+
<%= link_to t("menu.officializations", scope: "decidim.admin"), decidim_admin.officializations_path %>
|
20
|
+
</li>
|
21
|
+
<% end %>
|
17
22
|
<li <% if is_active_link?(decidim_admin.managed_users_path) %> class="is-active" <% end %>>
|
18
23
|
<%= link_to t("menu.managed_users", scope: "decidim.admin"), decidim_admin.managed_users_path %>
|
19
24
|
</li>
|
data/config/locales/ca.yml
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
---
|
2
1
|
ca:
|
3
2
|
activemodel:
|
4
3
|
attributes:
|
@@ -25,13 +24,24 @@ ca:
|
|
25
24
|
cta_button_path: Camí del botó d'acció principal
|
26
25
|
cta_button_text: Text del botó d'acció principal
|
27
26
|
description: Descripció
|
27
|
+
enable_omnipresent_banner: Bàner omnipresent
|
28
28
|
favicon: Icona
|
29
29
|
header_snippets: Fragments de capçalera
|
30
|
+
highlighted_content_banner_action_subtitle: Subtítol del botó d'acció
|
31
|
+
highlighted_content_banner_action_title: Títol del botó d'acció
|
32
|
+
highlighted_content_banner_action_url: URL del botó d'acció
|
33
|
+
highlighted_content_banner_enabled: Mostra el bàner de contingut ressaltat
|
34
|
+
highlighted_content_banner_image: Imatge
|
35
|
+
highlighted_content_banner_short_description: Descripció breu
|
36
|
+
highlighted_content_banner_title: Títol
|
30
37
|
homepage_image: Imatge de la portada
|
31
38
|
logo: Logotip
|
32
39
|
official_img_footer: Logotip oficial del peu de pàgina
|
33
40
|
official_img_header: Logotip oficial de la capçalera
|
34
41
|
official_url: URL de l'organització oficial
|
42
|
+
omnipresent_banner_short_description: Descripció breu
|
43
|
+
omnipresent_banner_title: Títol
|
44
|
+
omnipresent_banner_url: URL
|
35
45
|
show_statistics: Mostra estadístiques
|
36
46
|
welcome_text: Text de benvinguda
|
37
47
|
scope:
|
@@ -198,6 +208,7 @@ ca:
|
|
198
208
|
new:
|
199
209
|
create: Crear
|
200
210
|
new_managed_user: Nou usuari gestionat
|
211
|
+
no_authorization_handlers: No hi ha autoritzacions disponibles per gestionar usuaris. Poseu-vos en contacte amb l'administrador del sistema.
|
201
212
|
select_authorization_method: Seleccioneu un mètode d'autorització
|
202
213
|
step: Fase %{current} de %{total}
|
203
214
|
promotion:
|
@@ -215,6 +226,7 @@ ca:
|
|
215
226
|
dashboard: Tauler de control
|
216
227
|
managed_users: Usuaris gestionats
|
217
228
|
newsletters: Butlletins
|
229
|
+
officializations: Oficialitzacions
|
218
230
|
scope_types: Tipus d'àmbit
|
219
231
|
scopes: Àmbits
|
220
232
|
settings: Configuració
|
@@ -314,6 +326,33 @@ ca:
|
|
314
326
|
update:
|
315
327
|
error: S'ha produït un error en actualitzar aquest butlletí.
|
316
328
|
success: Butlletí actualitzat correctament. Si us plau, revisa'l abans d'enviar-lo.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: L'usuari s'ha oficialitzat amb èxit
|
332
|
+
destroy:
|
333
|
+
success: La oficialització de l'usuari ha estat inhabilitada correctament
|
334
|
+
index:
|
335
|
+
actions: Accions
|
336
|
+
badge: Insígnia
|
337
|
+
created_at: Creat el
|
338
|
+
filter:
|
339
|
+
all: Tots
|
340
|
+
not_officialized: No oficialitzat
|
341
|
+
officialized: Oficialitzat
|
342
|
+
filter_by: Filtra per
|
343
|
+
name: Nom
|
344
|
+
nickname: Sobrenom
|
345
|
+
not_officialized: No oficialitzat
|
346
|
+
officialize: Oficialitza
|
347
|
+
officialized: Oficialitzat
|
348
|
+
reofficialize: Torna a oficialitzar
|
349
|
+
search: Cerca
|
350
|
+
status: Estat
|
351
|
+
unofficialize: Inhabilita la oficialització
|
352
|
+
new:
|
353
|
+
badge: Insígnia d'oficialització
|
354
|
+
officialize: Oficialitza
|
355
|
+
title: Oficialitza l'usuari "%{name}"
|
317
356
|
organization:
|
318
357
|
edit:
|
319
358
|
title: Edita organització
|
@@ -337,7 +376,9 @@ ca:
|
|
337
376
|
cta_button_text_help: Pots sobreescriure el text del botó d'acció principal a la pàgina d'inici per cada idioma disponible a la teva organització. Si no s'omple, s'utilitzarà el valor predeterminat. El botó d'acció principal es mostra a la pàgina d'inici entre el text de benvinguda i la descripció.
|
338
377
|
header_snippets_help: Utilitza aquest camp per afegir coses al head d'HTML. L'ús més habitual és integrar serveis de tercers que requereixen codi JavaScript o CSS addicional. A més, pots utilitzar-lo per afegir etiquetes meta addicionals a l'HTML. Tingues en compte que això només es mostrarà a les pàgines públiques, no a la secció d'administració.
|
339
378
|
homepage_appearance_title: Edita l'aparença de la pàgina d'inici
|
379
|
+
homepage_highlighted_content_banner_title: Bàner de contingut ressaltat
|
340
380
|
layout_appearance_title: Edita l'aparença del disseny global
|
381
|
+
omnipresent_banner_appearance_title: Edita bàner omnipresent
|
341
382
|
scope_types:
|
342
383
|
create:
|
343
384
|
error: S'ha produït un error en crear un nou tipus d'àmbit.
|
@@ -381,7 +422,7 @@ ca:
|
|
381
422
|
title: Editar pàgina
|
382
423
|
update: Actualitzar
|
383
424
|
new:
|
384
|
-
create:
|
425
|
+
create: Crea
|
385
426
|
title: Nova pàgina
|
386
427
|
update:
|
387
428
|
error: S'ha produït un error en l'actualització d'aquests pàgina.
|
@@ -391,6 +432,7 @@ ca:
|
|
391
432
|
dashboard: Tauler de control
|
392
433
|
impersonations: Suplantacions
|
393
434
|
managed_users: Usuaris gestionats
|
435
|
+
officializations: Oficialitzacions
|
394
436
|
scope_types: Tipus d'àmbit
|
395
437
|
scopes: Àmbits
|
396
438
|
static_pages: Pàgines
|
data/config/locales/en.yml
CHANGED
@@ -25,13 +25,24 @@ en:
|
|
25
25
|
cta_button_path: Call To Action button path
|
26
26
|
cta_button_text: Call To Action button text
|
27
27
|
description: Description
|
28
|
+
enable_omnipresent_banner: Show omnipresent banner
|
28
29
|
favicon: Icon
|
29
30
|
header_snippets: Header snippets
|
31
|
+
highlighted_content_banner_action_subtitle: Action button subtitle
|
32
|
+
highlighted_content_banner_action_title: Action button title
|
33
|
+
highlighted_content_banner_action_url: Action button URL
|
34
|
+
highlighted_content_banner_enabled: Show the highlighted content banner
|
35
|
+
highlighted_content_banner_image: Image
|
36
|
+
highlighted_content_banner_short_description: Short description
|
37
|
+
highlighted_content_banner_title: Title
|
30
38
|
homepage_image: Homepage image
|
31
39
|
logo: Logo
|
32
40
|
official_img_footer: Official logo footer
|
33
41
|
official_img_header: Official logo header
|
34
42
|
official_url: Official organization URL
|
43
|
+
omnipresent_banner_short_description: Short description
|
44
|
+
omnipresent_banner_title: Title
|
45
|
+
omnipresent_banner_url: URL
|
35
46
|
show_statistics: Show statistics
|
36
47
|
welcome_text: Welcome text
|
37
48
|
scope:
|
@@ -198,6 +209,7 @@ en:
|
|
198
209
|
new:
|
199
210
|
create: Create
|
200
211
|
new_managed_user: New managed user
|
212
|
+
no_authorization_handlers: There are no available authorization handlers to manage users. Please contact your system administrator.
|
201
213
|
select_authorization_method: Select an authorization method
|
202
214
|
step: Step %{current} of %{total}
|
203
215
|
promotion:
|
@@ -215,6 +227,7 @@ en:
|
|
215
227
|
dashboard: Dashboard
|
216
228
|
managed_users: Managed users
|
217
229
|
newsletters: Newsletters
|
230
|
+
officializations: Officializations
|
218
231
|
scope_types: Scope types
|
219
232
|
scopes: Scopes
|
220
233
|
settings: Settings
|
@@ -314,6 +327,33 @@ en:
|
|
314
327
|
update:
|
315
328
|
error: There's been an error updating this newsletter.
|
316
329
|
success: Newsletter updated successfully. Please review it before sending.
|
330
|
+
officializations:
|
331
|
+
create:
|
332
|
+
success: User officialized successfully
|
333
|
+
destroy:
|
334
|
+
success: User unofficialized successfully
|
335
|
+
index:
|
336
|
+
actions: Actions
|
337
|
+
badge: Badge
|
338
|
+
created_at: Created At
|
339
|
+
filter:
|
340
|
+
all: All
|
341
|
+
not_officialized: Not officialized
|
342
|
+
officialized: Officialized
|
343
|
+
filter_by: Filter by
|
344
|
+
name: Name
|
345
|
+
nickname: Nickname
|
346
|
+
not_officialized: Not officialized
|
347
|
+
officialize: Officialize
|
348
|
+
officialized: Officialized
|
349
|
+
reofficialize: Reofficialize
|
350
|
+
search: Search
|
351
|
+
status: Status
|
352
|
+
unofficialize: Unofficialize
|
353
|
+
new:
|
354
|
+
badge: Officialization badge
|
355
|
+
officialize: Officialize
|
356
|
+
title: Officialize user "%{name}"
|
317
357
|
organization:
|
318
358
|
edit:
|
319
359
|
title: Edit organization
|
@@ -337,7 +377,9 @@ en:
|
|
337
377
|
cta_button_text_help: You can overwrite the Call To Action button text in the homepage for each available language in your organization. If not set, the default value will be used. The Call To Action button is shown in the homepage between the welcome text and the description.
|
338
378
|
header_snippets_help: Use this field to add things to the HTML head. The most common use is to integrate third-party services that require some extra JavaScript or CSS. Also, you can use it to add extra meta tags to the HTML. Note that this will only be rendered in public pages, not in the admin section.
|
339
379
|
homepage_appearance_title: Edit homepage appearance
|
380
|
+
homepage_highlighted_content_banner_title: Highligted content banner
|
340
381
|
layout_appearance_title: Edit layout appearance
|
382
|
+
omnipresent_banner_appearance_title: Edit omnipresent
|
341
383
|
scope_types:
|
342
384
|
create:
|
343
385
|
error: There was an error creating a new scope type.
|
@@ -381,7 +423,7 @@ en:
|
|
381
423
|
title: Edit page
|
382
424
|
update: Update
|
383
425
|
new:
|
384
|
-
create:
|
426
|
+
create: Create
|
385
427
|
title: New page
|
386
428
|
update:
|
387
429
|
error: There was an error when updating this page.
|
@@ -391,6 +433,7 @@ en:
|
|
391
433
|
dashboard: Dashboard
|
392
434
|
impersonations: Impersonations
|
393
435
|
managed_users: Managed users
|
436
|
+
officializations: Officializations
|
394
437
|
scope_types: Scope types
|
395
438
|
scopes: Scopes
|
396
439
|
static_pages: Pages
|
data/config/locales/es.yml
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
---
|
2
1
|
es:
|
3
2
|
activemodel:
|
4
3
|
attributes:
|
@@ -25,13 +24,24 @@ es:
|
|
25
24
|
cta_button_path: Ruta del botón de acción principal
|
26
25
|
cta_button_text: Texto del botón de acción principal
|
27
26
|
description: Descripción
|
27
|
+
enable_omnipresent_banner: Mostrar banner omnipresente
|
28
28
|
favicon: Icono
|
29
29
|
header_snippets: Snippets de encabezado
|
30
|
+
highlighted_content_banner_action_subtitle: Subtítulo del botón de acción
|
31
|
+
highlighted_content_banner_action_title: Título del botón de acción
|
32
|
+
highlighted_content_banner_action_url: URL del botón de acción
|
33
|
+
highlighted_content_banner_enabled: Mostrar el banner de contenido resaltado
|
34
|
+
highlighted_content_banner_image: Imagen
|
35
|
+
highlighted_content_banner_short_description: Breve descripción
|
36
|
+
highlighted_content_banner_title: Título
|
30
37
|
homepage_image: Imagen de portada
|
31
38
|
logo: Logotipo
|
32
39
|
official_img_footer: Logotipo oficial de pie de página
|
33
40
|
official_img_header: Logotipo oficial de cabecera
|
34
41
|
official_url: URL oficial de la organización
|
42
|
+
omnipresent_banner_short_description: Breve descripción
|
43
|
+
omnipresent_banner_title: Título
|
44
|
+
omnipresent_banner_url: URL
|
35
45
|
show_statistics: Mostrar estadísticas
|
36
46
|
welcome_text: Texto de bienvenida
|
37
47
|
scope:
|
@@ -68,7 +78,7 @@ es:
|
|
68
78
|
slug: Texto corto de URL
|
69
79
|
start_date: Fecha de inicio
|
70
80
|
subtitle: Subtítulo
|
71
|
-
target:
|
81
|
+
target: '¿A quién va dirigido?'
|
72
82
|
title: Título
|
73
83
|
decidim/participatory_process_group:
|
74
84
|
description: Descripción
|
@@ -198,6 +208,7 @@ es:
|
|
198
208
|
new:
|
199
209
|
create: Crear
|
200
210
|
new_managed_user: Nuevo usuario gestionado
|
211
|
+
no_authorization_handlers: No hay autorizaciones disponibles para gestionar usuarios. Por favor, póngase en contacto con el administrador del sistema.
|
201
212
|
select_authorization_method: Seleccione un método de autorización
|
202
213
|
step: Fase %{current} de %{total}
|
203
214
|
promotion:
|
@@ -215,6 +226,7 @@ es:
|
|
215
226
|
dashboard: Panel de control
|
216
227
|
managed_users: Usuarios gestionados
|
217
228
|
newsletters: Boletines
|
229
|
+
officializations: Oficializaciones
|
218
230
|
scope_types: Tipos de ámbito
|
219
231
|
scopes: Ámbitos
|
220
232
|
settings: Configuración
|
@@ -301,19 +313,46 @@ es:
|
|
301
313
|
form:
|
302
314
|
interpolations_hint: 'Sugerencia: Puede utilizar "%{name}" en cualquier parte del cuerpo o asunto y será reemplazado por el nombre del destinatario.'
|
303
315
|
index:
|
304
|
-
confirm_delete:
|
316
|
+
confirm_delete: '¿Estás seguro de que quieres eliminar este boletín?'
|
305
317
|
title: Boletines
|
306
318
|
new:
|
307
319
|
save: Guardar
|
308
320
|
title: Nuevo boletín
|
309
321
|
show:
|
310
|
-
confirm_deliver:
|
322
|
+
confirm_deliver: '¿Estás seguro de que quieres enviar este boletín? Esta acción no se puede deshacer.'
|
311
323
|
deliver: Enviar boletín
|
312
324
|
preview: Previsualizar
|
313
325
|
subject: Asunto
|
314
326
|
update:
|
315
327
|
error: Se ha producido un error al actualizar este boletín.
|
316
328
|
success: Boletín actualizado correctamente. Por favor revísalo antes de enviarlo.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: Usuario oficializado con éxito
|
332
|
+
destroy:
|
333
|
+
success: Usuario des-oficializado con éxito
|
334
|
+
index:
|
335
|
+
actions: Acciones
|
336
|
+
badge: Distintivo
|
337
|
+
created_at: Creado el
|
338
|
+
filter:
|
339
|
+
all: Todas
|
340
|
+
not_officialized: No oficializado
|
341
|
+
officialized: Oficializado
|
342
|
+
filter_by: Filtrado por
|
343
|
+
name: Nombre
|
344
|
+
nickname: Apodo
|
345
|
+
not_officialized: No oficializado
|
346
|
+
officialize: Oficializar
|
347
|
+
officialized: Oficializado
|
348
|
+
reofficialize: Re-oficializar
|
349
|
+
search: Buscar
|
350
|
+
status: Estado
|
351
|
+
unofficialize: Des-oficializar
|
352
|
+
new:
|
353
|
+
badge: Insignia de oficialización
|
354
|
+
officialize: Oficializar
|
355
|
+
title: Oficializar el usuario "%{name}"
|
317
356
|
organization:
|
318
357
|
edit:
|
319
358
|
title: Editar organización
|
@@ -337,7 +376,9 @@ es:
|
|
337
376
|
cta_button_text_help: Puedes sobrescribir el texto del botón de acción principal en la página de inicio para cada idioma disponible en tu organización. Si no está configurado, se usará el valor predeterminado. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción.
|
338
377
|
header_snippets_help: Utiliza este campo para agregar cosas a la cabecera HTML. El uso más común es integrar servicios de terceros que requieran JavaScript o CSS adicionales. Además, puedes usarlo para agregar etiquetas HTML adicionales. Ten en cuenta que esto sólo se mostrará en las páginas públicas, no en la sección de administración.
|
339
378
|
homepage_appearance_title: Editar apariencia de página de inicio
|
379
|
+
homepage_highlighted_content_banner_title: Banner de contenido resaltado
|
340
380
|
layout_appearance_title: Editar apariencia de diseño global
|
381
|
+
omnipresent_banner_appearance_title: Editar banner omnipresente
|
341
382
|
scope_types:
|
342
383
|
create:
|
343
384
|
error: Se ha producido un error al crear un nuevo tipo de ámbito.
|
@@ -381,7 +422,7 @@ es:
|
|
381
422
|
title: Editar página
|
382
423
|
update: Actualizar
|
383
424
|
new:
|
384
|
-
create:
|
425
|
+
create: Crear
|
385
426
|
title: Nueva página
|
386
427
|
update:
|
387
428
|
error: Se ha producido un error en la actualización de ésta página.
|
@@ -391,6 +432,7 @@ es:
|
|
391
432
|
dashboard: Panel de control
|
392
433
|
impersonations: Suplantaciones
|
393
434
|
managed_users: Usuarios gestionados
|
435
|
+
officializations: Oficializaciones
|
394
436
|
scope_types: Tipos de ámbito
|
395
437
|
scopes: Ámbitos
|
396
438
|
static_pages: Páginas
|
data/config/locales/eu.yml
CHANGED
@@ -24,13 +24,24 @@ eu:
|
|
24
24
|
cta_button_path: Deitu ekintza botoiaren bideora
|
25
25
|
cta_button_text: Deitu ekintza botoiaren testura
|
26
26
|
description: Descripción
|
27
|
+
enable_omnipresent_banner: Erakutsi omnipresent banner
|
27
28
|
favicon: Ikonoa
|
28
29
|
header_snippets: Izenburu-snippets-ak
|
30
|
+
highlighted_content_banner_action_subtitle: Ekintza botoia azpititulua
|
31
|
+
highlighted_content_banner_action_title: Ekintza botoien titulua
|
32
|
+
highlighted_content_banner_action_url: Ekintza botoia URLa
|
33
|
+
highlighted_content_banner_enabled: Erakutsi nabarmendutako edukien bandera
|
34
|
+
highlighted_content_banner_image: Image
|
35
|
+
highlighted_content_banner_short_description: Deskribapen laburra
|
36
|
+
highlighted_content_banner_title: Izenburua
|
29
37
|
homepage_image: Orri nagusiko irudia
|
30
38
|
logo: Logotipo
|
31
39
|
official_img_footer: Orri-oineko logotipo ofiziala
|
32
40
|
official_img_header: Goiburuko logotipo ofiziala
|
33
41
|
official_url: Erakundearen URL ofiziala
|
42
|
+
omnipresent_banner_short_description: Deskribapen laburra
|
43
|
+
omnipresent_banner_title: Izenburua
|
44
|
+
omnipresent_banner_url: URL
|
34
45
|
show_statistics: Erakutsi estatistikak
|
35
46
|
welcome_text: Ongietorri-testua
|
36
47
|
scope:
|
@@ -83,7 +94,7 @@ eu:
|
|
83
94
|
title: Titulua
|
84
95
|
date:
|
85
96
|
formats:
|
86
|
-
datepicker: "%Y
|
97
|
+
datepicker: "%Y/%m/%d"
|
87
98
|
decidim:
|
88
99
|
admin:
|
89
100
|
actions:
|
@@ -197,6 +208,7 @@ eu:
|
|
197
208
|
new:
|
198
209
|
create: Sortu
|
199
210
|
new_managed_user: Erabiltzaile kudeatu berria
|
211
|
+
no_authorization_handlers: Ez dago baimendutako baimendun erabilgarririk erabiltzaileak kudeatzeko. Mesedez, jarri harremanetan sistemaren administratzailearekin.
|
200
212
|
select_authorization_method: Hautatu autorizazio metodoa
|
201
213
|
step: '%{total} fasetatik %{current}.a'
|
202
214
|
promotion:
|
@@ -214,6 +226,7 @@ eu:
|
|
214
226
|
dashboard: Kontrol-panela
|
215
227
|
managed_users: Kudeatutako erabiltzaileak
|
216
228
|
newsletters: Buletinak
|
229
|
+
officializations: Officializations
|
217
230
|
scope_types: Esparru motak
|
218
231
|
scopes: Esparruak
|
219
232
|
settings: Ezarpenak
|
@@ -313,6 +326,33 @@ eu:
|
|
313
326
|
update:
|
314
327
|
error: Errorea gertatu da buletin hau eguneratzean.
|
315
328
|
success: Buletina zuzen eguneratu da. Mesedez, berrikusi bidali baino lehen.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: Erabiltzailea arrakastatsua izan da
|
332
|
+
destroy:
|
333
|
+
success: Erabiltzailea ez da ongi burutu
|
334
|
+
index:
|
335
|
+
actions: Ekintzak
|
336
|
+
badge: Badge
|
337
|
+
created_at: Sortua
|
338
|
+
filter:
|
339
|
+
all: guztiak
|
340
|
+
not_officialized: Ez ofiziala
|
341
|
+
officialized: Officialized
|
342
|
+
filter_by: Iragazi arabera
|
343
|
+
name: izena
|
344
|
+
nickname: ezizena
|
345
|
+
not_officialized: Ez ofiziala
|
346
|
+
officialize: Officialize
|
347
|
+
officialized: Officialized
|
348
|
+
reofficialize: Reofficialize
|
349
|
+
search: Search
|
350
|
+
status: Egoera
|
351
|
+
unofficialize: Unofficialize
|
352
|
+
new:
|
353
|
+
badge: Ofizializazio xafla
|
354
|
+
officialize: Officialize
|
355
|
+
title: Erabiltzaile ofiziala "%{name}"
|
316
356
|
organization:
|
317
357
|
edit:
|
318
358
|
title: Editatu erakundea
|
@@ -336,7 +376,9 @@ eu:
|
|
336
376
|
cta_button_text_help: Hasierako pantailako Call To Action botoian testua gainidatz dezakezu zure erakundeko hizkuntza bakoitzarentzat. Ezartzen bada, balio lehenetsia erabiliko da. The Call To Action botoian hasierako orrian erakusten da ongietorri testua eta azalpena.
|
337
377
|
header_snippets_help: Erabili eremu hau HTML goiburuari gauzak gehitzeko. Erabilerarik ohikoena da JavaScript edo CSS gehigarriak behar dituzten hirugarrenen zerbitzuak txertatzea. Gainera, HTMLari meta-etiketa gehigarriak gehitzeko erabil dezakezu. Kontuan hartu orri publikoetan baino ez dela erakutsiko, ez administrazio atalean.
|
338
378
|
homepage_appearance_title: Editatu orriaren itxura
|
379
|
+
homepage_highlighted_content_banner_title: Highligted edukien banner
|
339
380
|
layout_appearance_title: Editatu itxura diseinua
|
381
|
+
omnipresent_banner_appearance_title: Editatu omnipresent
|
340
382
|
scope_types:
|
341
383
|
create:
|
342
384
|
error: Errore bat gertatu da esparru mota berri bat sortzean.
|
@@ -380,7 +422,7 @@ eu:
|
|
380
422
|
title: Editatu orria
|
381
423
|
update: Eguneratu
|
382
424
|
new:
|
383
|
-
create:
|
425
|
+
create: Sortu
|
384
426
|
title: Orri berria
|
385
427
|
update:
|
386
428
|
error: Errorea gertatu da orri hau eguneratzean.
|
@@ -390,6 +432,7 @@ eu:
|
|
390
432
|
dashboard: Kontrol-panela
|
391
433
|
impersonations: Ordezteak
|
392
434
|
managed_users: Kudeatutako erabiltzaileak
|
435
|
+
officializations: Officializations
|
393
436
|
scope_types: Esparru motak
|
394
437
|
scopes: Esparruak
|
395
438
|
static_pages: Orriak
|
@@ -467,5 +510,5 @@ eu:
|
|
467
510
|
title: Erabiltzaileak
|
468
511
|
time:
|
469
512
|
formats:
|
470
|
-
datepicker: "%Y
|
513
|
+
datepicker: "%Y/%m/%d"
|
471
514
|
timepicker: "%d/%m/%Y %H:%M"
|