decidim-core 0.20.1 → 0.21.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/fonts/decidim/Roboto-Regular.eot +0 -0
- data/app/assets/fonts/decidim/Roboto-Regular.svg +10520 -0
- data/app/assets/fonts/decidim/Roboto-Regular.ttf +0 -0
- data/app/assets/fonts/decidim/Roboto-Regular.woff +0 -0
- data/app/assets/fonts/decidim/Roboto-Regular.woff2 +0 -0
- data/app/assets/images/decidim/brands/google.svg +1 -0
- data/app/assets/javascripts/decidim.js.es6 +5 -0
- data/app/assets/javascripts/decidim/check_boxes_tree.js.es6 +190 -0
- data/app/assets/javascripts/decidim/core/bundle.js +1 -1
- data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/delayed.js.es6 +26 -0
- data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +25 -4
- data/app/assets/javascripts/decidim/form_filter.component.js.es6 +86 -38
- data/app/assets/javascripts/decidim/form_filter.component.test.js +40 -6
- data/app/assets/javascripts/decidim/history.js.es6 +16 -1
- data/app/assets/javascripts/decidim/vizzs/orgchart.js.es6 +1 -1
- data/app/assets/stylesheets/decidim/_variables.scss +1 -1
- data/app/assets/stylesheets/decidim/extras/_results-per-page.scss +0 -1
- data/app/assets/stylesheets/decidim/modules/_buttons.scss +76 -3
- data/app/assets/stylesheets/decidim/modules/_comments.scss +78 -2
- data/app/assets/stylesheets/decidim/modules/_filters.scss +36 -2
- data/app/assets/stylesheets/decidim/modules/_layout.scss +13 -0
- data/app/assets/stylesheets/decidim/modules/_modules.scss +1 -0
- data/app/assets/stylesheets/decidim/modules/_navbar.scss +11 -5
- data/app/assets/stylesheets/decidim/modules/_process-stats.scss +53 -0
- data/app/assets/stylesheets/decidim/modules/_status-labels.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_tags.scss +7 -1
- data/app/assets/stylesheets/decidim/modules/_typography.scss +49 -4
- data/app/assets/stylesheets/decidim/utils/_fontface.scss +10 -0
- data/app/assets/stylesheets/decidim/utils/_toggle-expand.scss +14 -0
- data/app/cells/decidim/activity/show.erb +1 -1
- data/app/cells/decidim/author/profile_inline.erb +2 -2
- data/app/cells/decidim/diff/attribute.erb +15 -5
- data/app/cells/decidim/diff/diff_mode_html.erb +31 -0
- data/app/cells/decidim/diff/diff_split.erb +1 -1
- data/app/cells/decidim/diff/diff_unified.erb +1 -1
- data/app/cells/decidim/diff/show.erb +1 -0
- data/app/cells/decidim/diff_cell.rb +21 -8
- data/app/cells/decidim/follow_button/show.erb +20 -7
- data/app/cells/decidim/navbar_admin_link/show.erb +6 -0
- data/app/cells/decidim/navbar_admin_link_cell.rb +43 -0
- data/app/cells/decidim/tags_cell.rb +2 -2
- data/app/commands/decidim/amendable/accept.rb +9 -4
- data/app/commands/decidim/amendable/publish_draft.rb +5 -0
- data/app/commands/decidim/amendable/reject.rb +5 -0
- data/app/commands/decidim/amendable/withdraw.rb +3 -12
- data/app/commands/decidim/create_registration.rb +5 -6
- data/app/controllers/concerns/decidim/use_organization_time_zone.rb +32 -0
- data/app/controllers/decidim/application_controller.rb +3 -0
- data/app/controllers/decidim/components/base_controller.rb +1 -0
- data/app/controllers/decidim/data_portability_controller.rb +12 -19
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +1 -1
- data/app/controllers/decidim/devise/registrations_controller.rb +1 -0
- data/app/controllers/decidim/scopes_controller.rb +41 -7
- data/app/forms/decidim/registration_form.rb +5 -0
- data/app/functions/decidim/core/component_finder_base.rb +33 -0
- data/app/functions/decidim/core/component_list.rb +38 -0
- data/app/functions/decidim/core/component_list_base.rb +61 -0
- data/app/functions/decidim/core/needs_api_filter_and_order.rb +52 -0
- data/app/functions/decidim/core/participatory_space_finder.rb +11 -0
- data/app/functions/decidim/core/participatory_space_finder_base.rb +29 -0
- data/app/functions/decidim/core/participatory_space_list.rb +11 -0
- data/app/functions/decidim/core/participatory_space_list_base.rb +34 -0
- data/app/helpers/decidim/amendments_helper.rb +27 -1
- data/app/helpers/decidim/application_helper.rb +31 -3
- data/app/helpers/decidim/categories_helper.rb +26 -0
- data/app/helpers/decidim/check_boxes_tree_helper.rb +115 -0
- data/app/helpers/decidim/omniauth_helper.rb +6 -13
- data/app/helpers/decidim/resource_versions_helper.rb +29 -0
- data/app/helpers/decidim/rich_text_editor_helper.rb +22 -0
- data/app/helpers/decidim/sanitize_helper.rb +3 -1
- data/app/helpers/decidim/scopes_helper.rb +3 -2
- data/app/jobs/decidim/data_portability_export_job.rb +18 -10
- data/app/jobs/decidim/export_job.rb +1 -1
- data/app/mailers/decidim/export_mailer.rb +9 -5
- data/app/models/decidim/omniauth_provider.rb +28 -0
- data/app/models/decidim/organization.rb +41 -0
- data/app/models/decidim/participatory_space_role_config/admin.rb +8 -0
- data/app/models/decidim/participatory_space_role_config/base.rb +31 -0
- data/app/models/decidim/participatory_space_role_config/collaborator.rb +8 -0
- data/app/models/decidim/participatory_space_role_config/moderator.rb +11 -0
- data/app/models/decidim/participatory_space_role_config/null_object.rb +11 -0
- data/app/models/decidim/participatory_space_role_config/participatory_space_admin.rb +8 -0
- data/app/models/decidim/participatory_space_role_config/valuator.rb +11 -0
- data/app/models/decidim/scope.rb +4 -2
- data/app/models/decidim/user.rb +19 -3
- data/app/presenters/decidim/home_stats_presenter.rb +5 -2
- data/app/presenters/decidim/resource_locator_presenter.rb +9 -0
- data/app/serializers/decidim/exporters/participatory_space_components_serializer.rb +1 -1
- data/app/serializers/decidim/importers/participatory_space_components_importer.rb +14 -5
- data/app/services/decidim/data_portability_exporter.rb +72 -0
- data/app/services/decidim/resource_search.rb +29 -13
- data/app/services/decidim/zip_stream/zip_stream_writer.rb +56 -0
- data/app/types/decidim/core/amendment_type.rb +26 -0
- data/app/types/decidim/core/area_api_type.rb +16 -0
- data/app/types/decidim/core/area_type_type.rb +14 -0
- data/app/types/decidim/core/base_input_filter.rb +8 -0
- data/app/types/decidim/core/base_input_sort.rb +22 -0
- data/app/types/decidim/core/component_input_filter.rb +50 -0
- data/app/types/decidim/core/component_input_sort.rb +32 -0
- data/app/types/decidim/core/fingerprint_type.rb +15 -0
- data/app/types/decidim/core/has_hastaggable_input_filter.rb +15 -0
- data/app/types/decidim/core/has_localized_input_filter.rb +21 -0
- data/app/types/decidim/core/has_localized_input_sort.rb +21 -0
- data/app/types/decidim/core/has_publishable_input_filter.rb +34 -0
- data/app/types/decidim/core/has_publishable_input_sort.rb +13 -0
- data/app/types/decidim/core/participatory_space_input_filter.rb +26 -0
- data/app/types/decidim/core/participatory_space_input_sort.rb +14 -0
- data/app/types/decidim/core/participatory_space_link_type.rb +24 -0
- data/app/types/decidim/core/trace_version_type.rb +29 -0
- data/app/uploaders/decidim/data_portability_uploader.rb +2 -7
- data/app/validators/time_zone_validator.rb +10 -0
- data/app/views/decidim/amendments/_edit_form_fields.html.erb +5 -13
- data/app/views/decidim/amendments/preview_draft.html.erb +1 -1
- data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +10 -12
- data/app/views/decidim/devise/shared/_omniauth_buttons_mini.html.erb +6 -8
- data/app/views/decidim/export_mailer/data_portability_export.html.erb +2 -2
- data/app/views/decidim/scopes/picker.html.erb +7 -3
- data/app/views/decidim/shared/_check_boxes_tree.html.erb +54 -0
- data/app/views/decidim/shared/_extended_navigation_bar.html.erb +1 -1
- data/app/views/decidim/widgets/show.html.erb +4 -0
- data/app/views/layouts/decidim/_admin_links.html.erb +2 -0
- data/app/views/layouts/decidim/_wrapper.html.erb +4 -3
- data/app/views/layouts/decidim/widget.html.erb +1 -43
- data/config/initializers/browser.rb +5 -0
- data/config/initializers/devise.rb +0 -22
- data/config/initializers/omniauth.rb +50 -0
- data/config/locales/ar.yml +6 -3
- data/config/locales/ca.yml +15 -6
- data/config/locales/cs.yml +12 -3
- data/config/locales/de.yml +5 -3
- data/config/locales/el-GR.yml +0 -2
- data/config/locales/el.yml +153 -0
- data/config/locales/en.yml +16 -7
- data/config/locales/eo-UY.yml +2 -2
- data/config/locales/es-MX.yml +12 -3
- data/config/locales/es-PY.yml +12 -3
- data/config/locales/es.yml +15 -6
- data/config/locales/eu.yml +4 -3
- data/config/locales/fi-plain.yml +12 -3
- data/config/locales/fi.yml +12 -3
- data/config/locales/fr.yml +5 -3
- data/config/locales/gl.yml +4 -3
- data/config/locales/hu.yml +12 -3
- data/config/locales/id-ID.yml +4 -3
- data/config/locales/it.yml +11 -3
- data/config/locales/nl.yml +8 -3
- data/config/locales/no.yml +12 -3
- data/config/locales/pl.yml +4 -3
- data/config/locales/pt-BR.yml +4 -3
- data/config/locales/pt.yml +4 -3
- data/config/locales/ru.yml +5 -3
- data/config/locales/sv.yml +5 -3
- data/config/locales/tr-TR.yml +4 -3
- data/config/locales/uk.yml +1 -3
- data/db/migrate/20191113092826_add_omniauth_settings_to_decidim_organization.rb +7 -0
- data/db/migrate/20191113144432_add_rich_text_editor_in_public_views_to_organizations.rb +10 -0
- data/db/migrate/20191118123154_add_admin_terms_of_use_body_field_to_organization.rb +9 -0
- data/db/migrate/20200107142226_add_organization_timezone.rb +7 -0
- data/db/seeds.rb +2 -1
- data/lib/decidim/amendable.rb +7 -4
- data/lib/decidim/api/amendable_entity_interface.rb +18 -0
- data/lib/decidim/api/amendable_interface.rb +18 -0
- data/lib/decidim/api/attachable_interface.rb +1 -1
- data/lib/decidim/api/categorizable_interface.rb +1 -1
- data/lib/decidim/api/coauthorable_interface.rb +29 -0
- data/lib/decidim/api/fingerprint_interface.rb +13 -0
- data/lib/decidim/api/participatory_space_interface.rb +9 -9
- data/lib/decidim/api/participatory_space_resourceable_interface.rb +21 -0
- data/lib/decidim/api/scopable_interface.rb +1 -1
- data/lib/decidim/api/timestamps_interface.rb +21 -0
- data/lib/decidim/api/traceable_interface.rb +14 -0
- data/lib/decidim/coauthorable.rb +9 -2
- data/lib/decidim/component_manifest.rb +1 -1
- data/lib/decidim/content_processor.rb +4 -2
- data/lib/decidim/content_renderers/link_renderer.rb +1 -1
- data/lib/decidim/core.rb +3 -3
- data/lib/decidim/core/api.rb +7 -0
- data/lib/decidim/core/test.rb +1 -0
- data/lib/decidim/core/test/factories.rb +16 -0
- data/lib/decidim/core/test/shared_examples/amendable_interface_examples.rb +14 -0
- data/lib/decidim/core/test/shared_examples/amendable_proposals_interface_examples.rb +50 -0
- data/lib/decidim/core/test/shared_examples/authorable_interface_examples.rb +3 -0
- data/lib/decidim/core/test/shared_examples/coauthorable_interface_examples.rb +60 -0
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +8 -8
- data/lib/decidim/core/test/shared_examples/fingerprintable_interface_examples.rb +17 -0
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +16 -0
- data/lib/decidim/core/test/shared_examples/input_filter_examples.rb +118 -0
- data/lib/decidim/core/test/shared_examples/input_sort_examples.rb +105 -0
- data/lib/decidim/core/test/shared_examples/participatory_space_resourcable_interface_examples.rb +43 -0
- data/lib/decidim/core/test/shared_examples/rich_text_editor_examples.rb +59 -0
- data/lib/decidim/core/test/shared_examples/timestamps_interface_examples.rb +21 -0
- data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +47 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/deprecations.rb +19 -0
- data/lib/decidim/diffy_extension.rb +26 -0
- data/lib/decidim/exporters/export_manifest.rb +6 -2
- data/lib/decidim/filter_form_builder.rb +25 -7
- data/lib/decidim/form_builder.rb +2 -2
- data/lib/decidim/has_settings.rb +10 -4
- data/lib/decidim/participatory_space_manifest.rb +20 -0
- data/lib/decidim/participatory_space_resourceable.rb +35 -1
- data/lib/decidim/query_extensions.rb +9 -23
- data/lib/decidim/scopable.rb +10 -0
- data/lib/tasks/decidim_data_portability_tasks.rake +66 -5
- data/lib/tasks/decidim_metrics_tasks.rake +18 -7
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.el.js +14 -0
- metadata +142 -16
- data/app/models/decidim/participatory_process_user_role.rb +0 -32
- data/app/views/layouts/decidim/_edit_link.html.erb +0 -8
- data/lib/decidim/data_portability_file_reader.rb +0 -56
- data/lib/decidim/data_portability_file_zipper.rb +0 -67
data/config/locales/fr.yml
CHANGED
@@ -69,8 +69,6 @@ fr:
|
|
69
69
|
account:
|
70
70
|
data_portability_export:
|
71
71
|
file_no_exists: Le fichier n'existe pas
|
72
|
-
invalid_token: Le jeton fourni est invalide.
|
73
|
-
no_token: Aucun jeton fourni
|
74
72
|
notice: Votre export est actuellement en cours. Vous recevrez un email quand il sera complet.
|
75
73
|
delete:
|
76
74
|
alert: Cette action ne peut pas être annulée. Si vous supprimez votre compte, vous ne pourrez plus vous connecter.
|
@@ -90,6 +88,9 @@ fr:
|
|
90
88
|
error: Une erreur s'est produite lors de la mise à jour de votre compte.
|
91
89
|
success: Votre compte a été mis à jour avec succès.
|
92
90
|
success_with_email_confirmation: Votre compte a été mis à jour avec succès. Vous recevrez un email pour confirmer votre nouvelle adresse email.
|
91
|
+
admin:
|
92
|
+
actions:
|
93
|
+
cancel: Annuler
|
93
94
|
admin_log:
|
94
95
|
area:
|
95
96
|
create: "%{user_name} a créé la zone d'application %{resource_name}"
|
@@ -231,6 +232,7 @@ fr:
|
|
231
232
|
photos:
|
232
233
|
related_photos: Photos associées
|
233
234
|
author:
|
235
|
+
avatar: Avatar
|
234
236
|
comments:
|
235
237
|
one: commentaire
|
236
238
|
other: commentaires
|
@@ -544,7 +546,7 @@ fr:
|
|
544
546
|
notification_title: Le <a href="%{resource_path}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
|
545
547
|
export_mailer:
|
546
548
|
data_portability_export:
|
547
|
-
click_button: Cliquez sur le bouton suivant pour télécharger vos données. <br/> Le fichier sera disponible jusqu'au %{date}.
|
549
|
+
click_button: 'Cliquez sur le bouton suivant pour télécharger vos données. <br/> Le fichier sera disponible jusqu''au %{date}.'
|
548
550
|
download: Télécharger
|
549
551
|
export:
|
550
552
|
ready: Vous trouverez ci-joint une version zippée de votre exportation.
|
data/config/locales/gl.yml
CHANGED
@@ -61,8 +61,6 @@ gl:
|
|
61
61
|
account:
|
62
62
|
data_portability_export:
|
63
63
|
file_no_exists: O ficheiro non existe
|
64
|
-
invalid_token: O token fornecido non é válido.
|
65
|
-
no_token: Sen token fornecido
|
66
64
|
notice: Os teus datos están en progreso. Recibirás un correo electrónico cando finalice.
|
67
65
|
delete:
|
68
66
|
alert: Non se pode desfacer esta acción. Se eliminas a túa conta non poderás iniciar sesión.
|
@@ -82,6 +80,9 @@ gl:
|
|
82
80
|
error: Produciuse un erro ao actualizar a túa conta.
|
83
81
|
success: A túa conta foi actualizada correctamente.
|
84
82
|
success_with_email_confirmation: A túa conta foi actualizada correctamente. Recibirá un correo electrónico para confirmar o seu novo enderezo de correo electrónico.
|
83
|
+
admin:
|
84
|
+
actions:
|
85
|
+
cancel: Cancelar
|
85
86
|
admin_log:
|
86
87
|
area:
|
87
88
|
create: "%{user_name} creou a área %{resource_name}"
|
@@ -496,7 +497,7 @@ gl:
|
|
496
497
|
notification_title: O <a href="%{resource_path}">profile páxina</a> de %{name} (%{nickname}), quen está a seguir, foi actualizado.
|
497
498
|
export_mailer:
|
498
499
|
data_portability_export:
|
499
|
-
click_button: Fai clic no seguinte botón para descargar os teus datos. <br/> Terá o ficheiro dispoñible ata o %{date}.
|
500
|
+
click_button: 'Fai clic no seguinte botón para descargar os teus datos. <br/> Terá o ficheiro dispoñible ata o %{date}.'
|
500
501
|
download: Descarga
|
501
502
|
export:
|
502
503
|
ready: Atopa unha versión comprimida da túa exportación.
|
data/config/locales/hu.yml
CHANGED
@@ -69,8 +69,6 @@ hu:
|
|
69
69
|
account:
|
70
70
|
data_portability_export:
|
71
71
|
file_no_exists: Fájl nem létezik
|
72
|
-
invalid_token: A megadott token érvénytelen.
|
73
|
-
no_token: Nincs token megadva
|
74
72
|
notice: Az adatok letöltése jelenleg folyamatban van. Ha befejeződött, e-mailt fogsz kapni.
|
75
73
|
delete:
|
76
74
|
alert: Ez a művelet nem visszavonható. Ha törlöd a fiókod, akkor nem tudsz bejelentkezni.
|
@@ -90,6 +88,9 @@ hu:
|
|
90
88
|
error: Hiba történt a fiók frissítése során.
|
91
89
|
success: A fiók sikeresen frissült.
|
92
90
|
success_with_email_confirmation: A fiók frissítése sikeres. Az új email cím megerősítéséhez az email címedre küldtünk egy levelet.
|
91
|
+
admin:
|
92
|
+
actions:
|
93
|
+
cancel: Mégse
|
93
94
|
admin_log:
|
94
95
|
area:
|
95
96
|
create: "%{user_name} létrehozta a(z) %{resource_name} területet"
|
@@ -138,6 +139,8 @@ hu:
|
|
138
139
|
reject: "%{user_name} elutasította a(z) %{resource_name} felhasználói csoport ellenőrzését"
|
139
140
|
verify: "%{user_name} ellenőrizte a(z) %{resource_name} felhasználói csoportot"
|
140
141
|
verify_via_csv: "%{user_name} az %{resource_name} felhasználói csoportot CSV-fájlon keresztül ellenőrizte"
|
142
|
+
admin_terms_of_use:
|
143
|
+
default_body: "<h2>ADMIN FELHASZNÁLÓI FELTÉTELEK</h2><p>Bízunk benne, hogy a szokásos előadást megkaptad a helyi rendszergazdától. Ez rendszerint e három dologra bontható le:</p><ol><li>Tiszteld mások magánéletét.</li><li>Gondolkodj, mielőtt kattintasz.</li><li>A nagy hatalommal, nagy felelősségvállalás is jár!</li></ol>"
|
141
144
|
amendments:
|
142
145
|
accepted:
|
143
146
|
error: A módosítás elfogadása közben hiba történt.
|
@@ -230,6 +233,7 @@ hu:
|
|
230
233
|
photos:
|
231
234
|
related_photos: Kapcsolódó képek
|
232
235
|
author:
|
236
|
+
avatar: Profilkép
|
233
237
|
comments:
|
234
238
|
one: megjegyzés
|
235
239
|
other: megjegyzések
|
@@ -547,7 +551,7 @@ hu:
|
|
547
551
|
notification_title: '%{name} (%{nickname}) (akit egyébként követsz) <a href="%{resource_path}">profil oldala</a> frissült.'
|
548
552
|
export_mailer:
|
549
553
|
data_portability_export:
|
550
|
-
click_button: 'Kattints a következő gombra az
|
554
|
+
click_button: 'Kattints a következő gombra az adataid letöltéséhez. <br/> A fájl eddig lesz elérhető: %{date}.<br/> Szükséged lesz egy Zip fájlt kezelő szoftverre a megnyitásához <a href=''https://www.7-zip.org/''>7-Zip</a> . Jelszó: %{password}'
|
551
555
|
download: Letöltés
|
552
556
|
export:
|
553
557
|
ready: Mellékelve találod az exportálás tömörített változatát.
|
@@ -577,6 +581,7 @@ hu:
|
|
577
581
|
create:
|
578
582
|
button: Követés
|
579
583
|
error: Hiba történt az erőforrás követése során.
|
584
|
+
participatory_space: Már követed a részvételi teret
|
580
585
|
destroy:
|
581
586
|
button: Követés törlése
|
582
587
|
error: Hiba történt az erőforrás követésének visszavonásakor.
|
@@ -1204,6 +1209,7 @@ hu:
|
|
1204
1209
|
cycle_detected: a hatáskör parentje nem lehet ahhoz kötőd elem
|
1205
1210
|
expired: lejárt, kérjen újat
|
1206
1211
|
file_size_is_less_than_or_equal_to: 'fájlméret maximum ekkora lehet: %{count}'
|
1212
|
+
invalid_time_zone: ez nem érvényes időzóna
|
1207
1213
|
long_words: olyan szavakat tartalmaz, amelyek túl hosszúak (több mint 35 karakter)
|
1208
1214
|
must_start_with_caps: nagybetűvel kell kezdenie
|
1209
1215
|
nesting_too_deep: nem lehet alkategóriában belüli
|
@@ -1316,8 +1322,11 @@ hu:
|
|
1316
1322
|
left: Törlések
|
1317
1323
|
right: Kiegészítések
|
1318
1324
|
dropdown:
|
1325
|
+
choose_diff_view_html: 'HTML megtekintési mód:'
|
1319
1326
|
choose_diff_view_mode: 'Összehasonlító nézet mód:'
|
1327
|
+
option_escaped: Feloldott
|
1320
1328
|
option_split: Egymás mellet
|
1329
|
+
option_unescaped: Feloldatlan
|
1321
1330
|
option_unified: Egyesített
|
1322
1331
|
views:
|
1323
1332
|
pagination:
|
data/config/locales/id-ID.yml
CHANGED
@@ -58,8 +58,6 @@ id:
|
|
58
58
|
account:
|
59
59
|
data_portability_export:
|
60
60
|
file_no_exists: File tidak ada
|
61
|
-
invalid_token: Token yang diberikan tidak valid.
|
62
|
-
no_token: Tidak ada token yang disediakan
|
63
61
|
notice: Data Anda sedang dalam proses. Anda akan menerima email setelah selesai.
|
64
62
|
delete:
|
65
63
|
alert: Tindakan ini tidak bisa dibatalkan. Jika Anda menghapus akun Anda, Anda tidak akan dapat masuk.
|
@@ -79,6 +77,9 @@ id:
|
|
79
77
|
error: Terjadi kesalahan saat memperbarui akun Anda.
|
80
78
|
success: Akun Anda telah berhasil diperbarui.
|
81
79
|
success_with_email_confirmation: Akun Anda telah berhasil diperbarui. Anda akan menerima email untuk mengonfirmasi alamat email baru Anda.
|
80
|
+
admin:
|
81
|
+
actions:
|
82
|
+
cancel: Membatalkan
|
82
83
|
admin_log:
|
83
84
|
area:
|
84
85
|
create: "%{user_name} menciptakan %{resource_name} area"
|
@@ -494,7 +495,7 @@ id:
|
|
494
495
|
notification_title: Halaman <a href="%{resource_path}">profil</a> dari %{name} (%{nickname}), yang Anda ikuti, telah diperbarui.
|
495
496
|
export_mailer:
|
496
497
|
data_portability_export:
|
497
|
-
click_button: Klik tombol berikutnya untuk mengunduh data Anda. <br/> Anda akan memiliki file yang tersedia hingga %{date}.
|
498
|
+
click_button: 'Klik tombol berikutnya untuk mengunduh data Anda. <br/> Anda akan memiliki file yang tersedia hingga %{date}.'
|
498
499
|
download: Unduh
|
499
500
|
export:
|
500
501
|
ready: Silakan temukan terlampir versi zip dari ekspor Anda.
|
data/config/locales/it.yml
CHANGED
@@ -69,8 +69,6 @@ it:
|
|
69
69
|
account:
|
70
70
|
data_portability_export:
|
71
71
|
file_no_exists: Il file non esiste
|
72
|
-
invalid_token: Il token fornito non è valido.
|
73
|
-
no_token: Nessun token fornito
|
74
72
|
notice: Il download dei tuoi dati è in corso. Riceverai un'email non appena completato.
|
75
73
|
delete:
|
76
74
|
alert: Questa azione non può essere annullata. Se elimini il tuo account non potrai più accedere.
|
@@ -90,6 +88,9 @@ it:
|
|
90
88
|
error: Si è verificato un errore durante l'aggiornamento del tuo account.
|
91
89
|
success: Il tuo account è stato aggiornato correttamente.
|
92
90
|
success_with_email_confirmation: Il tuo account è stato aggiornato correttamente. Riceverai un'email per confermare il tuo nuovo indirizzo email.
|
91
|
+
admin:
|
92
|
+
actions:
|
93
|
+
cancel: Annulla
|
93
94
|
admin_log:
|
94
95
|
area:
|
95
96
|
create: "%{user_name} ha creato l'area %{resource_name}"
|
@@ -138,6 +139,8 @@ it:
|
|
138
139
|
reject: "%{user_name} respinto il %{resource_name} verifica del gruppo di utenti"
|
139
140
|
verify: "%{user_name} verificato il %{resource_name} gruppo di utenti"
|
140
141
|
verify_via_csv: "%{user_name} verificato il %{resource_name} gruppo di utenti tramite un file CSV"
|
142
|
+
admin_terms_of_use:
|
143
|
+
default_body: "<h2>TERMINI DI UTILIZZO DELL' AMMINISTRATORE</h2><p>Ci auguriamo che tu abbia ricevuto la usuale raccomandazione dall'amministratore del sistema locale. Solitamente si riduce a queste tre cose:</p><ol><li>Rispetta la privacy degli altri.</li><li>Pensa prima di cliccare.</li><li>Da grande potenzialità derivano grandi responsabilità.</li></ol>"
|
141
144
|
amendments:
|
142
145
|
accepted:
|
143
146
|
error: Si è verificato un errore durante l'accettazione dell'emendamento.
|
@@ -231,6 +234,7 @@ it:
|
|
231
234
|
photos:
|
232
235
|
related_photos: Immagini relative
|
233
236
|
author:
|
237
|
+
avatar: Immagine di profilo
|
234
238
|
comments:
|
235
239
|
one: commento
|
236
240
|
other: Commenti
|
@@ -549,7 +553,7 @@ it:
|
|
549
553
|
notification_title: La pagina <a href="%{resource_path}">profilo</a> di %{name} (%{nickname}), che stai seguendo, è stata aggiornata.
|
550
554
|
export_mailer:
|
551
555
|
data_portability_export:
|
552
|
-
click_button: Fare clic sul pulsante successivo per scaricare i dati. <br/> Avrai il file disponibile fino al %{date}.
|
556
|
+
click_button: 'Fare clic sul pulsante successivo per scaricare i dati. <br/> Avrai il file disponibile fino al %{date}.'
|
553
557
|
download: Scaricare
|
554
558
|
export:
|
555
559
|
ready: In allegato una versione zippata (Zip) dei dati esportati.
|
@@ -1206,6 +1210,7 @@ it:
|
|
1206
1210
|
cycle_detected: Il genitore di un ambito non può essere uno dei suoi discendenti
|
1207
1211
|
expired: è scaduto, si prega di richiederne uno nuovo
|
1208
1212
|
file_size_is_less_than_or_equal_to: la dimensione del file deve essere inferiore o uguale a %{count}
|
1213
|
+
invalid_time_zone: non è un fuso orario valido
|
1209
1214
|
long_words: contiene parole troppo lunghe (oltre 35 caratteri)
|
1210
1215
|
must_start_with_caps: deve iniziare con una lettera maiuscola
|
1211
1216
|
nesting_too_deep: Non può stare all'interno di una subcategoria
|
@@ -1318,8 +1323,11 @@ it:
|
|
1318
1323
|
left: Eliminazioni
|
1319
1324
|
right: Aggiunte
|
1320
1325
|
dropdown:
|
1326
|
+
choose_diff_view_html: 'Modalità visualizzazione HTML:'
|
1321
1327
|
choose_diff_view_mode: 'Modalità di visualizzazione confronto:'
|
1328
|
+
option_escaped: Escaped
|
1322
1329
|
option_split: Affiancati
|
1330
|
+
option_unescaped: Unescaped
|
1323
1331
|
option_unified: Unificato
|
1324
1332
|
views:
|
1325
1333
|
pagination:
|
data/config/locales/nl.yml
CHANGED
@@ -69,8 +69,6 @@ nl:
|
|
69
69
|
account:
|
70
70
|
data_portability_export:
|
71
71
|
file_no_exists: Bestand bestaat niet
|
72
|
-
invalid_token: Het geleverde token is ongeldig.
|
73
|
-
no_token: Geen token verstrekt
|
74
72
|
notice: Uw gegevens worden momenteel verwerkt. Je ontvangt een e-mail als deze is voltooid.
|
75
73
|
delete:
|
76
74
|
alert: Deze actie kan niet ongedaan gemaakt worden. Als u uw account verwijdert, zal u zich niet meer kunnen aanmelden.
|
@@ -90,6 +88,9 @@ nl:
|
|
90
88
|
error: Er is een fout opgetreden bij het bijwerken van uw account.
|
91
89
|
success: Uw account is bijgewerkt.
|
92
90
|
success_with_email_confirmation: Uw account is bijgewerkt. U ontvangt een e-mail ter bevestiging van uw nieuwe e-mailadres.
|
91
|
+
admin:
|
92
|
+
actions:
|
93
|
+
cancel: annuleren
|
93
94
|
admin_log:
|
94
95
|
area:
|
95
96
|
create: "%{user_name} heeft %{resource_name} aangemaakt"
|
@@ -231,6 +232,7 @@ nl:
|
|
231
232
|
photos:
|
232
233
|
related_photos: Gerelateerde foto 's
|
233
234
|
author:
|
235
|
+
avatar: Profielafbeelding
|
234
236
|
comments:
|
235
237
|
one: commentaar
|
236
238
|
other: commentaren
|
@@ -549,7 +551,7 @@ nl:
|
|
549
551
|
notification_title: De <a href="%{resource_path}">profile page</a> van %{name} (%{nickname}), die je volgt, is bijgewerkt.
|
550
552
|
export_mailer:
|
551
553
|
data_portability_export:
|
552
|
-
click_button: Klik op de volgende knop om
|
554
|
+
click_button: 'Klik op de volgende knop om je gegevens te downloaden. <br/> Het bestand is beschikbaar tot %{date}. <br/> Je hebt <a href=''https://www.7-zip.org/''>7-Zip</a> nodig om het te openen. Wachtwoord: %{password}'
|
553
555
|
download: Download
|
554
556
|
export:
|
555
557
|
ready: In de bijlage vindt u een versie van uw export.
|
@@ -579,6 +581,7 @@ nl:
|
|
579
581
|
create:
|
580
582
|
button: Volgen
|
581
583
|
error: Er is een fout opgetreden na deze bron.
|
584
|
+
participatory_space: U volgt de participatieve ruimte al
|
582
585
|
destroy:
|
583
586
|
button: Stop met volgen
|
584
587
|
error: Er is een fout opgetreden bij het stoppen met volgen van deze bron.
|
@@ -1206,6 +1209,7 @@ nl:
|
|
1206
1209
|
cycle_detected: De ouder van een scope kan niet een van zijn afstammelingen zijn
|
1207
1210
|
expired: is verlopen, vraag een nieuwe aan
|
1208
1211
|
file_size_is_less_than_or_equal_to: bestandsgrootte moet kleiner zijn dan %{count}
|
1212
|
+
invalid_time_zone: is geen geldige tijdszone
|
1209
1213
|
long_words: bevat woorden die te lang zijn (meer dan 35 tekens)
|
1210
1214
|
must_start_with_caps: moet beginnen met een hoofdletter
|
1211
1215
|
nesting_too_deep: kan niet binnen een subcategorie zijn
|
@@ -1318,6 +1322,7 @@ nl:
|
|
1318
1322
|
left: Verwijderingen
|
1319
1323
|
right: Toevoegingen
|
1320
1324
|
dropdown:
|
1325
|
+
choose_diff_view_html: 'HTML weergavemodus:'
|
1321
1326
|
choose_diff_view_mode: 'Vergelijk weergavemodus:'
|
1322
1327
|
option_split: Naast elkaar
|
1323
1328
|
option_unified: Verenigd
|
data/config/locales/no.yml
CHANGED
@@ -69,8 +69,6 @@
|
|
69
69
|
account:
|
70
70
|
data_portability_export:
|
71
71
|
file_no_exists: Filen finnes ikke
|
72
|
-
invalid_token: Nøkkelen er ugyldig.
|
73
|
-
no_token: Ingen nøkkel oppgitt
|
74
72
|
notice: Opplastingen av dataen din holder på nå. Du vil få en e-mail når den er ferdig.
|
75
73
|
delete:
|
76
74
|
alert: Denne handlingen er endelig. Hvis du sletter denne kontoen vil du ikke kunne logge deg inn igjen.
|
@@ -90,6 +88,9 @@
|
|
90
88
|
error: Det oppsto et problem med å oppdatere kontoen din.
|
91
89
|
success: Kontoen din ble oppdatert.
|
92
90
|
success_with_email_confirmation: Kontoen ble oppdatert. Vi har send deg en email så du kan bekrefte den nye e-postadressen din.
|
91
|
+
admin:
|
92
|
+
actions:
|
93
|
+
cancel: Avbryt
|
93
94
|
admin_log:
|
94
95
|
area:
|
95
96
|
create: "%{user_name} opprettet %{resource_name} området"
|
@@ -138,6 +139,8 @@
|
|
138
139
|
reject: "%{user_name} avslo %{resource_name} gruppens verifikasjon"
|
139
140
|
verify: "%{user_name} verifiserte gruppen %{resource_name}"
|
140
141
|
verify_via_csv: "%{user_name} verifiserte gruppen %{resource_name} via en CSV fil"
|
142
|
+
admin_terms_of_use:
|
143
|
+
default_body: "<h2>ADMINISTRATOR BRUKERVILKÅR</h2><p>Vi stoler på at du har mottatt det vanlige foredraget fra den lokale systemadministratoren. Det handlet vanligvis om disse tre tingene:</p><ol><li>Respekter andres privatliv.</li><li>Tenk før du klikker.</li><li>Med stor makt kommer stort ansvar.</li></ol>"
|
141
144
|
amendments:
|
142
145
|
accepted:
|
143
146
|
error: En feil oppstod under godkjenningen av endringen.
|
@@ -228,6 +231,7 @@
|
|
228
231
|
photos:
|
229
232
|
related_photos: Relaterte bilder
|
230
233
|
author:
|
234
|
+
avatar: Profilbilde
|
231
235
|
comments:
|
232
236
|
one: kommentar
|
233
237
|
other: kommentarer
|
@@ -550,7 +554,7 @@
|
|
550
554
|
notification_title: <a href="%{resource_path}">Profilsiden</a> til %{name} (%{nickname}), som du følger er blitt oppdatert.
|
551
555
|
export_mailer:
|
552
556
|
data_portability_export:
|
553
|
-
click_button:
|
557
|
+
click_button: 'Trykk på den neste knappen for å laste ned dataene dine. <br/> Du vil ha filen tilgjengelig frem til %{date}. <br/> Du vil trenge <a href=''https://www.7-zip.org/''>7-Zip</a> for å åpne den. Passord: %{password}'
|
554
558
|
download: Last ned
|
555
559
|
export:
|
556
560
|
ready: Vennligst finn vedlagte en zip-versjon av eksporten din.
|
@@ -580,6 +584,7 @@
|
|
580
584
|
create:
|
581
585
|
button: Følg
|
582
586
|
error: Det oppstod et problem med å følge denne ressursen.
|
587
|
+
participatory_space: Følger allerede deltakerområdet
|
583
588
|
destroy:
|
584
589
|
button: Stopp å følge
|
585
590
|
error: Det oppstod et problem med å slutte å følge denne ressursen.
|
@@ -1207,6 +1212,7 @@
|
|
1207
1212
|
cycle_detected: forelderen til et omfang kan ikke være en av dens etterkommere
|
1208
1213
|
expired: har utløpt, vennligst be om ny
|
1209
1214
|
file_size_is_less_than_or_equal_to: filstørrelse må være mindre enn eller lik %{count}
|
1215
|
+
invalid_time_zone: er ikke en gyldig tidssone
|
1210
1216
|
long_words: inneholder ord som er for lange (over 35 tegn)
|
1211
1217
|
must_start_with_caps: må starte med en stor bokstav
|
1212
1218
|
nesting_too_deep: kan ikke være inni en underkategori
|
@@ -1319,8 +1325,11 @@
|
|
1319
1325
|
left: Slettinger
|
1320
1326
|
right: Tillegg
|
1321
1327
|
dropdown:
|
1328
|
+
choose_diff_view_html: 'HTML visningsmodus:'
|
1322
1329
|
choose_diff_view_mode: 'Sammenlign visningsmodus:'
|
1330
|
+
option_escaped: Rømt
|
1323
1331
|
option_split: Side-ved-side
|
1332
|
+
option_unescaped: Urømt
|
1324
1333
|
option_unified: Udefinert
|
1325
1334
|
views:
|
1326
1335
|
pagination:
|
data/config/locales/pl.yml
CHANGED
@@ -67,8 +67,6 @@ pl:
|
|
67
67
|
account:
|
68
68
|
data_portability_export:
|
69
69
|
file_no_exists: Plik nie istnieje
|
70
|
-
invalid_token: Podany token jest nieprawidłowy.
|
71
|
-
no_token: Nie podano tokena
|
72
70
|
notice: Twoje dane są obecnie w toku. Otrzymasz e-mail po zakończeniu.
|
73
71
|
delete:
|
74
72
|
alert: Nie można cofnąć tej czynności. Jeśli usuniesz konto, nie będzie można się już logować z jego pomocą.
|
@@ -88,6 +86,9 @@ pl:
|
|
88
86
|
error: Podczas aktualizowania konta wystąpił błąd.
|
89
87
|
success: Twoje konto zostało zaktualizowane pomyślnie.
|
90
88
|
success_with_email_confirmation: Twoje konto zostało pomyślnie zaktualizowane. W celu potwierdzenia Twojego nowego adresu e-mail otrzymasz na niego wiadomość.
|
89
|
+
admin:
|
90
|
+
actions:
|
91
|
+
cancel: Anuluj
|
91
92
|
admin_log:
|
92
93
|
area:
|
93
94
|
create: "%{user_name} utworzył obszar %{resource_name}"
|
@@ -508,7 +509,7 @@ pl:
|
|
508
509
|
notification_title: Zmieniono <a href="%{resource_path}">profil strony</a> z %{name} (%{nickname}), którego obserwujesz.
|
509
510
|
export_mailer:
|
510
511
|
data_portability_export:
|
511
|
-
click_button: Kliknij następny przycisk, aby pobrać swoje dane. <br/> Plik będzie dostępny do %{date}.
|
512
|
+
click_button: 'Kliknij następny przycisk, aby pobrać swoje dane. <br/> Plik będzie dostępny do %{date}.'
|
512
513
|
download: Pobieranie
|
513
514
|
export:
|
514
515
|
ready: Znajdź załączoną wersję eksportowanego pliku.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -61,8 +61,6 @@ pt-BR:
|
|
61
61
|
account:
|
62
62
|
data_portability_export:
|
63
63
|
file_no_exists: O arquivo não existe
|
64
|
-
invalid_token: O token fornecido é inválido.
|
65
|
-
no_token: Nenhum token fornecido
|
66
64
|
notice: Seus dados estão atualmente em andamento. Você receberá um e-mail quando estiver concluído.
|
67
65
|
delete:
|
68
66
|
alert: Esta ação não poderá ser desfeita. Se cancelar a sua conta não poderá voltar a fazer login.
|
@@ -82,6 +80,9 @@ pt-BR:
|
|
82
80
|
error: Ocorreu um erro ao actualizar a sua conta.
|
83
81
|
success: A sua conta foi actualizada com sucesso.
|
84
82
|
success_with_email_confirmation: A sua conta foi actualizada com sucesso. Irá receber um e-mail de confirmação do seu novo endereço.
|
83
|
+
admin:
|
84
|
+
actions:
|
85
|
+
cancel: Cancelar
|
85
86
|
admin_log:
|
86
87
|
area:
|
87
88
|
create: "%{user_name} criou a área %{resource_name}"
|
@@ -496,7 +497,7 @@ pt-BR:
|
|
496
497
|
notification_title: O <a href="%{resource_path}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
497
498
|
export_mailer:
|
498
499
|
data_portability_export:
|
499
|
-
click_button: Clique no botão seguinte para baixar seus dados. <br/> Você terá o arquivo disponível até %{date}.
|
500
|
+
click_button: 'Clique no botão seguinte para baixar seus dados. <br/> Você terá o arquivo disponível até %{date}.'
|
500
501
|
download: Download
|
501
502
|
export:
|
502
503
|
ready: Encontre em anexo uma versão com zíper da sua exportação.
|
data/config/locales/pt.yml
CHANGED
@@ -61,8 +61,6 @@ pt:
|
|
61
61
|
account:
|
62
62
|
data_portability_export:
|
63
63
|
file_no_exists: Arquivo não existe
|
64
|
-
invalid_token: O token fornecido é inválido.
|
65
|
-
no_token: Nenhum token fornecido
|
66
64
|
notice: Seus dados estão atualmente em andamento. Você receberá um e-mail quando estiver concluído.
|
67
65
|
delete:
|
68
66
|
alert: Esta ação não poderá ser desfeita. Se cancelar a sua conta não poderá voltar a fazer login.
|
@@ -82,6 +80,9 @@ pt:
|
|
82
80
|
error: Ocorreu um erro ao actualizar a sua conta.
|
83
81
|
success: A sua conta foi actualizada com sucesso.
|
84
82
|
success_with_email_confirmation: A sua conta foi actualizada com sucesso. Irá receber um e-mail de confirmação do seu novo endereço.
|
83
|
+
admin:
|
84
|
+
actions:
|
85
|
+
cancel: Cancelar
|
85
86
|
admin_log:
|
86
87
|
area:
|
87
88
|
create: "%{user_name} criou a área %{resource_name}"
|
@@ -496,7 +497,7 @@ pt:
|
|
496
497
|
notification_title: O <a href="%{resource_path}">profile page</a> de %{name} (%{nickname}), quem você está seguindo, foi atualizado.
|
497
498
|
export_mailer:
|
498
499
|
data_portability_export:
|
499
|
-
click_button: Clique no botão seguinte para baixar seus dados. <br/> Você terá o arquivo disponível até %{date}.
|
500
|
+
click_button: 'Clique no botão seguinte para baixar seus dados. <br/> Você terá o arquivo disponível até %{date}.'
|
500
501
|
download: Baixar
|
501
502
|
export:
|
502
503
|
ready: Encontre em anexo uma versão com zíper da sua exportação.
|
data/config/locales/ru.yml
CHANGED
@@ -61,8 +61,6 @@ ru:
|
|
61
61
|
account:
|
62
62
|
data_portability_export:
|
63
63
|
file_no_exists: Файла не существует
|
64
|
-
invalid_token: Предоставленный токен недействителен.
|
65
|
-
no_token: Не предоставлен токен
|
66
64
|
notice: Идет сохранение в виде файла. Вы получите электронное письмо, когда оно будет завершено.
|
67
65
|
delete:
|
68
66
|
alert: Это действие нельзя будет отменить. Если вы удалите свою учетную запись, вы не сможете больше входить в систему.
|
@@ -82,6 +80,9 @@ ru:
|
|
82
80
|
error: При попытке обновить вашу учетную запись произошла ошибка.
|
83
81
|
success: Ваша учетная запись была успешно обновлена.
|
84
82
|
success_with_email_confirmation: Ваша учетная запись была успешно обновлена. Вы получите электронное письмо, чтобы подтвердить свой новый адрес электронной почты.
|
83
|
+
admin:
|
84
|
+
actions:
|
85
|
+
cancel: Отменить
|
85
86
|
admin_log:
|
86
87
|
area:
|
87
88
|
create: "%{user_name} добавил участок %{resource_name}"
|
@@ -178,6 +179,7 @@ ru:
|
|
178
179
|
photos:
|
179
180
|
related_photos: Сопутствующие фотографии
|
180
181
|
author:
|
182
|
+
avatar: Аватар
|
181
183
|
comments:
|
182
184
|
one: комментарий
|
183
185
|
few: комментария
|
@@ -399,7 +401,7 @@ ru:
|
|
399
401
|
notification_title: Страница <a href="%{resource_path}">профиля</a> участника %{name} (%{nickname}), за которым вы следите, была обновлена.
|
400
402
|
export_mailer:
|
401
403
|
data_portability_export:
|
402
|
-
click_button: Нажмите следующую кнопку, чтобы загрузить данные. <br/> Файл будет доступен до %{date}.
|
404
|
+
click_button: 'Нажмите следующую кнопку, чтобы загрузить данные. <br/> Файл будет доступен до %{date}.'
|
403
405
|
download: Скачать
|
404
406
|
export:
|
405
407
|
ready: К настоящему прилагается в архивированном виде сохраненный вами файл.
|