decidim 0.0.7 → 0.0.8.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.circleci/config.yml +67 -0
- data/.eslintignore +1 -1
- data/.eslintrc.json +1 -0
- data/.travis.yml +4 -1
- data/Gemfile.lock +49 -48
- data/README.md +44 -118
- data/Rakefile +9 -13
- data/decidim-admin/README.md +2 -2
- data/decidim-admin/app/assets/javascripts/decidim/admin/application.js.es6 +13 -0
- data/decidim-admin/app/assets/javascripts/decidim/admin/toggle_nav.js.es6 +17 -0
- data/decidim-admin/app/assets/stylesheets/decidim/admin/_decidim.scss +0 -1
- data/decidim-admin/app/assets/stylesheets/decidim/admin/modules/_datepicker.scss +224 -0
- data/decidim-admin/app/assets/stylesheets/decidim/admin/modules/_modules.scss +1 -0
- data/decidim-admin/app/controllers/decidim/admin/newsletters_controller.rb +1 -1
- data/decidim-admin/app/forms/decidim/admin/participatory_process_user_role_form.rb +9 -0
- data/decidim-admin/app/helpers/decidim/admin/application_helper.rb +6 -0
- data/decidim-admin/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/participatory_process_groups/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/participatory_process_user_roles/_form.html.erb +2 -3
- data/decidim-admin/app/views/decidim/admin/participatory_process_user_roles/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/static_pages/index.html.erb +2 -2
- data/decidim-admin/app/views/layouts/decidim/admin/_application.html.erb +2 -1
- data/decidim-admin/app/views/layouts/decidim/admin/pages.html.erb +1 -1
- data/decidim-admin/config/i18n-tasks.yml +2 -0
- data/decidim-admin/config/locales/ca.yml +22 -17
- data/decidim-admin/config/locales/en.yml +22 -17
- data/decidim-admin/config/locales/es.yml +23 -18
- data/decidim-admin/config/locales/eu.yml +0 -19
- data/decidim-admin/config/locales/fi.yml +0 -14
- data/decidim-admin/config/locales/fr.yml +141 -0
- data/decidim-admin/config/locales/nl.yml +5 -0
- data/decidim-admin/spec/features/admin_invite_spec.rb +7 -1
- data/decidim-admin/spec/features/admin_manages_organization_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_participatory_process_groups_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_participatory_processes_spec.rb +1 -1
- data/decidim-admin/spec/features/static_pages_spec.rb +0 -5
- data/decidim-admin/spec/forms/organization_form_spec.rb +6 -1
- data/decidim-admin/spec/shared/manage_process_admins_examples.rb +2 -2
- data/decidim-admin/spec/shared/manage_process_steps_examples.rb +21 -17
- data/decidim-admin/spec/shared/manage_processes_examples.rb +13 -10
- data/decidim-admin/spec/shared/participatory_admin_shared_context.rb +3 -3
- data/decidim-admin/vendor/assets/javascripts/moment.min.js +7 -0
- data/decidim-api/README.md +2 -2
- data/decidim-budgets/README.md +2 -2
- data/decidim-budgets/config/locales/ca.yml +3 -3
- data/decidim-budgets/config/locales/en.yml +3 -3
- data/decidim-budgets/config/locales/es.yml +3 -3
- data/decidim-budgets/config/locales/eu.yml +0 -3
- data/decidim-budgets/config/locales/fi.yml +0 -3
- data/decidim-budgets/config/locales/fr.yml +97 -0
- data/decidim-budgets/config/locales/nl.yml +5 -0
- data/decidim-budgets/db/migrate/20170410074214_remove_not_null_reference_budgets.rb +5 -0
- data/decidim-budgets/spec/shared/manage_projects_examples.rb +1 -1
- data/decidim-comments/README.md +2 -2
- data/decidim-comments/app/assets/javascripts/decidim/comments/bundle.js +0 -0
- data/decidim-comments/config/locales/fr.yml +5 -0
- data/decidim-comments/config/locales/nl.yml +5 -0
- data/decidim-dev/README.md +2 -2
- data/decidim-dev/config/locales/fr.yml +5 -0
- data/decidim-dev/config/locales/nl.yml +5 -0
- data/decidim-dev/lib/decidim/dev.rb +8 -5
- data/decidim-dev/lib/decidim/dev/common_rake.rb +1 -23
- data/decidim-dev/lib/decidim/dev/railtie.rb +13 -0
- data/decidim-dev/lib/decidim/dev/test/base_spec_helper.rb +6 -5
- data/decidim-dev/lib/generators/decidim/dummy_generator.rb +13 -16
- data/decidim-dev/lib/tasks/test_app.rake +18 -0
- data/decidim-meetings/README.md +2 -2
- data/decidim-meetings/app/controllers/decidim/meetings/meeting_widgets_controller.rb +21 -0
- data/decidim-meetings/app/controllers/decidim/meetings/meetings_controller.rb +2 -0
- data/decidim-meetings/app/views/decidim/meetings/meeting_widgets/.erb +16 -0
- data/decidim-meetings/app/views/decidim/meetings/meeting_widgets/show.html.erb +18 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/show.html.erb +1 -0
- data/decidim-meetings/config/locales/ca.yml +5 -5
- data/decidim-meetings/config/locales/en.yml +5 -5
- data/decidim-meetings/config/locales/es.yml +5 -5
- data/decidim-meetings/config/locales/eu.yml +0 -7
- data/decidim-meetings/config/locales/fi.yml +0 -7
- data/decidim-meetings/config/locales/fr.yml +5 -0
- data/decidim-meetings/config/locales/nl.yml +5 -0
- data/decidim-meetings/db/migrate/20170410074252_remove_not_null_reference_meetings.rb +5 -0
- data/decidim-meetings/lib/decidim/meetings/list_engine.rb +3 -1
- data/decidim-meetings/spec/shared/manage_meetings_examples.rb +87 -72
- data/decidim-pages/README.md +2 -2
- data/decidim-pages/config/locales/ca.yml +1 -1
- data/decidim-pages/config/locales/en.yml +1 -1
- data/decidim-pages/config/locales/es.yml +1 -1
- data/decidim-pages/config/locales/eu.yml +0 -1
- data/decidim-pages/config/locales/fi.yml +0 -1
- data/decidim-pages/config/locales/fr.yml +5 -0
- data/decidim-pages/config/locales/nl.yml +5 -0
- data/decidim-proposals/README.md +2 -2
- data/decidim-proposals/app/controllers/decidim/proposals/proposal_widgets_controller.rb +24 -0
- data/decidim-proposals/app/controllers/decidim/proposals/proposals_controller.rb +13 -4
- data/decidim-proposals/app/helpers/decidim/proposals/application_helper.rb +15 -0
- data/decidim-proposals/app/helpers/decidim/proposals/proposal_order_helper.rb +1 -1
- data/decidim-proposals/app/views/decidim/proposals/admin/proposals/index.html.erb +6 -9
- data/decidim-proposals/app/views/decidim/proposals/proposal_widgets/show.html.erb +25 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/_vote_button.html.erb +9 -3
- data/decidim-proposals/app/views/decidim/proposals/proposals/_votes_count.html.erb +8 -7
- data/decidim-proposals/app/views/decidim/proposals/proposals/show.html.erb +3 -6
- data/decidim-proposals/config/locales/ca.yml +5 -5
- data/decidim-proposals/config/locales/en.yml +6 -5
- data/decidim-proposals/config/locales/es.yml +5 -5
- data/decidim-proposals/config/locales/eu.yml +0 -6
- data/decidim-proposals/config/locales/fi.yml +0 -5
- data/decidim-proposals/config/locales/fr.yml +5 -0
- data/decidim-proposals/config/locales/nl.yml +5 -0
- data/decidim-proposals/db/migrate/20170410073742_remove_not_null_reference_proposals.rb +5 -0
- data/decidim-proposals/lib/decidim/proposals/engine.rb +1 -0
- data/decidim-proposals/lib/decidim/proposals/feature.rb +1 -0
- data/decidim-proposals/spec/features/proposals_spec.rb +1 -6
- data/decidim-proposals/spec/features/vote_proposal_spec.rb +15 -0
- data/decidim-proposals/spec/helpers/proposal_order_helper_spec.rb +13 -3
- data/decidim-proposals/spec/shared/manage_proposals_examples.rb +43 -9
- data/decidim-results/README.md +2 -2
- data/decidim-results/app/controllers/decidim/results/result_widgets_controller.rb +17 -0
- data/decidim-results/app/controllers/decidim/results/results_controller.rb +1 -0
- data/decidim-results/app/views/decidim/results/result_widgets/show.html.erb +10 -0
- data/decidim-results/app/views/decidim/results/results/show.html.erb +1 -0
- data/decidim-results/config/locales/ca.yml +3 -3
- data/decidim-results/config/locales/en.yml +3 -3
- data/decidim-results/config/locales/es.yml +3 -3
- data/decidim-results/config/locales/eu.yml +0 -3
- data/decidim-results/config/locales/fi.yml +0 -3
- data/decidim-results/config/locales/fr.yml +5 -0
- data/decidim-results/config/locales/nl.yml +5 -0
- data/decidim-results/db/migrate/20170410074358_remove_not_null_reference_results.rb +5 -0
- data/decidim-results/lib/decidim/results/list_engine.rb +3 -1
- data/decidim-results/spec/shared/manage_results_examples.rb +1 -1
- data/decidim-system/config/locales/ca.yml +3 -3
- data/decidim-system/config/locales/en.yml +3 -3
- data/decidim-system/config/locales/es.yml +3 -3
- data/decidim-system/config/locales/eu.yml +0 -3
- data/decidim-system/config/locales/fi.yml +0 -3
- data/decidim-system/config/locales/fr.yml +5 -0
- data/decidim-system/config/locales/nl.yml +5 -0
- data/docs/features_and_components.md +1 -1
- data/docs/geocoding.md +34 -0
- data/docs/getting_started.md +135 -0
- data/docs/testing.md +17 -0
- data/lib/generators/decidim/app_generator.rb +7 -0
- data/lib/generators/decidim/templates/Gemfile.erb +4 -4
- data/lib/generators/decidim/templates/README.md.erb +1 -1
- data/lib/generators/decidim/templates/authorization_handler.rb +5 -1
- data/package.json +1 -1
- data/run_ci.sh +6 -6
- metadata +61 -23
@@ -1,5 +1,5 @@
|
|
1
1
|
<!doctype html>
|
2
|
-
<html>
|
2
|
+
<html lang="<%= I18n.locale %>">
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8">
|
5
5
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
@@ -9,6 +9,7 @@
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
10
10
|
<title><%= title %></title>
|
11
11
|
<%= render partial: 'layouts/decidim/admin/header' %>
|
12
|
+
<%= foundation_datepicker_locale_tag %>
|
12
13
|
</head>
|
13
14
|
<body>
|
14
15
|
<%= render partial: 'layouts/decidim/admin/template_top' %>
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<%= t "decidim.admin.titles.static_pages" %>
|
5
5
|
</div>
|
6
6
|
<div class="secondary-nav__actions">
|
7
|
-
<%= link_to t("static_pages.new.
|
7
|
+
<%= link_to t("static_pages.new.create", scope: "decidim.admin"), ['new', 'static_page'], class: 'button expanded small new' %>
|
8
8
|
</div>
|
9
9
|
</div>
|
10
10
|
<% end %>
|
@@ -96,6 +96,8 @@ ignore_unused:
|
|
96
96
|
- decidim.admin.participatory_process_steps.default_title
|
97
97
|
- activemodel.errors.messages.*
|
98
98
|
- actions.confirm_destroy
|
99
|
+
- time.formats.*
|
100
|
+
|
99
101
|
# - '{devise,kaminari,will_paginate}.*'
|
100
102
|
# - 'simple_form.{yes,no}'
|
101
103
|
# - 'simple_form.{placeholders,hints,labels}.*'
|
@@ -10,7 +10,7 @@ ca:
|
|
10
10
|
category:
|
11
11
|
description: Descripció
|
12
12
|
name: Nom
|
13
|
-
|
13
|
+
parent_id: Superior
|
14
14
|
feature:
|
15
15
|
name: Nom
|
16
16
|
weight: Pes
|
@@ -97,6 +97,9 @@ ca:
|
|
97
97
|
subtitle: Subtítol
|
98
98
|
target: A qui va dirigit?
|
99
99
|
title: Títol
|
100
|
+
decidim/participatory_process_step:
|
101
|
+
end_date: Data de finalització
|
102
|
+
start_date: Data d'inici
|
100
103
|
decidim/static_page:
|
101
104
|
content: Contingut
|
102
105
|
slug: Nom curt d'URL
|
@@ -111,7 +114,7 @@ ca:
|
|
111
114
|
destroy: Eliminar
|
112
115
|
edit: Editar
|
113
116
|
manage: Gestionar
|
114
|
-
new: Nou
|
117
|
+
new: Nou/va
|
115
118
|
permissions: Permisos
|
116
119
|
preview: Previsualitzar
|
117
120
|
publish: Publicar
|
@@ -126,7 +129,7 @@ ca:
|
|
126
129
|
success: L'adjunt s'ha eliminat correctament.
|
127
130
|
edit:
|
128
131
|
title: Edita arxiu adjunt
|
129
|
-
update:
|
132
|
+
update: Actualitzar
|
130
133
|
form:
|
131
134
|
current_file: Fitxer actual
|
132
135
|
url: URL
|
@@ -145,7 +148,7 @@ ca:
|
|
145
148
|
success: Categoria eliminada correctament.
|
146
149
|
edit:
|
147
150
|
title: Edita categoria
|
148
|
-
update:
|
151
|
+
update: Actualitzar
|
149
152
|
new:
|
150
153
|
create: Crea una categoria
|
151
154
|
title: Nova categoria
|
@@ -168,8 +171,6 @@ ca:
|
|
168
171
|
steps_title: Fases
|
169
172
|
participatory_process_user_roles:
|
170
173
|
index:
|
171
|
-
admin: Administrador
|
172
|
-
collaborator: Col·laborador
|
173
174
|
process_admins_title: Usuaris del procés participatiu
|
174
175
|
feature_permissions:
|
175
176
|
edit:
|
@@ -234,8 +235,6 @@ ca:
|
|
234
235
|
title: Títol
|
235
236
|
name: Arxiu adjunt
|
236
237
|
category:
|
237
|
-
fields:
|
238
|
-
name: Nom
|
239
238
|
name: Categoria
|
240
239
|
newsletter:
|
241
240
|
fields:
|
@@ -267,6 +266,9 @@ ca:
|
|
267
266
|
name: Nom
|
268
267
|
role: Rol
|
269
268
|
name: Usuari del procés
|
269
|
+
roles:
|
270
|
+
admin: Administrador
|
271
|
+
collaborator: Col·laborador
|
270
272
|
scope:
|
271
273
|
fields:
|
272
274
|
created_at: Data de creació
|
@@ -326,7 +328,7 @@ ca:
|
|
326
328
|
organization:
|
327
329
|
edit:
|
328
330
|
title: Edita organització
|
329
|
-
update:
|
331
|
+
update: Actualitzar
|
330
332
|
form:
|
331
333
|
current_image: Imatge actual
|
332
334
|
facebook: Facebook
|
@@ -374,9 +376,9 @@ ca:
|
|
374
376
|
success: La fase de procés participatiu s'ha eliminat correctament.
|
375
377
|
edit:
|
376
378
|
title: Editar fase de procés participatiu
|
377
|
-
update: Actualitzar
|
379
|
+
update: Actualitzar
|
378
380
|
new:
|
379
|
-
create: Crear
|
381
|
+
create: Crear
|
380
382
|
title: Nova fase de procés participatiu
|
381
383
|
ordering:
|
382
384
|
error: S'ha produït un error en la reordenació de les fases d'aquest procés participatiu.
|
@@ -405,7 +407,7 @@ ca:
|
|
405
407
|
destroy:
|
406
408
|
success: El procés participatiu s'ha eliminat correctament.
|
407
409
|
edit:
|
408
|
-
update: Actualitzar
|
410
|
+
update: Actualitzar
|
409
411
|
form:
|
410
412
|
current_image: imatge actual
|
411
413
|
title: Informació general
|
@@ -414,7 +416,7 @@ ca:
|
|
414
416
|
not_published: No publicat
|
415
417
|
published: Publicat
|
416
418
|
new:
|
417
|
-
create: Crear
|
419
|
+
create: Crear
|
418
420
|
title: Nou procés participatiu
|
419
421
|
update:
|
420
422
|
error: S'ha produït un error en l'actualització d'aquest procés participatiu.
|
@@ -431,7 +433,7 @@ ca:
|
|
431
433
|
success: Àmbit eliminat amb èxit
|
432
434
|
edit:
|
433
435
|
title: Edita àmbit
|
434
|
-
update:
|
436
|
+
update: Actualitzar
|
435
437
|
new:
|
436
438
|
create: Crea àmbit
|
437
439
|
title: Nou àmbit
|
@@ -448,9 +450,9 @@ ca:
|
|
448
450
|
success: La pàgina s'ha eliminat correctament.
|
449
451
|
edit:
|
450
452
|
title: Editar pàgina
|
451
|
-
update: Actualitzar
|
453
|
+
update: Actualitzar
|
452
454
|
new:
|
453
|
-
create:
|
455
|
+
create: Nova
|
454
456
|
title: Nova pàgina
|
455
457
|
update:
|
456
458
|
error: S'ha produït un error en l'actualització d'aquests pàgina.
|
@@ -516,4 +518,7 @@ ca:
|
|
516
518
|
settings:
|
517
519
|
title: Configuració
|
518
520
|
users:
|
519
|
-
title: Usuaris
|
521
|
+
title: Usuaris
|
522
|
+
time:
|
523
|
+
formats:
|
524
|
+
timepicker: "%d / %m / %Y %H:%M"
|
@@ -11,7 +11,7 @@ en:
|
|
11
11
|
category:
|
12
12
|
description: Description
|
13
13
|
name: Name
|
14
|
-
|
14
|
+
parent_id: Parent
|
15
15
|
feature:
|
16
16
|
name: Name
|
17
17
|
weight: Weight
|
@@ -98,6 +98,9 @@ en:
|
|
98
98
|
subtitle: Subtitle
|
99
99
|
target: Target
|
100
100
|
title: Title
|
101
|
+
decidim/participatory_process_step:
|
102
|
+
end_date: End date
|
103
|
+
start_date: Start date
|
101
104
|
decidim/static_page:
|
102
105
|
content: Content
|
103
106
|
slug: URL slug
|
@@ -112,7 +115,7 @@ en:
|
|
112
115
|
destroy: Destroy
|
113
116
|
edit: Edit
|
114
117
|
manage: Manage
|
115
|
-
new: New
|
118
|
+
new: New
|
116
119
|
permissions: Permissions
|
117
120
|
preview: Preview
|
118
121
|
publish: Publish
|
@@ -127,7 +130,7 @@ en:
|
|
127
130
|
success: Attachment destroyed successfully.
|
128
131
|
edit:
|
129
132
|
title: Edit attachment
|
130
|
-
update: Update
|
133
|
+
update: Update
|
131
134
|
form:
|
132
135
|
current_file: Current file
|
133
136
|
url: Url
|
@@ -146,7 +149,7 @@ en:
|
|
146
149
|
success: Category deleted successfully.
|
147
150
|
edit:
|
148
151
|
title: Edit category
|
149
|
-
update: Update
|
152
|
+
update: Update
|
150
153
|
new:
|
151
154
|
create: Create category
|
152
155
|
title: New category
|
@@ -169,8 +172,6 @@ en:
|
|
169
172
|
steps_title: Steps
|
170
173
|
participatory_process_user_roles:
|
171
174
|
index:
|
172
|
-
admin: Administrator
|
173
|
-
collaborator: Collaborator
|
174
175
|
process_admins_title: Participatory process users
|
175
176
|
feature_permissions:
|
176
177
|
edit:
|
@@ -235,8 +236,6 @@ en:
|
|
235
236
|
title: Title
|
236
237
|
name: Attachment
|
237
238
|
category:
|
238
|
-
fields:
|
239
|
-
name: Name
|
240
239
|
name: Category
|
241
240
|
newsletter:
|
242
241
|
fields:
|
@@ -268,6 +267,9 @@ en:
|
|
268
267
|
name: Name
|
269
268
|
role: Role
|
270
269
|
name: Participatory Process User
|
270
|
+
roles:
|
271
|
+
admin: Administrator
|
272
|
+
collaborator: Collaborator
|
271
273
|
scope:
|
272
274
|
fields:
|
273
275
|
created_at: Created at
|
@@ -327,7 +329,7 @@ en:
|
|
327
329
|
organization:
|
328
330
|
edit:
|
329
331
|
title: Edit organization
|
330
|
-
update: Update
|
332
|
+
update: Update
|
331
333
|
form:
|
332
334
|
current_image: Current image
|
333
335
|
facebook: Facebook
|
@@ -375,9 +377,9 @@ en:
|
|
375
377
|
success: Participatory process step destroyed successfully.
|
376
378
|
edit:
|
377
379
|
title: Edit participatory process step
|
378
|
-
update: Update
|
380
|
+
update: Update
|
379
381
|
new:
|
380
|
-
create: Create
|
382
|
+
create: Create
|
381
383
|
title: New participatory process step
|
382
384
|
ordering:
|
383
385
|
error: There was an error when reordering this participatory process steps.
|
@@ -406,7 +408,7 @@ en:
|
|
406
408
|
destroy:
|
407
409
|
success: Participatory process destroyed successfully.
|
408
410
|
edit:
|
409
|
-
update: Update
|
411
|
+
update: Update
|
410
412
|
form:
|
411
413
|
current_image: Current image
|
412
414
|
title: General Information
|
@@ -415,8 +417,8 @@ en:
|
|
415
417
|
not_published: Not published
|
416
418
|
published: Published
|
417
419
|
new:
|
418
|
-
create: Create
|
419
|
-
title: New
|
420
|
+
create: Create
|
421
|
+
title: New participatory process
|
420
422
|
update:
|
421
423
|
error: There was an error when updating this participatory process.
|
422
424
|
success: Participatory process updated successfully.
|
@@ -432,7 +434,7 @@ en:
|
|
432
434
|
success: Scope successfully destroyed
|
433
435
|
edit:
|
434
436
|
title: Edit scope
|
435
|
-
update: Update
|
437
|
+
update: Update
|
436
438
|
new:
|
437
439
|
create: Create scope
|
438
440
|
title: New scope
|
@@ -449,9 +451,9 @@ en:
|
|
449
451
|
success: Page successfully destroyed
|
450
452
|
edit:
|
451
453
|
title: Edit page
|
452
|
-
update: Update
|
454
|
+
update: Update
|
453
455
|
new:
|
454
|
-
create:
|
456
|
+
create: New
|
455
457
|
title: New page
|
456
458
|
update:
|
457
459
|
error: There was an error when updating this page.
|
@@ -518,3 +520,6 @@ en:
|
|
518
520
|
title: Settings
|
519
521
|
users:
|
520
522
|
title: Users
|
523
|
+
time:
|
524
|
+
formats:
|
525
|
+
timepicker: "%m/%d/%Y %H:%M"
|
@@ -10,7 +10,7 @@ es:
|
|
10
10
|
category:
|
11
11
|
description: Descripción
|
12
12
|
name: Nombre
|
13
|
-
|
13
|
+
parent_id: Superior
|
14
14
|
feature:
|
15
15
|
name: Nombre
|
16
16
|
weight: Peso
|
@@ -97,6 +97,9 @@ es:
|
|
97
97
|
subtitle: Subtítulo
|
98
98
|
target: '¿A quién va dirigido?'
|
99
99
|
title: Título
|
100
|
+
decidim/participatory_process_step:
|
101
|
+
end_date: Fecha de finalización
|
102
|
+
start_date: Fecha de inicio
|
100
103
|
decidim/static_page:
|
101
104
|
content: Contenido
|
102
105
|
slug: Texto corto de URL
|
@@ -111,7 +114,7 @@ es:
|
|
111
114
|
destroy: Eliminar
|
112
115
|
edit: Editar
|
113
116
|
manage: Gestionar
|
114
|
-
new: Nuevo
|
117
|
+
new: Nuevo/a
|
115
118
|
permissions: Permisos
|
116
119
|
preview: Previsualizar
|
117
120
|
publish: Publicar
|
@@ -126,7 +129,7 @@ es:
|
|
126
129
|
success: El archivo adjunto se ha eliminado correctamente.
|
127
130
|
edit:
|
128
131
|
title: Editar archivo adjunto
|
129
|
-
update: Actualizar
|
132
|
+
update: Actualizar
|
130
133
|
form:
|
131
134
|
current_file: Archivo actual
|
132
135
|
url: URL
|
@@ -145,7 +148,7 @@ es:
|
|
145
148
|
success: Categoría eliminada correctamente.
|
146
149
|
edit:
|
147
150
|
title: Editar categoría
|
148
|
-
update: Actualizar
|
151
|
+
update: Actualizar
|
149
152
|
new:
|
150
153
|
create: Crear categoría
|
151
154
|
title: Nueva categoría
|
@@ -168,8 +171,6 @@ es:
|
|
168
171
|
steps_title: Fases
|
169
172
|
participatory_process_user_roles:
|
170
173
|
index:
|
171
|
-
admin: Administrador
|
172
|
-
collaborator: Colaborador
|
173
174
|
process_admins_title: Usuarios del proceso
|
174
175
|
feature_permissions:
|
175
176
|
edit:
|
@@ -234,8 +235,6 @@ es:
|
|
234
235
|
title: Título
|
235
236
|
name: Archivo adjunto
|
236
237
|
category:
|
237
|
-
fields:
|
238
|
-
name: Nombre
|
239
238
|
name: Categoría
|
240
239
|
newsletter:
|
241
240
|
fields:
|
@@ -267,6 +266,9 @@ es:
|
|
267
266
|
name: Nombre
|
268
267
|
role: Rol
|
269
268
|
name: Usuario del proceso
|
269
|
+
roles:
|
270
|
+
admin: Administrador
|
271
|
+
collaborator: Colaborador
|
270
272
|
scope:
|
271
273
|
fields:
|
272
274
|
created_at: Fecha de creación
|
@@ -326,7 +328,7 @@ es:
|
|
326
328
|
organization:
|
327
329
|
edit:
|
328
330
|
title: Editar organización
|
329
|
-
update: Actualizar
|
331
|
+
update: Actualizar
|
330
332
|
form:
|
331
333
|
current_image: Imagen actual
|
332
334
|
facebook: Facebook
|
@@ -374,9 +376,9 @@ es:
|
|
374
376
|
success: La fase de proceso participativo se ha eliminado correctamente.
|
375
377
|
edit:
|
376
378
|
title: Editar fase de proceso participativo
|
377
|
-
update: Actualizar
|
379
|
+
update: Actualizar
|
378
380
|
new:
|
379
|
-
create: Crear
|
381
|
+
create: Crear
|
380
382
|
title: Nuevo fase de proceso participativo
|
381
383
|
ordering:
|
382
384
|
error: Se ha producido un error en la reordenación de las fases de este proceso participativo.
|
@@ -405,7 +407,7 @@ es:
|
|
405
407
|
destroy:
|
406
408
|
success: El proceso participativo se ha eliminado correctamente.
|
407
409
|
edit:
|
408
|
-
update: Actualizar
|
410
|
+
update: Actualizar
|
409
411
|
form:
|
410
412
|
current_image: Imagen actual
|
411
413
|
title: Información general
|
@@ -414,8 +416,8 @@ es:
|
|
414
416
|
not_published: No publicado
|
415
417
|
published: Publicado
|
416
418
|
new:
|
417
|
-
create: Crear
|
418
|
-
title: Nuevo proceso
|
419
|
+
create: Crear
|
420
|
+
title: Nuevo proceso participativo
|
419
421
|
update:
|
420
422
|
error: Se ha producido un error en la actualización de este proceso participativo.
|
421
423
|
success: El proceso participativo se ha actualizado correctamente.
|
@@ -431,7 +433,7 @@ es:
|
|
431
433
|
success: Ámbito eliminado con éxito
|
432
434
|
edit:
|
433
435
|
title: Editar alcance
|
434
|
-
update: Actualizar
|
436
|
+
update: Actualizar
|
435
437
|
new:
|
436
438
|
create: Crear ámbito
|
437
439
|
title: Nuevo ámbito
|
@@ -448,9 +450,9 @@ es:
|
|
448
450
|
success: La página se ha eliminado correctamente.
|
449
451
|
edit:
|
450
452
|
title: Editar página
|
451
|
-
update: Actualizar
|
453
|
+
update: Actualizar
|
452
454
|
new:
|
453
|
-
create:
|
455
|
+
create: Nueva
|
454
456
|
title: Nueva página
|
455
457
|
update:
|
456
458
|
error: Se ha producido un error en la actualización de ésta página.
|
@@ -516,4 +518,7 @@ es:
|
|
516
518
|
settings:
|
517
519
|
title: Ajustes
|
518
520
|
users:
|
519
|
-
title: Usuarios
|
521
|
+
title: Usuarios
|
522
|
+
time:
|
523
|
+
formats:
|
524
|
+
timepicker: "%d / %m / %Y %H:%M"
|
@@ -10,7 +10,6 @@ eu:
|
|
10
10
|
category:
|
11
11
|
description: Deskribapena
|
12
12
|
name: Izena
|
13
|
-
parent: Nagusia
|
14
13
|
feature:
|
15
14
|
name: Izena
|
16
15
|
weight: Pisua
|
@@ -111,7 +110,6 @@ eu:
|
|
111
110
|
destroy: Kendu
|
112
111
|
edit: Editatu
|
113
112
|
manage: Kudeatu
|
114
|
-
new: '%{name} berria'
|
115
113
|
permissions: Baimenak
|
116
114
|
preview: Aurreikusi
|
117
115
|
publish: Argitaratu
|
@@ -126,7 +124,6 @@ eu:
|
|
126
124
|
success: Fitxategi erantsia zuzen ezabatu da.
|
127
125
|
edit:
|
128
126
|
title: Editatu fitxategi erantsia
|
129
|
-
update: Eguneratu fitxategi erantsia
|
130
127
|
form:
|
131
128
|
current_file: Oraingo fitxategia
|
132
129
|
url: url
|
@@ -145,7 +142,6 @@ eu:
|
|
145
142
|
success: Kategoria zuzen ezabatu da.
|
146
143
|
edit:
|
147
144
|
title: Editatu kategoria
|
148
|
-
update: Eguneratu kategoria
|
149
145
|
new:
|
150
146
|
create: Sortu kategoria
|
151
147
|
title: Kategoria berria
|
@@ -168,8 +164,6 @@ eu:
|
|
168
164
|
steps_title: Faseak
|
169
165
|
participatory_process_user_roles:
|
170
166
|
index:
|
171
|
-
admin: Administratzailea
|
172
|
-
collaborator: Kolaboratzailea
|
173
167
|
process_admins_title: Prozesu partizipatiboko erabiltzaileak
|
174
168
|
feature_permissions:
|
175
169
|
edit:
|
@@ -234,8 +228,6 @@ eu:
|
|
234
228
|
title: Izenburua
|
235
229
|
name: Fitxategi erantsia
|
236
230
|
category:
|
237
|
-
fields:
|
238
|
-
name: Izena
|
239
231
|
name: Kategoria
|
240
232
|
newsletter:
|
241
233
|
fields:
|
@@ -326,7 +318,6 @@ eu:
|
|
326
318
|
organization:
|
327
319
|
edit:
|
328
320
|
title: Editatu erakundea
|
329
|
-
update: Eguneratu erakundea
|
330
321
|
form:
|
331
322
|
current_image: Oraingo irudia
|
332
323
|
facebook: Facebook
|
@@ -374,9 +365,7 @@ eu:
|
|
374
365
|
success: Prozesu partizipatiboaren fasea zuzen ezabatu da.
|
375
366
|
edit:
|
376
367
|
title: Editatu prozesu partizipatiboaren fasea
|
377
|
-
update: Eguneratu prozesu partizipatiboaren fasea
|
378
368
|
new:
|
379
|
-
create: Sortu prozesu partizipatiboaren fasea
|
380
369
|
title: Prozesu partizipatiboaren fase berria
|
381
370
|
ordering:
|
382
371
|
error: Errorea gertatu da prozesu partizipatiboaren faseak berrantolatzean.
|
@@ -404,8 +393,6 @@ eu:
|
|
404
393
|
success: Prozesu partizipatiboa zuzen sortu da. Orain, jarrai ezazu faseak konfiguratzen.
|
405
394
|
destroy:
|
406
395
|
success: Prozesu partizipatiboa zuzen ezabatu da.
|
407
|
-
edit:
|
408
|
-
update: Eguneratu prozesu partizipatiboa
|
409
396
|
form:
|
410
397
|
current_image: Oraingo irudia
|
411
398
|
title: Informazio orokorra
|
@@ -413,9 +400,6 @@ eu:
|
|
413
400
|
index:
|
414
401
|
not_published: Argitaratu gabe
|
415
402
|
published: Argitaratua
|
416
|
-
new:
|
417
|
-
create: Sortu prozesu partizipatiboa
|
418
|
-
title: Prozesu partizipatibo berria
|
419
403
|
update:
|
420
404
|
error: Errorea gertatu da prozesu partizipatibo hau eguneratzean.
|
421
405
|
success: Prozesu partizipatiboa zuzen eguneratu da.
|
@@ -431,7 +415,6 @@ eu:
|
|
431
415
|
success: Esparrua ongi ezabatu da
|
432
416
|
edit:
|
433
417
|
title: Editatu helmena
|
434
|
-
update: Eguneratu esparrua
|
435
418
|
new:
|
436
419
|
create: Sortu esparrua
|
437
420
|
title: Esparru berria
|
@@ -448,9 +431,7 @@ eu:
|
|
448
431
|
success: Orria zuzen ezabatu da.
|
449
432
|
edit:
|
450
433
|
title: Editatu orria
|
451
|
-
update: Eguneratu orria
|
452
434
|
new:
|
453
|
-
create: Sortu orria
|
454
435
|
title: Orri berria
|
455
436
|
update:
|
456
437
|
error: Errorea gertatu da orri hau eguneratzean.
|