decidim-core 0.10.1 → 0.11.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -11
- data/app/assets/images/decidim/icons.svg +25 -6
- data/app/assets/javascripts/decidim/account_form.js.es6 +8 -8
- data/app/assets/javascripts/decidim/append_elements.js.es6 +1 -1
- data/app/assets/javascripts/decidim/append_redirect_url_to_modals.js.es6 +5 -5
- data/app/assets/javascripts/decidim/data_picker.js.es6 +10 -10
- data/app/assets/javascripts/decidim/editor.js.es6 +37 -22
- data/app/assets/javascripts/decidim/filters.js.es6 +1 -1
- data/app/assets/javascripts/decidim/form_filter.component.js.es6 +15 -15
- data/app/assets/javascripts/decidim/form_filter.component.test.js +29 -29
- data/app/assets/javascripts/decidim/impersonation.js.es6 +3 -3
- data/app/assets/javascripts/decidim/input_mentions.js.es6 +100 -0
- data/app/assets/javascripts/decidim/input_tags.js.es6 +12 -0
- data/app/assets/javascripts/decidim/{map.js.es6.erb → map.js.es6} +9 -9
- data/app/assets/javascripts/decidim/notifications.js.es6 +10 -10
- data/app/assets/javascripts/decidim/orders.js.es6 +5 -5
- data/app/assets/javascripts/decidim/user_registrations.js.es6 +4 -4
- data/app/assets/javascripts/decidim/widget.js.es6 +1 -1
- data/app/assets/javascripts/decidim.js.es6 +10 -0
- data/app/assets/stylesheets/decidim/application.scss.erb +1 -1
- data/app/assets/stylesheets/decidim/modules/_author-avatar.scss +39 -0
- data/app/assets/stylesheets/decidim/modules/_cards.scss +158 -3
- data/app/assets/stylesheets/decidim/modules/_definition-data.scss +6 -0
- data/app/assets/stylesheets/decidim/modules/_extra.scss +1 -3
- data/app/assets/stylesheets/decidim/modules/_icons.scss +14 -6
- data/app/assets/stylesheets/decidim/modules/_inline-filters.scss +61 -0
- data/app/assets/stylesheets/decidim/modules/_input-mentions.scss +124 -0
- data/app/assets/stylesheets/decidim/modules/_input-tags.scss +55 -0
- data/app/assets/stylesheets/decidim/modules/_modules.scss +3 -0
- data/app/assets/stylesheets/decidim/modules/_status-labels.scss +4 -0
- data/app/assets/stylesheets/decidim/modules/_typography.scss +16 -0
- data/app/assets/stylesheets/decidim/utils/_helpers.scss +29 -0
- data/app/assets/stylesheets/decidim/utils/_mixins.scss +6 -0
- data/app/cells/decidim/author_box/show.erb +10 -0
- data/app/cells/decidim/author_box_cell.rb +21 -0
- data/app/cells/decidim/card/show.erb +17 -0
- data/app/cells/decidim/card_cell.rb +29 -0
- data/app/cells/decidim/profile/profile_inline.erb +21 -0
- data/app/cells/decidim/profile/show.erb +13 -0
- data/app/cells/decidim/profile_cell.rb +17 -0
- data/app/commands/decidim/create_omniauth_registration.rb +3 -2
- data/app/commands/decidim/create_report.rb +1 -1
- data/app/commands/decidim/invite_user.rb +2 -0
- data/app/constraints/decidim/current_component.rb +41 -0
- data/app/controllers/concerns/decidim/action_authorization.rb +3 -3
- data/app/controllers/concerns/decidim/devise_controllers.rb +2 -1
- data/app/controllers/concerns/decidim/filter_resource.rb +1 -1
- data/app/controllers/concerns/decidim/form_factory.rb +1 -1
- data/app/controllers/concerns/decidim/impersonate_users.rb +6 -2
- data/app/controllers/concerns/decidim/needs_authorization.rb +2 -2
- data/app/controllers/concerns/decidim/participatory_space_context.rb +15 -0
- data/app/controllers/concerns/decidim/settings.rb +5 -5
- data/app/controllers/decidim/application_controller.rb +2 -1
- data/app/controllers/decidim/{features → components}/base_controller.rb +16 -8
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +3 -1
- data/app/controllers/decidim/devise/registrations_controller.rb +1 -3
- data/app/controllers/decidim/doorkeeper/authorizations_controller.rb +16 -0
- data/app/controllers/decidim/doorkeeper/credentials_controller.rb +46 -0
- data/app/controllers/decidim/doorkeeper/token_info_controller.rb +9 -0
- data/app/controllers/decidim/doorkeeper/tokens_controller.rb +9 -0
- data/app/controllers/decidim/widgets_controller.rb +1 -1
- data/app/forms/decidim/follow_form.rb +1 -1
- data/app/forms/decidim/form.rb +1 -1
- data/app/forms/decidim/omniauth_registration_form.rb +1 -0
- data/app/forms/decidim/registration_form.rb +5 -5
- data/app/helpers/decidim/card_helper.rb +16 -0
- data/app/helpers/decidim/component_path_helper.rb +36 -0
- data/app/helpers/decidim/icon_helper.rb +7 -7
- data/app/helpers/decidim/messaging/conversation_helper.rb +4 -3
- data/app/helpers/decidim/paginate_helper.rb +1 -1
- data/app/helpers/decidim/resource_helper.rb +2 -2
- data/app/jobs/decidim/export_job.rb +3 -3
- data/app/mailers/decidim/messaging/conversation_mailer.rb +0 -2
- data/app/middleware/decidim/current_organization.rb +2 -2
- data/app/models/decidim/abilities/admin_ability.rb +1 -1
- data/app/models/decidim/abilities/everyone_ability.rb +1 -1
- data/app/models/decidim/abilities/participatory_process_admin_ability.rb +2 -2
- data/app/models/decidim/abilities/participatory_process_collaborator_ability.rb +2 -2
- data/app/models/decidim/action_log.rb +7 -5
- data/app/models/decidim/area.rb +7 -0
- data/app/models/decidim/authorization.rb +14 -0
- data/app/models/decidim/{feature.rb → component.rb} +15 -15
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/oauth_application.rb +24 -0
- data/app/models/decidim/organization.rb +5 -0
- data/app/models/decidim/participatory_space_link.rb +20 -0
- data/app/models/decidim/participatory_space_private_user.rb +19 -0
- data/app/models/decidim/user.rb +7 -0
- data/app/presenters/decidim/admin_log/area_presenter.rb +38 -0
- data/app/presenters/decidim/admin_log/{feature_presenter.rb → component_presenter.rb} +5 -5
- data/app/presenters/decidim/admin_log/newsletter_resource_presenter.rb +1 -1
- data/app/presenters/decidim/admin_log/oauth_application_presenter.rb +50 -0
- data/app/presenters/decidim/admin_log/oauth_application_resource_presenter.rb +18 -0
- data/app/presenters/decidim/home_stats_presenter.rb +7 -7
- data/app/presenters/decidim/log/value_types/area_presenter.rb +1 -1
- data/app/presenters/decidim/log/value_types/area_type_presenter.rb +28 -0
- data/app/presenters/decidim/log/value_types/currency_presenter.rb +20 -0
- data/app/presenters/decidim/log/value_types/scope_presenter.rb +1 -1
- data/app/presenters/decidim/log/value_types/scope_type_presenter.rb +1 -1
- data/app/presenters/decidim/resource_locator_presenter.rb +3 -3
- data/app/services/decidim/action_authorizer.rb +9 -9
- data/app/services/decidim/action_logger.rb +9 -7
- data/app/services/decidim/email_notification_generator.rb +1 -1
- data/app/services/decidim/notification_generator_for_recipient.rb +1 -1
- data/app/services/decidim/resource_search.rb +8 -8
- data/app/services/decidim/settings_change.rb +5 -5
- data/app/services/decidim/static_map_generator.rb +1 -1
- data/app/types/decidim/core/attachment_type.rb +14 -0
- data/app/types/decidim/core/category_type.rb +16 -0
- data/app/types/decidim/core/coordinates_type.rb +19 -0
- data/app/types/decidim/core/scope_api_type.rb +16 -0
- data/app/uploaders/decidim/oauth_application_logo_uploader.rb +9 -0
- data/app/validators/geocoding_validator.rb +2 -2
- data/app/views/decidim/account/delete.html.erb +7 -7
- data/app/views/decidim/application/_collection.html.erb +1 -1
- data/app/views/decidim/application/_document.html.erb +1 -1
- data/app/views/decidim/application/_photos.html.erb +1 -1
- data/app/views/decidim/devise/invitations/edit.html.erb +1 -1
- data/app/views/decidim/devise/omniauth_registrations/new.html.erb +1 -1
- data/app/views/decidim/devise/registrations/new.html.erb +1 -1
- data/app/views/decidim/devise/sessions/new.html.erb +2 -2
- data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +1 -1
- data/app/views/decidim/devise/shared/_omniauth_buttons_mini.html.erb +1 -1
- data/app/views/decidim/doorkeeper/authorizations/new.html.erb +58 -0
- data/app/views/decidim/messaging/conversations/_show.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/index.html.erb +1 -1
- data/app/views/decidim/notifications/index.html.erb +1 -1
- data/app/views/decidim/notifications_settings/show.html.erb +2 -2
- data/app/views/decidim/own_user_groups/index.html.erb +3 -3
- data/app/views/decidim/scopes/_scopes_picker_input.html.erb +4 -4
- data/app/views/decidim/scopes/picker.html.erb +3 -3
- data/app/views/decidim/shared/_action_authorization_modal.html.erb +1 -1
- data/app/views/decidim/shared/_author.html.erb +1 -1
- data/app/views/decidim/shared/_author_reference.html.erb +1 -12
- data/app/views/decidim/shared/{_feature_announcement.html.erb → _component_announcement.html.erb} +2 -2
- data/app/views/decidim/shared/_embed_modal.html.erb +1 -1
- data/app/views/decidim/shared/_flag_modal.html.erb +5 -5
- data/app/views/decidim/shared/_login_modal.html.erb +3 -3
- data/app/views/decidim/shared/_private_participatory_space.html.erb +5 -0
- data/app/views/decidim/shared/_share_modal.html.erb +1 -1
- data/app/views/decidim/shared/_tags.html.erb +1 -1
- data/app/views/decidim/shared/_version_author.html.erb +1 -1
- data/app/views/decidim/widgets/_data_picker.html.erb +4 -4
- data/app/views/devise/mailer/confirmation_instructions.html.erb +3 -3
- data/app/views/devise/mailer/invite_private_user.html.erb +17 -0
- data/app/views/devise/mailer/invite_private_user.text.erb +15 -0
- data/app/views/devise/mailer/password_change.html.erb +2 -2
- data/app/views/devise/mailer/reset_password_instructions.html.erb +5 -5
- data/app/views/kaminari/decidim/_first_page.html.erb +2 -3
- data/app/views/kaminari/decidim/_gap.html.erb +2 -3
- data/app/views/kaminari/decidim/_last_page.html.erb +2 -3
- data/app/views/kaminari/decidim/_next_page.html.erb +2 -3
- data/app/views/kaminari/decidim/_page.html.erb +2 -3
- data/app/views/kaminari/decidim/_paginator.html.erb +1 -2
- data/app/views/kaminari/decidim/_prev_page.html.erb +2 -3
- data/app/views/layouts/decidim/_application.html.erb +4 -4
- data/app/views/layouts/decidim/_component_authorization_modals.html.erb +5 -0
- data/app/views/layouts/decidim/_cookie_warning.html.erb +2 -2
- data/app/views/layouts/decidim/_head.html.erb +4 -4
- data/app/views/layouts/decidim/_impersonation_warning.html.erb +4 -4
- data/app/views/layouts/decidim/_language_chooser.html.erb +1 -1
- data/app/views/layouts/decidim/_social_media_links.html.erb +5 -5
- data/app/views/layouts/decidim/_wrapper.html.erb +5 -5
- data/app/views/layouts/decidim/mailer.html.erb +1 -1
- data/app/views/layouts/decidim/widget.html.erb +5 -5
- data/app/views/pages/home/_hero.html.erb +1 -1
- data/app/views/pages/home.html.erb +6 -6
- data/config/locales/ca.yml +66 -27
- data/config/locales/en.yml +69 -30
- data/config/locales/es.yml +66 -27
- data/config/locales/eu.yml +69 -30
- data/config/locales/fi.yml +69 -30
- data/config/locales/fr.yml +85 -46
- data/config/locales/gl.yml +69 -30
- data/config/locales/it.yml +69 -30
- data/config/locales/nl.yml +122 -83
- data/config/locales/pl.yml +69 -30
- data/config/locales/pt-BR.yml +69 -30
- data/config/locales/pt.yml +69 -30
- data/config/locales/ru.yml +0 -7
- data/config/locales/sv.yml +69 -30
- data/config/locales/uk.yml +0 -13
- data/config/routes.rb +8 -0
- data/db/migrate/20180206183235_create_participatory_space_private_users.rb +15 -0
- data/db/migrate/20180221101934_fix_nickname_index.rb +5 -6
- data/db/migrate/20180226140756_add_version_to_action_logs.rb +5 -1
- data/db/migrate/20180227131727_create_participatory_space_links.rb +12 -0
- data/db/migrate/20180305132906_rename_features_to_components.rb +13 -0
- data/db/migrate/20180308113207_doorkeeper_models.rb +85 -0
- data/db/migrate/20180314085339_rename_maximum_votes_per_proposal_to_threshold_per_proposal.rb +2 -2
- data/db/migrate/{20180326075746_change_event_name_and_class_to_rename_to_publish_proposal_event.rb → 20180323102631_change_event_name_and_class_to_rename_to_publish_proposal_event.rb} +0 -0
- data/db/seeds.rb +12 -2
- data/lib/decidim/api/attachable_interface.rb +13 -0
- data/lib/decidim/api/authorable_interface.rb +13 -0
- data/lib/decidim/api/categorizable_interface.rb +13 -0
- data/lib/decidim/api/participatory_space_interface.rb +4 -4
- data/lib/decidim/api/scopable_interface.rb +13 -0
- data/lib/decidim/authorable.rb +8 -0
- data/lib/decidim/{feature_manifest.rb → component_manifest.rb} +24 -21
- data/lib/decidim/{feature_validator.rb → component_validator.rb} +6 -6
- data/lib/decidim/{features → components}/export_manifest.rb +4 -4
- data/lib/decidim/components/namer.rb +35 -0
- data/lib/decidim/components.rb +9 -0
- data/lib/decidim/content_parsers/user_parser.rb +1 -1
- data/lib/decidim/core/api.rb +13 -0
- data/lib/decidim/core/engine.rb +76 -3
- data/lib/decidim/core/test/factories.rb +43 -10
- data/lib/decidim/core/test/shared_examples/announcements_examples.rb +9 -9
- data/lib/decidim/core/test/shared_examples/attachable_interface_examples.rb +16 -0
- data/lib/decidim/core/test/shared_examples/authorable_interface_examples.rb +33 -0
- data/lib/decidim/core/test/shared_examples/categorizable_interface_examples.rb +19 -0
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/has_component.rb +21 -0
- data/lib/decidim/core/test/shared_examples/has_reference.rb +2 -2
- data/lib/decidim/core/test/shared_examples/localised_email.rb +1 -1
- data/lib/decidim/core/test/shared_examples/paginated_resource_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/reportable.rb +8 -6
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/scopable_interface_examples.rb +19 -0
- data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +8 -3
- data/lib/decidim/core/test/shared_examples/simple_event.rb +1 -1
- data/lib/decidim/core/test/shared_examples/user_localised_email_examples.rb +1 -1
- data/lib/decidim/core/test.rb +1 -1
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +35 -37
- data/lib/decidim/events/base_event.rb +5 -5
- data/lib/decidim/events/simple_event.rb +8 -8
- data/lib/decidim/form_builder.rb +48 -3
- data/lib/decidim/has_attachment_collections.rb +1 -1
- data/lib/decidim/has_attachments.rb +1 -1
- data/lib/decidim/has_category.rb +2 -2
- data/lib/decidim/has_component.rb +23 -0
- data/lib/decidim/has_private_users.rb +26 -0
- data/lib/decidim/has_reference.rb +3 -3
- data/lib/decidim/page_finder.rb +1 -1
- data/lib/decidim/participatory_space_manifest.rb +3 -3
- data/lib/decidim/participatory_space_resourceable.rb +80 -0
- data/lib/decidim/publicable.rb +2 -2
- data/lib/decidim/query_extensions.rb +2 -2
- data/lib/decidim/rectify_ext.rb +32 -0
- data/lib/decidim/reportable.rb +1 -1
- data/lib/decidim/resource_manifest.rb +13 -13
- data/lib/decidim/resourceable.rb +8 -8
- data/lib/decidim/scopable.rb +1 -1
- data/lib/decidim/{scopable_feature.rb → scopable_component.rb} +1 -1
- data/lib/decidim/settings_manifest.rb +1 -1
- data/lib/decidim/stats_registry.rb +1 -1
- data/lib/decidim/view_model.rb +9 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fr.js +4 -1
- data/vendor/assets/javascripts/form_datepicker.js.es6 +10 -10
- data/vendor/assets/javascripts/quill.min.js +2 -2
- data/vendor/assets/javascripts/quill.min.js.map +1 -1
- data/vendor/assets/javascripts/tagsinput.js +683 -0
- data/vendor/assets/javascripts/tribute.js +1607 -0
- data/vendor/assets/stylesheets/quill.bubble.css +30 -16
- data/vendor/assets/stylesheets/quill.core.css +19 -9
- data/vendor/assets/stylesheets/quill.snow.css +30 -16
- data/vendor/assets/stylesheets/tagsinput.css +55 -0
- data/vendor/assets/stylesheets/tribute.css +27 -0
- metadata +164 -27
- data/app/constraints/decidim/current_feature.rb +0 -41
- data/app/helpers/decidim/feature_path_helper.rb +0 -36
- data/app/views/layouts/decidim/_feature_authorization_modals.html.erb +0 -5
- data/lib/decidim/core/test/shared_examples/has_feature.rb +0 -21
- data/lib/decidim/features/namer.rb +0 -35
- data/lib/decidim/features.rb +0 -9
- data/lib/decidim/has_feature.rb +0 -23
data/config/locales/ca.yml
CHANGED
@@ -6,11 +6,13 @@ ca:
|
|
6
6
|
report:
|
7
7
|
details: Comentaris addicionals
|
8
8
|
user:
|
9
|
+
about: Quant a
|
9
10
|
email: El teu email
|
10
11
|
name: El teu nom
|
11
|
-
nickname: El
|
12
|
+
nickname: El teu identificador curt i únic
|
12
13
|
password: Contrasenya
|
13
14
|
password_confirmation: Confirma la teva contrasenya
|
15
|
+
personal_url: URL personal
|
14
16
|
remove_avatar: Elimina la imatge d'usuari
|
15
17
|
user_group_document_number: Número de document acreditatiu
|
16
18
|
user_group_name: Nom de l'organització
|
@@ -54,11 +56,15 @@ ca:
|
|
54
56
|
success: El seu compte s'ha actualitzat correctament.
|
55
57
|
success_with_email_confirmation: El teu compte s'ha actualitzat correctament. Rebràs un correu electrònic per confirmar la teva nova adreça de correu electrònic.
|
56
58
|
admin_log:
|
57
|
-
|
59
|
+
area:
|
60
|
+
create: "%{user_name} ha creat l'àrea %{resource_name}"
|
61
|
+
delete: "%{user_name} ha eliminat l'àrea %{resource_name}"
|
62
|
+
update: "%{user_name} ha actualitzat l'àrea %{resource_name}"
|
63
|
+
component:
|
58
64
|
create: "%{user_name} ha afegit el component %{resource_name} a l'espai %{space_name}"
|
59
65
|
delete: "%{user_name} ha eliminat el component %{resource_name} de l'espai %{space_name}"
|
60
66
|
publish: "%{user_name} ha publicat el component %{resource_name} a l'espai %{space_name}"
|
61
|
-
unpublish: "%{user_name}
|
67
|
+
unpublish: "%{user_name} ha despublicat el component %{resource_name} de l'espai %{space_name}"
|
62
68
|
moderation:
|
63
69
|
hide: "%{user_name} ha ocultat un recurs del tipus %{resource_type} a l'espai %{space_name}"
|
64
70
|
unreport: "%{user_name} ha publicat un recurs del tipus %{resource_type} a l'espai %{space_name}"
|
@@ -67,6 +73,10 @@ ca:
|
|
67
73
|
delete: "%{user_name} ha eliminat el butlletí %{resource_name}"
|
68
74
|
deliver: "%{user_name} ha enviat el butlletí %{resource_name}"
|
69
75
|
update: "%{user_name} ha actualitzat el butlletí %{resource_name}"
|
76
|
+
oauth_application:
|
77
|
+
create: "%{user_name} ha creat l'aplicació d'OAuth %{resource_name}"
|
78
|
+
delete: "%{user_name} ha eliminat la aplicació d'OAuth %{resource_name}"
|
79
|
+
update: "%{user_name} ha actualitzat la aplicació d'OAuth %{resource_name}"
|
70
80
|
organization:
|
71
81
|
update: "%{user_name} ha actualitzat la configuració de l'organització"
|
72
82
|
scope:
|
@@ -118,6 +128,21 @@ ca:
|
|
118
128
|
name: Autorització foo
|
119
129
|
granted_at: Atorgada el %{timestamp}
|
120
130
|
started_at: Iniciat el %{timestamp}
|
131
|
+
components:
|
132
|
+
dummy:
|
133
|
+
actions:
|
134
|
+
bar: Bar
|
135
|
+
foo: Foo
|
136
|
+
name: Component de prova
|
137
|
+
settings:
|
138
|
+
global:
|
139
|
+
comments_enabled: Comentaris habilitats
|
140
|
+
dummy_global_attribute_1: Atribut de prova 1
|
141
|
+
dummy_global_attribute_2: Atribut de prova 2
|
142
|
+
step:
|
143
|
+
comments_blocked: Comentaris bloquejats
|
144
|
+
dummy_step_attribute_1: Atribut de fase de prova 1
|
145
|
+
dummy_step_attribute_2: Atribut de fase de prova 2
|
121
146
|
contact: Contacte
|
122
147
|
core:
|
123
148
|
actions:
|
@@ -128,7 +153,7 @@ ca:
|
|
128
153
|
email_already_exists: Un altre compte està utilitzant la mateixa adreça de correu electrònic
|
129
154
|
new:
|
130
155
|
complete_profile: Completa el perfil
|
131
|
-
nickname_help: El vostre identificador curt i únic
|
156
|
+
nickname_help: El vostre identificador curt i únic a %{organization}
|
132
157
|
sign_up: Si us plau completa el teu perfil
|
133
158
|
subtitle: Si us plau, omple el següent formulari per tal de completar la teva inscripció
|
134
159
|
username_help: Nom públic que apareix en els teus missatges. Amb l'objectiu de garantir l'anonimat, pot ser qualsevol nom.
|
@@ -136,7 +161,7 @@ ca:
|
|
136
161
|
new:
|
137
162
|
already_have_an_account?: Ja tens un compte?
|
138
163
|
newsletter: Vull rebre un butlletí ocasional amb informació rellevant
|
139
|
-
nickname_help: El vostre identificador curt i únic
|
164
|
+
nickname_help: El vostre identificador curt i únic a %{organization}
|
140
165
|
sign_in: Entra
|
141
166
|
sign_up: Registra't
|
142
167
|
sign_up_as:
|
@@ -154,6 +179,21 @@ ca:
|
|
154
179
|
shared:
|
155
180
|
omniauth_buttons:
|
156
181
|
or: O
|
182
|
+
doorkeeper:
|
183
|
+
authorizations:
|
184
|
+
new:
|
185
|
+
authorize: Autoritza l'aplicació
|
186
|
+
by_organization_link_html: <small class="heading-small">per %{link}</small>
|
187
|
+
cancel: Cancel·lar
|
188
|
+
connect_your_account_html: Connecta el teu compte iniciant la sessió a <strong>%{organization}</strong>
|
189
|
+
publish_content: Publica el contingut per a vosaltres
|
190
|
+
see_email: Consultar el teu correu electrònic
|
191
|
+
see_name: Veure el teu nom
|
192
|
+
see_username: Consultar el teu nom d'usuari
|
193
|
+
this_application_will_be_able_to: 'Aquesta aplicació podrà:'
|
194
|
+
this_application_will_not_be_able_to: 'Aquesta aplicació no podrà:'
|
195
|
+
update_profile: Actualitza el teu perfil
|
196
|
+
wants_to_use_your_account_html: "<strong>%{application_name}</strong> vol utilitzar el teu compte"
|
157
197
|
errors:
|
158
198
|
internal_server_error:
|
159
199
|
title: Hi ha hagut un problema amb el nostre servidor
|
@@ -169,17 +209,17 @@ ca:
|
|
169
209
|
email_outro: Has rebut aquesta notificació perquè estàs seguint %{resource_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
170
210
|
email_subject: S'ha produït un esdeveniment a %{resource_title}
|
171
211
|
notification_title: S'ha afegit un <a href="%{resource_path}"> nou document</a> a <a href="%{attached_to_url}">%{resource_title}</a>
|
212
|
+
components:
|
213
|
+
component_published:
|
214
|
+
email_intro: 'Ja està actiu el component %{resource_title} per %{participatory_space_title}. Pots veure-ho des d''aquesta pàgina:'
|
215
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
216
|
+
email_subject: Una actualització a %{participatory_space_title}
|
217
|
+
notification_title: Ja està actiu el component %{resource_title} per <a href="%{resource_path}">%{participatory_space_title}</a>
|
172
218
|
email_event:
|
173
219
|
email_greeting: Hola %{user_name},
|
174
220
|
email_intro: 'Hi ha hagut una actualització a "%{resource_title}". Es pot veure en aquesta pàgina:'
|
175
221
|
email_outro: Has rebut aquesta notificació perquè que segueixes "%{resource_title}". El pots deixar de seguir al link anterior.
|
176
222
|
email_subject: Una actualització a %{resource_title}
|
177
|
-
features:
|
178
|
-
feature_published:
|
179
|
-
email_intro: 'Ja està actiu el component %{resource_title} per %{participatory_space_title}. Pots veure-ho des d''aquesta pàgina:'
|
180
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
181
|
-
email_subject: Una actualització a %{participatory_space_title}
|
182
|
-
notification_title: Ja està actiu el component %{resource_title} per <a href="%{resource_path}">%{participatory_space_title}</a>
|
183
223
|
notification_event:
|
184
224
|
notification_title: S'ha produït un esdeveniment a <a href="%{resource_path}">%{resource_title}</a>.
|
185
225
|
users:
|
@@ -192,21 +232,6 @@ ca:
|
|
192
232
|
export:
|
193
233
|
ready: S'adjunta una versió comprimida de l'exportació.
|
194
234
|
subject: L'exportació "%{name}" està a punt
|
195
|
-
features:
|
196
|
-
dummy:
|
197
|
-
actions:
|
198
|
-
bar: Bar
|
199
|
-
foo: Foo
|
200
|
-
name: Funcionalitat de prova
|
201
|
-
settings:
|
202
|
-
global:
|
203
|
-
comments_enabled: Comentaris habilitats
|
204
|
-
dummy_global_attribute_1: Atribut de prova 1
|
205
|
-
dummy_global_attribute_2: Atribut de prova 2
|
206
|
-
step:
|
207
|
-
comments_blocked: Comentaris bloquejats
|
208
|
-
dummy_step_attribute_1: Atribut de fase de prova 1
|
209
|
-
dummy_step_attribute_2: Atribut de fase de prova 2
|
210
235
|
filters:
|
211
236
|
linked_classes:
|
212
237
|
all: Tots
|
@@ -242,6 +267,8 @@ ca:
|
|
242
267
|
value_types:
|
243
268
|
area_presenter:
|
244
269
|
not_found: 'L''àrea no s''ha trobat a la base de dades (ID: %{id})'
|
270
|
+
area_type_presenter:
|
271
|
+
not_found: 'El tipus d''àrea no s''ha trobat a la base de dades (ID: %{id})'
|
245
272
|
scope_presenter:
|
246
273
|
not_found: 'L''àmbit no s''ha trobat a la base de dades (ID: %{id})'
|
247
274
|
scope_type_presenter:
|
@@ -307,6 +334,10 @@ ca:
|
|
307
334
|
pages:
|
308
335
|
index:
|
309
336
|
title: Més informació
|
337
|
+
participatory_space_private_users:
|
338
|
+
not_allowed: No tens permís per visualitzar aquest contingut
|
339
|
+
profile:
|
340
|
+
deleted: Usuari eliminat
|
310
341
|
profiles:
|
311
342
|
default_officialization_text: Aquest participant es verifica públicament. El seu nom o la seva funció s'ha verificat perquè es correspongui amb el seu nom i funció reals
|
312
343
|
show:
|
@@ -394,7 +425,7 @@ ca:
|
|
394
425
|
invitations:
|
395
426
|
edit:
|
396
427
|
header: Establir la contrasenya
|
397
|
-
nickname_help: El teu identificador únic.
|
428
|
+
nickname_help: El teu identificador únic a %{organization}.
|
398
429
|
submit_button: Desa
|
399
430
|
mailer:
|
400
431
|
invitation_instructions:
|
@@ -405,18 +436,25 @@ ca:
|
|
405
436
|
Si no vols acceptar la invitació, ignora aquest correu.<br />
|
406
437
|
El teu compte no es crearà fins que no accedeixis a l'enllaç de sota i triïs la teva contrasenya.
|
407
438
|
invited_you_as_admin: "%{invited_by} t'ha convidat com a administrador de %{application}. Pots acceptar-ho a través de l'enllaç següent."
|
439
|
+
invited_you_as_private_user: "%{invited_by} t'ha convidat com a usuari privat de %{application}. Podeu acceptar-lo a través de l'enllaç següent."
|
408
440
|
someone_invited_you: Algú t'ha convidat a %{application}. Pots acceptar-ho a través de l'enllaç següent.
|
409
441
|
someone_invited_you_as_admin: Algú t'ha convidat com a administrador de %{application}, pots acceptar-lo a través de l'enllaç següent.
|
442
|
+
someone_invited_you_as_private_user: Algú t'ha convidat com a usuari privat de %{application}. Pots acceptar-ho a través del següent enllaç.
|
410
443
|
invite_admin:
|
411
444
|
subject: Has estat convidat a gestionar %{organization}
|
412
445
|
invite_collaborator:
|
413
446
|
subject: Has estat convidat a col·laborar a %{organization}
|
447
|
+
invite_private_user:
|
448
|
+
subject: Has estat convidat a un procés participatiu privat a %{organization}
|
414
449
|
organization_admin_invitation_instructions:
|
415
450
|
subject: Has estat convidat a gestionar %{organization}
|
416
451
|
password_change:
|
417
452
|
greeting: Hola %{recipient}!
|
418
453
|
message: Ens posem en contacte amb tu per notificar-te que la teva contrasenya ha estat canviada correctament.
|
419
454
|
subject: Contrasenya modificada
|
455
|
+
doorkeeper:
|
456
|
+
scopes:
|
457
|
+
public: La teva informació pública.
|
420
458
|
errors:
|
421
459
|
messages:
|
422
460
|
content_type_whitelist_error: El tipus de fitxer no és vàlid
|
@@ -496,6 +534,7 @@ ca:
|
|
496
534
|
answers_count: Enquestes realitzades
|
497
535
|
assemblies_count: Assemblees
|
498
536
|
comments_count: Comentaris
|
537
|
+
debates_count: Debats
|
499
538
|
endorsements_count: Adhesions
|
500
539
|
headline: Estat actual de %{organization}
|
501
540
|
meetings_count: Trobades
|
data/config/locales/en.yml
CHANGED
@@ -7,11 +7,13 @@ en:
|
|
7
7
|
report:
|
8
8
|
details: Additional comments
|
9
9
|
user:
|
10
|
+
about: About
|
10
11
|
email: Your email
|
11
12
|
name: Your name
|
12
|
-
nickname: Your short, unique identifier
|
13
|
+
nickname: Your short, unique identifier
|
13
14
|
password: New password
|
14
15
|
password_confirmation: Confirm your new password
|
16
|
+
personal_url: Personal URL
|
15
17
|
remove_avatar: Remove avatar
|
16
18
|
user_group_document_number: Organization document number
|
17
19
|
user_group_name: Organization name
|
@@ -55,11 +57,15 @@ en:
|
|
55
57
|
success: Your account was updated successfully.
|
56
58
|
success_with_email_confirmation: Your account was updated successfully. You'll receive an email to confirm your new email address.
|
57
59
|
admin_log:
|
58
|
-
|
59
|
-
create: "%{user_name}
|
60
|
-
delete: "%{user_name}
|
61
|
-
|
62
|
-
|
60
|
+
area:
|
61
|
+
create: "%{user_name} created the %{resource_name} area"
|
62
|
+
delete: "%{user_name} deleted the %{resource_name} area"
|
63
|
+
update: "%{user_name} updated the %{resource_name} area"
|
64
|
+
component:
|
65
|
+
create: "%{user_name} added the %{resource_name} component to the %{space_name} space"
|
66
|
+
delete: "%{user_name} removed the %{resource_name} component from the %{space_name} space"
|
67
|
+
publish: "%{user_name} published the %{resource_name} component in the %{space_name} space"
|
68
|
+
unpublish: "%{user_name} unpublished the %{resource_name} component from the %{space_name} space"
|
63
69
|
moderation:
|
64
70
|
hide: "%{user_name} hid a resource of type %{resource_type} in the %{space_name} space"
|
65
71
|
unreport: "%{user_name} unreported a resource of type %{resource_type} in the %{space_name} space"
|
@@ -68,6 +74,10 @@ en:
|
|
68
74
|
delete: "%{user_name} deleted the %{resource_name} newsletter"
|
69
75
|
deliver: "%{user_name} delivered the %{resource_name} newsletter"
|
70
76
|
update: "%{user_name} updated the %{resource_name} newsletter"
|
77
|
+
oauth_application:
|
78
|
+
create: "%{user_name} created the %{resource_name} OAuth application"
|
79
|
+
delete: "%{user_name} deleted the %{resource_name} OAuth application"
|
80
|
+
update: "%{user_name} updated the %{resource_name} OAuth application"
|
71
81
|
organization:
|
72
82
|
update: "%{user_name} updated the organization settings"
|
73
83
|
scope:
|
@@ -119,6 +129,21 @@ en:
|
|
119
129
|
name: Foo authorization
|
120
130
|
granted_at: Granted at %{timestamp}
|
121
131
|
started_at: Started at %{timestamp}
|
132
|
+
components:
|
133
|
+
dummy:
|
134
|
+
actions:
|
135
|
+
bar: Bar
|
136
|
+
foo: Foo
|
137
|
+
name: Dummy Component
|
138
|
+
settings:
|
139
|
+
global:
|
140
|
+
comments_enabled: Comments enabled
|
141
|
+
dummy_global_attribute_1: Dummy Attribute 1
|
142
|
+
dummy_global_attribute_2: Dummy Attribute 2
|
143
|
+
step:
|
144
|
+
comments_blocked: Comments blocked
|
145
|
+
dummy_step_attribute_1: Dummy Step Attribute 1
|
146
|
+
dummy_step_attribute_2: Dummy Step Attribute 2
|
122
147
|
contact: Contact
|
123
148
|
core:
|
124
149
|
actions:
|
@@ -129,7 +154,7 @@ en:
|
|
129
154
|
email_already_exists: Another account is using the same email address
|
130
155
|
new:
|
131
156
|
complete_profile: Complete profile
|
132
|
-
nickname_help: Your short, unique identifier in
|
157
|
+
nickname_help: Your short, unique identifier in %{organization}
|
133
158
|
sign_up: Please complete your profile
|
134
159
|
subtitle: Please fill in the following form in order to complete the sign up
|
135
160
|
username_help: Public name that appears on your posts. With the aim of guaranteeing the anonymity, can be any name.
|
@@ -137,7 +162,7 @@ en:
|
|
137
162
|
new:
|
138
163
|
already_have_an_account?: Already have an account?
|
139
164
|
newsletter: Receive an occasional newsletter with relevant information
|
140
|
-
nickname_help: Your short, unique identifier in
|
165
|
+
nickname_help: Your short, unique identifier in %{organization}
|
141
166
|
sign_in: Log in
|
142
167
|
sign_up: Sign up
|
143
168
|
sign_up_as:
|
@@ -155,6 +180,21 @@ en:
|
|
155
180
|
shared:
|
156
181
|
omniauth_buttons:
|
157
182
|
or: Or
|
183
|
+
doorkeeper:
|
184
|
+
authorizations:
|
185
|
+
new:
|
186
|
+
authorize: Authorize application
|
187
|
+
by_organization_link_html: <small class="heading-small">by %{link}</small>
|
188
|
+
cancel: Cancel
|
189
|
+
connect_your_account_html: Connect your account by signing in to <strong>%{organization}</strong>
|
190
|
+
publish_content: Publish content for you
|
191
|
+
see_email: See your email
|
192
|
+
see_name: See your name
|
193
|
+
see_username: See your username
|
194
|
+
this_application_will_be_able_to: 'This application will be able to:'
|
195
|
+
this_application_will_not_be_able_to: 'This application will not be able to:'
|
196
|
+
update_profile: Update your profile
|
197
|
+
wants_to_use_your_account_html: "<strong>%{application_name}</strong> wants to use your account"
|
158
198
|
errors:
|
159
199
|
internal_server_error:
|
160
200
|
title: There was a problem with our server
|
@@ -170,17 +210,17 @@ en:
|
|
170
210
|
email_outro: You have received this notification because you are following %{resource_title}. You can stop receiving notifications following the previous link.
|
171
211
|
email_subject: An update to %{resource_title}
|
172
212
|
notification_title: A <a href="%{resource_path}">new document</a> has been added to <a href="%{attached_to_url}">%{resource_title}</a>
|
213
|
+
components:
|
214
|
+
component_published:
|
215
|
+
email_intro: 'The %{resource_title} component is now active for %{participatory_space_title}. You can see it from this page:'
|
216
|
+
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
217
|
+
email_subject: An update to %{participatory_space_title}
|
218
|
+
notification_title: The %{resource_title} component is now active for <a href="%{resource_path}">%{participatory_space_title}</a>
|
173
219
|
email_event:
|
174
220
|
email_greeting: Hello %{user_name},
|
175
221
|
email_intro: 'There has been an update to "%{resource_title}". You can see it from this page:'
|
176
222
|
email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
|
177
223
|
email_subject: An update to %{resource_title}
|
178
|
-
features:
|
179
|
-
feature_published:
|
180
|
-
email_intro: 'The %{resource_title} component is now active for %{participatory_space_title}. You can see it from this page:'
|
181
|
-
email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
|
182
|
-
email_subject: An update to %{participatory_space_title}
|
183
|
-
notification_title: The %{resource_title} component is now active for <a href="%{resource_path}">%{participatory_space_title}</a>
|
184
224
|
notification_event:
|
185
225
|
notification_title: An event occured to <a href="%{resource_path}">%{resource_title}</a>.
|
186
226
|
users:
|
@@ -193,21 +233,6 @@ en:
|
|
193
233
|
export:
|
194
234
|
ready: Please find attached a zipped version of your export.
|
195
235
|
subject: Your export "%{name}" is ready
|
196
|
-
features:
|
197
|
-
dummy:
|
198
|
-
actions:
|
199
|
-
bar: Bar
|
200
|
-
foo: Foo
|
201
|
-
name: Dummy Feature
|
202
|
-
settings:
|
203
|
-
global:
|
204
|
-
comments_enabled: Comments enabled
|
205
|
-
dummy_global_attribute_1: Dummy Attribute 1
|
206
|
-
dummy_global_attribute_2: Dummy Attribute 2
|
207
|
-
step:
|
208
|
-
comments_blocked: Comments blocked
|
209
|
-
dummy_step_attribute_1: Dummy Step Attribute 1
|
210
|
-
dummy_step_attribute_2: Dummy Step Attribute 2
|
211
236
|
filters:
|
212
237
|
linked_classes:
|
213
238
|
all: All
|
@@ -243,6 +268,8 @@ en:
|
|
243
268
|
value_types:
|
244
269
|
area_presenter:
|
245
270
|
not_found: 'The area was not found on the database (ID: %{id})'
|
271
|
+
area_type_presenter:
|
272
|
+
not_found: 'The area type was not found on the database (ID: %{id})'
|
246
273
|
scope_presenter:
|
247
274
|
not_found: 'The scope was not found on the database (ID: %{id})'
|
248
275
|
scope_type_presenter:
|
@@ -308,6 +335,10 @@ en:
|
|
308
335
|
pages:
|
309
336
|
index:
|
310
337
|
title: More information
|
338
|
+
participatory_space_private_users:
|
339
|
+
not_allowed: You are not allowed to view this content
|
340
|
+
profile:
|
341
|
+
deleted: Deleted user
|
311
342
|
profiles:
|
312
343
|
default_officialization_text: This participant is publicly verified, his/her name or role has been verified to correspond with his/her real name and role
|
313
344
|
show:
|
@@ -395,7 +426,7 @@ en:
|
|
395
426
|
invitations:
|
396
427
|
edit:
|
397
428
|
header: Set your password
|
398
|
-
nickname_help: Your unique identifier in
|
429
|
+
nickname_help: Your unique identifier in %{organization}.
|
399
430
|
submit_button: Save
|
400
431
|
mailer:
|
401
432
|
invitation_instructions:
|
@@ -406,18 +437,25 @@ en:
|
|
406
437
|
If you don't want to accept the invitation, please ignore this email.<br />
|
407
438
|
Your account won't be created until you access the link above and set your password.
|
408
439
|
invited_you_as_admin: "%{invited_by} has invited you as an admin of %{application}. You can accept it through the link below."
|
440
|
+
invited_you_as_private_user: "%{invited_by} has invited you as a private user of %{application}. You can accept it through the link below."
|
409
441
|
someone_invited_you: Someone has invited you to %{application}. You can accept it through the link below.
|
410
442
|
someone_invited_you_as_admin: Someone has invited you as an admin of %{application}, you can accept it through the link below.
|
443
|
+
someone_invited_you_as_private_user: Someone has invited you as private_user of %{application}, you can accept it through the link below.
|
411
444
|
invite_admin:
|
412
445
|
subject: You've been invited to manage %{organization}
|
413
446
|
invite_collaborator:
|
414
447
|
subject: You've been invited to collaborate on %{organization}
|
448
|
+
invite_private_user:
|
449
|
+
subject: You've been invited to a private participatory process on %{organization}
|
415
450
|
organization_admin_invitation_instructions:
|
416
451
|
subject: You've been invited to manage %{organization}
|
417
452
|
password_change:
|
418
453
|
greeting: Hello %{recipient}!
|
419
454
|
message: We're contacting you to notify you that your password has been changed.
|
420
455
|
subject: Password changed
|
456
|
+
doorkeeper:
|
457
|
+
scopes:
|
458
|
+
public: Your public information.
|
421
459
|
errors:
|
422
460
|
messages:
|
423
461
|
content_type_whitelist_error: The file type is not valid
|
@@ -497,6 +535,7 @@ en:
|
|
497
535
|
answers_count: Completed Surveys
|
498
536
|
assemblies_count: Assemblies
|
499
537
|
comments_count: Comments
|
538
|
+
debates_count: Debates
|
500
539
|
endorsements_count: Endorsements
|
501
540
|
headline: Current state of %{organization}
|
502
541
|
meetings_count: Meetings
|
data/config/locales/es.yml
CHANGED
@@ -6,11 +6,13 @@ es:
|
|
6
6
|
report:
|
7
7
|
details: Comentarios adicionales
|
8
8
|
user:
|
9
|
+
about: Acerca de
|
9
10
|
email: Tu correo electrónico
|
10
11
|
name: Tu nombre
|
11
|
-
nickname: Su identificador corto y único
|
12
|
+
nickname: Su identificador, corto y único
|
12
13
|
password: Contraseña
|
13
14
|
password_confirmation: Confirma tu contraseña
|
15
|
+
personal_url: URL personal
|
14
16
|
remove_avatar: Eliminar imagen de perfil
|
15
17
|
user_group_document_number: Número de documento acreditativo
|
16
18
|
user_group_name: Nombre de la Organización
|
@@ -54,11 +56,15 @@ es:
|
|
54
56
|
success: Tu cuenta se ha actualizado correctamente.
|
55
57
|
success_with_email_confirmation: Tu cuenta se ha actualizado correctamente. Recibirás un correo electrónico para confirmar tu nueva dirección de correo electrónico.
|
56
58
|
admin_log:
|
57
|
-
|
59
|
+
area:
|
60
|
+
create: "%{user_name} creó el área %{resource_name}"
|
61
|
+
delete: "%{user_name} borró el área %{resource_name}"
|
62
|
+
update: "%{user_name} actualizó el área %{resource_name}"
|
63
|
+
component:
|
58
64
|
create: "%{user_name} agregó el componente %{resource_name} al espacio %{space_name}"
|
59
65
|
delete: "%{user_name} eliminó el componente %{resource_name} del espacio %{space_name}"
|
60
66
|
publish: "%{user_name} publicó el componente %{resource_name} en el espacio %{space_name}"
|
61
|
-
unpublish: "%{user_name}
|
67
|
+
unpublish: "%{user_name} ha despublicado el componente %{resource_name} del espacio %{space_name}"
|
62
68
|
moderation:
|
63
69
|
hide: "%{user_name} escondió un recurso de tipo %{resource_type} en el espacio %{space_name}"
|
64
70
|
unreport: "%{user_name} publicó un recurso de tipo %{resource_type} en el espacio %{space_name}"
|
@@ -67,6 +73,10 @@ es:
|
|
67
73
|
delete: "%{user_name} eliminó el newsletter %{resource_name}"
|
68
74
|
deliver: "%{user_name} envió el newsletter %{resource_name}"
|
69
75
|
update: "%{user_name} actualizó el newsletter %{resource_name}"
|
76
|
+
oauth_application:
|
77
|
+
create: "%{user_name} creó la aplicación %{resource_name} OAuth"
|
78
|
+
delete: "%{user_name} borró la aplicación %{resource_name} OAuth"
|
79
|
+
update: "%{user_name} actualizó la aplicación %{resource_name} OAuth"
|
70
80
|
organization:
|
71
81
|
update: "%{user_name} actualizó la configuración de la organización"
|
72
82
|
scope:
|
@@ -118,6 +128,21 @@ es:
|
|
118
128
|
name: Autorización foo
|
119
129
|
granted_at: Concedida el %{timestamp}
|
120
130
|
started_at: Comenzó el %{timestamp}
|
131
|
+
components:
|
132
|
+
dummy:
|
133
|
+
actions:
|
134
|
+
bar: Bar
|
135
|
+
foo: Foo
|
136
|
+
name: Componente ficticio
|
137
|
+
settings:
|
138
|
+
global:
|
139
|
+
comments_enabled: Comentarios habilitados
|
140
|
+
dummy_global_attribute_1: Dummy Attribute 1
|
141
|
+
dummy_global_attribute_2: Dummy Attribute 2
|
142
|
+
step:
|
143
|
+
comments_blocked: Comentarios bloqueados
|
144
|
+
dummy_step_attribute_1: Dummy Step Attribute 1
|
145
|
+
dummy_step_attribute_2: Dummy Step Attribute 2
|
121
146
|
contact: Contacto
|
122
147
|
core:
|
123
148
|
actions:
|
@@ -128,7 +153,7 @@ es:
|
|
128
153
|
email_already_exists: Otra cuenta utiliza la misma dirección de correo electrónico
|
129
154
|
new:
|
130
155
|
complete_profile: Completar perfil
|
131
|
-
nickname_help:
|
156
|
+
nickname_help: Tu identificador corto y único en %{organization}
|
132
157
|
sign_up: Por favor, completa tu perfil
|
133
158
|
subtitle: Por favor, rellena el siguiente formulario con el fin de completar la inscripción
|
134
159
|
username_help: Nombre público que aparece en tus mensajes. Con el objetivo de garantizar el anonimato, puede ser cualquier nombre.
|
@@ -136,7 +161,7 @@ es:
|
|
136
161
|
new:
|
137
162
|
already_have_an_account?: '¿Ya tienes una cuenta?'
|
138
163
|
newsletter: Quiro recibir un boletín ocasional con información relevante
|
139
|
-
nickname_help: Su identificador corto y único
|
164
|
+
nickname_help: Su identificador corto y único en %{organization}
|
140
165
|
sign_in: Entra
|
141
166
|
sign_up: Regístrate
|
142
167
|
sign_up_as:
|
@@ -154,6 +179,21 @@ es:
|
|
154
179
|
shared:
|
155
180
|
omniauth_buttons:
|
156
181
|
or: O
|
182
|
+
doorkeeper:
|
183
|
+
authorizations:
|
184
|
+
new:
|
185
|
+
authorize: Autorice la aplicación
|
186
|
+
by_organization_link_html: <small class="heading-small">por %{link}</small>
|
187
|
+
cancel: Cancelar
|
188
|
+
connect_your_account_html: Conecte su cuenta iniciando sesión en <strong>%{organization}</strong>
|
189
|
+
publish_content: Publique contenido para usted
|
190
|
+
see_email: Ver tu correo electrónico
|
191
|
+
see_name: Ver tu nombre
|
192
|
+
see_username: Ver tu nombre de usuario
|
193
|
+
this_application_will_be_able_to: 'Esta aplicación podrá:'
|
194
|
+
this_application_will_not_be_able_to: 'Esta aplicación no podrá:'
|
195
|
+
update_profile: Actualiza tu perfil
|
196
|
+
wants_to_use_your_account_html: "<strong>%{application_name}</strong> quiere usar tu cuenta"
|
157
197
|
errors:
|
158
198
|
internal_server_error:
|
159
199
|
title: Ha habido un problema con nuestro servidor
|
@@ -169,17 +209,17 @@ es:
|
|
169
209
|
email_outro: Has recibido esta notificación porque estás siguiendo %{resource_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
170
210
|
email_subject: Un evento ha ocurrido en %{resource_title}
|
171
211
|
notification_title: Se ha agregado un <a href="%{resource_path}">nuevo documento</a> a <a href="%{attached_to_url}">%{resource_title}</a>
|
212
|
+
components:
|
213
|
+
component_published:
|
214
|
+
email_intro: 'El componente %{resource_title} ahora está activo para %{participatory_space_title}. Puedes verlo desde esta página:'
|
215
|
+
email_outro: Recibiste esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
|
216
|
+
email_subject: Una actualización en %{participatory_space_title}
|
217
|
+
notification_title: El componente %{resource_title} está activo ahora en <a href="%{resource_path}">%{participatory_space_title}</a>
|
172
218
|
email_event:
|
173
219
|
email_greeting: Hola %{user_name},
|
174
220
|
email_intro: 'Ha habido una actualización de "%{resource_title}". Se puede ver en esta página:'
|
175
221
|
email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
|
176
222
|
email_subject: Una actualización de %{resource_title}
|
177
|
-
features:
|
178
|
-
feature_published:
|
179
|
-
email_intro: 'El componente %{resource_title} ahora está activo para %{participatory_space_title}. Puedes verlo desde esta página:'
|
180
|
-
email_outro: Recibió esta notificación porque está siguiendo %{participatory_space_title}. Puede dejar de recibir notificaciones siguiendo el enlace anterior.
|
181
|
-
email_subject: Una actualización de %{participatory_space_title}
|
182
|
-
notification_title: El componente %{resource_title} ahora está activo para <a href="%{resource_path}">%{participatory_space_title}</a>
|
183
223
|
notification_event:
|
184
224
|
notification_title: Un evento ha ocurrido en <a href="%{resource_path}">%{resource_title}</a>.
|
185
225
|
users:
|
@@ -192,21 +232,6 @@ es:
|
|
192
232
|
export:
|
193
233
|
ready: Adjunto encontrará una versión comprimida de su exportación.
|
194
234
|
subject: Su exportación "%{name}" está lista
|
195
|
-
features:
|
196
|
-
dummy:
|
197
|
-
actions:
|
198
|
-
bar: Bar
|
199
|
-
foo: Foo
|
200
|
-
name: Funcionalidad de prueba
|
201
|
-
settings:
|
202
|
-
global:
|
203
|
-
comments_enabled: Comentarios habilitados
|
204
|
-
dummy_global_attribute_1: Dummy Attribute 1
|
205
|
-
dummy_global_attribute_2: Dummy Attribute 2
|
206
|
-
step:
|
207
|
-
comments_blocked: Comentarios bloqueados
|
208
|
-
dummy_step_attribute_1: Dummy Step Attribute 1
|
209
|
-
dummy_step_attribute_2: Dummy Step Attribute 2
|
210
235
|
filters:
|
211
236
|
linked_classes:
|
212
237
|
all: Todas
|
@@ -242,6 +267,8 @@ es:
|
|
242
267
|
value_types:
|
243
268
|
area_presenter:
|
244
269
|
not_found: 'No se encontró el área en la base de datos (ID: %{id})'
|
270
|
+
area_type_presenter:
|
271
|
+
not_found: 'El tipo de área no se encontró en la base de datos (ID: %{id})'
|
245
272
|
scope_presenter:
|
246
273
|
not_found: 'No se encontró el ámbito en la base de datos (ID: %{id})'
|
247
274
|
scope_type_presenter:
|
@@ -307,6 +334,10 @@ es:
|
|
307
334
|
pages:
|
308
335
|
index:
|
309
336
|
title: Más información
|
337
|
+
participatory_space_private_users:
|
338
|
+
not_allowed: No puedes ver este contenido
|
339
|
+
profile:
|
340
|
+
deleted: Usuario eliminado
|
310
341
|
profiles:
|
311
342
|
default_officialization_text: Esta persona participante está verifica públicamente, se ha verificado que su nombre o cargo corresponde con su nombre real y rol
|
312
343
|
show:
|
@@ -394,7 +425,7 @@ es:
|
|
394
425
|
invitations:
|
395
426
|
edit:
|
396
427
|
header: Escribe tu contraseña
|
397
|
-
nickname_help:
|
428
|
+
nickname_help: Tu identificador único en %{organization}.
|
398
429
|
submit_button: Guardar
|
399
430
|
mailer:
|
400
431
|
invitation_instructions:
|
@@ -405,18 +436,25 @@ es:
|
|
405
436
|
Si no quieres aceptar la invitación ignora este correo.<br />
|
406
437
|
Tu cuenta no se creará hasta que accedas al enlance de abajo y escojas tu contraseña.
|
407
438
|
invited_you_as_admin: "%{invited_by} te ha invitado como administrador de %{application}. Puedes aceptarlo a través del siguiente enlace."
|
439
|
+
invited_you_as_private_user: "%{invited_by} te ha invitado como usuario privado de %{application}. Puedes aceptar a través del siguiente enlace."
|
408
440
|
someone_invited_you: Alguien te ha invitado a %{application}. Puedes aceptar la invitación a través del siguiente enlace.
|
409
441
|
someone_invited_you_as_admin: Alguien te ha invitado como administrador de %{application}, puedes aceptar a través del siguiente enlace.
|
442
|
+
someone_invited_you_as_private_user: Alguien te ha invitado como usuario_privado de %{application}, puedes aceptarlo a través del siguiente enlace.
|
410
443
|
invite_admin:
|
411
444
|
subject: Has sido invitado para gestionar %{organization}
|
412
445
|
invite_collaborator:
|
413
446
|
subject: Has sido invitado a colaborar en %{organization}
|
447
|
+
invite_private_user:
|
448
|
+
subject: Has sido invitado a un proceso privado de participación en %{organization}
|
414
449
|
organization_admin_invitation_instructions:
|
415
450
|
subject: Has sido invitado para gestionar %{organization}
|
416
451
|
password_change:
|
417
452
|
greeting: '¡Hola %{recipient}!'
|
418
453
|
message: Nos ponemos en contacto contigo para notificarte que tu contraseña ha sido cambiada correctamente.
|
419
454
|
subject: Contraseña modificada
|
455
|
+
doorkeeper:
|
456
|
+
scopes:
|
457
|
+
public: Tu información pública
|
420
458
|
errors:
|
421
459
|
messages:
|
422
460
|
content_type_whitelist_error: El tipo de archivo no es válido
|
@@ -496,6 +534,7 @@ es:
|
|
496
534
|
answers_count: Encuestas completadas
|
497
535
|
assemblies_count: Asambleas
|
498
536
|
comments_count: Comentarios
|
537
|
+
debates_count: Debates
|
499
538
|
endorsements_count: Adhesiones
|
500
539
|
headline: Estado actual de %{organization}
|
501
540
|
meetings_count: Encuentros
|