decidim-admin 0.6.8 → 0.7.0

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.

Potentially problematic release.


This version of decidim-admin might be problematic. Click here for more details.

Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +1 -0
  3. data/app/commands/decidim/admin/close_session_managed_user.rb +1 -1
  4. data/app/commands/decidim/admin/reject_user_group.rb +1 -1
  5. data/app/commands/decidim/admin/update_feature.rb +1 -1
  6. data/app/commands/decidim/admin/update_organization.rb +5 -26
  7. data/app/commands/decidim/admin/update_organization_appearance.rb +72 -0
  8. data/app/commands/decidim/admin/verify_user_group.rb +1 -1
  9. data/app/controllers/decidim/admin/organization_appearance_controller.rb +32 -0
  10. data/app/controllers/decidim/admin/organization_controller.rb +1 -15
  11. data/app/controllers/decidim/admin/scopes_controller.rb +2 -2
  12. data/app/controllers/decidim/admin/static_pages_controller.rb +1 -1
  13. data/app/forms/decidim/admin/organization_appearance_form.rb +41 -0
  14. data/app/forms/decidim/admin/organization_form.rb +0 -23
  15. data/app/forms/decidim/admin/scope_form.rb +3 -2
  16. data/app/forms/decidim/admin/static_page_form.rb +2 -1
  17. data/app/jobs/decidim/admin/newsletter_delivery_job.rb +2 -0
  18. data/app/models/decidim/admin/abilities/admin_ability.rb +2 -1
  19. data/app/views/decidim/admin/exports/_dropdown.html.erb +2 -2
  20. data/app/views/decidim/admin/organization/_form.html.erb +0 -45
  21. data/app/views/decidim/admin/organization/edit.html.erb +1 -1
  22. data/app/views/decidim/admin/organization_appearance/_form.html.erb +78 -0
  23. data/app/views/decidim/admin/organization_appearance/edit.html.erb +7 -0
  24. data/app/views/layouts/decidim/admin/_title_bar.html.erb +1 -1
  25. data/app/views/layouts/decidim/admin/settings.html.erb +4 -1
  26. data/config/locales/ca.yml +25 -8
  27. data/config/locales/en.yml +22 -5
  28. data/config/locales/es.yml +24 -7
  29. data/config/locales/eu.yml +37 -20
  30. data/config/locales/fi.yml +36 -19
  31. data/config/locales/fr.yml +30 -13
  32. data/config/locales/it.yml +22 -5
  33. data/config/locales/nl.yml +22 -5
  34. data/config/locales/pl.yml +22 -5
  35. data/config/locales/ru.yml +468 -0
  36. data/config/locales/uk.yml +61 -44
  37. data/config/routes.rb +3 -1
  38. data/lib/decidim/admin/engine.rb +1 -1
  39. data/lib/decidim/admin/version.rb +10 -0
  40. metadata +19 -40
@@ -1,4 +1,4 @@
1
- <%= decidim_form_for(@form, html: { class: "form eidt_organitzation" }, url: organization_path) do |f| %>
1
+ <%= decidim_form_for(@form, html: { class: "form edit_organization" }, url: organization_path) do |f| %>
2
2
  <div class="card">
3
3
  <div class="card-divider">
4
4
  <h2 class="card-title"><%= t ".title" %></h2>
