decidim-core 0.18.1 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-core might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_core_manifest.js +3 -0
- data/app/assets/javascripts/decidim/social_share.js +2 -0
- data/app/assets/stylesheets/decidim/extras/_social_share.css.scss +36 -0
- data/app/assets/stylesheets/decidim/modules/_input-gallery.scss +24 -0
- data/app/assets/stylesheets/decidim/modules/_navbar.scss +1 -1
- data/app/cells/decidim/activities_cell.rb +13 -8
- data/app/cells/decidim/activity_cell.rb +19 -5
- data/app/cells/decidim/address/details.erb +2 -2
- data/app/cells/decidim/amendable/amenders_list/show.erb +1 -1
- data/app/cells/decidim/amendable/amenders_list_cell.rb +5 -1
- data/app/cells/decidim/amendable/announcement_cell.rb +22 -9
- data/app/cells/decidim/amendable/wizard_step_form_cell.rb +121 -0
- data/app/cells/decidim/announcement_cell.rb +1 -0
- data/app/cells/decidim/author_cell.rb +7 -0
- data/app/cells/decidim/card_m_cell.rb +3 -1
- data/app/cells/decidim/coauthorships_cell.rb +3 -1
- data/app/cells/decidim/collapsible_authors_cell.rb +1 -0
- data/app/cells/decidim/collapsible_list_cell.rb +1 -0
- data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -0
- data/app/cells/decidim/content_blocks/last_activity_cell.rb +3 -2
- data/app/cells/decidim/content_blocks/metrics_cell.rb +1 -0
- data/app/cells/decidim/content_blocks/stats_cell.rb +1 -0
- data/app/cells/decidim/content_blocks/sub_hero_cell.rb +1 -0
- data/app/cells/decidim/diff_cell.rb +1 -1
- data/app/cells/decidim/fingerprint/show.erb +1 -1
- data/app/cells/decidim/follow_button_cell.rb +3 -0
- data/app/cells/decidim/members_cell.rb +1 -0
- data/app/cells/decidim/notifications/show.erb +1 -1
- data/app/cells/decidim/profile_cell.rb +1 -0
- data/app/cells/decidim/profile_sidebar_cell.rb +4 -0
- data/app/cells/decidim/search_results_cell.rb +1 -0
- data/app/cells/decidim/search_results_section/show.erb +1 -1
- data/app/cells/decidim/tos_page_cell.rb +1 -0
- data/app/cells/decidim/user_group_pending_invitations_list_cell.rb +1 -0
- data/app/cells/decidim/user_group_pending_requests_list_cell.rb +1 -0
- data/app/cells/decidim/wizard_step_form/wizard_aside.erb +14 -0
- data/app/cells/decidim/wizard_step_form/wizard_header.erb +18 -0
- data/app/cells/decidim/wizard_step_form_cell.rb +112 -0
- data/app/commands/decidim/amendable/accept.rb +1 -1
- data/app/commands/decidim/amendable/create_draft.rb +70 -0
- data/app/commands/decidim/amendable/destroy_draft.rb +40 -0
- data/app/commands/decidim/amendable/promote.rb +13 -11
- data/app/commands/decidim/amendable/publish_draft.rb +76 -0
- data/app/commands/decidim/amendable/update_draft.rb +54 -0
- data/app/commands/decidim/amendable/withdraw.rb +31 -15
- data/app/commands/decidim/create_follow.rb +1 -0
- data/app/commands/decidim/create_omniauth_registration.rb +22 -4
- data/app/commands/decidim/create_registration.rb +5 -0
- data/app/commands/decidim/delete_follow.rb +1 -0
- data/app/commands/decidim/search.rb +1 -0
- data/app/controllers/concerns/decidim/action_authorization.rb +2 -0
- data/app/controllers/concerns/decidim/amendments_controller.rb +148 -28
- data/app/controllers/concerns/decidim/devise_controllers.rb +3 -2
- data/app/controllers/concerns/decidim/force_authentication.rb +38 -0
- data/app/controllers/concerns/decidim/impersonate_users.rb +1 -0
- data/app/controllers/concerns/decidim/locale_switcher.rb +44 -17
- data/app/controllers/concerns/decidim/needs_tos_accepted.rb +8 -0
- data/app/controllers/concerns/decidim/orderable.rb +36 -0
- data/app/controllers/concerns/decidim/participatory_space_context.rb +2 -0
- data/app/controllers/concerns/decidim/safe_redirect.rb +24 -0
- data/app/controllers/decidim/application_controller.rb +19 -2
- data/app/controllers/decidim/devise/confirmations_controller.rb +6 -0
- data/app/controllers/decidim/devise/invitations_controller.rb +8 -4
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +4 -1
- data/app/controllers/decidim/errors_controller.rb +3 -0
- data/app/controllers/decidim/follows_controller.rb +2 -2
- data/app/controllers/decidim/messaging/conversations_controller.rb +2 -2
- data/app/controllers/decidim/profiles_controller.rb +4 -1
- data/app/controllers/decidim/scopes_controller.rb +16 -4
- data/app/events/decidim/amendable/amendment_base_event.rb +4 -0
- data/app/forms/decidim/account_form.rb +1 -1
- data/app/forms/decidim/amendable/create_form.rb +3 -19
- data/app/forms/decidim/amendable/edit_form.rb +22 -0
- data/app/forms/decidim/amendable/form.rb +42 -20
- data/app/forms/decidim/amendable/promote_form.rb +4 -7
- data/app/forms/decidim/amendable/publish_form.rb +21 -0
- data/app/forms/decidim/amendable/reject_form.rb +1 -1
- data/app/forms/decidim/amendable/review_form.rb +9 -4
- data/app/forms/decidim/invite_user_form.rb +1 -0
- data/app/forms/decidim/notifications_settings_form.rb +1 -0
- data/app/forms/decidim/registration_form.rb +4 -3
- data/app/forms/decidim/user_group_form.rb +1 -0
- data/app/forms/decidim/user_interests_form.rb +1 -0
- data/app/helpers/decidim/amendments_helper.rb +33 -19
- data/app/helpers/decidim/cells_helper.rb +2 -0
- data/app/helpers/decidim/layout_helper.rb +1 -0
- data/app/helpers/decidim/map_helper.rb +1 -1
- data/app/helpers/decidim/meta_tags_helper.rb +1 -0
- data/app/helpers/decidim/resource_reference_helper.rb +1 -0
- data/app/jobs/decidim/event_publisher_job.rb +60 -0
- data/app/jobs/decidim/metric_job.rb +1 -0
- data/app/models/decidim/action_log.rb +12 -0
- data/app/models/decidim/amendment.rb +31 -2
- data/app/models/decidim/attachment.rb +2 -0
- data/app/models/decidim/authorization.rb +1 -0
- data/app/models/decidim/category.rb +1 -0
- data/app/models/decidim/component.rb +7 -0
- data/app/models/decidim/content_block.rb +1 -0
- data/app/models/decidim/follow.rb +3 -0
- data/app/models/decidim/identity.rb +1 -0
- data/app/models/decidim/impersonation_log.rb +2 -0
- data/app/models/decidim/newsletter.rb +1 -0
- data/app/models/decidim/participatory_process_user_role.rb +1 -0
- data/app/models/decidim/participatory_space_private_user.rb +1 -0
- data/app/models/decidim/permission_action.rb +2 -0
- data/app/models/decidim/report.rb +1 -0
- data/app/models/decidim/scope.rb +1 -0
- data/app/models/decidim/searchable_resource.rb +1 -1
- data/app/models/decidim/static_page.rb +1 -0
- data/app/models/decidim/user.rb +2 -0
- data/app/permissions/decidim/permissions.rb +18 -14
- data/app/permissions/decidim/user_manager_permissions.rb +9 -2
- data/app/presenters/decidim/admin_log/organization_presenter.rb +1 -0
- data/app/presenters/decidim/admin_log/participatory_space_private_user_presenter.rb +1 -1
- data/app/presenters/decidim/admin_log/user_presenter.rb +1 -1
- data/app/presenters/decidim/hashtag_presenter.rb +1 -1
- data/app/presenters/decidim/log/base_presenter.rb +1 -0
- data/app/presenters/decidim/log/diff_presenter.rb +1 -1
- data/app/presenters/decidim/log/value_types/area_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/area_type_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/currency_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/date_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/locale_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/percentage_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/scope_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/scope_type_presenter.rb +1 -0
- data/app/presenters/decidim/metric_charts_presenter.rb +1 -0
- data/app/presenters/decidim/metric_object_presenter.rb +4 -0
- data/app/queries/decidim/metric_manage.rb +3 -0
- data/app/queries/decidim/metric_measure.rb +1 -0
- data/app/queries/decidim/metrics/followers_metric_manage.rb +3 -0
- data/app/queries/decidim/metrics/participants_metric_manage.rb +4 -0
- data/app/queries/decidim/similar_emendations.rb +56 -0
- data/app/resolvers/decidim/core/metric_resolver.rb +1 -0
- data/app/services/decidim/action_authorizer.rb +1 -0
- data/app/services/decidim/action_logger.rb +1 -0
- data/app/services/decidim/activity_search.rb +1 -0
- data/app/services/decidim/email_notification_generator.rb +4 -0
- data/app/services/decidim/notification_generator.rb +2 -0
- data/app/services/decidim/notification_generator_for_recipient.rb +0 -1
- data/app/services/decidim/resource_search.rb +1 -1
- data/app/services/decidim/traceability.rb +1 -0
- data/app/uploaders/decidim/application_uploader.rb +1 -0
- data/app/uploaders/decidim/attachment_uploader.rb +16 -0
- data/app/uploaders/decidim/avatar_uploader.rb +0 -2
- data/app/uploaders/decidim/data_portability_uploader.rb +1 -0
- data/app/uploaders/decidim/homepage_image_uploader.rb +0 -2
- data/app/uploaders/decidim/image_uploader.rb +15 -1
- data/app/uploaders/decidim/oauth_application_logo_uploader.rb +0 -1
- data/app/uploaders/decidim/official_image_footer_uploader.rb +0 -1
- data/app/uploaders/decidim/official_image_header_uploader.rb +0 -1
- data/app/uploaders/decidim/open_data_uploader.rb +1 -0
- data/app/validators/etiquette_validator.rb +5 -0
- data/app/views/decidim/account/delete.html.erb +2 -2
- data/app/views/decidim/account/show.html.erb +1 -1
- data/app/views/decidim/amendments/_edit_form_fields.html.erb +16 -13
- data/app/views/decidim/amendments/_similar_emendation.html.erb +24 -0
- data/app/views/decidim/amendments/compare_draft.html.erb +21 -0
- data/app/views/decidim/amendments/edit_draft.html.erb +31 -0
- data/app/views/decidim/amendments/new.html.erb +5 -17
- data/app/views/decidim/amendments/preview_draft.html.erb +32 -0
- data/app/views/decidim/amendments/review.html.erb +5 -3
- data/app/views/decidim/application/_document.html.erb +1 -1
- data/app/views/decidim/application/_photos.html.erb +1 -1
- data/app/views/decidim/data_portability/show.html.erb +1 -1
- data/app/views/decidim/devise/invitations/edit.html.erb +2 -2
- data/app/views/decidim/devise/sessions/new.html.erb +1 -1
- data/app/views/decidim/doorkeeper/authorizations/new.html.erb +3 -3
- data/app/views/decidim/export_mailer/data_portability_export.html.erb +1 -1
- data/app/views/decidim/searches/index.js.erb +6 -0
- data/app/views/decidim/shared/_address_details.html.erb +2 -2
- data/app/views/decidim/shared/_embed_modal.html.erb +1 -1
- data/app/views/decidim/shared/_share_modal.html.erb +7 -4
- data/app/views/layouts/decidim/_application.html.erb +0 -1
- data/app/views/layouts/decidim/_head.html.erb +13 -12
- data/app/views/layouts/decidim/_logo.html.erb +1 -1
- data/app/views/layouts/decidim/_social_media_links.html.erb +5 -5
- data/app/views/layouts/decidim/_user_menu.html.erb +1 -1
- data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
- data/app/views/layouts/decidim/mailer.html.erb +2 -2
- data/config/locales/ar.yml +27 -17
- data/config/locales/ca.yml +79 -15
- data/config/locales/cs.yml +73 -14
- data/config/locales/de.yml +62 -12
- data/config/locales/en.yml +80 -16
- data/config/locales/eo-UY.yml +16 -0
- data/config/locales/es-MX.yml +73 -11
- data/config/locales/es-PY.yml +73 -11
- data/config/locales/es.yml +79 -15
- data/config/locales/eu.yml +6 -13
- data/config/locales/fi-plain.yml +75 -11
- data/config/locales/fi.yml +80 -16
- data/config/locales/fr.yml +70 -16
- data/config/locales/gl.yml +6 -13
- data/config/locales/hu.yml +80 -17
- data/config/locales/id-ID.yml +6 -12
- data/config/locales/it.yml +56 -14
- data/config/locales/nl.yml +76 -12
- data/config/locales/no.yml +11 -2
- data/config/locales/pl.yml +6 -15
- data/config/locales/pt-BR.yml +6 -13
- data/config/locales/pt.yml +6 -13
- data/config/locales/ru.yml +7 -2
- data/config/locales/sv.yml +34 -18
- data/config/locales/tr-TR.yml +15 -12
- data/config/locales/uk.yml +7 -2
- data/config/routes.rb +7 -0
- data/db/migrate/20180226140756_add_version_to_action_logs.rb +1 -0
- data/db/migrate/20180305132906_rename_features_to_components.rb +1 -0
- data/db/migrate/20190412131728_fix_user_names.rb +1 -1
- data/db/migrate/20190610093742_add_force_users_to_authenticate_before_access_organization.rb +10 -0
- data/db/migrate/20190618075906_add_confidential_to_doorkeeper_application.rb +13 -0
- data/db/migrate/{20190925091507_add_uniq_index_to_decidim_metrics.rb → 20190829092826_add_uniq_index_to_decidim_metrics.rb} +0 -0
- data/lib/decidim/amendable.rb +87 -13
- data/lib/decidim/attributes/localized_date.rb +5 -0
- data/lib/decidim/attributes/time_with_zone.rb +5 -0
- data/lib/decidim/authorable.rb +3 -0
- data/lib/decidim/authorization_form_builder.rb +2 -2
- data/lib/decidim/component_manifest.rb +2 -0
- data/lib/decidim/content_parsers.rb +2 -0
- data/lib/decidim/content_parsers/hashtag_parser.rb +1 -1
- data/lib/decidim/content_parsers/link_parser.rb +10 -0
- data/lib/decidim/content_parsers/newline_parser.rb +20 -0
- data/lib/decidim/content_parsers/user_parser.rb +1 -1
- data/lib/decidim/content_processor.rb +2 -0
- data/lib/decidim/content_renderers.rb +1 -0
- data/lib/decidim/content_renderers/hashtag_renderer.rb +1 -1
- data/lib/decidim/content_renderers/link_renderer.rb +24 -0
- data/lib/decidim/content_renderers/user_renderer.rb +2 -2
- data/lib/decidim/core.rb +11 -0
- data/lib/decidim/core/engine.rb +2 -28
- data/lib/decidim/core/test.rb +4 -1
- data/lib/decidim/core/test/factories.rb +35 -8
- data/lib/decidim/core/test/shared_examples/amendable/create_amendment_draft_examples.rb +50 -0
- data/lib/decidim/core/test/shared_examples/amendable/destroy_amendment_draft_examples.rb +39 -0
- data/lib/decidim/core/test/shared_examples/amendable/promote_amendment_examples.rb +27 -3
- data/lib/decidim/core/test/shared_examples/amendable/{create_amendment_examples.rb → publish_amendment_draft_examples.rb} +26 -17
- data/lib/decidim/core/test/shared_examples/amendable/update_amendment_draft_examples.rb +42 -0
- data/lib/decidim/core/test/shared_examples/amendable/withdraw_amendment_examples.rb +19 -11
- data/lib/decidim/core/test/shared_examples/has_attachment_collections.rb +1 -1
- data/lib/decidim/core/test/shared_examples/has_attachments.rb +1 -1
- data/lib/decidim/core/test/shared_examples/simple_event.rb +4 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/data_portability_file_zipper.rb +3 -0
- data/lib/decidim/events/author_event.rb +1 -0
- data/lib/decidim/events/base_event.rb +12 -22
- data/lib/decidim/events/coauthor_event.rb +1 -0
- data/lib/decidim/events/simple_event.rb +3 -0
- data/lib/decidim/exporters/csv.rb +1 -0
- data/lib/decidim/fingerprintable.rb +1 -0
- data/lib/decidim/followable.rb +8 -0
- data/lib/decidim/form_builder.rb +24 -3
- data/lib/decidim/gamification.rb +4 -0
- data/lib/decidim/gamification/badge_status.rb +1 -0
- data/lib/decidim/has_category.rb +2 -0
- data/lib/decidim/has_component.rb +2 -7
- data/lib/decidim/has_private_users.rb +8 -1
- data/lib/decidim/has_settings.rb +12 -8
- data/lib/decidim/hashtaggable.rb +4 -0
- data/lib/decidim/metric_operation_manifest.rb +1 -0
- data/lib/decidim/nicknamizable.rb +1 -0
- data/lib/decidim/participable.rb +1 -0
- data/lib/decidim/participatory_space_resourceable.rb +1 -0
- data/lib/decidim/randomable.rb +20 -0
- data/lib/decidim/search_resource_fields_mapper.rb +2 -0
- data/lib/decidim/searchable.rb +2 -0
- data/lib/decidim/settings_manifest.rb +10 -1
- data/lib/decidim/stats_registry.rb +1 -0
- data/lib/decidim/view_model.rb +1 -1
- data/lib/tasks/decidim_data_portability_tasks.rake +1 -0
- data/lib/tasks/decidim_metrics_tasks.rake +2 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.no.js +12 -12
- metadata +140 -82
- data/app/commands/decidim/amendable/create.rb +0 -80
data/config/locales/cs.yml
CHANGED
@@ -3,6 +3,14 @@ cs:
|
|
3
3
|
attributes:
|
4
4
|
account:
|
5
5
|
delete_reason: Důvod odstranění účtu
|
6
|
+
group:
|
7
|
+
about: O nás
|
8
|
+
avatar: Avatar
|
9
|
+
document_number: Číslo dokumentu
|
10
|
+
email: E-mail
|
11
|
+
name: Jméno
|
12
|
+
nickname: Přezdívka
|
13
|
+
phone: Telefon
|
6
14
|
report:
|
7
15
|
details: Další komentáře
|
8
16
|
user:
|
@@ -114,6 +122,7 @@ cs:
|
|
114
122
|
update: "%{user_name} aktualizovala nastavení organizace"
|
115
123
|
participatory_space_private_user:
|
116
124
|
create: "%{user_name} pozval %{resource_name} aby se stal soukromým uživatelem"
|
125
|
+
create_via_csv: "%{user_name} pozval %{resource_name} aby se stal soukromým účastníkem"
|
117
126
|
delete: "%{user_name} uživatele %{resource_name} odstranil jako soukromého uživatele"
|
118
127
|
scope:
|
119
128
|
create: "%{user_name} vytvořilo %{resource_name} rozsah"
|
@@ -148,9 +157,21 @@ cs:
|
|
148
157
|
promote_confirm_text: Opravdu chcete tuto emisi podpořit?
|
149
158
|
promote_help_text: Tuto změnu můžete propagovat a publikovat ji jako nezávislou %{model_name}
|
150
159
|
section_heading: Změny (%{count})
|
160
|
+
compare_draft:
|
161
|
+
continue: Pokračovat
|
162
|
+
no_similars_found: Nebyly nalezeny žádné podobné vylepšení.
|
163
|
+
title: Podobná vylepšení
|
151
164
|
created:
|
152
|
-
error: Při vytváření
|
153
|
-
success:
|
165
|
+
error: Při vytváření pozměňovacího návrhu došlo k chybě.
|
166
|
+
success: Pozměňovací návrh byl úspěšně vytvořen.
|
167
|
+
destroy_draft:
|
168
|
+
error: Při mazání pozměňovacího návrhu došlo k potížím.
|
169
|
+
success: Pozměňovací návrh byl úspěšně smazán.
|
170
|
+
edit_draft:
|
171
|
+
discard: Zahodit koncept
|
172
|
+
discard_confirmation: Opravdu chcete zahodit tento pozměňovací návrh?
|
173
|
+
send: Náhled
|
174
|
+
title: Upravit pozměňovací návrh
|
154
175
|
emendation:
|
155
176
|
actions:
|
156
177
|
button_accept: Přijmout
|
@@ -163,19 +184,25 @@ cs:
|
|
163
184
|
evaluating: |-
|
164
185
|
Tato změna pro hodnocení %{amendable_type} %{amendable_link}
|
165
186
|
se hodnotí.
|
187
|
+
promoted: Prosazováno jako %{amendable_type}.
|
166
188
|
rejected: "Tato změna pro %{amendable_type} %{amendable_link}\nbyla zamítnuta na <strong>%{announcement_date}</strong>."
|
167
189
|
withdrawn: |-
|
168
190
|
Tato změna pro číslo %{amendable_type} %{amendable_link}
|
169
191
|
byla autorem stažena.
|
170
192
|
new:
|
171
193
|
amendment_author: Autor změn
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
194
|
+
send: Vytvořit
|
195
|
+
title: Vytvořit pozměňovací návrh
|
196
|
+
preview_draft:
|
197
|
+
modify: Změnit
|
198
|
+
publish: Publikovat
|
199
|
+
title: Publikovat pozměňovací návrh
|
176
200
|
promoted:
|
177
201
|
error: Došlo k chybě při propagování emendace
|
178
202
|
success: Úprava byla úspěšně podporována
|
203
|
+
publish_draft:
|
204
|
+
error: Při publikování pozměňovacího návrhu došlo k chybě.
|
205
|
+
success: Pozměňovací návrh úspěšně publikován
|
179
206
|
rejected:
|
180
207
|
error: Při odmítnutí této změny došlo k chybě. Zkuste to prosím znovu později
|
181
208
|
success: Emenda byla úspěšně odmítnuta
|
@@ -184,6 +211,21 @@ cs:
|
|
184
211
|
heading: Přezkoumejte pozměňovací návrh
|
185
212
|
help_text: Přezkoumáváte změnu %{model_name}
|
186
213
|
send: Přijmout pozměňovací návrh
|
214
|
+
update_draft:
|
215
|
+
error: Při aktualizaci pozměňovacího návrhu došlo k potížím.
|
216
|
+
success: Pozměňovací návrh byl úspěšně aktualizován.
|
217
|
+
visibility_options:
|
218
|
+
all: Pozměňovací návrhy jsou pro všechny viditelné
|
219
|
+
participants: Pozměňovací návrhy jsou viditelné pouze pro jejich autory
|
220
|
+
withdraw:
|
221
|
+
error: Při stažení pozměňovacího návrhu došlo k chybě
|
222
|
+
success: Pozměňovací návrh byl úspěšně stažen
|
223
|
+
wizard_step_form:
|
224
|
+
steps:
|
225
|
+
'1': Vytvořte svůj pozměňovací návrh
|
226
|
+
'2': Srovnejte váš pozměňovací návrh
|
227
|
+
'3': Dokončete váš pozměňovací návrh
|
228
|
+
'4': Zveřejnit svůj pozměňovací návrh
|
187
229
|
anonymous_user: Anonymní
|
188
230
|
application:
|
189
231
|
collection:
|
@@ -280,12 +322,18 @@ cs:
|
|
280
322
|
comments_enabled: Komentáře povoleny
|
281
323
|
dummy_global_attribute_1: Zástupný atribut 1
|
282
324
|
dummy_global_attribute_2: Zástupný atribut 2
|
325
|
+
dummy_global_translatable_text: Zástupný text k přeložení
|
283
326
|
enable_pads_creation: Povolit vytvoření sdíleného textu
|
284
327
|
resources_permissions_enabled: Oprávnění zdrojů povoleno
|
285
328
|
step:
|
329
|
+
amendment_creation_enabled: Umožnit změnu a doplnění
|
330
|
+
amendment_promotion_enabled: Propagace změn byla povolena
|
331
|
+
amendment_reaction_enabled: Reakce na změnu byla povolena
|
332
|
+
amendments_visibility: Viditelnost pozměňovacího návrhu
|
286
333
|
comments_blocked: Komentáře blokovány
|
287
334
|
dummy_step_attribute_1: Atribut 1 zástupného kroku
|
288
335
|
dummy_step_attribute_2: Atribut 2 zástupného kroku
|
336
|
+
dummy_step_translatable_text: Zástupný krok textu k přeložení
|
289
337
|
contact: Kontakt
|
290
338
|
content_blocks:
|
291
339
|
footer_sub_hero:
|
@@ -311,6 +359,7 @@ cs:
|
|
311
359
|
name: Pruh pod hlavním pruhem
|
312
360
|
core:
|
313
361
|
actions:
|
362
|
+
login_before_access: Prosím přihlašte se k účtu před přístupem
|
314
363
|
unauthorized: Nemáte oprávnění k provedení této akce
|
315
364
|
data_portability:
|
316
365
|
export:
|
@@ -327,7 +376,7 @@ cs:
|
|
327
376
|
email_already_exists: Jiný účet používá stejnou e-mailovou adresu
|
328
377
|
new:
|
329
378
|
complete_profile: Kompletní profil
|
330
|
-
nickname_help:
|
379
|
+
nickname_help: Vaše přezdívka v %{organization}
|
331
380
|
sign_up: Prosím, vyplňte svůj profil
|
332
381
|
subtitle: Pro dokončení registrace vyplňte prosím následující formulář
|
333
382
|
username_help: Veřejné jméno, které se zobrazí ve vašich příspěvcích. S cílem zaručit anonymitu může být jakékoliv jméno.
|
@@ -336,7 +385,7 @@ cs:
|
|
336
385
|
already_have_an_account?: Máte již účet?
|
337
386
|
newsletter: Dostávejte příležitostný zpravodaj s relevantními informacemi
|
338
387
|
newsletter_title: Povolení kontaktu
|
339
|
-
nickname_help:
|
388
|
+
nickname_help: Vaše přezdívka v %{organization}
|
340
389
|
password_help: "%{minimun_characters} minimum znaků, nesmí být příliš běžné (např. 123456) a musí být jiné než vaše přezdívka a váš e-mail."
|
341
390
|
sign_in: Přihlásit se
|
342
391
|
sign_up: Zaregistrovat se
|
@@ -554,6 +603,9 @@ cs:
|
|
554
603
|
current_image: Aktuální obrázek
|
555
604
|
default_image: Výchozí obrázek
|
556
605
|
errors:
|
606
|
+
decidim/user:
|
607
|
+
password: Heslo je příliš krátké.
|
608
|
+
password_confirmation: Potvrzení hesla se musí shodovat s heslem.
|
557
609
|
error: V tomto poli je chyba.
|
558
610
|
remove_this_file: Odstranit tento soubor
|
559
611
|
gamification:
|
@@ -1023,6 +1075,12 @@ cs:
|
|
1023
1075
|
welcome_notification:
|
1024
1076
|
default_body: <p>Dobrý den, {{name}}, díky za připojení {{organization}} a vítejte!</p><ul><li>Chcete-li získat rychlou představu o tom, co zde můžete udělat, podívejte se na sekci <a href="{{help_url}}">Nápověda</a>.</li><li>Až si ji přečtete, dostanete svůj první odznak. Zde je <a href="{{badges_url}}">seznam všech odznaků</a> které můžete získat, když se účastníte {{organization}}</li><li>v neposlední řadě se připojte k ostatním lidem, sdílejte s nimi zkušenost z toho, že jste se zapojili a zúčastnili se {{organization}}. Vypracujte návrhy, připomínky, diskusi, přemýšlejte o tom, jak přispívat ke společnému cíli, poskytněte argumenty, abyste přesvědčili, poslouchali a četli, abyste byli přesvědčeni, vyjadřovali své myšlenky konkrétním a přímým způsobem, reagovali trpělivě a rozhodovali, měli otevřenou mysl ke spolupráci a připojili se k jiným lidem.</li></ul>
|
1025
1077
|
default_subject: Děkujeme, že jste se připojili k {{organization}}!
|
1078
|
+
wizard_step_form:
|
1079
|
+
wizard_aside:
|
1080
|
+
back: Zpět
|
1081
|
+
wizard_header:
|
1082
|
+
see_steps: viz kroky
|
1083
|
+
step_of: Krok %{current_step} z %{total_steps}
|
1026
1084
|
devise:
|
1027
1085
|
confirmations:
|
1028
1086
|
confirmed: Vaše e-mailová adresa byla úspěšně potvrzena.
|
@@ -1181,13 +1239,8 @@ cs:
|
|
1181
1239
|
long_words: obsahuje slova, která jsou příliš dlouhá (přes 35 znaků)
|
1182
1240
|
must_start_with_caps: musí začínat velkým písmenem
|
1183
1241
|
nesting_too_deep: nemůže být uvnitř podkategorie
|
1184
|
-
not_found:
|
1242
|
+
not_found: nemůže být nalezeno. Zaregistrovali jste se dříve?
|
1185
1243
|
not_locked: nebyla zamčená
|
1186
|
-
not_saved:
|
1187
|
-
one: '1 chyba zakázala uložení tohoto %{resource}:'
|
1188
|
-
few: "%{count} chybám bylo zakázáno %{resource} uloženo:"
|
1189
|
-
many: "%{count} chybám bylo zakázáno %{resource} uloženo:"
|
1190
|
-
other: "%{count} chybám bylo zakázáno %{resource} uloženo:"
|
1191
1244
|
too_many_marks: používá příliš mnoho po sobě jdoucích interpunkčních znamének (např.! a?)
|
1192
1245
|
too_much_caps: používá příliš mnoho velkých písmen (více než 25% textu)
|
1193
1246
|
too_short: je příliš krátká (pod 15 znaků)
|
@@ -1261,12 +1314,15 @@ cs:
|
|
1261
1314
|
qq: Qzone
|
1262
1315
|
reddit: Reddit
|
1263
1316
|
share_to: Sdílet na %{name}
|
1317
|
+
telegram: Telegram
|
1264
1318
|
tumblr: Tumblr
|
1265
1319
|
twitter: Twitter
|
1266
1320
|
vkontakte: Vkontakte
|
1267
1321
|
wechat: WeChat
|
1268
1322
|
wechat_footer: Otevřete WeChat, klikněte na tlačítko "Objevte" a poté klikněte na nabídku "Skenovat QR kód".
|
1269
1323
|
weibo: Sina Weibo
|
1324
|
+
whatsapp_app: WhatsApp
|
1325
|
+
whatsapp_web: WhatsApp
|
1270
1326
|
xing: Xing
|
1271
1327
|
time:
|
1272
1328
|
formats:
|
@@ -1276,10 +1332,13 @@ cs:
|
|
1276
1332
|
day_of_year: "%d.%m.%y"
|
1277
1333
|
decidim_day_of_year: "%d %B %Y"
|
1278
1334
|
decidim_short: "%d/%m/%Y %H:%M"
|
1335
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
1279
1336
|
devise:
|
1280
1337
|
mailer:
|
1281
1338
|
invitation_instructions:
|
1282
1339
|
accept_until_format: "%B %d, %Y %I:%M %p"
|
1340
|
+
long: "%B %d, %Y %H:%M"
|
1341
|
+
short: "%d/%m/%Y %H:%M"
|
1283
1342
|
time_of_day: "%H:%M"
|
1284
1343
|
versions:
|
1285
1344
|
directions:
|
data/config/locales/de.yml
CHANGED
@@ -3,6 +3,14 @@ de:
|
|
3
3
|
attributes:
|
4
4
|
account:
|
5
5
|
delete_reason: Grund, Ihr Konto zu löschen
|
6
|
+
group:
|
7
|
+
about: Über
|
8
|
+
avatar: Profilbild
|
9
|
+
document_number: Dokumentennummer
|
10
|
+
email: E-Mail
|
11
|
+
name: Name
|
12
|
+
nickname: Spitzname
|
13
|
+
phone: Telefonnummer
|
6
14
|
report:
|
7
15
|
details: Zusätzliche Kommentare
|
8
16
|
user:
|
@@ -142,9 +150,21 @@ de:
|
|
142
150
|
promote_confirm_text: Möchten Sie diese Erweiterung wirklich fördern?
|
143
151
|
promote_help_text: Sie können diese Erweiterung fördern und als unabhängige %{model_name}
|
144
152
|
section_heading: Änderungen (%{count})
|
153
|
+
compare_draft:
|
154
|
+
continue: Fortfahren
|
155
|
+
no_similars_found: Keine ähnlichen Entwürfe gefunden.
|
156
|
+
title: Ähnliche Entwürfe
|
145
157
|
created:
|
146
|
-
error: Beim Erstellen
|
147
|
-
success:
|
158
|
+
error: Beim Erstellen des Änderungsvorschlags ist ein Fehler aufgetreten.
|
159
|
+
success: Der Änderungsvorschlag wurde erfolgreich erstellt.
|
160
|
+
destroy_draft:
|
161
|
+
error: Es gab einen Fehler beim Löschen des Änderungsvorschlags.
|
162
|
+
success: Der Änderungsvorschlag wurde erfolgreich gelöscht.
|
163
|
+
edit_draft:
|
164
|
+
discard: Änderungsvorschlag verwerfen
|
165
|
+
discard_confirmation: Sind Sie sicher, dass Sie diesen Änderungsvorschlag verwerfen möchten?
|
166
|
+
send: Vorschau
|
167
|
+
title: Änderungsvorschlag bearbeiten
|
148
168
|
emendation:
|
149
169
|
actions:
|
150
170
|
button_accept: Akzeptieren
|
@@ -163,13 +183,18 @@ de:
|
|
163
183
|
wurde vom Autor zurückgezogen.
|
164
184
|
new:
|
165
185
|
amendment_author: Änderungsautor
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
186
|
+
send: Erstellen
|
187
|
+
title: Änderungsvorschlag erstellen
|
188
|
+
preview_draft:
|
189
|
+
modify: Bearbeiten
|
190
|
+
publish: Veröffentlichen
|
191
|
+
title: Änderungsvorschlag veröffentlichen
|
170
192
|
promoted:
|
171
193
|
error: Es gab Fehler bei der Förderung der Emendation
|
172
194
|
success: Die Emendation wurde erfolgreich gefördert
|
195
|
+
publish_draft:
|
196
|
+
error: Es gab ein Problem bei der Veröffentlichung des Änderungsvorschlags.
|
197
|
+
success: Änderungsvorschlag erfolgreich veröffentlicht.
|
173
198
|
rejected:
|
174
199
|
error: Beim Ablehnen dieser Änderung ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut
|
175
200
|
success: Die Emendation wurde erfolgreich abgelehnt
|
@@ -178,6 +203,21 @@ de:
|
|
178
203
|
heading: Überprüfen Sie die Änderung
|
179
204
|
help_text: Sie überprüfen eine Änderung der %{model_name}
|
180
205
|
send: Akzeptieren Sie den Änderungsantrag
|
206
|
+
update_draft:
|
207
|
+
error: Es gab ein Problem bei der Aktualisierung des Änderungsvorschlags.
|
208
|
+
success: Änderungsvorschlag erfolgreich aktualisiert.
|
209
|
+
visibility_options:
|
210
|
+
all: Änderungsvorschlag ist für alle sichtbar
|
211
|
+
participants: Änderungen sind nur für ihre Autoren sichtbar
|
212
|
+
withdraw:
|
213
|
+
error: Ein Fehler ist beim Zurückziehen des Änderungsvorschlags aufgetreten
|
214
|
+
success: Der Änderungsvorschlag wurde erfolgreich zurückgezogen
|
215
|
+
wizard_step_form:
|
216
|
+
steps:
|
217
|
+
'1': Erstellen Sie Ihre Änderung
|
218
|
+
'2': Vergleichen Sie Ihren Änderungsvorschlag
|
219
|
+
'3': Vervollständigen Sie Ihren Änderungsvorschlag
|
220
|
+
'4': Veröffentlichen Sie Ihren Änderungsvorschlag
|
181
221
|
anonymous_user: Anonym
|
182
222
|
application:
|
183
223
|
collection:
|
@@ -271,6 +311,10 @@ de:
|
|
271
311
|
enable_pads_creation: Aktivieren Sie die Pads-Erstellung
|
272
312
|
resources_permissions_enabled: Ressourcenberechtigungen aktiviert
|
273
313
|
step:
|
314
|
+
amendment_creation_enabled: Änderungserstellung aktiviert
|
315
|
+
amendment_promotion_enabled: Hervorheben von Änderungen aktiviert
|
316
|
+
amendment_reaction_enabled: Reaktionen auf Änderungen aktiviert
|
317
|
+
amendments_visibility: Sichtbarkeit der Änderungsvorschläge
|
274
318
|
comments_blocked: Kommentare blockiert
|
275
319
|
dummy_step_attribute_1: Dummy-Schritt-Attribut 1
|
276
320
|
dummy_step_attribute_2: Dummy-Schritt-Attribut 2
|
@@ -299,6 +343,7 @@ de:
|
|
299
343
|
name: Sub hero Banner
|
300
344
|
core:
|
301
345
|
actions:
|
346
|
+
login_before_access: Bitte melden Sie sich mit Ihrem Konto an, um auf diese Seite zuzugreifen
|
302
347
|
unauthorized: Sie sind nicht berechtigt, diese Aktion auszuführen
|
303
348
|
data_portability:
|
304
349
|
export:
|
@@ -315,7 +360,6 @@ de:
|
|
315
360
|
email_already_exists: Ein anderes Konto verwendet dieselbe E-Mail-Adresse
|
316
361
|
new:
|
317
362
|
complete_profile: Profil vervollständingen
|
318
|
-
nickname_help: Ihre kurze, eindeutige ID in %{organization}
|
319
363
|
sign_up: Bitte vervollständigen Sie Ihr Profil
|
320
364
|
subtitle: Bitte füllen Sie das folgende Formular aus, um die Anmeldung abzuschließen
|
321
365
|
username_help: Öffentlich sichtbarer Name, der in Ihren Beiträgen angezeigt wird. Um Anonymität zu gewährleisten, kann es sich um einen beliebigen Namen handeln.
|
@@ -324,7 +368,6 @@ de:
|
|
324
368
|
already_have_an_account?: Haben Sie bereits ein Konto?
|
325
369
|
newsletter: Erhalten Sie einen gelegentlichen Newsletter mit relevanten Informationen
|
326
370
|
newsletter_title: Kontakt Erlaubnis
|
327
|
-
nickname_help: Ihre kurze, eindeutige ID in %{organization}
|
328
371
|
sign_in: Anmelden
|
329
372
|
sign_up: Registrieren
|
330
373
|
sign_up_as:
|
@@ -537,6 +580,8 @@ de:
|
|
537
580
|
current_image: Aktuelles Bild
|
538
581
|
default_image: Standardbild
|
539
582
|
errors:
|
583
|
+
decidim/user:
|
584
|
+
password: Das Passwort ist zu kurz.
|
540
585
|
error: In diesem Feld ist ein Fehler aufgetreten.
|
541
586
|
remove_this_file: Diese Datei entfernen
|
542
587
|
gamification:
|
@@ -1004,6 +1049,12 @@ de:
|
|
1004
1049
|
welcome_notification:
|
1005
1050
|
default_body: <p>Hallo {{name}}, Dank für die Verbindung {{organization}} und willkommen!</p><ul><li>Wenn Sie sich schnell ein Bild machen möchten, was Sie hier tun können, sehen Sie sich den Abschnitt <a href="{{help_url}}">Hilfe</a> .</li><li>Sobald Sie es gelesen haben, erhalten Sie Ihr erstes Abzeichen. Hier ist eine <a href="{{badges_url}}">Liste aller Abzeichen</a> Sie erhalten können, wenn Sie an {{organization}}</li><li>teilnehmen. Schließen Sie sich anderen Personen an, und teilen Sie mit ihnen die Erfahrung, an {{organization}}teilzunehmen. Machen Sie Vorschläge, kommentieren Sie, diskutieren Sie, wie Sie einen Beitrag zum Gemeinwohl leisten können, geben Sie Argumente an, die überzeugen, zuhören und lesen, um überzeugt zu sein, drücken Sie Ihre Ideen konkret und direkt aus, reagieren Sie mit Geduld und Entscheidung, verteidigen Sie Ihre Ideen und halten Sie sie Offenheit, um zusammenzuarbeiten und sich den Ideen anderer anzuschließen.</li></ul>
|
1006
1051
|
default_subject: Danke, dass du {{organization}}beigetreten {{organization}} !
|
1052
|
+
wizard_step_form:
|
1053
|
+
wizard_aside:
|
1054
|
+
back: Zurück
|
1055
|
+
wizard_header:
|
1056
|
+
see_steps: siehe Schritte
|
1057
|
+
step_of: Schritt %{current_step} von %{total_steps}
|
1007
1058
|
devise:
|
1008
1059
|
confirmations:
|
1009
1060
|
confirmed: Ihre E-Mail-Adresse wurde erfolgreich bestätigt.
|
@@ -1159,11 +1210,7 @@ de:
|
|
1159
1210
|
long_words: enthält zu lange Wörter (über 35 Zeichen)
|
1160
1211
|
must_start_with_caps: muss mit einem Großbuchstaben beginnen
|
1161
1212
|
nesting_too_deep: kann nicht innerhalb einer Unterkategorie sein
|
1162
|
-
not_found: nicht gefunden
|
1163
1213
|
not_locked: war nicht gesperrt
|
1164
|
-
not_saved:
|
1165
|
-
one: '1 Fehler hat das Speichern dieser %{resource}:'
|
1166
|
-
other: "%{count} Fehler verboten, dass %{resource} gespeichert wird:"
|
1167
1214
|
too_many_marks: benutzt zu viele aufeinanderfolgende Satzzeichen (zB! und?)
|
1168
1215
|
too_much_caps: verwendet zu viele Großbuchstaben (über 25% des Textes)
|
1169
1216
|
too_short: ist zu kurz (unter 15 Zeichen)
|
@@ -1237,12 +1284,15 @@ de:
|
|
1237
1284
|
qq: Qzone
|
1238
1285
|
reddit: Reddit
|
1239
1286
|
share_to: Teilen mit %{name}
|
1287
|
+
telegram: Telegram
|
1240
1288
|
tumblr: Tumblr
|
1241
1289
|
twitter: Twitter
|
1242
1290
|
vkontakte: Vkontakte
|
1243
1291
|
wechat: WeChat
|
1244
1292
|
wechat_footer: Öffnen Sie Ihr WeChat, klicken Sie auf "Discover" und dann auf das "Scan QR Code" Menü.
|
1245
1293
|
weibo: Sina Weibo
|
1294
|
+
whatsapp_app: WhatsApp
|
1295
|
+
whatsapp_web: WhatsApp
|
1246
1296
|
xing: Xing
|
1247
1297
|
time:
|
1248
1298
|
formats:
|
data/config/locales/en.yml
CHANGED
@@ -4,6 +4,14 @@ en:
|
|
4
4
|
attributes:
|
5
5
|
account:
|
6
6
|
delete_reason: Reason to delete your account
|
7
|
+
group:
|
8
|
+
about: About
|
9
|
+
avatar: Avatar
|
10
|
+
document_number: Document number
|
11
|
+
email: Email
|
12
|
+
name: Name
|
13
|
+
nickname: Nickname
|
14
|
+
phone: Phone
|
7
15
|
report:
|
8
16
|
details: Additional comments
|
9
17
|
user:
|
@@ -109,6 +117,7 @@ en:
|
|
109
117
|
update: "%{user_name} updated the organization settings"
|
110
118
|
participatory_space_private_user:
|
111
119
|
create: "%{user_name} invited %{resource_name} to be a private participant"
|
120
|
+
create_via_csv: "%{user_name} invited %{resource_name} via csv to be a private participant"
|
112
121
|
delete: "%{user_name} removed the participant %{resource_name} as a private participant"
|
113
122
|
scope:
|
114
123
|
create: "%{user_name} created the %{resource_name} scope"
|
@@ -143,9 +152,21 @@ en:
|
|
143
152
|
promote_confirm_text: Are you sure you want to promote this emendation?
|
144
153
|
promote_help_text: You can promote this emendation and publish it as an independent %{model_name}
|
145
154
|
section_heading: Amendments (%{count})
|
155
|
+
compare_draft:
|
156
|
+
continue: Continue
|
157
|
+
no_similars_found: No similar emendations found.
|
158
|
+
title: Similar Emendations
|
146
159
|
created:
|
147
|
-
error: An error ocurred while creating the amendment
|
148
|
-
success:
|
160
|
+
error: An error ocurred while creating the amendment draft.
|
161
|
+
success: Amendment draft has been created successfully.
|
162
|
+
destroy_draft:
|
163
|
+
error: There was a problem deleting the amendment draft.
|
164
|
+
success: Amendment draft was successfully deleted.
|
165
|
+
edit_draft:
|
166
|
+
discard: Discard this draft
|
167
|
+
discard_confirmation: Are you sure you want to discard this amendment draft?
|
168
|
+
send: Preview
|
169
|
+
title: Edit Amendment Draft
|
149
170
|
emendation:
|
150
171
|
actions:
|
151
172
|
button_accept: Accept
|
@@ -153,24 +174,30 @@ en:
|
|
153
174
|
help_text: Review the changes and accept or reject this amendment. A notification will be sent to its author(s).
|
154
175
|
announcement:
|
155
176
|
accepted: |-
|
156
|
-
This amendment for the %{amendable_type} %{
|
157
|
-
accepted on <strong>%{
|
177
|
+
This amendment for the %{amendable_type} %{proposal_link} has been
|
178
|
+
accepted on <strong>%{date}</strong>.
|
158
179
|
evaluating: |-
|
159
|
-
This amendment for the %{amendable_type} %{
|
180
|
+
This amendment for the %{amendable_type} %{proposal_link}
|
160
181
|
is being evaluated.
|
161
|
-
|
182
|
+
promoted: Promoted to a %{amendable_type}.
|
183
|
+
rejected: This amendment for the %{amendable_type} %{proposal_link} was rejected on <strong>%{date}</strong>.
|
162
184
|
withdrawn: |-
|
163
|
-
This amendment for the %{amendable_type} %{
|
185
|
+
This amendment for the %{amendable_type} %{proposal_link}
|
164
186
|
has been withdrawn by the author.
|
165
187
|
new:
|
166
188
|
amendment_author: Amendment author
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
189
|
+
send: Create
|
190
|
+
title: Create Amendment Draft
|
191
|
+
preview_draft:
|
192
|
+
modify: Modify
|
193
|
+
publish: Publish
|
194
|
+
title: Publish Amendment Draft
|
171
195
|
promoted:
|
172
196
|
error: There was a problem publishing the amendment as a new proposal
|
173
197
|
success: The amendment has been successfully published as a new proposal
|
198
|
+
publish_draft:
|
199
|
+
error: There was a problem publishing the amendment.
|
200
|
+
success: Amendment successfully published.
|
174
201
|
rejected:
|
175
202
|
error: There was a problem rejecting this amendment, please try again later
|
176
203
|
success: The amendment has been successfully rejected
|
@@ -179,6 +206,21 @@ en:
|
|
179
206
|
heading: Review the amendment
|
180
207
|
help_text: You are reviewing an amendment to the %{model_name}
|
181
208
|
send: Accept amendment
|
209
|
+
update_draft:
|
210
|
+
error: There was a problem updating the amendment draft.
|
211
|
+
success: Amendment draft successfully updated.
|
212
|
+
visibility_options:
|
213
|
+
all: Amendments are visible to all
|
214
|
+
participants: Amendments are visible only to their authors
|
215
|
+
withdraw:
|
216
|
+
error: An error ocurred while withdrawing the amendment
|
217
|
+
success: The amendment has been withdrawn successfully
|
218
|
+
wizard_step_form:
|
219
|
+
steps:
|
220
|
+
'1': Create your amendment
|
221
|
+
'2': Compare your amendment
|
222
|
+
'3': Complete your amendment
|
223
|
+
'4': Publish your amendment
|
182
224
|
anonymous_user: Anonymous
|
183
225
|
application:
|
184
226
|
collection:
|
@@ -269,12 +311,18 @@ en:
|
|
269
311
|
comments_enabled: Comments enabled
|
270
312
|
dummy_global_attribute_1: Dummy Attribute 1
|
271
313
|
dummy_global_attribute_2: Dummy Attribute 2
|
314
|
+
dummy_global_translatable_text: Dummy Translatable Text
|
272
315
|
enable_pads_creation: Enable pads creation
|
273
316
|
resources_permissions_enabled: Resources permissions enabled
|
274
317
|
step:
|
318
|
+
amendment_creation_enabled: Amendment creation enabled
|
319
|
+
amendment_promotion_enabled: Amendment promotion enabled
|
320
|
+
amendment_reaction_enabled: Amendment reaction enabled
|
321
|
+
amendments_visibility: Amendment visibility
|
275
322
|
comments_blocked: Comments blocked
|
276
323
|
dummy_step_attribute_1: Dummy Step Attribute 1
|
277
324
|
dummy_step_attribute_2: Dummy Step Attribute 2
|
325
|
+
dummy_step_translatable_text: Dummy Step Translatable Text
|
278
326
|
contact: Contact
|
279
327
|
content_blocks:
|
280
328
|
footer_sub_hero:
|
@@ -300,6 +348,7 @@ en:
|
|
300
348
|
name: Sub hero banner
|
301
349
|
core:
|
302
350
|
actions:
|
351
|
+
login_before_access: Please, login with your account before access
|
303
352
|
unauthorized: You are not authorized to perform this action
|
304
353
|
data_portability:
|
305
354
|
export:
|
@@ -316,7 +365,7 @@ en:
|
|
316
365
|
email_already_exists: Another account is using the same email address
|
317
366
|
new:
|
318
367
|
complete_profile: Complete profile
|
319
|
-
nickname_help: Your alias
|
368
|
+
nickname_help: Your alias in %{organization}
|
320
369
|
sign_up: Please complete your profile
|
321
370
|
subtitle: Please fill in the following form in order to complete the sign up
|
322
371
|
username_help: Public name that appears on your posts. With the aim of guaranteeing the anonymity, can be any name.
|
@@ -325,7 +374,7 @@ en:
|
|
325
374
|
already_have_an_account?: Already have an account?
|
326
375
|
newsletter: Receive an occasional newsletter with relevant information
|
327
376
|
newsletter_title: Contact permission
|
328
|
-
nickname_help: Your alias
|
377
|
+
nickname_help: Your alias in %{organization}
|
329
378
|
password_help: "%{minimun_characters} characters minimum, must not be too common (e.g. 123456) and must be different from your nickname and your email."
|
330
379
|
sign_in: Log in
|
331
380
|
sign_up: Sign up
|
@@ -543,6 +592,9 @@ en:
|
|
543
592
|
current_image: Current image
|
544
593
|
default_image: Default image
|
545
594
|
errors:
|
595
|
+
decidim/user:
|
596
|
+
password: The password is too short.
|
597
|
+
password_confirmation: Password confirmation must match the password.
|
546
598
|
error: There's an error in this field.
|
547
599
|
remove_this_file: Remove this file
|
548
600
|
gamification:
|
@@ -1010,6 +1062,12 @@ en:
|
|
1010
1062
|
welcome_notification:
|
1011
1063
|
default_body: <p>Hi {{name}}, thanks for joining {{organization}} and welcome!</p><ul><li>If you want to get a quick idea of what you can do here, have a look at the <a href="{{help_url}}">Help</a> section.</li><li>Once you have read it you will get your first badge. Here's a <a href="{{badges_url}}">list of all the badges</a> you can get as you participate in {{organization}}</li><li>Last but not least, join other people, share with them the experience of being engaged and participating in {{organization}}. Make proposals, comments, debate, think about how to contribute to the common good, provide arguments to convince, listen and read to be convinced, express your ideas in a concrete and direct way, respond with patience and decision, defend your ideas and keep an open mind to collaborate and join other people's ideas.</li></ul>
|
1012
1064
|
default_subject: Thanks for joining {{organization}}!
|
1065
|
+
wizard_step_form:
|
1066
|
+
wizard_aside:
|
1067
|
+
back: Back
|
1068
|
+
wizard_header:
|
1069
|
+
see_steps: see steps
|
1070
|
+
step_of: Step %{current_step} of %{total_steps}
|
1013
1071
|
devise:
|
1014
1072
|
confirmations:
|
1015
1073
|
confirmed: Your email address has been successfully confirmed.
|
@@ -1166,11 +1224,11 @@ en:
|
|
1166
1224
|
long_words: contains words that are too long (over 35 characters)
|
1167
1225
|
must_start_with_caps: must start with a capital letter
|
1168
1226
|
nesting_too_deep: can't be inside of a subcategory
|
1169
|
-
not_found: not found
|
1227
|
+
not_found: could not be found. Did you sign up previously?
|
1170
1228
|
not_locked: was not locked
|
1171
1229
|
not_saved:
|
1172
|
-
one: '
|
1173
|
-
other:
|
1230
|
+
one: 'There''s been an error processing your request:'
|
1231
|
+
other: 'There were multiple errors when processing your request:'
|
1174
1232
|
too_many_marks: is using too many consecutive punctuation marks (e.g. ! and ?)
|
1175
1233
|
too_much_caps: is using too many capital letters (over 25% of the text)
|
1176
1234
|
too_short: is too short (under 15 characters)
|
@@ -1244,12 +1302,15 @@ en:
|
|
1244
1302
|
qq: Qzone
|
1245
1303
|
reddit: Reddit
|
1246
1304
|
share_to: Share to %{name}
|
1305
|
+
telegram: Telegram
|
1247
1306
|
tumblr: Tumblr
|
1248
1307
|
twitter: Twitter
|
1249
1308
|
vkontakte: Vkontakte
|
1250
1309
|
wechat: WeChat
|
1251
1310
|
wechat_footer: Open your WeChat, click "Discover" button then click the "Scan QR Code" menu.
|
1252
1311
|
weibo: Sina Weibo
|
1312
|
+
whatsapp_app: WhatsApp
|
1313
|
+
whatsapp_web: WhatsApp
|
1253
1314
|
xing: Xing
|
1254
1315
|
time:
|
1255
1316
|
formats:
|
@@ -1259,10 +1320,13 @@ en:
|
|
1259
1320
|
day_of_year: "%d.%m.%y"
|
1260
1321
|
decidim_day_of_year: "%d %B %Y"
|
1261
1322
|
decidim_short: "%d/%m/%Y %H:%M"
|
1323
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
1262
1324
|
devise:
|
1263
1325
|
mailer:
|
1264
1326
|
invitation_instructions:
|
1265
1327
|
accept_until_format: "%B %d, %Y %I:%M %p"
|
1328
|
+
long: "%B %d, %Y %H:%M"
|
1329
|
+
short: "%d/%m/%Y %H:%M"
|
1266
1330
|
time_of_day: "%H:%M"
|
1267
1331
|
versions:
|
1268
1332
|
directions:
|