decidim-core 0.25.0 → 0.26.0.rc2
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/how_to_participate/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/following/show.erb +17 -8
- data/app/cells/decidim/following_cell.rb +6 -2
- 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/concerns/decidim/disable_redirection_to_external_host.rb +15 -0
- data/app/controllers/concerns/decidim/safe_redirect.rb +14 -3
- data/app/controllers/decidim/application_controller.rb +1 -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 -9
- data/app/models/decidim/user_base_entity.rb +24 -13
- 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/geocoding/attach_input.js +11 -2
- data/app/packs/src/decidim/index.js +4 -0
- data/app/packs/src/decidim/input_emoji.js +10 -1
- 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/packs/stylesheets/decidim/modules/_timeline.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 +9 -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/ar.yml +8 -0
- data/config/locales/ca.yml +43 -0
- data/config/locales/cs.yml +61 -0
- data/config/locales/en.yml +47 -0
- data/config/locales/es-MX.yml +42 -0
- data/config/locales/es-PY.yml +42 -0
- data/config/locales/es.yml +42 -0
- data/config/locales/eu.yml +27 -12
- data/config/locales/fi-plain.yml +42 -0
- data/config/locales/fi.yml +42 -0
- data/config/locales/fr-CA.yml +43 -0
- data/config/locales/fr.yml +75 -28
- data/config/locales/gl.yml +6 -0
- data/config/locales/it.yml +11 -0
- data/config/locales/ja.yml +85 -49
- data/config/locales/lb-LU.yml +1354 -0
- data/config/locales/lb.yml +1 -1
- data/config/locales/nl.yml +51 -0
- data/config/locales/pl.yml +5 -5
- data/config/locales/pt-BR.yml +1 -1
- data/config/locales/ro-RO.yml +275 -252
- data/config/locales/sv.yml +45 -2
- 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_finder.rb +2 -1
- data/lib/decidim/api/functions/user_entity_list.rb +3 -1
- 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 +7 -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 +33 -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/has_component.rb +4 -0
- data/lib/decidim/importers/import_manifest.rb +103 -3
- data/lib/decidim/organization_settings.rb +1 -1
- data/lib/decidim/paddable.rb +1 -9
- data/lib/decidim/participable.rb +5 -0
- data/lib/decidim/resourceable.rb +2 -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
- data/lib/tasks/decidim_webpacker_tasks.rake +4 -10
- metadata +70 -78
- data/app/packs/stylesheets/decidim/extras/_social_icons_mini.scss +0 -11
data/config/locales/es-MX.yml
CHANGED
|
@@ -76,6 +76,30 @@ es-MX:
|
|
|
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"
|
|
79
103
|
decidim:
|
|
80
104
|
accessibility:
|
|
81
105
|
external_link: Enlace externo
|
|
@@ -507,6 +531,11 @@ es-MX:
|
|
|
507
531
|
this_application_will_not_be_able_to: 'Esta aplicación no podrá:'
|
|
508
532
|
update_profile: Actualiza tu perfil
|
|
509
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.
|
|
510
539
|
endorsable:
|
|
511
540
|
endorsements: Adhesiones
|
|
512
541
|
endorsements_count: Número de adhesiones
|
|
@@ -697,6 +726,7 @@ es-MX:
|
|
|
697
726
|
no_followers: Aún no hay seguidores.
|
|
698
727
|
following:
|
|
699
728
|
no_followings: No sigue a nadie ni a nada todavía.
|
|
729
|
+
non_public_followings: Algunos de los recursos seguidos no son públicos.
|
|
700
730
|
follows:
|
|
701
731
|
create:
|
|
702
732
|
button: Seguir
|
|
@@ -969,6 +999,7 @@ es-MX:
|
|
|
969
999
|
show:
|
|
970
1000
|
back: Volver a todas las conversaciones
|
|
971
1001
|
chat_with: Conversación con
|
|
1002
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
972
1003
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
973
1004
|
title: Conversación con %{usernames}
|
|
974
1005
|
start:
|
|
@@ -1036,6 +1067,12 @@ es-MX:
|
|
|
1036
1067
|
greetings: Saludos,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1037
1068
|
hello: Hola,
|
|
1038
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:'
|
|
1039
1076
|
notifications:
|
|
1040
1077
|
no_notifications: No hay notificaciones aún.
|
|
1041
1078
|
notifications_settings:
|
|
@@ -1333,6 +1370,7 @@ es-MX:
|
|
|
1333
1370
|
title_reply: Responder
|
|
1334
1371
|
show:
|
|
1335
1372
|
back: Ver todas las conversaciones
|
|
1373
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
1336
1374
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
1337
1375
|
title: Conversación con %{usernames}
|
|
1338
1376
|
update:
|
|
@@ -1630,10 +1668,12 @@ es-MX:
|
|
|
1630
1668
|
name: Español
|
|
1631
1669
|
name_with_error: Inglés (¡error!)
|
|
1632
1670
|
password_validator:
|
|
1671
|
+
blacklisted: en la lista negra
|
|
1633
1672
|
domain_included_in_password: Es muy similar a este nombre de dominio
|
|
1634
1673
|
email_included_in_password: Es muy similar a tu correo electrónico
|
|
1635
1674
|
fallback: No es válido
|
|
1636
1675
|
name_included_in_password: Es muy similar a tu nombre
|
|
1676
|
+
nickname_included_in_password: es demasiado similar a tu alias
|
|
1637
1677
|
not_enough_unique_characters: No tiene suficientes caracteres únicos
|
|
1638
1678
|
password_not_allowed: No se permite
|
|
1639
1679
|
password_too_common: Es demasiado común
|
|
@@ -1668,6 +1708,8 @@ es-MX:
|
|
|
1668
1708
|
day_of_week: "%a"
|
|
1669
1709
|
day_of_week_long: "%a %e"
|
|
1670
1710
|
day_of_year: "%d/%m/%y"
|
|
1711
|
+
ddmm: "%d.%m"
|
|
1712
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1671
1713
|
decidim_day_of_year: "%d %B %Y"
|
|
1672
1714
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1673
1715
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -76,6 +76,30 @@ es-PY:
|
|
|
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"
|
|
79
103
|
decidim:
|
|
80
104
|
accessibility:
|
|
81
105
|
external_link: Enlace externo
|
|
@@ -507,6 +531,11 @@ es-PY:
|
|
|
507
531
|
this_application_will_not_be_able_to: 'Esta aplicación no podrá:'
|
|
508
532
|
update_profile: Actualiza tu perfil
|
|
509
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.
|
|
510
539
|
endorsable:
|
|
511
540
|
endorsements: Adhesiones
|
|
512
541
|
endorsements_count: Número de adhesiones
|
|
@@ -697,6 +726,7 @@ es-PY:
|
|
|
697
726
|
no_followers: Aún no hay seguidores.
|
|
698
727
|
following:
|
|
699
728
|
no_followings: No sigue a nadie ni a nada todavía.
|
|
729
|
+
non_public_followings: Algunos de los recursos seguidos no son públicos.
|
|
700
730
|
follows:
|
|
701
731
|
create:
|
|
702
732
|
button: Seguir
|
|
@@ -969,6 +999,7 @@ es-PY:
|
|
|
969
999
|
show:
|
|
970
1000
|
back: Volver a todas las conversaciones
|
|
971
1001
|
chat_with: Conversación con
|
|
1002
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
972
1003
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
973
1004
|
title: Conversacion con %{usernames}
|
|
974
1005
|
start:
|
|
@@ -1036,6 +1067,12 @@ es-PY:
|
|
|
1036
1067
|
greetings: Saludos,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1037
1068
|
hello: Hola,
|
|
1038
1069
|
subject: '¿Desea 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:'
|
|
1039
1076
|
notifications:
|
|
1040
1077
|
no_notifications: No hay notificaciones aún.
|
|
1041
1078
|
notifications_settings:
|
|
@@ -1333,6 +1370,7 @@ es-PY:
|
|
|
1333
1370
|
title_reply: Responder
|
|
1334
1371
|
show:
|
|
1335
1372
|
back: Ver todas las conversaciones
|
|
1373
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
1336
1374
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
1337
1375
|
title: Conversación con %{usernames}
|
|
1338
1376
|
update:
|
|
@@ -1630,10 +1668,12 @@ es-PY:
|
|
|
1630
1668
|
name: Castellano
|
|
1631
1669
|
name_with_error: Inglés (¡error!)
|
|
1632
1670
|
password_validator:
|
|
1671
|
+
blacklisted: en la lista negra
|
|
1633
1672
|
domain_included_in_password: Es muy similar a este nombre de dominio
|
|
1634
1673
|
email_included_in_password: Es muy similar a tu correo electrónico
|
|
1635
1674
|
fallback: No es válido
|
|
1636
1675
|
name_included_in_password: Es muy similar a tu nombre
|
|
1676
|
+
nickname_included_in_password: es demasiado similar a tu alias
|
|
1637
1677
|
not_enough_unique_characters: No tiene suficientes caracteres únicos
|
|
1638
1678
|
password_not_allowed: No se permite
|
|
1639
1679
|
password_too_common: Es demasiado común
|
|
@@ -1668,6 +1708,8 @@ es-PY:
|
|
|
1668
1708
|
day_of_week: "%a"
|
|
1669
1709
|
day_of_week_long: "%a %e"
|
|
1670
1710
|
day_of_year: "%d/%m/%y"
|
|
1711
|
+
ddmm: "%d.%m"
|
|
1712
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1671
1713
|
decidim_day_of_year: "%d %B %Y"
|
|
1672
1714
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1673
1715
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
data/config/locales/es.yml
CHANGED
|
@@ -76,6 +76,30 @@ 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"
|
|
79
103
|
decidim:
|
|
80
104
|
accessibility:
|
|
81
105
|
external_link: Enlace externo
|
|
@@ -504,6 +528,11 @@ es:
|
|
|
504
528
|
this_application_will_not_be_able_to: 'Esta aplicación no podrá:'
|
|
505
529
|
update_profile: Actualiza tu perfil
|
|
506
530
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> quiere usar tu cuenta"
|
|
531
|
+
editor_images:
|
|
532
|
+
create:
|
|
533
|
+
error: Error al subir la imagen
|
|
534
|
+
success: Imagen subida con éxito
|
|
535
|
+
drag_and_drop_help: Puedes añadir imágenes arrastrando y soltándolas o también pegándolas.
|
|
507
536
|
endorsable:
|
|
508
537
|
endorsements: Adhesiones
|
|
509
538
|
endorsements_count: Número de adhesiones
|
|
@@ -694,6 +723,7 @@ es:
|
|
|
694
723
|
no_followers: Aún no hay seguidores.
|
|
695
724
|
following:
|
|
696
725
|
no_followings: No sigue a nadie ni a ninguna actividad.
|
|
726
|
+
non_public_followings: Algunos de los recursos seguidos no son públicos.
|
|
697
727
|
follows:
|
|
698
728
|
create:
|
|
699
729
|
button: Seguir
|
|
@@ -966,6 +996,7 @@ es:
|
|
|
966
996
|
show:
|
|
967
997
|
back: Volver a todas las conversaciones
|
|
968
998
|
chat_with: Conversación con
|
|
999
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
969
1000
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
970
1001
|
title: Conversación con %{usernames}
|
|
971
1002
|
start:
|
|
@@ -1033,6 +1064,12 @@ es:
|
|
|
1033
1064
|
greetings: Saludos,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1034
1065
|
hello: Hola,
|
|
1035
1066
|
subject: '¿Deseas seguir recibiendo información relevante sobre %{organization_name}?'
|
|
1067
|
+
notification_mailer:
|
|
1068
|
+
event_received:
|
|
1069
|
+
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}.
|
|
1070
|
+
original_text: 'Texto original:'
|
|
1071
|
+
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.
|
|
1072
|
+
translated_text: 'Texto traducido automáticamente:'
|
|
1036
1073
|
notifications:
|
|
1037
1074
|
no_notifications: Aún no hay notificaciones.
|
|
1038
1075
|
notifications_settings:
|
|
@@ -1330,6 +1367,7 @@ es:
|
|
|
1330
1367
|
title_reply: Responder
|
|
1331
1368
|
show:
|
|
1332
1369
|
back: Ver todas las conversaciones
|
|
1370
|
+
deleted_accounts: No puedes tener una conversación con cuentas borradas.
|
|
1333
1371
|
not_allowed: Esta participante no acepta mensajes directos.
|
|
1334
1372
|
title: Conversación con %{usernames}
|
|
1335
1373
|
update:
|
|
@@ -1626,10 +1664,12 @@ es:
|
|
|
1626
1664
|
name: Castellano
|
|
1627
1665
|
name_with_error: Inglés (¡error!)
|
|
1628
1666
|
password_validator:
|
|
1667
|
+
blacklisted: en la lista negra
|
|
1629
1668
|
domain_included_in_password: es demasiado similar a este nombre de dominio
|
|
1630
1669
|
email_included_in_password: es demasiado similar a tu correo electrónico
|
|
1631
1670
|
fallback: no es válido
|
|
1632
1671
|
name_included_in_password: es demasiado similar a tu nombre
|
|
1672
|
+
nickname_included_in_password: es demasiado similar a tu alias
|
|
1633
1673
|
not_enough_unique_characters: no tiene suficientes caracteres únicos
|
|
1634
1674
|
password_not_allowed: no está permitido
|
|
1635
1675
|
password_too_common: es demasiado común
|
|
@@ -1664,6 +1704,8 @@ es:
|
|
|
1664
1704
|
day_of_week: "%a"
|
|
1665
1705
|
day_of_week_long: "%a %e"
|
|
1666
1706
|
day_of_year: "%d/%m/%y"
|
|
1707
|
+
ddmm: "%d.%m"
|
|
1708
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1667
1709
|
decidim_day_of_year: "%d %B %Y"
|
|
1668
1710
|
decidim_short: "%d/%m/%Y %H:%M"
|
|
1669
1711
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
data/config/locales/eu.yml
CHANGED
|
@@ -23,7 +23,7 @@ eu:
|
|
|
23
23
|
about: About
|
|
24
24
|
email: Zure helbide elektronikoa
|
|
25
25
|
name: Zure izena
|
|
26
|
-
nickname:
|
|
26
|
+
nickname: Ezizena
|
|
27
27
|
password: Pasahitza
|
|
28
28
|
password_confirmation: Berretsi pasahitza
|
|
29
29
|
personal_url: URL pertsonala
|
|
@@ -45,7 +45,7 @@ eu:
|
|
|
45
45
|
decidim/user:
|
|
46
46
|
current_password: Egungo pasahitza
|
|
47
47
|
email: Helbide elektronikoa
|
|
48
|
-
name:
|
|
48
|
+
name: Ezizena
|
|
49
49
|
password: Pasahitza
|
|
50
50
|
password_confirmation: Baieztatu pasahitza
|
|
51
51
|
remember_me: Gogoratu
|
|
@@ -73,6 +73,12 @@ eu:
|
|
|
73
73
|
decidim_with_day_and_month_name: "%A %d %b %Y"
|
|
74
74
|
decidim_with_month_name: "%d %B %Y"
|
|
75
75
|
decidim_with_month_name_short: "%d %b"
|
|
76
|
+
datetime:
|
|
77
|
+
distance_in_words:
|
|
78
|
+
x_seconds:
|
|
79
|
+
one: Orain dela segundu 1
|
|
80
|
+
other: "Orain dela %{count} segundu"
|
|
81
|
+
zero: orain
|
|
76
82
|
decidim:
|
|
77
83
|
accessibility:
|
|
78
84
|
external_link: Kanpoko lotura
|
|
@@ -158,8 +164,12 @@ eu:
|
|
|
158
164
|
unofficialize: "%{user_name} erabiltzaile ez ofiziala %{resource_name}"
|
|
159
165
|
user_group:
|
|
160
166
|
reject: "%{user_name} baztertu %{resource_name} erabiltzaile taldeen egiaztapena"
|
|
161
|
-
verify: "%{user_name} egiaztatu %{resource_name}
|
|
167
|
+
verify: "%{user_name} egiaztatu du %{resource_name} taldea"
|
|
162
168
|
verify_via_csv: "%{user_name} egiaztatu du %{resource_name} erabiltzaile talde CSV fitxategi baten bidez"
|
|
169
|
+
user_moderation:
|
|
170
|
+
unreport: "%{user_name} desegin du %{resource_type} - %{unreported_user_name} erreportea"
|
|
171
|
+
admin_terms_of_use:
|
|
172
|
+
default_body: "<h2>TÉRMINOS ADMIN DE USO</h2><p>Sistemaren tokiko administratzailearen ohiko azalpena jaso duzulakoan gaude. Oro har, hiru gauza hauetara mugatzen da:</p><ol><li>Besteen pribatutasuna errespetatzea.</li><li>Klikatu aurretik pentsatu.</li><li>Botere handiak erantzukizun handia dakar.</li></ol>"
|
|
163
173
|
alert:
|
|
164
174
|
dismiss: Baztertu jakinarazpena
|
|
165
175
|
amendments:
|
|
@@ -442,11 +452,11 @@ eu:
|
|
|
442
452
|
complete_profile: Osatu profila
|
|
443
453
|
sign_up: Mesedez, osatu zure profila
|
|
444
454
|
subtitle: Mesedez, bete inprimaki hau izen-ematea osatzeko
|
|
445
|
-
username_help:
|
|
455
|
+
username_help: Zure mezuetan agertuko den izen publikoa. Anonimatua bermatze aldera, edozein izen izan daiteke.
|
|
446
456
|
registrations:
|
|
447
457
|
new:
|
|
448
458
|
already_have_an_account?: Baduzu kontu bat?
|
|
449
|
-
newsletter:
|
|
459
|
+
newsletter: Jaso nahi dut noizbehinka informazio garrantzitsua duen buletina
|
|
450
460
|
newsletter_title: Harremanetarako baimena
|
|
451
461
|
sign_in: Sartu
|
|
452
462
|
sign_up: Erregistratu
|
|
@@ -456,7 +466,7 @@ eu:
|
|
|
456
466
|
terms: erabilera-baldintzak
|
|
457
467
|
tos_agreement: 'Erregistratzean hau onartzen duzu: %{link}.'
|
|
458
468
|
tos_title: Zerbitzu-baldintzak
|
|
459
|
-
username_help:
|
|
469
|
+
username_help: Zure mezuetan agertuko den izen publikoa. Anonimatua bermatze aldera, edozein izen izan daiteke.
|
|
460
470
|
sessions:
|
|
461
471
|
new:
|
|
462
472
|
are_you_new?: Berria zara plataforman?
|
|
@@ -494,6 +504,11 @@ eu:
|
|
|
494
504
|
this_application_will_not_be_able_to: 'Aplikazio honek ezin izango du:'
|
|
495
505
|
update_profile: Eguneratu profila
|
|
496
506
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> zure kontua erabili nahi du"
|
|
507
|
+
editor_images:
|
|
508
|
+
create:
|
|
509
|
+
error: Arazoa irudia eguneratzean
|
|
510
|
+
success: Irudia zuzen eguneratu da
|
|
511
|
+
drag_and_drop_help: Gehitu irudiak arrastatuz edo itsatsiz.
|
|
497
512
|
endorsable:
|
|
498
513
|
endorsements: Oniritziak
|
|
499
514
|
endorsements_count: Atxikimendu kopurua
|
|
@@ -811,9 +826,9 @@ eu:
|
|
|
811
826
|
success: Erregistratu eskaera behar bezala sortu da. Administratzaileak zure eskaera berrikusiko du taldera onartu aurretik.
|
|
812
827
|
leave:
|
|
813
828
|
error: Arazo bat izan da taldean utzita
|
|
814
|
-
success:
|
|
829
|
+
success: Taldea zuzen utzi duzu.
|
|
815
830
|
members:
|
|
816
|
-
accept_or_reject_join_requests: 'Hurrengo
|
|
831
|
+
accept_or_reject_join_requests: 'Hurrengo parte-hartzaileek taldean sartzea eskatu dute. Onartu edo ukatu bere eskariak:'
|
|
817
832
|
accept_request: Onartu
|
|
818
833
|
reject_request: Ukatu
|
|
819
834
|
new:
|
|
@@ -859,13 +874,13 @@ eu:
|
|
|
859
874
|
delete_with_space: "%{user_name} ezabatu %{resource_name} en %{space_name}"
|
|
860
875
|
unknown_action: "%{user_name} Ekintza batzuk egin %{resource_name}"
|
|
861
876
|
unknown_action_with_space: "%{user_name} Ekintza batzuk egin %{resource_name} en %{space_name}"
|
|
862
|
-
update: "%{user_name} eguneratu %{resource_name}"
|
|
863
|
-
update_with_space: "%{user_name} eguneratu %{resource_name}
|
|
877
|
+
update: "%{user_name} eguneratu zuen %{resource_name}"
|
|
878
|
+
update_with_space: "%{user_name} eguneratu zuen %{resource_name} hemen %{space_name}"
|
|
864
879
|
value_types:
|
|
865
880
|
area_presenter:
|
|
866
|
-
not_found: '
|
|
881
|
+
not_found: 'Area ez zen datu-basean aurkitu (ID: %{id})'
|
|
867
882
|
area_type_presenter:
|
|
868
|
-
not_found: '
|
|
883
|
+
not_found: 'Area mota ez da datu basean aurkitu (ID: %{id})'
|
|
869
884
|
scope_presenter:
|
|
870
885
|
not_found: 'Esparrua ez da aurkitu datu-basean (ID: %{id})'
|
|
871
886
|
scope_type_presenter:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -76,6 +76,30 @@ fi-pl:
|
|
|
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"
|
|
79
103
|
decidim:
|
|
80
104
|
accessibility:
|
|
81
105
|
external_link: Ulkoinen linkki
|
|
@@ -507,6 +531,11 @@ fi-pl:
|
|
|
507
531
|
this_application_will_not_be_able_to: 'Tämä sovellus ei voi:'
|
|
508
532
|
update_profile: Päivittää profiiliasi
|
|
509
533
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> haluaa käyttää tiliäsi"
|
|
534
|
+
editor_images:
|
|
535
|
+
create:
|
|
536
|
+
error: Kuvan lähettäminen epäonnistui
|
|
537
|
+
success: Kuvan lähettäminen onnistui
|
|
538
|
+
drag_and_drop_help: Lisää kuvia raahaamalla ja pudottamalla tai liittämällä niitä leikepöydältä.
|
|
510
539
|
endorsable:
|
|
511
540
|
endorsements: Suosituksia
|
|
512
541
|
endorsements_count: Suositusten määrä
|
|
@@ -696,6 +725,7 @@ fi-pl:
|
|
|
696
725
|
no_followers: Ei vielä seuraajia.
|
|
697
726
|
following:
|
|
698
727
|
no_followings: Ei vielä seuraa ketään tai mitään.
|
|
728
|
+
non_public_followings: Osa seuratuista kohteista ei ole julkisia.
|
|
699
729
|
follows:
|
|
700
730
|
create:
|
|
701
731
|
button: Seuraa
|
|
@@ -968,6 +998,7 @@ fi-pl:
|
|
|
968
998
|
show:
|
|
969
999
|
back: Takaisin kaikkiin keskusteluihin
|
|
970
1000
|
chat_with: Keskustelu osallistujien kanssa
|
|
1001
|
+
deleted_accounts: Et voi keskustella poistettujen käyttäjätilien kanssa.
|
|
971
1002
|
not_allowed: Tämä osallistuja ei halua vastaanottaa yksityisviestejä.
|
|
972
1003
|
title: 'Keskustelu: %{usernames}'
|
|
973
1004
|
start:
|
|
@@ -1035,6 +1066,12 @@ fi-pl:
|
|
|
1035
1066
|
greetings: Tervehdys,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1036
1067
|
hello: Hei,
|
|
1037
1068
|
subject: Haluatko jatkaa olennaisen tiedon vastaanottamista koskien %{organization_name} -palvelua?
|
|
1069
|
+
notification_mailer:
|
|
1070
|
+
event_received:
|
|
1071
|
+
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}.'
|
|
1072
|
+
original_text: 'Alkuperäinen teksti:'
|
|
1073
|
+
same_language: Sisältö on lisätty toivomallasi kielellä (%{language}), minkä takia tässä viestissä ei näytetä automaattista käännöstä.
|
|
1074
|
+
translated_text: 'Automaattisesti käännetty teksti:'
|
|
1038
1075
|
notifications:
|
|
1039
1076
|
no_notifications: Ei vielä ilmoituksia.
|
|
1040
1077
|
notifications_settings:
|
|
@@ -1332,6 +1369,7 @@ fi-pl:
|
|
|
1332
1369
|
title_reply: Vastaa
|
|
1333
1370
|
show:
|
|
1334
1371
|
back: Näytä kaikki keskustelut
|
|
1372
|
+
deleted_accounts: Et voi keskustella poistettujen käyttäjätilien kanssa.
|
|
1335
1373
|
not_allowed: Tämä käyttäjä ei ole sallinut yksityisviestejä muilta käyttäjiltä.
|
|
1336
1374
|
title: 'Keskustelu: %{usernames}'
|
|
1337
1375
|
update:
|
|
@@ -1629,10 +1667,12 @@ fi-pl:
|
|
|
1629
1667
|
name: Suomi
|
|
1630
1668
|
name_with_error: Suomi (virhe!)
|
|
1631
1669
|
password_validator:
|
|
1670
|
+
blacklisted: on mustalla listalla
|
|
1632
1671
|
domain_included_in_password: liian samankaltainen palvelun verkko-osoitteen kanssa
|
|
1633
1672
|
email_included_in_password: liian samankaltainen sähköpostisi kanssa
|
|
1634
1673
|
fallback: ei ole hyväksytyn muotoinen
|
|
1635
1674
|
name_included_in_password: liian samankaltainen nimesi kanssa
|
|
1675
|
+
nickname_included_in_password: liian samankaltainen nimesi kanssa
|
|
1636
1676
|
not_enough_unique_characters: ei sisällä tarpeeksi yksilöllisiä merkkejä
|
|
1637
1677
|
password_not_allowed: ei ole sallittu
|
|
1638
1678
|
password_too_common: liian yleinen
|
|
@@ -1667,6 +1707,8 @@ fi-pl:
|
|
|
1667
1707
|
day_of_week: "%a"
|
|
1668
1708
|
day_of_week_long: "%a %e."
|
|
1669
1709
|
day_of_year: "%d.%m.%y"
|
|
1710
|
+
ddmm: "%d.%m."
|
|
1711
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1670
1712
|
decidim_day_of_year: "%B %d. %Y"
|
|
1671
1713
|
decidim_short: "%d.%m.%Y %H:%M"
|
|
1672
1714
|
default: "%a, %d. %b %Y %H:%M:%S %z"
|
data/config/locales/fi.yml
CHANGED
|
@@ -76,6 +76,30 @@ 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"
|
|
79
103
|
decidim:
|
|
80
104
|
accessibility:
|
|
81
105
|
external_link: Ulkoinen linkki
|
|
@@ -507,6 +531,11 @@ fi:
|
|
|
507
531
|
this_application_will_not_be_able_to: 'Tämä sovellus ei voi:'
|
|
508
532
|
update_profile: Päivittää profiiliasi
|
|
509
533
|
wants_to_use_your_account_html: "<strong>%{application_name}</strong> haluaa käyttää tiliäsi"
|
|
534
|
+
editor_images:
|
|
535
|
+
create:
|
|
536
|
+
error: Kuvan lähettäminen epäonnistui
|
|
537
|
+
success: Kuvan lähettäminen onnistui
|
|
538
|
+
drag_and_drop_help: Lisää kuvia raahaamalla ja pudottamalla tai liittämällä niitä leikepöydältä.
|
|
510
539
|
endorsable:
|
|
511
540
|
endorsements: Suositukset
|
|
512
541
|
endorsements_count: Suositusten määrä
|
|
@@ -696,6 +725,7 @@ fi:
|
|
|
696
725
|
no_followers: Ei vielä seuraajia.
|
|
697
726
|
following:
|
|
698
727
|
no_followings: Ei vielä seuraa ketään tai mitään.
|
|
728
|
+
non_public_followings: Osa seuratuista kohteista ei ole julkisia.
|
|
699
729
|
follows:
|
|
700
730
|
create:
|
|
701
731
|
button: Seuraa
|
|
@@ -968,6 +998,7 @@ fi:
|
|
|
968
998
|
show:
|
|
969
999
|
back: Takaisin kaikkiin keskusteluihin
|
|
970
1000
|
chat_with: Keskustelu osallistujien kanssa
|
|
1001
|
+
deleted_accounts: Et voi keskustella poistettujen käyttäjätilien kanssa.
|
|
971
1002
|
not_allowed: Tämä osallistuja ei halua vastaanottaa yksityisviestejä.
|
|
972
1003
|
title: 'Keskustelu: %{usernames}'
|
|
973
1004
|
start:
|
|
@@ -1035,6 +1066,12 @@ fi:
|
|
|
1035
1066
|
greetings: Tervehdys,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
1036
1067
|
hello: Hei,
|
|
1037
1068
|
subject: Haluatko jatkaa olennaisen tiedon vastaanottamista koskien %{organization_name} -palvelua?
|
|
1069
|
+
notification_mailer:
|
|
1070
|
+
event_received:
|
|
1071
|
+
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}.'
|
|
1072
|
+
original_text: 'Alkuperäinen teksti:'
|
|
1073
|
+
same_language: Sisältö on lisätty toivomallasi kielellä (%{language}), minkä takia tässä viestissä ei näytetä automaattista käännöstä.
|
|
1074
|
+
translated_text: 'Automaattisesti käännetty teksti:'
|
|
1038
1075
|
notifications:
|
|
1039
1076
|
no_notifications: Ei vielä ilmoituksia.
|
|
1040
1077
|
notifications_settings:
|
|
@@ -1332,6 +1369,7 @@ fi:
|
|
|
1332
1369
|
title_reply: Vastaa
|
|
1333
1370
|
show:
|
|
1334
1371
|
back: Näytä kaikki keskustelut
|
|
1372
|
+
deleted_accounts: Et voi keskustella poistettujen käyttäjätilien kanssa.
|
|
1335
1373
|
not_allowed: Tämä käyttäjä ei ole sallinut yksityisviestejä muilta käyttäjiltä.
|
|
1336
1374
|
title: 'Keskustelu: %{usernames}'
|
|
1337
1375
|
update:
|
|
@@ -1629,10 +1667,12 @@ fi:
|
|
|
1629
1667
|
name: Suomi
|
|
1630
1668
|
name_with_error: Suomi (virhe!)
|
|
1631
1669
|
password_validator:
|
|
1670
|
+
blacklisted: on mustalla listalla
|
|
1632
1671
|
domain_included_in_password: liian samankaltainen palvelun verkko-osoitteen kanssa
|
|
1633
1672
|
email_included_in_password: liian samankaltainen sähköpostisi kanssa
|
|
1634
1673
|
fallback: ei ole hyväksytyn muotoinen
|
|
1635
1674
|
name_included_in_password: liian samankaltainen nimesi kanssa
|
|
1675
|
+
nickname_included_in_password: liian samankaltainen nimesi kanssa
|
|
1636
1676
|
not_enough_unique_characters: ei sisällä tarpeeksi yksilöllisiä merkkejä
|
|
1637
1677
|
password_not_allowed: ei ole sallittu
|
|
1638
1678
|
password_too_common: liian yleinen
|
|
@@ -1667,6 +1707,8 @@ fi:
|
|
|
1667
1707
|
day_of_week: "%a"
|
|
1668
1708
|
day_of_week_long: "%a %e."
|
|
1669
1709
|
day_of_year: "%d.%m.%y"
|
|
1710
|
+
ddmm: "%d.%m."
|
|
1711
|
+
ddmmyyyy: "%d.%m.%Y"
|
|
1670
1712
|
decidim_day_of_year: "%B %d. %Y"
|
|
1671
1713
|
decidim_short: "%d.%m.%Y %H:%M"
|
|
1672
1714
|
default: "%a, %d. %b %Y %H:%M:%S %z"
|