@@ -0,0 +1,78 @@
1
+ <%= javascript_include_tag "decidim/slug_form" %>
2
+
3
+ <div class="card">
4
+ <div class="card-divider">
5
+ <h2 class="card-title"><%= t ".homepage_appearance_title" %></h2>
6
+ </div>
7
+ <div class="card-section">
8
+ <div class="row column">
9
+ <%= form.check_box :show_statistics %>
10
+ </div>
11
+
12
+ <div class="row column">
13
+ <%= form.translated :editor, :description %>
14
+ </div>
15
+
16
+ <div class="row column">
17
+ <%= form.translated :text_area, :welcome_text %>
18
+ </div>
19
+
20
+ <div class="row">
21
+ <div class="columns xlarge-6">
22
+ <%= form.upload :homepage_image %>
23
+ </div>
24
+ </div>
25
+
26
+ <div class="row">
27
+ <div class="columns xlarge-6 slug">
28
+ <%= form.text_field :cta_button_path %>
29
+ <p class="help-text"><%== t(".cta_button_path_help", url: decidim_form_slug_url("", form.object.cta_button_path)) %></p>
30
+ </div>
31
+
32
+ <div class="columns xlarge-6">
33
+ <%= form.translated :text_field, :cta_button_text %>
34
+ <p class="help-text"><%= t(".cta_button_text_help") %></p>
35
+ </div>
36
+ </div>
37
+ </div>
38
+ </div>
39
+
40
+ <div class="card">
41
+ <div class="card-divider">
42
+ <h2 class="card-title"><%= t ".layout_appearance_title" %></h2>
43
+ </div>
44
+ <div class="card-section">
45
+ <div class="row">
46
+ <div class="columns xlarge-6">
47
+ <%= form.upload :logo %>
48
+ </div>
49
+
50
+ <div class="columns xlarge-6">
51
+ <%= form.upload :favicon %>
52
+ </div>
53
+ </div>
54
+
55
+ <div class="row">
56
+ <div class="columns xlarge-6">
57
+ <%= form.upload :official_img_header %>
58
+ </div>
59
+
60
+ <div class="columns xlarge-6">
61
+ <%= form.upload :official_img_footer %>
62
+ </div>
63
+ </div>
64
+
65
+ <div class="row">
66
+ <div class="columns xlarge-6">
67
+ <%= form.text_field :official_url %>
68
+ </div>
69
+ </div>
70
+
71
+ <% if Decidim.enable_html_header_snippets %>
72
+ <div class="row column">
73
+ <%= form.text_area :header_snippets %>
74
+ <p class="help-text"><%= t(".header_snippets_help") %></p>
75
+ </div>
76
+ <% end %>
77
+ </div>
78
+ </div>
@@ -0,0 +1,7 @@
1
+ <%= decidim_form_for(@form, html: { class: "form edit_organization_appearance" }, url: organization_appearance_path, method: :put) do |f| %>
2
+ <%= render partial: 'form', object: f %>
3
+ <div class="button--double form-general-submit">
4
+ <%= f.submit t(".update") %>
5
+ </div>
6
+ <% end %>
7
+
@@ -12,7 +12,7 @@
12
12
  <div class="topbar__dropmenu language-choose">
13
13
  <ul class="dropdown menu" data-dropdown-menu>
14
14
  <li class="is-dropdown-submenu-parent">
15
- <%= link_to t("name", scope: "locale") %>
15
+ <%= link_to t("name", scope: "locale"), "#" %>
16
16
  <ul class="menu is-dropdown-submenu">
17
17
  <% (available_locales - [I18n.locale.to_s]).each do |locale| %>
18
18
  <li><%= link_to locale_name(locale), decidim.locale_path(locale: locale), method: :post%></li>
@@ -5,7 +5,10 @@
5
5
  </div>
6
6
  <ul>
7
7
  <li <% if is_active_link?(decidim_admin.edit_organization_path) %> class="is-active" <% end %>>
8
- <%= link_to t("menu.settings", scope: "decidim.admin"), decidim_admin.edit_organization_path %>
8
+ <%= link_to t("menu.configuration", scope: "decidim.admin"), decidim_admin.edit_organization_path %>
9
+ </li>
10
+ <li <% if is_active_link?(decidim_admin.edit_organization_appearance_path) %> class="is-active" <% end %>>
11
+ <%= link_to t("menu.appearance", scope: "decidim.admin"), decidim_admin.edit_organization_appearance_path %>
9
12
  </li>
10
13
  <li <% if is_active_link?(decidim_admin.scopes_path) %> class="is-active" <% end %>>
11
14
  <%= link_to t("menu.scopes", scope: "decidim.admin"), decidim_admin.scopes_path %>
@@ -18,17 +18,20 @@ ca:
18
18
  subject: Assumpte
19
19
  organization:
20
20
  default_locale: Idioma per defecte
21
+ name: Nom
22
+ reference_prefix: Prefix de referència
23
+ organization_appearance:
24
+ cta_button_path: Camí del botó d'acció principal
25
+ cta_button_text: Text del botó d'acció principal
21
26
  description: Descripció
22
27
  favicon: Icona
23
28
  header_snippets: Fragments de capçalera
24
29
  homepage_image: Imatge de la portada
25
30
  logo: Logotip
26
- name: Nom
27
31
  official_img_footer: Logotip oficial del peu de pàgina
28
32
  official_img_header: Logotip oficial de la capçalera
