decidim-core 0.25.2 → 0.26.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/activity_cell.rb +2 -1
- data/app/cells/decidim/author/flag_user.erb +1 -1
- data/app/cells/decidim/author/profile_inline.erb +1 -1
- data/app/cells/decidim/author/withdraw.erb +2 -2
- data/app/cells/decidim/author_cell.rb +32 -0
- data/app/cells/decidim/card_m_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/cta_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/hero_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner/show.erb +1 -1
- data/app/cells/decidim/content_blocks/last_activity_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/stats_cell.rb +12 -0
- data/app/cells/decidim/endorsers_list_cell.rb +3 -1
- data/app/cells/decidim/flag_modal/flag_user.erb +2 -2
- data/app/cells/decidim/flag_modal/show.erb +2 -2
- data/app/cells/decidim/flag_modal_cell.rb +10 -0
- data/app/cells/decidim/notification/show.erb +31 -0
- data/app/cells/decidim/notification_cell.rb +20 -0
- data/app/cells/decidim/notifications/show.erb +1 -24
- data/app/cells/decidim/notifications_cell.rb +0 -1
- data/app/cells/decidim/user_conversation/conversation_header.erb +1 -1
- data/app/cells/decidim/user_conversation/show.erb +4 -2
- data/app/cells/decidim/user_conversations/conversation_item.erb +1 -1
- data/app/commands/decidim/create_editor_image.rb +41 -0
- data/app/controllers/decidim/cookie_policy_controller.rb +2 -0
- data/app/controllers/decidim/editor_images_controller.rb +47 -0
- data/app/controllers/decidim/user_activities_controller.rb +2 -1
- data/app/forms/decidim/editor_image_form.rb +16 -0
- data/app/helpers/decidim/amendments_helper.rb +1 -1
- data/app/helpers/decidim/application_helper.rb +2 -2
- data/app/helpers/decidim/messaging/conversation_helper.rb +32 -3
- data/app/helpers/decidim/resource_versions_helper.rb +1 -1
- data/app/helpers/decidim/sanitize_helper.rb +65 -0
- data/app/models/decidim/editor_image.rb +14 -0
- data/app/models/decidim/messaging/conversation.rb +9 -0
- data/app/models/decidim/participatory_space_private_user.rb +16 -0
- data/app/models/decidim/user.rb +3 -3
- data/app/models/decidim/user_group.rb +40 -0
- data/app/packs/entrypoints/decidim_core.js +1 -0
- data/app/packs/src/decidim/dialog_mode.js +143 -0
- data/app/packs/src/decidim/dialog_mode.test.js +168 -0
- data/app/packs/src/decidim/editor.js +56 -14
- data/app/packs/src/decidim/form_attachments.js +5 -0
- data/app/packs/src/decidim/index.js +4 -0
- data/app/packs/src/decidim/vendor/image-resize.min.js +3 -0
- data/app/packs/src/decidim/vendor/image-upload.min.js +8 -0
- data/app/packs/stylesheets/decidim/extras/_extras.scss +0 -1
- data/app/packs/stylesheets/decidim/extras/_quill.scss +7 -0
- data/app/packs/stylesheets/decidim/modules/_buttons.scss +11 -4
- data/app/packs/stylesheets/decidim/modules/_cards.scss +4 -0
- data/app/packs/stylesheets/decidim/modules/_layout.scss +1 -1
- data/app/presenters/decidim/nil_presenter.rb +2 -2
- data/app/presenters/decidim/notification_presenter.rb +25 -0
- data/app/presenters/decidim/official_author_presenter.rb +1 -1
- data/app/presenters/decidim/validation_errors_presenter.rb +27 -0
- data/app/queries/decidim/similar_emendations.rb +1 -1
- data/app/resolvers/decidim/core/metric_resolver.rb +1 -1
- data/app/services/decidim/activity_search.rb +2 -2
- data/app/services/decidim/email_notification_generator.rb +4 -1
- data/app/services/decidim/html_truncation.rb +130 -0
- data/app/services/decidim/open_data_exporter.rb +29 -5
- data/app/services/decidim/resource_search.rb +1 -1
- data/app/uploaders/decidim/editor_image_uploader.rb +6 -0
- data/app/validators/password_validator.rb +123 -0
- data/app/views/decidim/account/_password_fields.html.erb +1 -1
- data/app/views/decidim/devise/passwords/edit.html.erb +1 -1
- data/app/views/decidim/devise/registrations/new.html.erb +1 -1
- data/app/views/decidim/devise/shared/_omniauth_buttons_mini.html.erb +6 -4
- data/app/views/decidim/messaging/conversations/_conversation.html.erb +3 -3
- data/app/views/decidim/messaging/conversations/_messages.html.erb +8 -2
- data/app/views/decidim/messaging/conversations/_show.html.erb +10 -12
- data/app/views/decidim/messaging/conversations/show.html.erb +4 -2
- data/app/views/decidim/newsletters/show.html.erb +1 -1
- data/app/views/decidim/notification_mailer/event_received.html.erb +17 -0
- data/app/views/decidim/pages/_tabbed.html.erb +1 -1
- data/app/views/decidim/searches/_filters_small_view.html.erb +3 -3
- data/app/views/decidim/shared/_login_modal.html.erb +5 -5
- data/app/views/decidim/shared/_orders.html.erb +1 -1
- data/app/views/decidim/shared/_results_per_page.html.erb +1 -1
- data/app/views/decidim/shared/participatory_space_filters/_filters_small_view.html.erb +3 -3
- data/app/views/layouts/decidim/_application.html.erb +1 -12
- data/app/views/layouts/decidim/_head.html.erb +4 -0
- data/app/views/layouts/decidim/_language_chooser.html.erb +1 -1
- data/app/views/layouts/decidim/_meta_tags_config.html.erb +11 -0
- data/app/views/layouts/decidim/_wrapper.html.erb +1 -1
- data/config/brakeman.ignore +149 -0
- data/config/initializers/devise.rb +1 -1
- data/config/initializers/rack_attack.rb +23 -21
- data/config/locales/ca.yml +2 -0
- data/config/locales/cs.yml +60 -0
- data/config/locales/en.yml +45 -0
- data/config/locales/es.yml +45 -0
- data/config/locales/eu.yml +5 -0
- data/config/locales/fi-plain.yml +6 -0
- data/config/locales/fi.yml +45 -0
- data/config/locales/fr-CA.yml +38 -0
- data/config/locales/fr.yml +44 -6
- data/config/locales/gl.yml +5 -0
- data/config/locales/it.yml +11 -0
- data/config/locales/ja.yml +72 -36
- data/config/locales/lb-LU.yml +1354 -0
- data/config/locales/lb.yml +1 -1
- data/config/locales/nl.yml +54 -0
- data/config/locales/pl.yml +5 -5
- data/config/locales/pt-BR.yml +1 -1
- data/config/locales/ro-RO.yml +8 -0
- data/config/locales/sv.yml +5 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20210730112319_create_decidim_editor_images.rb +12 -0
- data/db/migrate/20211126183540_add_timestamps_to_content_blocks.rb +14 -0
- data/db/seeds.rb +16 -14
- data/lib/decidim/api/functions/user_entity_list.rb +1 -0
- data/lib/decidim/api/input_sorts/component_input_sort.rb +1 -1
- data/lib/decidim/common_passwords.rb +56 -0
- data/lib/decidim/content_parsers/inline_images_parser.rb +68 -0
- data/lib/decidim/content_parsers.rb +1 -0
- data/lib/decidim/content_renderers/link_renderer.rb +85 -1
- data/lib/decidim/content_renderers/user_group_renderer.rb +1 -1
- data/lib/decidim/content_renderers/user_renderer.rb +1 -1
- data/lib/decidim/core/engine.rb +3 -12
- data/lib/decidim/core/test/factories.rb +7 -1
- data/lib/decidim/core/test/shared_examples/translated_event_examples.rb +131 -0
- data/lib/decidim/core/test.rb +1 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +22 -5
- data/lib/decidim/db/common-passwords.txt +128420 -0
- data/lib/decidim/etherpad/pad.rb +48 -0
- data/lib/decidim/etherpad.rb +7 -0
- data/lib/decidim/events/base_event.rb +18 -0
- data/lib/decidim/events/machine_translated_event.rb +36 -0
- data/lib/decidim/events/user_group_event.rb +1 -3
- data/lib/decidim/events.rb +1 -0
- data/lib/decidim/exporters/csv.rb +7 -7
- data/lib/decidim/faker/localized.rb +15 -6
- data/lib/decidim/form_builder.rb +14 -4
- data/lib/decidim/has_attachments.rb +11 -4
- data/lib/decidim/importers/import_manifest.rb +103 -3
- data/lib/decidim/paddable.rb +1 -9
- data/lib/decidim/searchable.rb +2 -2
- data/lib/decidim/settings_manifest.rb +2 -0
- data/lib/decidim/translatable_attributes.rb +6 -6
- data/lib/decidim/view_model.rb +10 -0
- data/lib/tasks/decidim_active_storage_migration_tasks.rake +68 -0
- metadata +56 -65
- data/app/packs/stylesheets/decidim/extras/_social_icons_mini.scss +0 -11
data/config/locales/en.yml
CHANGED
|
@@ -77,6 +77,34 @@ en:
|
|
|
77
77
|
decidim_with_day_and_month_name: "%A %d %b %Y"
|
|
78
78
|
decidim_with_month_name: "%d %B %Y"
|
|
79
79
|
decidim_with_month_name_short: "%d %b"
|
|
80
|
+
datetime:
|
|
81
|
+
distance_in_words:
|
|
82
|
+
about_x_hours:
|
|
83
|
+
one: about 1 hour
|
|
84
|
+
other: about %{count} hours
|
|
85
|
+
about_x_months:
|
|
86
|
+
one: about 1 month
|
|
87
|
+
other: about %{count} months
|
|
88
|
+
half_a_minute: half a minute
|
|
89
|
+
less_than_x_minutes:
|
|
90
|
+
one: less than a min.
|
|
91
|
+
other: less than %{count} min.
|
|
92
|
+
less_than_x_seconds:
|
|
93
|
+
one: right now
|
|
94
|
+
other: less than %{count} sec.
|
|
95
|
+
x_days:
|
|
96
|
+
one: 1 day ago
|
|
97
|
+
other: "%{count} days ago"
|
|
98
|
+
x_hours:
|
|
99
|
+
one: 1 hour ago
|
|
100
|
+
other: "%{count} hours ago"
|
|
101
|
+
x_minutes:
|
|
102
|
+
one: 1 min. ago
|
|
103
|
+
other: "%{count} min. ago"
|
|
104
|
+
x_seconds:
|
|
105
|
+
one: 1 sec. ago
|
|
106
|
+
other: "%{count} sec. ago"
|
|
107
|
+
zero: right now
|
|
80
108
|
decidim:
|
|
81
109
|
accessibility:
|
|
82
110
|
external_link: External link
|
|
@@ -512,6 +540,11 @@ en:
|
|
|
512
540
|
this_application_will_not_be_able_to: 'This application will not be able to:'
|
|
513
541
|
update_profile: Update your profile
|
|
514
542
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> wants to use your account"
|
|
543
|
+
editor_images:
|
|
544
|
+
create:
|
|
545
|
+
error: Error uploading image
|
|
546
|
+
success: Image uploaded successfully
|
|
547
|
+
drag_and_drop_help: Add images by dragging & dropping or pasting them.
|
|
515
548
|
endorsable:
|
|
516
549
|
endorsements: Endorsements
|
|
517
550
|
endorsements_count: Endorsements count
|
|
@@ -975,6 +1008,7 @@ en:
|
|
|
975
1008
|
show:
|
|
976
1009
|
back: Back to all conversations
|
|
977
1010
|
chat_with: Conversation with
|
|
1011
|
+
deleted_accounts: You can't have a conversation with deleted accounts.
|
|
978
1012
|
not_allowed: This participant does not accept direct messages.
|
|
979
1013
|
title: Conversation with %{usernames}
|
|
980
1014
|
start:
|
|
@@ -1042,6 +1076,12 @@ en:
|
|
|
1042
1076
|
greetings: Greetings,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1043
1077
|
hello: Hello,
|
|
1044
1078
|
subject: Do you want to keep receiving relevant information about %{organization_name}?
|
|
1079
|
+
notification_mailer:
|
|
1080
|
+
event_received:
|
|
1081
|
+
no_translation_available: Sorry, the automated translation could not be retrieved when the email has been sent. You can check the translation of the original text on the following link %{link}.
|
|
1082
|
+
original_text: 'Original text:'
|
|
1083
|
+
same_language: The content has been posted in your preferred language (%{language}), this is why no automated translation is displayed in this email.
|
|
1084
|
+
translated_text: 'Automatically translated text:'
|
|
1045
1085
|
notifications:
|
|
1046
1086
|
no_notifications: No notifications yet.
|
|
1047
1087
|
notifications_settings:
|
|
@@ -1339,6 +1379,7 @@ en:
|
|
|
1339
1379
|
title_reply: Reply
|
|
1340
1380
|
show:
|
|
1341
1381
|
back: Show all conversations
|
|
1382
|
+
deleted_accounts: You can't have a conversation with deleted accounts.
|
|
1342
1383
|
not_allowed: This user does not accept any more direct messages.
|
|
1343
1384
|
title: Conversation with %{usernames}
|
|
1344
1385
|
update:
|
|
@@ -1636,10 +1677,12 @@ en:
|
|
|
1636
1677
|
name: English
|
|
1637
1678
|
name_with_error: English (error!)
|
|
1638
1679
|
password_validator:
|
|
1680
|
+
blacklisted: is blacklisted
|
|
1639
1681
|
domain_included_in_password: is too similar to this domain name
|
|
1640
1682
|
email_included_in_password: is too similar to your email
|
|
1641
1683
|
fallback: is not valid
|
|
1642
1684
|
name_included_in_password: is too similar to your name
|
|
1685
|
+
nickname_included_in_password: is too similar to your nickname
|
|
1643
1686
|
not_enough_unique_characters: does not have enough unique characters
|
|
1644
1687
|
password_not_allowed: is not allowed
|
|
1645
1688
|
password_too_common: is too common
|
|
@@ -1674,6 +1717,8 @@ en:
|
|
|
1674
1717
|
day_of_week: "%a"
|
|
1675
1718
|
day_of_week_long: "%a %e"
|
|
1676
1719
|
day_of_year: "%d.%m.%y"
|
|
1720
|
+
ddmm: "%d.%m"
|
|
1721
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1677
1722
|
decidim_day_of_year: "%d %B %Y"
|
|
1678
1723
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1679
1724
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
data/config/locales/es.yml
CHANGED
|
@@ -76,6 +76,33 @@ es:
|
|
|
76
76
|
decidim_with_day_and_month_name: "%A %d %b %Y"
|
|
77
77
|
decidim_with_month_name: "%d %B %Y"
|
|
78
78
|
decidim_with_month_name_short: "%d %b"
|
|
79
|
+
datetime:
|
|
80
|
+
distance_in_words:
|
|
81
|
+
about_x_hours:
|
|
82
|
+
one: aproximadamente 1 hora
|
|
83
|
+
other: aproximadamente %{count} horas
|
|
84
|
+
about_x_months:
|
|
85
|
+
one: aproximadamente 1 mes
|
|
86
|
+
other: aproximadamente %{count} meses
|
|
87
|
+
half_a_minute: medio minuto
|
|
88
|
+
less_than_x_minutes:
|
|
89
|
+
one: menos de 1 minuto
|
|
90
|
+
other: menos de %{count} minutos
|
|
91
|
+
less_than_x_seconds:
|
|
92
|
+
one: ahora mismo
|
|
93
|
+
other: menos de %{count} segundos
|
|
94
|
+
x_days:
|
|
95
|
+
one: hace 1 día
|
|
96
|
+
other: "hace %{count} días"
|
|
97
|
+
x_hours:
|
|
98
|
+
one: hace 1 hora
|
|
99
|
+
other: "hace %{count} días"
|
|
100
|
+
x_minutes:
|
|
101
|
+
one: hace 1 minuto
|
|
102
|
+
other: "hace %{count} minutos"
|
|
103
|
+
x_seconds:
|
|
104
|
+
one: hace 1 segundo
|
|
105
|
+
other: "hace %{count} segundos"
|
|
79
106
|
decidim:
|
|
80
107
|
accessibility:
|
|
81
108
|
external_link: Enlace externo
|
|
@@ -504,6 +531,11 @@ es:
|
|
|
504
531
|
this_application_will_not_be_able_to: 'Esta aplicación no podrá:'
|
|
505
532
|
update_profile: Actualiza tu perfil
|
|
506
533
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> quiere usar tu cuenta"
|
|
534
|
+
editor_images:
|
|
535
|
+
create:
|
|
536
|
+
error: Error al subir la imagen
|
|
537
|
+
success: Imagen subida con éxito
|
|
538
|
+
drag_and_drop_help: Puedes añadir imágenes arrastrando y soltándolas o también pegándolas.
|
|
507
539
|
endorsable:
|
|
508
540
|
endorsements: Adhesiones
|
|
509
541
|
endorsements_count: Número de adhesiones
|
|
@@ -694,6 +726,7 @@ es:
|
|
|
694
726
|
no_followers: Aún no hay seguidores.
|
|
695
727
|
following:
|
|
696
728
|
no_followings: No sigue a nadie ni a ninguna actividad.
|
|
729
|
+
non_public_followings: Algunos de los recursos seguidos no son públicos.
|
|
697
730
|
follows:
|
|
698
731
|
create:
|
|
699
732
|
button: Seguir
|
|
@@ -966,6 +999,7 @@ es:
|
|
|
966
999
|
show:
|
|
967
1000
|
back: Volver a todas las conversaciones
|
|
968
1001
|
chat_with: Conversación con
|
|
1002
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
969
1003
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
970
1004
|
title: Conversación con %{usernames}
|
|
971
1005
|
start:
|
|
@@ -1033,6 +1067,12 @@ es:
|
|
|
1033
1067
|
greetings: Saludos,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1034
1068
|
hello: Hola,
|
|
1035
1069
|
subject: '¿Deseas seguir recibiendo información relevante sobre %{organization_name}?'
|
|
1070
|
+
notification_mailer:
|
|
1071
|
+
event_received:
|
|
1072
|
+
no_translation_available: Lo sentimos, no se pudo recuperar la traducción automática al enviar el correo electrónico. Puedes comprobar la traducción del texto original en el siguiente enlace %{link}.
|
|
1073
|
+
original_text: 'Texto original:'
|
|
1074
|
+
same_language: El contenido ha sido publicado en tu idioma preferido (%{language}), por eso no se muestra ninguna traducción automática en este correo electrónico.
|
|
1075
|
+
translated_text: 'Texto traducido automáticamente:'
|
|
1036
1076
|
notifications:
|
|
1037
1077
|
no_notifications: Aún no hay notificaciones.
|
|
1038
1078
|
notifications_settings:
|
|
@@ -1330,6 +1370,7 @@ es:
|
|
|
1330
1370
|
title_reply: Responder
|
|
1331
1371
|
show:
|
|
1332
1372
|
back: Ver todas las conversaciones
|
|
1373
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
1333
1374
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
1334
1375
|
title: Conversación con %{usernames}
|
|
1335
1376
|
update:
|
|
@@ -1626,10 +1667,12 @@ es:
|
|
|
1626
1667
|
name: Castellano
|
|
1627
1668
|
name_with_error: Inglés (¡error!)
|
|
1628
1669
|
password_validator:
|
|
1670
|
+
blacklisted: en la lista negra
|
|
1629
1671
|
domain_included_in_password: es demasiado similar a este nombre de dominio
|
|
1630
1672
|
email_included_in_password: es demasiado similar a tu correo electrónico
|
|
1631
1673
|
fallback: no es válido
|
|
1632
1674
|
name_included_in_password: es demasiado similar a tu nombre
|
|
1675
|
+
nickname_included_in_password: es demasiado similar a tu alias
|
|
1633
1676
|
not_enough_unique_characters: no tiene suficientes caracteres únicos
|
|
1634
1677
|
password_not_allowed: no está permitido
|
|
1635
1678
|
password_too_common: es demasiado común
|
|
@@ -1664,6 +1707,8 @@ es:
|
|
|
1664
1707
|
day_of_week: "%a"
|
|
1665
1708
|
day_of_week_long: "%a %e"
|
|
1666
1709
|
day_of_year: "%d/%m/%y"
|
|
1710
|
+
ddmm: "%d.%m"
|
|
1711
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1667
1712
|
decidim_day_of_year: "%d %B %Y"
|
|
1668
1713
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1669
1714
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
data/config/locales/eu.yml
CHANGED
|
@@ -498,6 +498,11 @@ eu:
|
|
|
498
498
|
this_application_will_not_be_able_to: 'Aplikazio honek ezin izango du:'
|
|
499
499
|
update_profile: Eguneratu profila
|
|
500
500
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> zure kontua erabili nahi du"
|
|
501
|
+
editor_images:
|
|
502
|
+
create:
|
|
503
|
+
error: Arazoa irudia eguneratzean
|
|
504
|
+
success: Irudia zuzen eguneratu da
|
|
505
|
+
drag_and_drop_help: Gehitu irudiak arrastatuz edo itsatsiz.
|
|
501
506
|
endorsable:
|
|
502
507
|
endorsements: Oniritziak
|
|
503
508
|
endorsements_count: Atxikimendu kopurua
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -507,6 +507,11 @@ fi-pl:
|
|
|
507
507
|
this_application_will_not_be_able_to: 'Tämä sovellus ei voi:'
|
|
508
508
|
update_profile: Päivittää profiiliasi
|
|
509
509
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> haluaa käyttää tiliäsi"
|
|
510
|
+
editor_images:
|
|
511
|
+
create:
|
|
512
|
+
error: Kuvan lähettäminen epäonnistui
|
|
513
|
+
success: Kuvan lähettäminen onnistui
|
|
514
|
+
drag_and_drop_help: Lisää kuvia raahaamalla ja pudottamalla tai liittämällä niitä leikepöydältä.
|
|
510
515
|
endorsable:
|
|
511
516
|
endorsements: Suosituksia
|
|
512
517
|
endorsements_count: Suositusten määrä
|
|
@@ -696,6 +701,7 @@ fi-pl:
|
|
|
696
701
|
no_followers: Ei vielä seuraajia.
|
|
697
702
|
following:
|
|
698
703
|
no_followings: Ei vielä seuraa ketään tai mitään.
|
|
704
|
+
non_public_followings: Osa seuratuista kohteista ei ole julkisia.
|
|
699
705
|
follows:
|
|
700
706
|
create:
|
|
701
707
|
button: Seuraa
|
data/config/locales/fi.yml
CHANGED
|
@@ -76,6 +76,33 @@ fi:
|
|
|
76
76
|
decidim_with_day_and_month_name: "%A %d. %b %Y"
|
|
77
77
|
decidim_with_month_name: "%B %d. %Y"
|
|
78
78
|
decidim_with_month_name_short: "%d. %b"
|
|
79
|
+
datetime:
|
|
80
|
+
distance_in_words:
|
|
81
|
+
about_x_hours:
|
|
82
|
+
one: noin tunti
|
|
83
|
+
other: noin %{count} tuntia
|
|
84
|
+
about_x_months:
|
|
85
|
+
one: noin kuukausi
|
|
86
|
+
other: noin %{count} kuukautta
|
|
87
|
+
half_a_minute: puoli minuuttia
|
|
88
|
+
less_than_x_minutes:
|
|
89
|
+
one: alle minuutti.
|
|
90
|
+
other: alle %{count} minuuttia.
|
|
91
|
+
less_than_x_seconds:
|
|
92
|
+
one: juuri nyt
|
|
93
|
+
other: vähemmän kuin %{count} sekuntia.
|
|
94
|
+
x_days:
|
|
95
|
+
one: päivä sitten
|
|
96
|
+
other: "%{count} päivää sitten"
|
|
97
|
+
x_hours:
|
|
98
|
+
one: tunti sitten
|
|
99
|
+
other: "%{count} tuntia sitten"
|
|
100
|
+
x_minutes:
|
|
101
|
+
one: minuutti sitten
|
|
102
|
+
other: "%{count} minuuttia sitten"
|
|
103
|
+
x_seconds:
|
|
104
|
+
one: sekunti sitten
|
|
105
|
+
other: "%{count} sekuntia sitten"
|
|
79
106
|
decidim:
|
|
80
107
|
accessibility:
|
|
81
108
|
external_link: Ulkoinen linkki
|
|
@@ -507,6 +534,11 @@ fi:
|
|
|
507
534
|
this_application_will_not_be_able_to: 'Tämä sovellus ei voi:'
|
|
508
535
|
update_profile: Päivittää profiiliasi
|
|
509
536
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> haluaa käyttää tiliäsi"
|
|
537
|
+
editor_images:
|
|
538
|
+
create:
|
|
539
|
+
error: Kuvan lähettäminen epäonnistui
|
|
540
|
+
success: Kuvan lähettäminen onnistui
|
|
541
|
+
drag_and_drop_help: Lisää kuvia raahaamalla ja pudottamalla tai liittämällä niitä leikepöydältä.
|
|
510
542
|
endorsable:
|
|
511
543
|
endorsements: Suositukset
|
|
512
544
|
endorsements_count: Suositusten määrä
|
|
@@ -696,6 +728,7 @@ fi:
|
|
|
696
728
|
no_followers: Ei vielä seuraajia.
|
|
697
729
|
following:
|
|
698
730
|
no_followings: Ei vielä seuraa ketään tai mitään.
|
|
731
|
+
non_public_followings: Osa seuratuista kohteista ei ole julkisia.
|
|
699
732
|
follows:
|
|
700
733
|
create:
|
|
701
734
|
button: Seuraa
|
|
@@ -968,6 +1001,7 @@ fi:
|
|
|
968
1001
|
show:
|
|
969
1002
|
back: Takaisin kaikkiin keskusteluihin
|
|
970
1003
|
chat_with: Keskustelu osallistujien kanssa
|
|
1004
|
+
deleted_accounts: Et voi keskustella poistettujen käyttäjätilien kanssa.
|
|
971
1005
|
not_allowed: Tämä osallistuja ei halua vastaanottaa yksityisviestejä.
|
|
972
1006
|
title: 'Keskustelu: %{usernames}'
|
|
973
1007
|
start:
|
|
@@ -1035,6 +1069,12 @@ fi:
|
|
|
1035
1069
|
greetings: Tervehdys,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1036
1070
|
hello: Hei,
|
|
1037
1071
|
subject: Haluatko jatkaa olennaisen tiedon vastaanottamista koskien %{organization_name} -palvelua?
|
|
1072
|
+
notification_mailer:
|
|
1073
|
+
event_received:
|
|
1074
|
+
no_translation_available: 'Valitettavasti automatisoitua käännöstä ei ollut saatavilla, kun tämä sähköposti on lähetetty. Voit tarkistaa käännöksen alkuperäisestä tekstistä tämän linkin kautta: %{link}.'
|
|
1075
|
+
original_text: 'Alkuperäinen teksti:'
|
|
1076
|
+
same_language: Sisältö on lisätty toivomallasi kielellä (%{language}), minkä takia tässä viestissä ei näytetä automaattista käännöstä.
|
|
1077
|
+
translated_text: 'Automaattisesti käännetty teksti:'
|
|
1038
1078
|
notifications:
|
|
1039
1079
|
no_notifications: Ei vielä ilmoituksia.
|
|
1040
1080
|
notifications_settings:
|
|
@@ -1332,6 +1372,7 @@ fi:
|
|
|
1332
1372
|
title_reply: Vastaa
|
|
1333
1373
|
show:
|
|
1334
1374
|
back: Näytä kaikki keskustelut
|
|
1375
|
+
deleted_accounts: Et voi keskustella poistettujen käyttäjätilien kanssa.
|
|
1335
1376
|
not_allowed: Tämä käyttäjä ei ole sallinut yksityisviestejä muilta käyttäjiltä.
|
|
1336
1377
|
title: 'Keskustelu: %{usernames}'
|
|
1337
1378
|
update:
|
|
@@ -1629,10 +1670,12 @@ fi:
|
|
|
1629
1670
|
name: Suomi
|
|
1630
1671
|
name_with_error: Suomi (virhe!)
|
|
1631
1672
|
password_validator:
|
|
1673
|
+
blacklisted: on mustalla listalla
|
|
1632
1674
|
domain_included_in_password: liian samankaltainen palvelun verkko-osoitteen kanssa
|
|
1633
1675
|
email_included_in_password: liian samankaltainen sähköpostisi kanssa
|
|
1634
1676
|
fallback: ei ole hyväksytyn muotoinen
|
|
1635
1677
|
name_included_in_password: liian samankaltainen nimesi kanssa
|
|
1678
|
+
nickname_included_in_password: liian samankaltainen nimesi kanssa
|
|
1636
1679
|
not_enough_unique_characters: ei sisällä tarpeeksi yksilöllisiä merkkejä
|
|
1637
1680
|
password_not_allowed: ei ole sallittu
|
|
1638
1681
|
password_too_common: liian yleinen
|
|
@@ -1667,6 +1710,8 @@ fi:
|
|
|
1667
1710
|
day_of_week: "%a"
|
|
1668
1711
|
day_of_week_long: "%a %e."
|
|
1669
1712
|
day_of_year: "%d.%m.%y"
|
|
1713
|
+
ddmm: "%d.%m."
|
|
1714
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1670
1715
|
decidim_day_of_year: "%B %d. %Y"
|
|
1671
1716
|
decidim_short: "%d.%m.%Y %H:%M"
|
|
1672
1717
|
default: "%a, %d. %b %Y %H:%M:%S %z"
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -76,6 +76,33 @@ fr-CA:
|
|
|
76
76
|
decidim_with_day_and_month_name: "%A %d %b %Y"
|
|
77
77
|
decidim_with_month_name: "%d %B %Y"
|
|
78
78
|
decidim_with_month_name_short: "%d %b"
|
|
79
|
+
datetime:
|
|
80
|
+
distance_in_words:
|
|
81
|
+
about_x_hours:
|
|
82
|
+
one: environ %{count} heure
|
|
83
|
+
other: environ %{count} heures
|
|
84
|
+
about_x_months:
|
|
85
|
+
one: environ %{count} mois
|
|
86
|
+
other: environ %{count} mois
|
|
87
|
+
half_a_minute: une demi-minute
|
|
88
|
+
less_than_x_minutes:
|
|
89
|
+
one: moins d’une minute.
|
|
90
|
+
other: moins de %{count} min.
|
|
91
|
+
less_than_x_seconds:
|
|
92
|
+
one: à l’instant
|
|
93
|
+
other: moins de %{count} sec.
|
|
94
|
+
x_days:
|
|
95
|
+
one: Hier
|
|
96
|
+
other: "Il y a %{count} jours"
|
|
97
|
+
x_hours:
|
|
98
|
+
one: Il y a 1 heure
|
|
99
|
+
other: "Il y a %{count} heures"
|
|
100
|
+
x_minutes:
|
|
101
|
+
one: Il y a 1 min
|
|
102
|
+
other: "Il y a %{count} min"
|
|
103
|
+
x_seconds:
|
|
104
|
+
one: Il y a 1 seconde
|
|
105
|
+
other: "Il y a %{count} secondes"
|
|
79
106
|
decidim:
|
|
80
107
|
accessibility:
|
|
81
108
|
external_link: Lien externe
|
|
@@ -502,6 +529,11 @@ fr-CA:
|
|
|
502
529
|
this_application_will_not_be_able_to: 'Cette application ne sera pas capable de :'
|
|
503
530
|
update_profile: Mettre à jour votre profil
|
|
504
531
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> veut utiliser votre compte"
|
|
532
|
+
editor_images:
|
|
533
|
+
create:
|
|
534
|
+
error: Erreur lors de l'envoi de l'image
|
|
535
|
+
success: Image envoyée avec succès
|
|
536
|
+
drag_and_drop_help: Ajoutez des images en les glissant - déposant ou en les collant depuis votre presse-papier.
|
|
505
537
|
endorsable:
|
|
506
538
|
endorsements: Soutiens
|
|
507
539
|
endorsements_count: Nombre de soutiens
|
|
@@ -965,6 +997,7 @@ fr-CA:
|
|
|
965
997
|
show:
|
|
966
998
|
back: Retour à toutes les conversations
|
|
967
999
|
chat_with: Conversation avec
|
|
1000
|
+
deleted_accounts: Vous ne pouvez pas avoir de conversation avec des comptes supprimés.
|
|
968
1001
|
not_allowed: Cet utilisateur ne souhaite pas recevoir de messages directs.
|
|
969
1002
|
title: Conversation avec %{usernames}
|
|
970
1003
|
start:
|
|
@@ -1329,6 +1362,7 @@ fr-CA:
|
|
|
1329
1362
|
title_reply: Répondre
|
|
1330
1363
|
show:
|
|
1331
1364
|
back: Afficher toutes les conversations
|
|
1365
|
+
deleted_accounts: Vous ne pouvez pas avoir de conversation avec des comptes supprimés.
|
|
1332
1366
|
not_allowed: Cet utilisateur n'accepte plus de messages directs.
|
|
1333
1367
|
title: Conversation avec %{usernames}
|
|
1334
1368
|
update:
|
|
@@ -1626,10 +1660,12 @@ fr-CA:
|
|
|
1626
1660
|
name: Français
|
|
1627
1661
|
name_with_error: Anglais (erreur !)
|
|
1628
1662
|
password_validator:
|
|
1663
|
+
blacklisted: sur liste noire
|
|
1629
1664
|
domain_included_in_password: est trop similaire au nom de domaine de cette plateforme
|
|
1630
1665
|
email_included_in_password: est trop similaire à votre email
|
|
1631
1666
|
fallback: n'est pas valide
|
|
1632
1667
|
name_included_in_password: est trop similaire à votre nom
|
|
1668
|
+
nickname_included_in_password: est trop similaire à votre surnom
|
|
1633
1669
|
not_enough_unique_characters: n'a pas assez de caractères uniques
|
|
1634
1670
|
password_not_allowed: n'est pas autorisé
|
|
1635
1671
|
password_too_common: est trop commun
|
|
@@ -1664,6 +1700,8 @@ fr-CA:
|
|
|
1664
1700
|
day_of_week: "%a"
|
|
1665
1701
|
day_of_week_long: "%a %e"
|
|
1666
1702
|
day_of_year: "%d.%m.%y"
|
|
1703
|
+
ddmm: "%d.%m"
|
|
1704
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1667
1705
|
decidim_day_of_year: "%d %B %Y"
|
|
1668
1706
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1669
1707
|
default: "%d %B %Y %H h %M min %S s"
|
data/config/locales/fr.yml
CHANGED
|
@@ -13,7 +13,7 @@ fr:
|
|
|
13
13
|
document_number: Numéro de document
|
|
14
14
|
email: Courriel
|
|
15
15
|
name: Nom
|
|
16
|
-
nickname:
|
|
16
|
+
nickname: Pseudonyme
|
|
17
17
|
phone: Téléphone
|
|
18
18
|
message:
|
|
19
19
|
body: Corps de texte
|
|
@@ -23,7 +23,7 @@ fr:
|
|
|
23
23
|
about: A propos de moi
|
|
24
24
|
email: Votre email
|
|
25
25
|
name: Votre nom
|
|
26
|
-
nickname:
|
|
26
|
+
nickname: Pseudonyme
|
|
27
27
|
password: Mot de passe
|
|
28
28
|
password_confirmation: Confirmez votre mot de passe
|
|
29
29
|
personal_url: Site internet personnel
|
|
@@ -45,7 +45,7 @@ fr:
|
|
|
45
45
|
decidim/user:
|
|
46
46
|
current_password: Mot de passe actuel
|
|
47
47
|
email: Email
|
|
48
|
-
name:
|
|
48
|
+
name: Pseudonyme
|
|
49
49
|
password: Mot de passe
|
|
50
50
|
password_confirmation: Confirmation du mot de passe
|
|
51
51
|
remember_me: Retenir le mot de passe
|
|
@@ -76,6 +76,33 @@ fr:
|
|
|
76
76
|
decidim_with_day_and_month_name: "%A %d %b %Y"
|
|
77
77
|
decidim_with_month_name: "%d %B %Y"
|
|
78
78
|
decidim_with_month_name_short: "%d %b"
|
|
79
|
+
datetime:
|
|
80
|
+
distance_in_words:
|
|
81
|
+
about_x_hours:
|
|
82
|
+
one: environ %{count} heure
|
|
83
|
+
other: environ %{count} heures
|
|
84
|
+
about_x_months:
|
|
85
|
+
one: environ %{count} mois
|
|
86
|
+
other: environ %{count} mois
|
|
87
|
+
half_a_minute: une demi-minute
|
|
88
|
+
less_than_x_minutes:
|
|
89
|
+
one: moins d’une minute.
|
|
90
|
+
other: moins de %{count} min.
|
|
91
|
+
less_than_x_seconds:
|
|
92
|
+
one: à l’instant
|
|
93
|
+
other: moins de %{count} sec.
|
|
94
|
+
x_days:
|
|
95
|
+
one: Hier
|
|
96
|
+
other: "Il y a %{count} jours"
|
|
97
|
+
x_hours:
|
|
98
|
+
one: Il y a 1 heure
|
|
99
|
+
other: "Il y a %{count} heures"
|
|
100
|
+
x_minutes:
|
|
101
|
+
one: Il y a 1 min
|
|
102
|
+
other: "Il y a %{count} min"
|
|
103
|
+
x_seconds:
|
|
104
|
+
one: Il y a 1 seconde
|
|
105
|
+
other: "Il y a %{count} secondes"
|
|
79
106
|
decidim:
|
|
80
107
|
accessibility:
|
|
81
108
|
external_link: Lien externe
|
|
@@ -502,6 +529,11 @@ fr:
|
|
|
502
529
|
this_application_will_not_be_able_to: 'Cette application ne sera pas capable de :'
|
|
503
530
|
update_profile: Mettre à jour votre profil
|
|
504
531
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> veut utiliser votre compte"
|
|
532
|
+
editor_images:
|
|
533
|
+
create:
|
|
534
|
+
error: Erreur lors de l'envoi de l'image
|
|
535
|
+
success: Image envoyée avec succès
|
|
536
|
+
drag_and_drop_help: Ajoutez des images en les glissant - déposant ou en les collant depuis votre presse-papier.
|
|
505
537
|
endorsable:
|
|
506
538
|
endorsements: Soutiens
|
|
507
539
|
endorsements_count: Nombre de soutiens
|
|
@@ -965,6 +997,7 @@ fr:
|
|
|
965
997
|
show:
|
|
966
998
|
back: Retour à toutes les conversations
|
|
967
999
|
chat_with: Conversation avec
|
|
1000
|
+
deleted_accounts: Vous ne pouvez pas avoir de conversation avec des comptes supprimés.
|
|
968
1001
|
not_allowed: Cet utilisateur ne souhaite pas recevoir de messages directs.
|
|
969
1002
|
title: Conversation avec %{usernames}
|
|
970
1003
|
start:
|
|
@@ -1037,7 +1070,7 @@ fr:
|
|
|
1037
1070
|
notifications_settings:
|
|
1038
1071
|
show:
|
|
1039
1072
|
administrators: Administrateurs
|
|
1040
|
-
allow_public_contact: Permettre à
|
|
1073
|
+
allow_public_contact: Permettre à quelqu'un de m'envoyer un message direct, même si je ne les suis pas.
|
|
1041
1074
|
direct_messages: Recevoir des messages directs de n'importe qui
|
|
1042
1075
|
email_on_moderations: Je veux recevoir un email chaque fois que quelque chose est signalé pour modération.
|
|
1043
1076
|
email_on_notification: Je souhaite recevoir un email à chaque fois que je reçois une notification.
|
|
@@ -1289,8 +1322,8 @@ fr:
|
|
|
1289
1322
|
headline: Statistiques
|
|
1290
1323
|
no_stats: Il n'y a pas encore de statistiques.
|
|
1291
1324
|
pages_count: Pages
|
|
1292
|
-
participants_count:
|
|
1293
|
-
users_count:
|
|
1325
|
+
participants_count: Participants
|
|
1326
|
+
users_count: Participants
|
|
1294
1327
|
tags:
|
|
1295
1328
|
filter_results_for_category: 'Filtrer les résultats de la catégorie : %{resource}'
|
|
1296
1329
|
filter_results_for_scope: 'Filtrer les résultats pour le secteur : %{resource}'
|
|
@@ -1329,6 +1362,7 @@ fr:
|
|
|
1329
1362
|
title_reply: Répondre
|
|
1330
1363
|
show:
|
|
1331
1364
|
back: Afficher toutes les conversations
|
|
1365
|
+
deleted_accounts: Vous ne pouvez pas avoir de conversation avec des comptes supprimés.
|
|
1332
1366
|
not_allowed: Cet utilisateur n'accepte plus de messages directs.
|
|
1333
1367
|
title: Conversation avec %{usernames}
|
|
1334
1368
|
update:
|
|
@@ -1626,10 +1660,12 @@ fr:
|
|
|
1626
1660
|
name: Français
|
|
1627
1661
|
name_with_error: Anglais (erreur !)
|
|
1628
1662
|
password_validator:
|
|
1663
|
+
blacklisted: sur liste noire
|
|
1629
1664
|
domain_included_in_password: est trop similaire au nom de domaine de cette plateforme
|
|
1630
1665
|
email_included_in_password: est trop similaire à votre email
|
|
1631
1666
|
fallback: n'est pas valide
|
|
1632
1667
|
name_included_in_password: est trop similaire à votre nom
|
|
1668
|
+
nickname_included_in_password: est trop similaire à votre surnom
|
|
1633
1669
|
not_enough_unique_characters: n'a pas assez de caractères uniques
|
|
1634
1670
|
password_not_allowed: n'est pas autorisé
|
|
1635
1671
|
password_too_common: est trop commun
|
|
@@ -1664,6 +1700,8 @@ fr:
|
|
|
1664
1700
|
day_of_week: "%a"
|
|
1665
1701
|
day_of_week_long: "%a %e"
|
|
1666
1702
|
day_of_year: "%d.%m.%y"
|
|
1703
|
+
ddmm: "%d.%m"
|
|
1704
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1667
1705
|
decidim_day_of_year: "%d %B %Y"
|
|
1668
1706
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1669
1707
|
default: "%d %B %Y %H h %M min %S s"
|
data/config/locales/gl.yml
CHANGED
|
@@ -369,6 +369,11 @@ gl:
|
|
|
369
369
|
this_application_will_not_be_able_to: 'Esta aplicación non poderá:'
|
|
370
370
|
update_profile: Actualiza o teu perfil
|
|
371
371
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> quere usar a túa conta"
|
|
372
|
+
editor_images:
|
|
373
|
+
create:
|
|
374
|
+
error: Erro ó subir a imaxe
|
|
375
|
+
success: Imaxe subida con éxito
|
|
376
|
+
drag_and_drop_help: Engade imaxes arrastrándoas ou pegándoas aquí.
|
|
372
377
|
endorsable:
|
|
373
378
|
endorsements: Aprobacións
|
|
374
379
|
errors:
|
data/config/locales/it.yml
CHANGED
|
@@ -507,6 +507,11 @@ it:
|
|
|
507
507
|
this_application_will_not_be_able_to: 'Questa applicazione non sarà in grado di:'
|
|
508
508
|
update_profile: Aggiorna il tuo profilo
|
|
509
509
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> vuole utilizzare il tuo account"
|
|
510
|
+
editor_images:
|
|
511
|
+
create:
|
|
512
|
+
error: Errore nel caricamento dell'immagine
|
|
513
|
+
success: Immagine caricata con successo
|
|
514
|
+
drag_and_drop_help: Aggiungi immagini trascinandole o incollandole.
|
|
510
515
|
endorsable:
|
|
511
516
|
endorsements: Mi piace
|
|
512
517
|
endorsements_count: Numero di Appoggi
|
|
@@ -969,6 +974,7 @@ it:
|
|
|
969
974
|
show:
|
|
970
975
|
back: Torna a tutte le conversazioni
|
|
971
976
|
chat_with: Conversazione con
|
|
977
|
+
deleted_accounts: Non è possibile avere una conversazione con account eliminati.
|
|
972
978
|
not_allowed: Questo partecipante non accetta messaggi diretti.
|
|
973
979
|
title: Conversazione con %{usernames}
|
|
974
980
|
start:
|
|
@@ -1036,6 +1042,9 @@ it:
|
|
|
1036
1042
|
greetings: Saluti,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1037
1043
|
hello: Ciao,
|
|
1038
1044
|
subject: Vuoi continuare a ricevere informazioni rilevanti su %{organization_name}?
|
|
1045
|
+
notification_mailer:
|
|
1046
|
+
event_received:
|
|
1047
|
+
translated_text: 'Testo tradotto automaticamente:'
|
|
1039
1048
|
notifications:
|
|
1040
1049
|
no_notifications: Nessuna notifica.
|
|
1041
1050
|
notifications_settings:
|
|
@@ -1630,10 +1639,12 @@ it:
|
|
|
1630
1639
|
name: Italiano
|
|
1631
1640
|
name_with_error: Inglese (errore!)
|
|
1632
1641
|
password_validator:
|
|
1642
|
+
blacklisted: è nella blacklist
|
|
1633
1643
|
domain_included_in_password: è troppo simile a questo nome di dominio
|
|
1634
1644
|
email_included_in_password: è troppo simile alla tua email
|
|
1635
1645
|
fallback: non è valido
|
|
1636
1646
|
name_included_in_password: è troppo simile al tuo nome
|
|
1647
|
+
nickname_included_in_password: è troppo simile al tuo nickname
|
|
1637
1648
|
not_enough_unique_characters: non ha abbastanza caratteri unici
|
|
1638
1649
|
password_not_allowed: non è permesso
|
|
1639
1650
|
password_too_common: è troppo comune
|