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/fr.yml
CHANGED
@@ -3,6 +3,14 @@ fr:
|
|
3
3
|
attributes:
|
4
4
|
account:
|
5
5
|
delete_reason: Pour quelle(s) raison(s) supprimez-vous votre compte ?
|
6
|
+
group:
|
7
|
+
about: A propos
|
8
|
+
avatar: Avatar
|
9
|
+
document_number: Numéro de document
|
10
|
+
email: Courriel
|
11
|
+
name: Nom
|
12
|
+
nickname: Nom d'utilisateur
|
13
|
+
phone: Téléphone
|
6
14
|
report:
|
7
15
|
details: Commentaires supplémentaires
|
8
16
|
user:
|
@@ -142,9 +150,21 @@ fr:
|
|
142
150
|
promote_confirm_text: Êtes-vous sûr de vouloir promouvoir cette modification?
|
143
151
|
promote_help_text: Vous pouvez promouvoir cette modification et la publier en tant qu'indépendant. %{model_name}
|
144
152
|
section_heading: Amendements (%{count})
|
153
|
+
compare_draft:
|
154
|
+
continue: Continuer
|
155
|
+
no_similars_found: Aucune modification similaire trouvé.
|
156
|
+
title: Modifications similaires
|
145
157
|
created:
|
146
|
-
error: Une erreur s
|
147
|
-
success:
|
158
|
+
error: Une erreur s’est produite lors de la création du projet d'amendement.
|
159
|
+
success: Le projet d'amendement a été créé avec succès.
|
160
|
+
destroy_draft:
|
161
|
+
error: Il y a eu un problème de suppression du projet d'amendement.
|
162
|
+
success: Le projet d'amendement a été créé avec succès.
|
163
|
+
edit_draft:
|
164
|
+
discard: Supprimer ce brouillon
|
165
|
+
discard_confirmation: Êtes-vous sûr de vouloir supprimer ce projet d'amendement ?
|
166
|
+
send: Aperçu
|
167
|
+
title: Modifier le projet d'amendement
|
148
168
|
emendation:
|
149
169
|
actions:
|
150
170
|
button_accept: Accepter
|
@@ -152,24 +172,30 @@ fr:
|
|
152
172
|
help_text: Passez en revue les modifications et acceptez ou refusez cet amendement. Une notification sera envoyée à son (ses) auteur (s).
|
153
173
|
announcement:
|
154
174
|
accepted: |-
|
155
|
-
|
156
|
-
|
175
|
+
L'amendement pour %{amendable_type} %{proposal_link} a été accepté
|
176
|
+
le <strong>%{date}</strong>.
|
157
177
|
evaluating: |-
|
158
178
|
Cet amendement pour le %{amendable_type} %{amendable_link}
|
159
179
|
est en cours d’évaluation.
|
160
|
-
|
180
|
+
promoted: Promouvé à un %{amendable_type}.
|
181
|
+
rejected: "Cet amendement pour la proposition %{amendable_type}\n%{proposal_link}\na été rejeté le <strong>%{date}</strong>."
|
161
182
|
withdrawn: |-
|
162
|
-
|
183
|
+
L'amendement pour le %{amendable_type} %{proposal_link}
|
163
184
|
a été retiré par l'auteur.
|
164
185
|
new:
|
165
186
|
amendment_author: Auteur de l'amendement
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
187
|
+
send: Créer
|
188
|
+
title: Créer un projet d'amendement
|
189
|
+
preview_draft:
|
190
|
+
modify: Modifier
|
191
|
+
publish: Publier
|
192
|
+
title: Publier le projet d'amendement
|
170
193
|
promoted:
|
171
194
|
error: Un problème est survenu lors de la publication de l'amendement en tant que nouvelle proposition
|
172
195
|
success: L'amendement a été publié avec succès en tant que nouvelle proposition
|
196
|
+
publish_draft:
|
197
|
+
error: Une erreur s'est produite lors de la publication de cet amendement.
|
198
|
+
success: Amendement publié avec succès.
|
173
199
|
rejected:
|
174
200
|
error: Un problème est survenu lors du rejet de cet amendement. Veuillez réessayer ultérieurement.
|
175
201
|
success: L'amendement a été rejeté avec succès
|
@@ -178,6 +204,21 @@ fr:
|
|
178
204
|
heading: Examiner l'amendement
|
179
205
|
help_text: Vous examinez un amendement au %{model_name}
|
180
206
|
send: Accepter l'amendement
|
207
|
+
update_draft:
|
208
|
+
error: Une erreur s'est produite lors de la modification de ce projet d'amendement.
|
209
|
+
success: Le projet d'amendement a été mis à jour avec succès.
|
210
|
+
visibility_options:
|
211
|
+
all: Les amendements sont visibles par tous
|
212
|
+
participants: Les amendements ne sont visibles que par leurs auteurs
|
213
|
+
withdraw:
|
214
|
+
error: Une erreur s'est produite lors du retrait de l'amendement
|
215
|
+
success: L'amendement a été retiré avec succès
|
216
|
+
wizard_step_form:
|
217
|
+
steps:
|
218
|
+
'1': Créez votre amendement
|
219
|
+
'2': Comparez votre amendement
|
220
|
+
'3': Complétez votre amendement
|
221
|
+
'4': Publier votre amendement
|
181
222
|
anonymous_user: Anonyme
|
182
223
|
application:
|
183
224
|
collection:
|
@@ -271,6 +312,10 @@ fr:
|
|
271
312
|
enable_pads_creation: Activer la création de pads
|
272
313
|
resources_permissions_enabled: Autorisations de ressources activées
|
273
314
|
step:
|
315
|
+
amendment_creation_enabled: Création d'amendement activée
|
316
|
+
amendment_promotion_enabled: Promotion d'amendement activée
|
317
|
+
amendment_reaction_enabled: Réaction d'amendement activée
|
318
|
+
amendments_visibility: Visibilité des amendements
|
274
319
|
comments_blocked: Bloquer la création de nouveaux commentaires
|
275
320
|
dummy_step_attribute_1: Attribut d'étape factice 1
|
276
321
|
dummy_step_attribute_2: Attribut d'étape factice 2
|
@@ -299,6 +344,7 @@ fr:
|
|
299
344
|
name: Bannière en dessous de l'image principale ("hero")
|
300
345
|
core:
|
301
346
|
actions:
|
347
|
+
login_before_access: Veuillez vous connecter avec votre compte avant de réaliser cette action
|
302
348
|
unauthorized: Vous n'êtes pas autorisé à effectuer cette action
|
303
349
|
data_portability:
|
304
350
|
export:
|
@@ -315,7 +361,7 @@ fr:
|
|
315
361
|
email_already_exists: Un autre compte utilise la même adresse email
|
316
362
|
new:
|
317
363
|
complete_profile: Complétez votre profil
|
318
|
-
nickname_help:
|
364
|
+
nickname_help: Votre alias dans %{organization}
|
319
365
|
sign_up: Veuillez compléter votre profil
|
320
366
|
subtitle: Remplissez le formulaire suivant pour compléter l'inscription
|
321
367
|
username_help: Le nom est public et apparaît dans votre profil et sur vos messages. Dans le but de garantir l'anonymat, vous pouvez choisir n'importe quel nom.
|
@@ -324,7 +370,7 @@ fr:
|
|
324
370
|
already_have_an_account?: Vous avez déjà un compte ?
|
325
371
|
newsletter: Recevoir une newsletter sur l'actualité de la plateforme
|
326
372
|
newsletter_title: Autorisation de contact
|
327
|
-
nickname_help:
|
373
|
+
nickname_help: Votre alias dans %{organization}
|
328
374
|
password_help: "%{minimun_characters} caractères minimum, ne doit pas être trop commun (par exemple 123456) et doit être différent de votre pseudo et de votre email."
|
329
375
|
sign_in: Se connecter
|
330
376
|
sign_up: S'inscrire
|
@@ -538,6 +584,9 @@ fr:
|
|
538
584
|
current_image: Image actuelle
|
539
585
|
default_image: Image par défaut
|
540
586
|
errors:
|
587
|
+
decidim/user:
|
588
|
+
password: Le mot de passe est trop court.
|
589
|
+
password_confirmation: La confirmation du mot de passe doit correspondre au mot de passe.
|
541
590
|
error: Ce champ contient une erreur.
|
542
591
|
remove_this_file: Supprimer ce fichier
|
543
592
|
gamification:
|
@@ -1005,6 +1054,12 @@ fr:
|
|
1005
1054
|
welcome_notification:
|
1006
1055
|
default_body: <p>Bonjour {{name}}, merci d'avoir rejoins {{organization}} et bienvenue!</p><ul><li>Si vous souhaitez avoir une idée rapide de ce que vous pouvez faire ici, consultez la section <a href="{{help_url}}">Aide</a> .</li><li>Une fois que vous l'avez lu, vous recevrez votre premier badge. Voici une <a href="{{badges_url}}">liste de tous les badges</a> vous pouvez obtenir vous participez à {{organization}}</li><li>En somme, rejoignez d'autres personnes, partagez avec eux l'expérience d'être engagés et participer à {{organization}}. Faites des propositions, des commentaires, lancez des débats, réfléchissez à la manière de contribuer au bien commun, fournissez des arguments pour convaincre, écoutez et lisez pour être convaincu, exprimez vos idées de manière concrète et directe, répondez avec patience et décision, défendez vos idées un esprit ouvert pour collaborer et rejoindre les idées des autres.</li></ul>
|
1007
1056
|
default_subject: Merci d'avoir rejoint {{organization}}!
|
1057
|
+
wizard_step_form:
|
1058
|
+
wizard_aside:
|
1059
|
+
back: Retour
|
1060
|
+
wizard_header:
|
1061
|
+
see_steps: voir les étapes
|
1062
|
+
step_of: Étape %{current_step} sur %{total_steps}
|
1008
1063
|
devise:
|
1009
1064
|
confirmations:
|
1010
1065
|
confirmed: Votre adresse e-mail a été confirmée avec succès.
|
@@ -1161,11 +1216,7 @@ fr:
|
|
1161
1216
|
long_words: contient des mots trop longs (plus de 35 caractères)
|
1162
1217
|
must_start_with_caps: doit commencer par une majuscule
|
1163
1218
|
nesting_too_deep: ne peut pas être à l'intérieur d'une sous-catégorie
|
1164
|
-
not_found: non trouvé
|
1165
1219
|
not_locked: n'était pas verrouillé
|
1166
|
-
not_saved:
|
1167
|
-
one: '1 erreur a empêché la sauvegarde de %{resource} :'
|
1168
|
-
other: "%{count} erreurs ont empêché la sauvegarde de %{resource} :"
|
1169
1220
|
too_many_marks: utilise trop de signes de ponctuation consécutifs (par exemple! et?)
|
1170
1221
|
too_much_caps: utilise trop de lettres majuscules (plus de 25% du texte)
|
1171
1222
|
too_short: est trop court (moins de 15 caractères)
|
@@ -1239,12 +1290,15 @@ fr:
|
|
1239
1290
|
qq: Qzone
|
1240
1291
|
reddit: Reddit
|
1241
1292
|
share_to: Partager sur %{name}
|
1293
|
+
telegram: Telegram
|
1242
1294
|
tumblr: Tumblr
|
1243
1295
|
twitter: Twitter
|
1244
1296
|
vkontakte: Vkontakte
|
1245
1297
|
wechat: WeChat
|
1246
1298
|
wechat_footer: Ouvrez WeChat, cliquez sur le bouton "Découvrir" puis cliquez sur le menu "Scanner le QR Code".
|
1247
1299
|
weibo: Sina Weibo
|
1300
|
+
whatsapp_app: WhatsApp
|
1301
|
+
whatsapp_web: WhatsApp
|
1248
1302
|
xing: Xing
|
1249
1303
|
time:
|
1250
1304
|
formats:
|
data/config/locales/gl.yml
CHANGED
@@ -142,9 +142,6 @@ gl:
|
|
142
142
|
promote_confirm_text: '¿Está seguro de que quere promocionar esta enmienda?'
|
143
143
|
promote_help_text: Pode promover esta modificación e publicala como un %{model_name}independente
|
144
144
|
section_heading: Enmendas (%{count})
|
145
|
-
created:
|
146
|
-
error: Produciuse un erro ao crear a modificación
|
147
|
-
success: A modificación foi creada con éxito
|
148
145
|
emendation:
|
149
146
|
actions:
|
150
147
|
button_accept: Aceptar
|
@@ -163,10 +160,6 @@ gl:
|
|
163
160
|
.
|
164
161
|
new:
|
165
162
|
amendment_author: Autor da emenda
|
166
|
-
back: De volta
|
167
|
-
heading: Crea a túa emenda
|
168
|
-
help_text: Está a modificar o %{model_name}
|
169
|
-
send: Enviar a emenda
|
170
163
|
promoted:
|
171
164
|
error: Houbo erros ao promover a modificación
|
172
165
|
success: Emendación promovida con éxito
|
@@ -178,6 +171,12 @@ gl:
|
|
178
171
|
heading: Revisa a modificación
|
179
172
|
help_text: Estás revisando unha modificación no %{model_name}
|
180
173
|
send: Aceptar a emenda
|
174
|
+
wizard_step_form:
|
175
|
+
steps:
|
176
|
+
'1': Crea a túa emenda
|
177
|
+
'2': Compare your amendment
|
178
|
+
'3': Complete your amendment
|
179
|
+
'4': Publish your amendment
|
181
180
|
anonymous_user: Anónimo
|
182
181
|
application:
|
183
182
|
collection:
|
@@ -315,7 +314,6 @@ gl:
|
|
315
314
|
email_already_exists: Outra conta usa o mesmo enderezo de correo electrónico
|
316
315
|
new:
|
317
316
|
complete_profile: Perfil completo
|
318
|
-
nickname_help: O teu identificador breve e único en %{organization}
|
319
317
|
sign_up: Completa o teu perfil
|
320
318
|
subtitle: Encha o seguinte formulario para completar o rexistro
|
321
319
|
username_help: Nome público que aparece nas túas publicacións. Co obxectivo de garantir o anonimato, pode ser calquera nome.
|
@@ -324,7 +322,6 @@ gl:
|
|
324
322
|
already_have_an_account?: Xa ten unha conta?
|
325
323
|
newsletter: Recibir un boletín ocasional con información relevante
|
326
324
|
newsletter_title: Permiso de contacto
|
327
|
-
nickname_help: O teu identificador breve e único en %{organization}
|
328
325
|
sign_in: Iniciar sesión
|
329
326
|
sign_up: Rexistrarse
|
330
327
|
sign_up_as:
|
@@ -1159,11 +1156,7 @@ gl:
|
|
1159
1156
|
long_words: contén palabras que son demasiado longas (máis de 35 caracteres)
|
1160
1157
|
must_start_with_caps: debe comezar cunha letra maiúscula
|
1161
1158
|
nesting_too_deep: non pode estar dentro dunha subcategoría
|
1162
|
-
not_found: non atopado
|
1163
1159
|
not_locked: Non estaba bloqueado
|
1164
|
-
not_saved:
|
1165
|
-
one: 'O erro 1 prohibiuse que este %{resource} se gardase:'
|
1166
|
-
other: "%{count} erros prohibidos de gardar este %{resource}:"
|
1167
1160
|
too_many_marks: está a usar demasiadas marcas de puntuación consecutivas (por exemplo, e?)
|
1168
1161
|
too_much_caps: está a usar letras maiúsculas (máis do 25% do texto)
|
1169
1162
|
too_short: é demasiado curto (menos de 15 caracteres)
|
data/config/locales/hu.yml
CHANGED
@@ -3,6 +3,14 @@ hu:
|
|
3
3
|
attributes:
|
4
4
|
account:
|
5
5
|
delete_reason: Fiók törlésének oka
|
6
|
+
group:
|
7
|
+
about: Rólunk
|
8
|
+
avatar: Profilkép
|
9
|
+
document_number: Dokumentum száma
|
10
|
+
email: Email
|
11
|
+
name: Név
|
12
|
+
nickname: Becenév
|
13
|
+
phone: Telefonszám
|
6
14
|
report:
|
7
15
|
details: További megjegyzések
|
8
16
|
user:
|
@@ -108,6 +116,7 @@ hu:
|
|
108
116
|
update: "%{user_name} frissítette a szervezet beállításait"
|
109
117
|
participatory_space_private_user:
|
110
118
|
create: "%{user_name} meghívott %{resource_name} privát felhasználónak"
|
119
|
+
create_via_csv: "%{user_name} meghívota %{resource_name} CSV -vel, hogy privát résztvevő legyen"
|
111
120
|
delete: "%{user_name} eltávolította a felhasználót %{resource_name} privát felhasználóként"
|
112
121
|
scope:
|
113
122
|
create: "%{user_name} létrehozta a(z) %{resource_name} hatáskört"
|
@@ -142,9 +151,21 @@ hu:
|
|
142
151
|
promote_confirm_text: Biztos benne, hogy támogatni kívánja ezt a helyreigazítást?
|
143
152
|
promote_help_text: Támogathatod ezt az emelést, és közzétehetik önálló %{model_name}-ként
|
144
153
|
section_heading: Módosítások (%{count})
|
154
|
+
compare_draft:
|
155
|
+
continue: Tovább
|
156
|
+
no_similars_found: Nem találtunk hasonló szövegjavítást.
|
157
|
+
title: Hasonló szövegjavítások
|
145
158
|
created:
|
146
|
-
error: A
|
147
|
-
success: A
|
159
|
+
error: A módosító javaslat tervezet létrehozása során hiba történt.
|
160
|
+
success: A módosító javaslat tervezet sikeresen létrejött.
|
161
|
+
destroy_draft:
|
162
|
+
error: Hiba történt a módosító javaslat tervezetének törlésekor.
|
163
|
+
success: A módosító javaslat sikeresen törlésre került.
|
164
|
+
edit_draft:
|
165
|
+
discard: Vázlat elvetése
|
166
|
+
discard_confirmation: Biztos vagy benne, hogy elveted ezt a módosító javaslatot?
|
167
|
+
send: Előnézet
|
168
|
+
title: Módosító javaslat szerkesztése
|
148
169
|
emendation:
|
149
170
|
actions:
|
150
171
|
button_accept: Elfogad
|
@@ -152,24 +173,29 @@ hu:
|
|
152
173
|
help_text: Tekintse át a módosításokat, és fogadja el, vagy utasítsa el ezt a módosítást. Értesítést küld a szerző (k) nek.
|
153
174
|
announcement:
|
154
175
|
accepted: |-
|
155
|
-
A %{amendable_type} %{
|
156
|
-
re vonatkozó módosító javaslat <strong>%{announcement_date}</strong>én elfogadásra került.
|
176
|
+
A %{amendable_type}% %{proposal_link} előterjesztésre vonatkozó módosító javaslat ekkor <strong>%{date}</strong> elfogadásra került.
|
157
177
|
evaluating: |-
|
158
|
-
Ezt a %{amendable_type} %{
|
178
|
+
Ezt a %{amendable_type} %{proposal_link}
|
159
179
|
módosító javaslat értékelés alatt van.
|
160
|
-
|
180
|
+
promoted: Felterjesztve %{amendable_type} -nak.
|
181
|
+
rejected: "A %{amendable_type} %{proposal_link}\nre vonatkozó módosítást <strong>%{date}</strong>én elutasították."
|
161
182
|
withdrawn: |-
|
162
|
-
Ezt a %{amendable_type} %{
|
163
|
-
|
183
|
+
Ezt a %{amendable_type} %{proposal_link}
|
184
|
+
módosítást a szerző visszavonta.
|
164
185
|
new:
|
165
186
|
amendment_author: Módosítás szerző
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
187
|
+
send: Létrehozás
|
188
|
+
title: Módosító javaslat létrehozása
|
189
|
+
preview_draft:
|
190
|
+
modify: Szerkeszt
|
191
|
+
publish: Közzétesz
|
192
|
+
title: Módosító javaslat publikálása
|
170
193
|
promoted:
|
171
194
|
error: Problémát történt a módosító javaslat új javaslatként való közzététele során
|
172
195
|
success: A módosító javaslat új javaslatként sikeresen megjelent
|
196
|
+
publish_draft:
|
197
|
+
error: Hiba történt a módosító javaslat közzététele során.
|
198
|
+
success: A módosító javaslat közzététele sikeres.
|
173
199
|
rejected:
|
174
200
|
error: Hiba történt a módosító javaslat elutasításakor, próbálkozz később
|
175
201
|
success: A módosító javaslat sikeresen elutasításra került
|
@@ -178,6 +204,21 @@ hu:
|
|
178
204
|
heading: Tekintse át a módosítást
|
179
205
|
help_text: Ön felülvizsgálja a %{model_name} módosítását
|
180
206
|
send: Módosítás elfogadása
|
207
|
+
update_draft:
|
208
|
+
error: Probléma merült fel a módosító tervezet frissítésével.
|
209
|
+
success: A módosító tervezet sikeresen frissítve.
|
210
|
+
visibility_options:
|
211
|
+
all: A módosítások mindenki számára láthatóak
|
212
|
+
participants: A módosítások csak a szerzőik számára láthatóak
|
213
|
+
withdraw:
|
214
|
+
error: A módosítás létrehozásának visszavonása során hiba történt
|
215
|
+
success: A módosítást sikeresen visszavonták
|
216
|
+
wizard_step_form:
|
217
|
+
steps:
|
218
|
+
'1': Készítse el a módosítását
|
219
|
+
'2': Módosításod összehasonlítása
|
220
|
+
'3': Módosításod befejezése
|
221
|
+
'4': Módosításod publikálása
|
181
222
|
anonymous_user: Névtelen
|
182
223
|
application:
|
183
224
|
collection:
|
@@ -268,12 +309,18 @@ hu:
|
|
268
309
|
comments_enabled: Megjegyzések engedélyezve
|
269
310
|
dummy_global_attribute_1: Dummy tulajdonság 1
|
270
311
|
dummy_global_attribute_2: Dummy tulajdonság 2
|
312
|
+
dummy_global_translatable_text: Hamis Fordítható Szöveg
|
271
313
|
enable_pads_creation: A közös dokumentum létrehozásának engedélyezése
|
272
314
|
resources_permissions_enabled: Erőforrás-engedélyek biztosítva
|
273
315
|
step:
|
316
|
+
amendment_creation_enabled: A módosítás létrehozása engedélyezett
|
317
|
+
amendment_promotion_enabled: A módosítás promotálása engedélyezett
|
318
|
+
amendment_reaction_enabled: A módosító reakció engedélyezett
|
319
|
+
amendments_visibility: A módosítás láthatósága
|
274
320
|
comments_blocked: Megjegyzések letiltva
|
275
321
|
dummy_step_attribute_1: Dummy Lépés tulajdonság 1
|
276
322
|
dummy_step_attribute_2: Dummy Lépés tulajdonság 2
|
323
|
+
dummy_step_translatable_text: Hamis Lépés Fordítható Szöveg
|
277
324
|
contact: Kapcsolat
|
278
325
|
content_blocks:
|
279
326
|
footer_sub_hero:
|
@@ -299,6 +346,7 @@ hu:
|
|
299
346
|
name: Sub hero banner
|
300
347
|
core:
|
301
348
|
actions:
|
349
|
+
login_before_access: Kérlek jelentkezz be a fiókodba a hozzáféréshez
|
302
350
|
unauthorized: Nem vagy jogosult a művelet végrehajtására
|
303
351
|
data_portability:
|
304
352
|
export:
|
@@ -315,7 +363,7 @@ hu:
|
|
315
363
|
email_already_exists: Egy másik fiók ugyanezt az email címet használja
|
316
364
|
new:
|
317
365
|
complete_profile: Profil kiegészítése
|
318
|
-
nickname_help:
|
366
|
+
nickname_help: 'Egyedi azonosítód ehhez: %{organization}'
|
319
367
|
sign_up: Töltsd ki a hiányzó adatokat
|
320
368
|
subtitle: A regisztráció befejezéséhez töltsd ki a következő űrlapot
|
321
369
|
username_help: Bejegyzésekben megjelenő nyilvános megnevezés. Az anonimitás megőrzése érdekében bármilyen név lehet.
|
@@ -324,7 +372,7 @@ hu:
|
|
324
372
|
already_have_an_account?: Már van egy fiókod?
|
325
373
|
newsletter: Hírlevél fogadása a legfontosabb információkkal
|
326
374
|
newsletter_title: Kapcsolatfelvételi engedély
|
327
|
-
nickname_help:
|
375
|
+
nickname_help: 'Egyedi azonosítód ehhez: %{organization}'
|
328
376
|
password_help: "%{minimun_characters} karakter a minimum, nem lehet túl gyakori (pl. 123456), és különböznie kell a becenevétől és az e-mail címétől."
|
329
377
|
sign_in: Belépés
|
330
378
|
sign_up: Regisztráció
|
@@ -537,6 +585,9 @@ hu:
|
|
537
585
|
current_image: Jelenlegi kép
|
538
586
|
default_image: Alapértelmezett kép
|
539
587
|
errors:
|
588
|
+
decidim/user:
|
589
|
+
password: A jelszó túl rövid.
|
590
|
+
password_confirmation: A jelszó megerősítés meg kell egyezzen a jelszóval.
|
540
591
|
error: Hiba van ebben a mezőben.
|
541
592
|
remove_this_file: Töröld ezt a fájlt
|
542
593
|
gamification:
|
@@ -1004,6 +1055,12 @@ hu:
|
|
1004
1055
|
welcome_notification:
|
1005
1056
|
default_body: <p>Szia{{name}}, üdvözöllek és köszönöm, hogy csatlakoztál a {{organization}} szervezethez</p><ul><li>Ha gyorsan meg szeretnéd tudni, hogy mit tehetsz itt, nézd meg a <a href="{{help_url}}">Súgó</a> részt.</li><li>Miután elolvastad, megkapod az első jelvényed. Itt van egy <a href="{{badges_url}}">lista a</a> jelvényekről, melyeket akkor érdemelsz ki, ha részt veszel a {{organization}}</li><li> szervezetben. Végül, de nem utolsósorban, kapcsolódj más emberekhez is, oszd meg velük a tapasztalatodat a {{organization}} részvételében. Tegyél javaslatokat, megjegyzéseket, generálj vitákat és gondold végig, hogyan járulj hozzá a közjó előmozdításához, gyűjts érveket, hogy meggyőzz másokat, hallgass meg és olvasd el mások meggyőződést, fejezd ki ötleteidet konkrét és közvetlen módon, válaszolj türelemmel és határozottan, védd meg ötleteidet és hagyd nyitva elmédet, hogy elősegítsd az együttműködést és lehetőséget teremts más emberek ötleteinek befogadásához.</li></ul>
|
1006
1057
|
default_subject: Köszönjük, hogy csatlakoztál a {{organization}} szervezethez!
|
1058
|
+
wizard_step_form:
|
1059
|
+
wizard_aside:
|
1060
|
+
back: Vissza
|
1061
|
+
wizard_header:
|
1062
|
+
see_steps: lépések megtekintése
|
1063
|
+
step_of: '%{current_step} a(z) %{total_steps} lépésből'
|
1007
1064
|
devise:
|
1008
1065
|
confirmations:
|
1009
1066
|
confirmed: E-mail címed sikeresen meg lett erősítve.
|
@@ -1160,11 +1217,11 @@ hu:
|
|
1160
1217
|
long_words: olyan szavakat tartalmaz, amelyek túl hosszúak (több mint 35 karakter)
|
1161
1218
|
must_start_with_caps: nagybetűvel kell kezdenie
|
1162
1219
|
nesting_too_deep: nem lehet alkategóriában belüli
|
1163
|
-
not_found: nem
|
1220
|
+
not_found: nem található. Regisztráltál már korábban?
|
1164
1221
|
not_locked: nem volt zárva
|
1165
1222
|
not_saved:
|
1166
|
-
one: '
|
1167
|
-
other:
|
1223
|
+
one: 'Hiba történt a kérelmed feldolgozásakor:'
|
1224
|
+
other: 'Több hiba történt a művelet végrehajtása során:'
|
1168
1225
|
too_many_marks: túl sok egymást követő írásjelet használ (pl. és!)
|
1169
1226
|
too_much_caps: túl sok nagybetűt használ (a szöveg több mint 25% -a)
|
1170
1227
|
too_short: túl rövid (15 karakterig)
|
@@ -1238,12 +1295,15 @@ hu:
|
|
1238
1295
|
qq: QZone
|
1239
1296
|
reddit: Reddit
|
1240
1297
|
share_to: 'Oszd meg vele: %{name}'
|
1298
|
+
telegram: Telegram
|
1241
1299
|
tumblr: Tumblr
|
1242
1300
|
twitter: Twitter
|
1243
1301
|
vkontakte: Vkontakte
|
1244
1302
|
wechat: WeChat
|
1245
1303
|
wechat_footer: Nyisd meg a WeChat alkalmazsát, kattints a "Discover", majd a "Scan QR Code" gombra.
|
1246
1304
|
weibo: Sina Weibo
|
1305
|
+
whatsapp_app: Whatsapp
|
1306
|
+
whatsapp_web: Whatsapp
|
1247
1307
|
xing: Xing
|
1248
1308
|
time:
|
1249
1309
|
formats:
|
@@ -1253,10 +1313,13 @@ hu:
|
|
1253
1313
|
day_of_year: "%d.%m.%y"
|
1254
1314
|
decidim_day_of_year: "%d %B %Y"
|
1255
1315
|
decidim_short: "%d/%m/%Y %H:%M"
|
1316
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
1256
1317
|
devise:
|
1257
1318
|
mailer:
|
1258
1319
|
invitation_instructions:
|
1259
1320
|
accept_until_format: "%B %d, %Y %I:%M %p"
|
1321
|
+
long: "%é. %h %n., %A, %ó:%p"
|
1322
|
+
short: "%n%h%é%ó:%p"
|
1260
1323
|
time_of_day: "%H:%M"
|
1261
1324
|
versions:
|
1262
1325
|
directions:
|