29
- official_url: URL oficial de l'organització
30
- reference_prefix: Prefix de referència
31
- show_statistics: Mostra Estadístiques
33
+ official_url: URL de l'organització oficial
34
+ show_statistics: Mostra estadístiques
32
35
  welcome_text: Text de benvinguda
33
36
  scope:
34
37
  code: Codi
@@ -66,6 +69,11 @@ ca:
66
69
  subtitle: Subtítol
67
70
  target: A qui va dirigit?
68
71
  title: Títol
72
+ decidim/participatory_process_group:
73
+ description: Descripció
74
+ hero_image: Imatge de portada
75
+ name: Nom
76
+ participatory_processes: Processos participatius
69
77
  decidim/participatory_process_step:
70
78
  end_date: Data de finalització
71
79
  start_date: Data d'inici
@@ -75,7 +83,7 @@ ca:
75
83
  title: Títol
76
84
  date:
77
85
  formats:
78
- datepicker: "%m/%d/%Y"
86
+ datepicker: "%d/%m/%Y"
79
87
  decidim:
80
88
  admin:
81
89
  actions:
@@ -201,6 +209,8 @@ ca:
201
209
  promote: Promocionar
202
210
  menu:
203
211
  admins: Administradors
212
+ appearance: Aparença
213
+ configuration: Configuració
204
214
  dashboard: Tauler de control
205
215
  managed_users: Usuaris gestionats
206
216
  newsletters: Butlletins
@@ -308,10 +318,8 @@ ca:
308
318
  title: Edita organització
309
319
  update: Actualitzar
310
320
  form:
311
- current_image: Imatge actual
312
321
  facebook: Facebook
313
322
  github: GitHub
314
- 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ó.
315
323
  instagram: Instagram
316
324
  social_handlers: Social
317
325
  twitter: Twitter
@@ -320,6 +328,15 @@ ca:
320
328
  update:
321
329
  error: S'ha produït un error en actualitzar aquesta organització.
322
330
  success: Organització actualitzada correctament.
331
+ organization_appearance:
332
+ edit:
333
+ update: Actualitzar
334
+ form:
335
+ cta_button_path_help: 'Pots sobreescriure a on enllaça el botó d''acció principal de la pàgina d''inici. Utilitza rutes parcials, no URLs completes aquí. Accepta lletres, números, guions i barres, i ha de començar amb una lletra. El botó d''acció principal es mostra a la pàgina d''inici entre el text de benvinguda i la descripció. Exemple: %{url}'
336
+ 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ó.
337
+ 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ó.
338
+ homepage_appearance_title: Edita l'aparença de la pàgina d'inici
339
+ layout_appearance_title: Edita l'aparença del disseny global
323
340
  scope_types:
324
341
  create:
325
342
  error: S'ha produït un error en crear un nou tipus d'àmbit.
@@ -448,5 +465,5 @@ ca:
448
465
  title: Usuaris
449
466
  time:
450
467
  formats:
451
- datepicker: "%m/%d/%Y"
468
+ datepicker: "%d/%m/%Y"
452
469
  timepicker: "%d/%m/%Y %H:%M"
@@ -18,16 +18,19 @@ en:
18
18
  subject: Subject
19
19
  organization:
20
20
  default_locale: Default locale
21
+ name: Name
22
+ reference_prefix: Reference prefix
23
+ organization_appearance:
24
+ cta_button_path: Call To Action button path
25
+ cta_button_text: Call To Action button text
21
26
  description: Description
22
27
  favicon: Icon
23
28
  header_snippets: Header snippets
24
29
  homepage_image: Homepage image
25
30
  logo: Logo
26
- name: Name
27
31
  official_img_footer: Official logo footer
28
32
  official_img_header: Official logo header
29
- official_url: Official organization url
30
- reference_prefix: Reference prefix
33
+ official_url: Official organization URL
31
34
  show_statistics: Show statistics
32
35
  welcome_text: Welcome text
33
36
  scope:
@@ -66,6 +69,11 @@ en:
66
69
  subtitle: Subtitle
67
70
  target: Target
68
71
  title: Title
72
+ decidim/participatory_process_group:
73
+ description: Description
74
+ hero_image: Home image
75
+ name: Name
76
+ participatory_processes: Participatory processes
69
77
  decidim/participatory_process_step:
70
78
  end_date: End date
71
79
  start_date: Start date
