decidim 0.4.3 → 0.4.4
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/.codeclimate.yml +11 -0
- data/CHANGELOG.md +16 -2
- data/Gemfile.lock +41 -42
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/decidim-admin/app/commands/decidim/admin/publish_participatory_process.rb +1 -5
- data/decidim-admin/app/commands/decidim/admin/unpublish_participatory_process.rb +1 -5
- data/decidim-admin/app/controllers/decidim/admin/application_controller.rb +1 -1
- data/decidim-admin/app/controllers/decidim/admin/exports_controller.rb +2 -9
- data/decidim-admin/app/controllers/decidim/admin/feature_permissions_controller.rb +1 -1
- data/decidim-admin/app/controllers/decidim/admin/features/base_controller.rb +3 -2
- data/decidim-admin/app/controllers/decidim/admin/features_controller.rb +2 -2
- data/decidim-admin/app/controllers/decidim/admin/participatory_process_groups_controller.rb +2 -1
- data/decidim-admin/app/controllers/decidim/admin/participatory_processes_controller.rb +6 -2
- data/decidim-admin/app/forms/decidim/admin/participatory_process_copy_form.rb +1 -1
- data/decidim-admin/app/forms/decidim/admin/participatory_process_form.rb +1 -1
- data/decidim-admin/app/helpers/decidim/admin/process_groups_for_select_helper.rb +1 -1
- data/decidim-admin/app/helpers/decidim/admin/processes_for_select_helper.rb +1 -1
- data/decidim-admin/app/helpers/decidim/admin/{feature_settings_helper.rb → settings_helper.rb} +2 -2
- data/decidim-admin/app/models/decidim/admin/abilities/participatory_process_admin_ability.rb +2 -2
- data/decidim-admin/app/views/decidim/admin/attachments/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/features/_feature.html.erb +2 -2
- data/decidim-admin/app/views/decidim/admin/features/edit.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/features/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/features/new.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/participatory_process_groups/show.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/participatory_process_steps/index.html.erb +2 -2
- data/decidim-admin/app/views/decidim/admin/participatory_process_steps/new.html.erb +0 -1
- data/decidim-admin/app/views/decidim/admin/participatory_process_user_roles/index.html.erb +1 -1
- data/decidim-admin/app/views/decidim/admin/participatory_process_user_roles/new.html.erb +6 -6
- data/decidim-admin/app/views/decidim/admin/participatory_processes/new.html.erb +0 -1
- data/decidim-admin/app/views/layouts/decidim/admin/participatory_process.html.erb +2 -2
- data/decidim-admin/config/locales/ca.yml +7 -14
- data/decidim-admin/config/locales/en.yml +7 -14
- data/decidim-admin/config/locales/es.yml +7 -14
- data/decidim-admin/config/locales/eu.yml +9 -15
- data/decidim-admin/config/locales/fi.yml +7 -12
- data/decidim-admin/config/locales/fr.yml +9 -15
- data/decidim-admin/config/locales/it.yml +9 -15
- data/decidim-admin/config/routes.rb +9 -7
- data/decidim-admin/spec/commands/copy_participatory_process_spec.rb +4 -4
- data/decidim-admin/spec/controllers/exports_controller_spec.rb +2 -0
- data/decidim-admin/spec/controllers/participatory_processes_controller_spec.rb +2 -0
- data/decidim-admin/spec/controllers/static_pages_controller_spec.rb +2 -0
- data/decidim-admin/spec/features/admin_copy_participatory_process_spec.rb +3 -2
- data/decidim-admin/spec/features/admin_manages_feature_permissions_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_features_spec.rb +4 -4
- data/decidim-admin/spec/features/admin_manages_participatory_process_admins_spec.rb +2 -1
- data/decidim-admin/spec/features/admin_manages_participatory_process_attachments_spec.rb +2 -1
- data/decidim-admin/spec/features/admin_manages_participatory_process_categories_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_participatory_process_groups_spec.rb +2 -2
- data/decidim-admin/spec/features/admin_manages_participatory_process_steps_spec.rb +2 -1
- data/decidim-admin/spec/features/admin_manages_participatory_processes_spec.rb +3 -3
- data/decidim-admin/spec/features/admin_manages_user_groups_spec.rb +3 -2
- data/decidim-admin/spec/features/participatory_process_admin_manages_participatory_process_admins_spec.rb +1 -2
- data/decidim-admin/spec/features/participatory_process_admin_manages_participatory_process_attachments_spec.rb +1 -3
- data/decidim-admin/spec/features/{process_admin_manages_participatory_process_categories_spec.rb → participatory_process_admin_manages_participatory_process_categories_spec.rb} +2 -4
- data/decidim-admin/spec/features/participatory_process_admin_manages_participatory_process_steps_spec.rb +1 -2
- data/decidim-admin/spec/features/participatory_process_admin_manages_participatory_processes_spec.rb +2 -2
- data/decidim-admin/spec/helpers/{feature_settings_helper_spec.rb → settings_helper_spec.rb} +1 -1
- data/decidim-admin/spec/shared/manage_process_admins_examples.rb +9 -1
- data/decidim-admin/spec/shared/participatory_process_administration_by_admin_shared_context.rb +9 -0
- data/decidim-admin/spec/shared/participatory_process_administration_by_process_admin_shared_context.rb +13 -0
- data/decidim-admin/spec/shared/{participatory_admin_shared_context.rb → participatory_process_administration_shared_context.rb} +2 -4
- data/decidim-api/decidim-api.gemspec +2 -0
- data/decidim-api/lib/decidim/api/schema.rb +1 -1
- data/decidim-api/lib/decidim/api/test/type_context.rb +1 -1
- data/decidim-api/spec/controllers/queries_controller_spec.rb +2 -0
- data/decidim-budgets/app/forms/decidim/budgets/admin/project_form.rb +4 -0
- data/decidim-budgets/app/views/decidim/budgets/admin/projects/index.html.erb +1 -1
- data/decidim-budgets/app/views/decidim/budgets/projects/_tags.html.erb +2 -2
- data/decidim-budgets/decidim-budgets.gemspec +1 -1
- data/decidim-budgets/lib/decidim/budgets/feature.rb +30 -34
- data/decidim-budgets/spec/commands/remove_line_item_spec.rb +2 -0
- data/decidim-budgets/spec/features/comments_spec.rb +1 -1
- data/decidim-budgets/spec/features/orders_spec.rb +1 -5
- data/decidim-budgets/spec/forms/project_form_spec.rb +6 -0
- data/decidim-budgets/spec/shared/manage_projects_examples.rb +1 -1
- data/decidim-comments/app/assets/javascripts/decidim/comments/bundle.js +0 -0
- data/decidim-comments/app/frontend/comments/add_comment_form.component.tsx +3 -3
- data/decidim-comments/app/frontend/support/schema.ts +1379 -94
- data/decidim-comments/app/types/decidim/comments/commentable_interface.rb +1 -1
- data/decidim-comments/decidim-comments.gemspec +1 -0
- data/decidim-comments/lib/decidim/comments/api/comment_mutation_type.rb +2 -2
- data/decidim-comments/spec/features/comments_spec.rb +1 -1
- data/decidim-comments/spec/features/notifications_spec.rb +1 -1
- data/decidim-comments/spec/features/report_comment_spec.rb +1 -1
- data/decidim-comments/spec/models/comment_spec.rb +1 -1
- data/decidim-dev/lib/decidim/dev/test/base_spec_helper.rb +2 -1
- data/decidim-dev/lib/decidim/dev/test/rspec_support/feature_context.rb +1 -3
- data/decidim-dev/lib/decidim/dev/test/rspec_support/i18n.rb +0 -7
- data/decidim-dev/lib/decidim/dev/test/rspec_support/phantomjs_polyfills/promise.js +2 -2
- data/decidim-dev/lib/decidim/dev/test/rspec_support/route_helpers.rb +6 -0
- data/decidim-dev/lib/generators/decidim/dummy_generator.rb +0 -2
- data/decidim-meetings/app/forms/decidim/meetings/admin/meeting_form.rb +6 -0
- data/decidim-meetings/app/helpers/decidim/meetings/meetings_helper.rb +2 -1
- data/decidim-meetings/app/services/decidim/meetings/meeting_search.rb +2 -2
- data/decidim-meetings/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +2 -2
- data/decidim-meetings/app/views/decidim/meetings/admin/meetings/index.html.erb +1 -1
- data/decidim-meetings/app/views/decidim/meetings/meetings/_tags.html.erb +2 -2
- data/decidim-meetings/decidim-meetings.gemspec +1 -1
- data/decidim-meetings/lib/decidim/meetings/feature.rb +35 -39
- data/decidim-meetings/spec/features/explore_meetings_spec.rb +1 -1
- data/decidim-meetings/spec/forms/meeting_form_spec.rb +6 -0
- data/decidim-meetings/spec/shared/manage_meetings_examples.rb +1 -1
- data/decidim-pages/lib/decidim/pages/feature.rb +14 -18
- data/decidim-pages/spec/features/comments_spec.rb +1 -1
- data/decidim-proposals/app/forms/decidim/proposals/admin/proposal_form.rb +6 -0
- data/decidim-proposals/app/forms/decidim/proposals/proposal_form.rb +6 -0
- data/decidim-proposals/app/models/decidim/proposals/proposal.rb +9 -1
- data/decidim-proposals/app/views/decidim/proposals/admin/proposals/index.html.erb +1 -1
- data/decidim-proposals/app/views/decidim/proposals/proposals/_tags.html.erb +2 -2
- data/decidim-proposals/decidim-proposals.gemspec +1 -0
- data/decidim-proposals/lib/decidim/proposals/feature.rb +59 -65
- data/decidim-proposals/lib/decidim/proposals/proposal_serializer.rb +1 -15
- data/decidim-proposals/spec/controllers/decidim/admin/proposal_answers_controller_spec.rb +2 -4
- data/decidim-proposals/spec/controllers/decidim/proposal_votes_controller_spec.rb +2 -4
- data/decidim-proposals/spec/controllers/decidim/proposals_controller_spec.rb +2 -4
- data/decidim-proposals/spec/features/comments_spec.rb +1 -1
- data/decidim-proposals/spec/features/report_proposal_spec.rb +1 -1
- data/decidim-proposals/spec/models/decidim/proposals/proposal_spec.rb +18 -0
- data/decidim-proposals/spec/shared/manage_proposals_examples.rb +1 -1
- data/decidim-proposals/spec/shared/proposal_form_examples.rb +6 -0
- data/decidim-results/app/controllers/decidim/results/result_widgets_controller.rb +0 -2
- data/decidim-results/app/forms/decidim/results/admin/result_form.rb +4 -0
- data/decidim-results/app/views/decidim/results/admin/results/index.html.erb +1 -1
- data/decidim-results/app/views/decidim/results/results/_tags.html.erb +2 -2
- data/decidim-results/decidim-results.gemspec +2 -1
- data/decidim-results/lib/decidim/results/feature.rb +18 -22
- data/decidim-results/spec/controllers/results_controller_spec.rb +2 -0
- data/decidim-results/spec/features/comments_spec.rb +1 -1
- data/decidim-results/spec/features/explore_results_spec.rb +1 -1
- data/decidim-results/spec/forms/result_form_spec.rb +6 -0
- data/decidim-results/spec/shared/manage_results_examples.rb +1 -1
- data/decidim-surveys/decidim-surveys.gemspec +1 -0
- data/decidim-surveys/lib/decidim/surveys/feature.rb +23 -27
- data/decidim-system/db/seeds.rb +1 -2
- data/decidim-system/spec/commands/decidim/system/create_default_pages_spec.rb +1 -1
- data/docs/features_and_components.md +6 -6
- data/docs/getting_started.md +1 -1
- data/docs/how_to_create_a_plugin.md +2 -2
- data/docs/social_providers.md +2 -2
- data/lib/generators/decidim/app_generator.rb +0 -6
- data/lib/generators/decidim/docker_generator.rb +1 -1
- data/lib/generators/decidim/install_generator.rb +5 -5
- data/lib/generators/decidim/templates/README.md.erb +1 -1
- data/lib/generators/decidim/templates/database.yml.erb +1 -1
- data/lib/generators/decidim/templates/initializer.rb +4 -1
- data/package-lock.json +46 -134
- data/package.json +9 -9
- metadata +31 -30
- data/decidim-dev/lib/decidim/dev/test/rspec_support/engine_routes.rb +0 -35
- data/decidim-dev/lib/generators/decidim/templates/decidim_dev.rb +0 -3
data/decidim-admin/app/helpers/decidim/admin/{feature_settings_helper.rb → settings_helper.rb}
RENAMED
@@ -4,7 +4,7 @@ module Decidim
|
|
4
4
|
module Admin
|
5
5
|
# This class contains helpers needed in order for feature settings to
|
6
6
|
# properly render.
|
7
|
-
module
|
7
|
+
module SettingsHelper
|
8
8
|
TYPES = {
|
9
9
|
boolean: :check_box,
|
10
10
|
integer: :number_field,
|
@@ -16,7 +16,7 @@ module Decidim
|
|
16
16
|
# type.
|
17
17
|
#
|
18
18
|
# form - The form in which to render the field.
|
19
|
-
# attribute - The
|
19
|
+
# attribute - The Settings::Attribute instance with the
|
20
20
|
# description of the attribute.
|
21
21
|
# name - The name of the field.
|
22
22
|
# options - Extra options to be passed to the field helper.
|
data/decidim-admin/app/models/decidim/admin/abilities/participatory_process_admin_ability.rb
CHANGED
@@ -5,8 +5,8 @@ module Decidim
|
|
5
5
|
module Abilities
|
6
6
|
# Defines the abilities for a participatory process admin in the admin
|
7
7
|
# section. Intended to be used with `cancancan`. This is not intended to
|
8
|
-
# extend the base `Decidim::
|
9
|
-
# Admin engine.
|
8
|
+
# extend the base `Decidim::Abilities::BaseAbility` class, it should only
|
9
|
+
# be used in the Admin engine.
|
10
10
|
#
|
11
11
|
# This ability will not apply to organization admins.
|
12
12
|
class ParticipatoryProcessAdminAbility < Decidim::Abilities::ParticipatoryProcessAdminAbility
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class='card' id="attachments">
|
2
2
|
<div class="card-divider">
|
3
3
|
<h2 class="card-title">
|
4
|
-
<%= t(".attachments_title"
|
4
|
+
<%= t(".attachments_title") %>
|
5
5
|
<% if can? :create, authorization_object %>
|
6
6
|
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.attachment.name", scope: "decidim.admin")), url_for(action: :new), class: 'button tiny button--title new' %>
|
7
7
|
<% end %>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="card" id="categories">
|
2
2
|
<div class="card-divider">
|
3
3
|
<h2 class='card-title'>
|
4
|
-
<%= t(".categories_title"
|
4
|
+
<%= t(".categories_title") %>
|
5
5
|
<% if can? :create, Decidim::Category %>
|
6
6
|
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.category.name", scope: "decidim.admin")), new_participatory_process_category_path(current_participatory_process), class: 'button tiny button--title new' %>
|
7
7
|
<% end %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<ul class="vertical menu add-features">
|
4
4
|
<% feature.manifest.export_manifests.each do |manifest| %>
|
5
5
|
<% %w{csv json}.each do |format| %>
|
6
|
-
<li class="exports--format--<%= format %> exports--<%= manifest.name %>"><%= link_to t("decidim.admin.exports.export_as", name: t("decidim.#{feature.manifest.name}.admin.exports.#{manifest.name}"), export_format: format.upcase), decidim_admin.
|
6
|
+
<li class="exports--format--<%= format %> exports--<%= manifest.name %>"><%= link_to t("decidim.admin.exports.export_as", name: t("decidim.#{feature.manifest.name}.admin.exports.#{manifest.name}"), export_format: format.upcase), decidim_admin.feature_exports_path(feature_id: feature, participatory_process_id: feature.participatory_process, format: format, id: manifest.name), method: :post %></li>
|
7
7
|
<% end %>
|
8
8
|
<% end %>
|
9
9
|
</ul>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<tr class="feature-<%= feature.id %>">
|
2
2
|
<td>
|
3
|
-
<%= link_to
|
3
|
+
<%= link_to main_feature_path(feature), target: "_blank" do %>
|
4
4
|
<%= translated_attribute feature.name %>
|
5
5
|
<% end %>
|
6
6
|
</td>
|
@@ -28,7 +28,7 @@
|
|
28
28
|
<% if feature.manifest.actions.empty? %>
|
29
29
|
<%= icon "key", class: "action-icon action-icon--disabled" %>
|
30
30
|
<% else %>
|
31
|
-
<%= icon_link_to "key",
|
31
|
+
<%= icon_link_to "key", url_for(action: :edit, feature_id: feature, controller: "feature_permissions"), t("actions.permissions", scope: "decidim.admin"), class: "action-icon--permissions" %>
|
32
32
|
<% end %>
|
33
33
|
<% end %>
|
34
34
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= decidim_form_for([current_participatory_process, @form], url:
|
1
|
+
<%= decidim_form_for([current_participatory_process, @form], url: feature_path(current_participatory_process, @feature), method: "put", html: { class: "form edit_feature" }) do |form| %>
|
2
2
|
<%= render partial: 'form', object: form, locals: { feature: @feature, title: t(".title", name: t("#{@feature.manifest.name}.name", scope: "decidim.features"))} %>
|
3
3
|
|
4
4
|
<div class="button--double form-general-submit">
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<div class="dropdown-pane" id="add-feature-dropdown" data-dropdown data-auto-focus="true" data-close-on-click="true">
|
7
7
|
<ul class="vertical menu add-features">
|
8
8
|
<% @manifests.each do |manifest| %>
|
9
|
-
<li><%= link_to t("#{manifest.name}.name", scope: "decidim.features"),
|
9
|
+
<li><%= link_to t("#{manifest.name}.name", scope: "decidim.features"), new_feature_path(type: manifest.name), class: manifest.name %></li>
|
10
10
|
<% end %>
|
11
11
|
</ul>
|
12
12
|
</div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
<%= decidim_form_for([current_participatory_process, @form], url:
|
2
|
+
<%= decidim_form_for([current_participatory_process, @form], url: features_path(type: params[:type]), method: "post", html: { class: "form new_feature" }) do |form| %>
|
3
3
|
<%= render partial: 'form', object: form, locals: { feature: @feature, title: t(".title", name: t("#{manifest.name}.name", scope: "decidim.features"))} %>
|
4
4
|
|
5
5
|
<div class="button--double form-general-submit">
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="card" id="steps">
|
2
2
|
<div class="card-divider">
|
3
3
|
<h2 class="card-title">
|
4
|
-
<%= t(".steps_title"
|
4
|
+
<%= t(".steps_title") %>
|
5
5
|
<% if can? :create, Decidim::ParticipatoryProcessStep %>
|
6
6
|
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.participatory_process_step.name", scope: "decidim.admin")), new_participatory_process_step_path(current_participatory_process), class: 'button tiny button--title' %>
|
7
7
|
<% end %>
|
@@ -60,4 +60,4 @@
|
|
60
60
|
<% end %>
|
61
61
|
</div>
|
62
62
|
</div>
|
63
|
-
</div>
|
63
|
+
</div>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class='card' id="process_admins">
|
2
2
|
<div class="card-divider">
|
3
3
|
<h2 class="card-title">
|
4
|
-
<%= t(".process_admins_title"
|
4
|
+
<%= t(".process_admins_title") %>
|
5
5
|
<% if can? :create, Decidim::ParticipatoryProcessUserRole %>
|
6
6
|
<%= link_to t("actions.new", scope: "decidim.admin", name: t("models.participatory_process_user_role.name", scope: "decidim.admin")), new_participatory_process_user_role_path(current_participatory_process), class: 'button tiny button--title new' %>
|
7
7
|
<% end %>
|
@@ -1,7 +1,7 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
<%= decidim_form_for(@form, html: { class: "form new_participatory_process_user_role" }) do |f| %>
|
2
|
+
<%= render partial: 'form', object: f, locals: { title: t('.title') } %>
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
<div class="button--double form-general-submit">
|
5
|
+
<%= f.submit t(".create") %>
|
6
|
+
</div>
|
7
|
+
<% end %>
|
@@ -12,8 +12,8 @@
|
|
12
12
|
</li>
|
13
13
|
<% end %>
|
14
14
|
<% if can? :read, Decidim::Feature %>
|
15
|
-
<li <% if is_active_link?(decidim_admin.
|
16
|
-
<%= aria_selected_link_to t("features", scope: "decidim.admin.menu.participatory_processes_submenu"), decidim_admin.
|
15
|
+
<li <% if is_active_link?(decidim_admin.features_path(current_participatory_process)) %> class="is-active" <% end %>>
|
16
|
+
<%= aria_selected_link_to t("features", scope: "decidim.admin.menu.participatory_processes_submenu"), decidim_admin.features_path(current_participatory_process) %>
|
17
17
|
<ul>
|
18
18
|
<% current_participatory_process.features.each do |feature| %>
|
19
19
|
<% if feature.manifest.admin_engine %>
|
@@ -139,6 +139,8 @@ ca:
|
|
139
139
|
edit:
|
140
140
|
title: Edita arxiu adjunt
|
141
141
|
update: Actualitzar
|
142
|
+
index:
|
143
|
+
attachments_title: Adjunts
|
142
144
|
new:
|
143
145
|
create: Crea arxiu adjunt
|
144
146
|
title: Nou arxiu adjunt
|
@@ -156,6 +158,7 @@ ca:
|
|
156
158
|
title: Edita categoria
|
157
159
|
update: Actualitzar
|
158
160
|
index:
|
161
|
+
categories_title: Categories
|
159
162
|
category_used: Aquesta categoria no es pot suprimir perquè és en ús.
|
160
163
|
new:
|
161
164
|
create: Crea una categoria
|
@@ -166,20 +169,6 @@ ca:
|
|
166
169
|
dashboard:
|
167
170
|
show:
|
168
171
|
welcome: Benvingut al nou panell d'administració de Decidim.
|
169
|
-
decidim:
|
170
|
-
admin:
|
171
|
-
attachments:
|
172
|
-
index:
|
173
|
-
attachments_title: Adjunts
|
174
|
-
categories:
|
175
|
-
index:
|
176
|
-
categories_title: Categories
|
177
|
-
participatory_process_steps:
|
178
|
-
index:
|
179
|
-
steps_title: Fases
|
180
|
-
participatory_process_user_roles:
|
181
|
-
index:
|
182
|
-
process_admins_title: Usuaris del procés participatiu
|
183
172
|
exports:
|
184
173
|
export_as: "%{name} com a %{export_format}"
|
185
174
|
notice: La teva exportació està actualment en curs. Rebràs un correu electrònic quan hagi finalitzat.
|
@@ -402,6 +391,8 @@ ca:
|
|
402
391
|
edit:
|
403
392
|
title: Editar fase de procés participatiu
|
404
393
|
update: Actualitzar
|
394
|
+
index:
|
395
|
+
steps_title: Fases del procés
|
405
396
|
new:
|
406
397
|
create: Crear
|
407
398
|
title: Nova fase de procés participatiu
|
@@ -419,6 +410,8 @@ ca:
|
|
419
410
|
edit:
|
420
411
|
title: Editar usuari de procés participatiu.
|
421
412
|
update: Actualitzar
|
413
|
+
index:
|
414
|
+
process_admins_title: Usuaris del procés participatiu
|
422
415
|
new:
|
423
416
|
create: Crear
|
424
417
|
title: Nou usuari de procés participatiu.
|
@@ -140,6 +140,8 @@ en:
|
|
140
140
|
edit:
|
141
141
|
title: Edit attachment
|
142
142
|
update: Update
|
143
|
+
index:
|
144
|
+
attachments_title: Attachments
|
143
145
|
new:
|
144
146
|
create: Create attachment
|
145
147
|
title: New attachment
|
@@ -157,6 +159,7 @@ en:
|
|
157
159
|
title: Edit category
|
158
160
|
update: Update
|
159
161
|
index:
|
162
|
+
categories_title: Categories
|
160
163
|
category_used: This category cannot be removed because it is in use.
|
161
164
|
new:
|
162
165
|
create: Create category
|
@@ -167,20 +170,6 @@ en:
|
|
167
170
|
dashboard:
|
168
171
|
show:
|
169
172
|
welcome: Welcome to the new Decidim Panel Admin.
|
170
|
-
decidim:
|
171
|
-
admin:
|
172
|
-
attachments:
|
173
|
-
index:
|
174
|
-
attachments_title: Attachments
|
175
|
-
categories:
|
176
|
-
index:
|
177
|
-
categories_title: Categories
|
178
|
-
participatory_process_steps:
|
179
|
-
index:
|
180
|
-
steps_title: Steps
|
181
|
-
participatory_process_user_roles:
|
182
|
-
index:
|
183
|
-
process_admins_title: Participatory process users
|
184
173
|
exports:
|
185
174
|
export_as: "%{name} as %{export_format}"
|
186
175
|
notice: Your export is currently in progress. You'll receive an email when it's complete.
|
@@ -403,6 +392,8 @@ en:
|
|
403
392
|
edit:
|
404
393
|
title: Edit participatory process step
|
405
394
|
update: Update
|
395
|
+
index:
|
396
|
+
steps_title: Steps
|
406
397
|
new:
|
407
398
|
create: Create
|
408
399
|
title: New participatory process step
|
@@ -420,6 +411,8 @@ en:
|
|
420
411
|
edit:
|
421
412
|
title: Update participatory process user.
|
422
413
|
update: Update
|
414
|
+
index:
|
415
|
+
process_admins_title: Participatory process users
|
423
416
|
new:
|
424
417
|
create: Create
|
425
418
|
title: New participatory process user.
|
@@ -139,6 +139,8 @@ es:
|
|
139
139
|
edit:
|
140
140
|
title: Editar archivo adjunto
|
141
141
|
update: Actualizar
|
142
|
+
index:
|
143
|
+
attachments_title: Archivos adjuntos
|
142
144
|
new:
|
143
145
|
create: Crear archivo adjunto
|
144
146
|
title: Nuevo archivo adjunto
|
@@ -156,6 +158,7 @@ es:
|
|
156
158
|
title: Editar categoría
|
157
159
|
update: Actualizar
|
158
160
|
index:
|
161
|
+
categories_title: Categorías
|
159
162
|
category_used: Esta categoría no se puede eliminar porque está en uso.
|
160
163
|
new:
|
161
164
|
create: Crear categoría
|
@@ -166,20 +169,6 @@ es:
|
|
166
169
|
dashboard:
|
167
170
|
show:
|
168
171
|
welcome: Bienvenido al nuevo panel de administración de Decidim.
|
169
|
-
decidim:
|
170
|
-
admin:
|
171
|
-
attachments:
|
172
|
-
index:
|
173
|
-
attachments_title: Archivos adjuntos
|
174
|
-
categories:
|
175
|
-
index:
|
176
|
-
categories_title: Categorías
|
177
|
-
participatory_process_steps:
|
178
|
-
index:
|
179
|
-
steps_title: Fases
|
180
|
-
participatory_process_user_roles:
|
181
|
-
index:
|
182
|
-
process_admins_title: Usuarios del proceso
|
183
172
|
exports:
|
184
173
|
export_as: "%{name} como %{export_format}"
|
185
174
|
notice: Su exportación está actualmente en curso. Recibirá un correo electrónico cuando esté completo.
|
@@ -402,6 +391,8 @@ es:
|
|
402
391
|
edit:
|
403
392
|
title: Editar fase de proceso participativo
|
404
393
|
update: Actualizar
|
394
|
+
index:
|
395
|
+
steps_title: Fases del proceso
|
405
396
|
new:
|
406
397
|
create: Crear
|
407
398
|
title: Nuevo fase de proceso participativo
|
@@ -419,6 +410,8 @@ es:
|
|
419
410
|
edit:
|
420
411
|
title: Editar usuario del proceso
|
421
412
|
update: Actualizar
|
413
|
+
index:
|
414
|
+
process_admins_title: Usuarios del proceso
|
422
415
|
new:
|
423
416
|
create: Crear
|
424
417
|
title: Nuevo usuario del proceso
|
@@ -135,6 +135,8 @@ eu:
|
|
135
135
|
edit:
|
136
136
|
title: Editatu fitxategi erantsia
|
137
137
|
update: Eguneratu
|
138
|
+
index:
|
139
|
+
attachments_title: Fitxategi erantsiak
|
138
140
|
new:
|
139
141
|
create: Sortu fitxategi erantsia
|
140
142
|
title: Fitxategi erantsi berria
|
@@ -151,6 +153,8 @@ eu:
|
|
151
153
|
edit:
|
152
154
|
title: Editatu kategoria
|
153
155
|
update: Eguneratu
|
156
|
+
index:
|
157
|
+
categories_title: Kategoriak
|
154
158
|
new:
|
155
159
|
create: Sortu kategoria
|
156
160
|
title: Kategoria berria
|
@@ -160,20 +164,6 @@ eu:
|
|
160
164
|
dashboard:
|
161
165
|
show:
|
162
166
|
welcome: Ongi etorri Decidim administrazio-panel berrira.
|
163
|
-
decidim:
|
164
|
-
admin:
|
165
|
-
attachments:
|
166
|
-
index:
|
167
|
-
attachments_title: Fitxategi erantsiak
|
168
|
-
categories:
|
169
|
-
index:
|
170
|
-
categories_title: Kategoriak
|
171
|
-
participatory_process_steps:
|
172
|
-
index:
|
173
|
-
steps_title: Faseak
|
174
|
-
participatory_process_user_roles:
|
175
|
-
index:
|
176
|
-
process_admins_title: Prozesu partizipatiboko erabiltzaileak
|
177
167
|
exports:
|
178
168
|
export_as: "%{name} honako hau gisa: %{export_format}"
|
179
169
|
notice: Zure esportazioa bidean da. Mezu elektroniko bat jasoko duzu bukatutakoan.
|
@@ -387,6 +377,8 @@ eu:
|
|
387
377
|
edit:
|
388
378
|
title: Editatu prozesu partizipatiboaren fasea
|
389
379
|
update: Eguneratu
|
380
|
+
index:
|
381
|
+
steps_title: Faseak
|
390
382
|
new:
|
391
383
|
create: Sortu
|
392
384
|
title: Prozesu partizipatiboaren fase berria
|
@@ -404,6 +396,8 @@ eu:
|
|
404
396
|
edit:
|
405
397
|
title: Prozesu partizipatiboko erabiltzailea eguneratzea.
|
406
398
|
update: Eguneratu
|
399
|
+
index:
|
400
|
+
process_admins_title: Prozesu partizipatiboko erabiltzaileak
|
407
401
|
new:
|
408
402
|
create: Sortu
|
409
403
|
title: Partaidetza-prozesu berriko erabiltzailea.
|
@@ -530,4 +524,4 @@ eu:
|
|
530
524
|
time:
|
531
525
|
formats:
|
532
526
|
datepicker: "%Y / %m / %d"
|
533
|
-
timepicker: "%d/%m/%Y %H:%M"
|
527
|
+
timepicker: "%d/%m/%Y %H:%M"
|
@@ -111,6 +111,8 @@ fi:
|
|
111
111
|
success: Liite tuhottu onnistuneesti.
|
112
112
|
edit:
|
113
113
|
title: Muokkaa liitettä
|
114
|
+
index:
|
115
|
+
attachments_title: Liitteet
|
114
116
|
new:
|
115
117
|
create: Luo liite
|
116
118
|
title: Uusi liite
|
@@ -126,23 +128,14 @@ fi:
|
|
126
128
|
success: Kategoria poistettu onnistuneesti.
|
127
129
|
edit:
|
128
130
|
title: Muokkaa kategoriaa
|
131
|
+
index:
|
132
|
+
categories_title: Kategoriat
|
129
133
|
new:
|
130
134
|
create: Luo kategoria
|
131
135
|
title: Uusi kategoria
|
132
136
|
update:
|
133
137
|
error: Tämän kategorian luonnissa tapahtui virhe.
|
134
138
|
success: Kategoria päivitetty onnistuneesti.
|
135
|
-
decidim:
|
136
|
-
admin:
|
137
|
-
attachments:
|
138
|
-
index:
|
139
|
-
attachments_title: Liitteet
|
140
|
-
categories:
|
141
|
-
index:
|
142
|
-
categories_title: Kategoriat
|
143
|
-
participatory_process_steps:
|
144
|
-
index:
|
145
|
-
steps_title: Vaihe
|
146
139
|
feature_permissions:
|
147
140
|
edit:
|
148
141
|
everyone: Kaikki
|
@@ -320,6 +313,8 @@ fi:
|
|
320
313
|
success: Osallistumisprosessin vaihe tuhottu onnistuneesti.
|
321
314
|
edit:
|
322
315
|
title: Muokkaa osallistumisprosessin vaihetta
|
316
|
+
index:
|
317
|
+
steps_title: Vaihe
|
323
318
|
new:
|
324
319
|
title: Uusi osallistumisprosessin vaihe
|
325
320
|
ordering:
|
@@ -415,4 +410,4 @@ fi:
|
|
415
410
|
none: Ei ryhmää
|
416
411
|
time:
|
417
412
|
formats:
|
418
|
-
timepicker: "%d/%m/%Y %H:%M"
|
413
|
+
timepicker: "%d/%m/%Y %H:%M"
|