@@ -201,6 +209,8 @@ en:
201
209
  promote: Promote
202
210
  menu:
203
211
  admins: Admins
212
+ appearance: Appearance
213
+ configuration: Configuration
204
214
  dashboard: Dashboard
205
215
  managed_users: Managed users
206
216
  newsletters: Newsletters
@@ -308,10 +318,8 @@ en:
308
318
  title: Edit organization
309
319
  update: Update
310
320
  form:
311
- current_image: Current image
312
321
  facebook: Facebook
313
322
  github: GitHub
314
- 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.
315
323
  instagram: Instagram
316
324
  social_handlers: Social
317
325
  twitter: Twitter
@@ -320,6 +328,15 @@ en:
320
328
  update:
321
329
  error: There was an error when updating this organization.
322
330
  success: Organization updated successfully.
331
+ organization_appearance:
332
+ edit:
333
+ update: Update
334
+ form:
335
+ cta_button_path_help: 'You can overwrite where the Call To Action button in the homepage links to. Use partial paths, not full URLs here. Accepts letters, numbers, dashes and slashes, and must start with a letter. The Call To Action button is shown in the homepage between the welcome text and the description. Example: %{url}'
336
+ 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.
337
+ 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.
338
+ homepage_appearance_title: Edit homepage appearance
339
+ layout_appearance_title: Edit layout appearance
323
340
  scope_types:
324
341
  create:
325
342
  error: There was an error creating a new scope type.
@@ -18,16 +18,19 @@ es:
18
18
  subject: Asunto
19
19
  organization:
20
20
  default_locale: Idioma predeterminado
21
+ name: Nombre
22
+ reference_prefix: Prefijo de la referencia
23
+ organization_appearance:
24
+ cta_button_path: Ruta del botón de acción principal
25
+ cta_button_text: Texto del botón de acción principal
21
26
  description: Descripción
22
27
  favicon: Icono
23
28
  header_snippets: Snippets de encabezado
24
29
  homepage_image: Imagen de portada
25
30
  logo: Logotipo
26
- name: Nombre
27
31
  official_img_footer: Logotipo oficial de pie de página
28
32
  official_img_header: Logotipo oficial de cabecera
29
- official_url: URL oficial de organización
30
- reference_prefix: Prefijo de la referencia
33
+ official_url: URL oficial de la organización
31
34
  show_statistics: Mostrar estadísticas
32
35
  welcome_text: Texto de bienvenida
33
36
  scope:
@@ -66,6 +69,11 @@ es:
66
69
  subtitle: Subtítulo
67
70
  target: "¿A quién va dirigido?"
68
71
  title: Título
72
+ decidim/participatory_process_group:
73
+ description: Descripción
74
+ hero_image: Imagen de portada
75
+ name: Nombre
76
+ participatory_processes: Procesos participativos
69
77
  decidim/participatory_process_step:
70
78
  end_date: Fecha de finalización
71
79
  start_date: Fecha de inicio
@@ -75,7 +83,7 @@ es:
75
83
  title: Título
76
84
  date:
77
85
  formats:
78
- datepicker: "%m/%d/%Y"
86
+ datepicker: "%d/%m/%Y"
79
87
  decidim:
80
88
  admin:
81
89
  actions:
@@ -201,6 +209,8 @@ es:
201
209
  promote: Promocionar
202
210
  menu:
203
211
  admins: Administradores
212
+ appearance: Apariencia
213
+ configuration: Configuración
204
214
  dashboard: Panel de control
205
215
  managed_users: Usuarios gestionados
206
216
  newsletters: Boletines
@@ -308,10 +318,8 @@ es:
308
318
  title: Editar organización
309
319
  update: Actualizar
310
320
  form:
311
- current_image: Imagen actual
312
321
  facebook: Facebook
313
322
  github: GitHub
314
- 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.
315
323
  instagram: Instagram
316
324
  social_handlers: Social
317
325
  twitter: Twitter
@@ -320,6 +328,15 @@ es:
320
328
  update:
321
329
  error: Se produjo un error al actualizar esta organización.
322
330
  success: Organización actualizada correctamente.
331
+ organization_appearance:
332
+ edit:
333
+ update: Actualizar
334
+ form:
335
+ cta_button_path_help: 'Puedes sobrescribir el enlace al botón de acción principal en la página principal. Usa rutas parciales, no URLs completas aquí. Acepta letras, números, guiones y barras, y debe comenzar con una letra. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción. Ejemplo: %{url}'
336
+ 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.
337
+ 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.
338
+ homepage_appearance_title: Editar apariencia de página de inicio
339
+ layout_appearance_title: Editar apariencia de diseño global
323
340
  scope_types:
324
341
  create:
325
342
  error: Se ha producido un error al crear un nuevo tipo de ámbito.
@@ -448,5 +465,5 @@ es:
448
465
  title: Usuarios
449
466
  time:
450
467
  formats:
451
- datepicker: "%m/%d/%Y"
468
+ datepicker: "%d/%m/%Y"
452
469
  timepicker: "%d/%m/%Y %H:%M"
@@ -17,16 +17,19 @@ eu:
17
17
  subject: Gaia
18
18
  organization:
19
19
  default_locale: Eskualdeko ezarpen lehenetsiak
20
+ name: Izena
21
+ reference_prefix: Erreferentzia-aurrizkia
22
+ organization_appearance:
23
+ cta_button_path: Deitu ekintza botoiaren bideora
24
+ cta_button_text: Deitu ekintza botoiaren testura
20
25
  description: Descripción
21
26
  favicon: Ikonoa
22
- header_snippets: Goiburuko mozkinak
27
+ header_snippets: Izenburu-snippets-ak
23
28
  homepage_image: Orri nagusiko irudia
24
29
  logo: Logotipo
25
- name: Izena
26
30
  official_img_footer: Orri-oineko logotipo ofiziala
27
31
  official_img_header: Goiburuko logotipo ofiziala
28
32
  official_url: Erakundearen URL ofiziala
29
- reference_prefix: Erreferentzia-aurrizkia
30
33
  show_statistics: Erakutsi estatistikak
31
34
  welcome_text: Ongietorri-testua
32
35
  scope:
@@ -65,6 +68,11 @@ eu:
65
68
  subtitle: Azpititulua
66
69
  target: Nori zuzentzen zaio?
67
70
  title: Titulua
71
+ decidim/participatory_process_group:
72
+ description: Deskribapena
73
+ hero_image: Orri nagusiko irudia
74
+ name: Izena
75
+ participatory_processes: Prozesu partizipatiboak
68
76
  decidim/participatory_process_step:
69
77
  end_date: Bukaera-data
70
78
  start_date: Hasiera-data
@@ -178,11 +186,11 @@ eu:
178
186
  error: Errore bat gertatu da kudeatutako erabiltzailea ordezkatzean.
179
187
  impersonations:
180
188
  new:
181
- impersonate: itxurak
182
- new_managed_user_impersonation: Erabiltzaile berrien ordezkapen berria
189
+ impersonate: Ordeztu
190
+ new_managed_user_impersonation: Kudeatutako erabiltzailearen ordezte berria
183
191
  index:
184
- impersonate: itxurak
185
- needs_authoriation_warning: Gutxienez erakunde honen baimenak gaitu behar dituzu.
192
+ impersonate: Ordeztu
193
+ needs_authoriation_warning: Gutxienez baimen gaitu bat behar duzu erakunde honendako.
186
194
  promote: Goratu
187
195
  view_logs: Ikusi erregistroak
188
196
  new:
@@ -191,15 +199,17 @@ eu:
191
199
  select_authorization_method: Hautatu autorizazio metodoa
192
200
  step: '%{total} fasetatik %{current}.a'
193
201
  promotion:
194
- error: Errore bat gertatu da kudeatutako erabiltzaileak sustatzean.
195
- success: Erabiltzaile kudeatua arrakastaz sustatu da.
202
+ error: Errorea gertatu da kudeatutako erabiltzailea mailaz igotzean.
203
+ success: Kudeatutako erabiltzailea zuzen igo da mailaz.
196
204
  promotions:
197
205
  new:
198
- explanation: Erabiltzaile kudeatuak erabiltzaile estandarretara igo daitezke. Aplikazioari gonbidatuko zaitu eta ezingo dituzu berriz ordezkatu. Gonbidatutako erabiltzaileak zure gonbidapena onartu dezan mezu elektroniko bat jasoko du.
199
- new_managed_user_promotion: Erabiltzaile kudeatuen promozio berria
206
+ explanation: Kudeatutako erabiltzaileak erabiltzaile estandar mailara igo daitezke. Horrek esan nahi du aplikaziora gonbidatuak izanen direla eta ezingo direla berriro ere ordeztu. Erabiltzaile gonbidatuak mezu elektroniko bat jasoko du gonbita onartzeko.
207
+ new_managed_user_promotion: Kudeatutako erabiltzaileen maila igoera berria
200
208
  promote: Goratu
201
209
  menu:
202
210
  admins: Administratzaileak
211
+ appearance: Itxura
212
+ configuration: konfigurazioa
203
213
  dashboard: Kontrol-panela
204
214
  managed_users: Kudeatutako erabiltzaileak
205
215
  newsletters: Buletinak
@@ -220,9 +230,9 @@ eu:
220
230
  impersonation_log:
221
231
  fields:
222
232
  admin: Administratzailea
223
- ended_at: Amaitu da
224
- expired_at: Iraungita dago
225
- started_at: Hasi zen at
233
+ ended_at: 'Bukaera-data:'
234
+ expired_at: 'Iraungitze-data:'
235
+ started_at: 'Hasiera-ordua:'
226
236
  user: Erabiltzailea
227
237
  managed_user:
228
238
  name: Erabiltzaile kudeatua
@@ -307,10 +317,8 @@ eu:
307
317
  title: Editatu erakundea
308
318
  update: Eguneratu
309
319
  form:
310
- current_image: Oraingo irudia
311
320
  facebook: Facebook
312
321
  github: GitHub
313
- header_snippets_help: Erabili eremu hau HTML orriko gauzak gehitzeko. Erabilera ohikoena Javascript edo CSS gehigarri bat behar duten hirugarrenen zerbitzuak integratzea da. Gainera, meta tags HTMLra gehi ditzakezu. Kontuan izan hau orri publikoetan bakarrik egingo dela, ez administrazio atalean.
314
322
  instagram: Instagram
315
323
  social_handlers: Gizarte
316
324
  twitter: Twitter
@@ -319,6 +327,15 @@ eu:
319
327
  update:
320
328
  error: Errorea gertatu da erakunde hau eguneratzean.
321
329
  success: Erakundea zuzen eguneratu da.
330
+ organization_appearance:
331
+ edit:
332
+ update: Eguneratu
333
+ form:
334
+ cta_button_path_help: 'Orrialde nagusira deitzeko dei-botoirako esteka gainidatzi dezakezu. Erabili bideak partzialak, ez URL osoak hemen. Letrak, zenbakiak, marrak eta barrak onartzen ditu eta gutun batekin hasi behar duzu. The Call To Action botoian hasierako orrian erakusten da ongietorri testua eta azalpena. Adibidea: %{url}'
335
+ 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.
336
+ 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.
337
+ homepage_appearance_title: Editatu orriaren itxura
338
+ layout_appearance_title: Editatu itxura diseinua
322
339
  scope_types:
323
340
  create:
324
341
  error: Errore bat gertatu da esparru mota berri bat sortzean.
@@ -369,7 +386,7 @@ eu:
369
386
  success: Orria zuzen eguneratu da.
370
387
  titles:
371
388
  dashboard: Kontrol-panela
372
- impersonations: impersonations
389
+ impersonations: Ordezteak
373
390
  managed_users: Kudeatutako erabiltzaileak
374
391
  scope_types: Esparru motak
375
392
  scopes: Esparruak
@@ -381,8 +398,8 @@ eu:
381
398
  invalid: Errore bat gertatu da erabiltzaile talde hau arbuiatzerakoan.
382
399
  success: Erabiltzaile taldea arrakastaz arbuiatua
383
400
  verify:
384
- invalid: Errore bat gertatu da erabiltzaile talde hau egiaztatzeko.
385
- success: Erabiltzaile taldeko egiaztatu arrakastaz
401
+ invalid: Errorea gertatu da erabiltzaile-talde hau egiaztatzean.
402
+ success: Erabiltzaile-taldea ongi egiaztatu da
386
403
  user_groups:
387
404
  index:
388
405
  filter:
@@ -431,7 +448,7 @@ eu:
431
448
  hidden_at: Ezkutatze-data
432
449
  report_count: Zenbaketa
433
450
  reportable: Mota
434
- reported_content_url: Jakinarazi edukien URL
451
+ reported_content_url: Emandako edukiaren URLa
435
452
  reports: Salaketak
436
453
  errors:
437
454
  messages: