decidim-admin 0.26.0 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/cells/decidim/admin/attachments_privacy_warning/show.erb +3 -0
- data/app/cells/decidim/admin/attachments_privacy_warning_cell.rb +19 -0
- data/app/commands/decidim/admin/block_user.rb +1 -1
- data/app/commands/decidim/admin/close_session_managed_user.rb +1 -1
- data/app/commands/decidim/admin/create_area.rb +1 -1
- data/app/commands/decidim/admin/create_area_type.rb +6 -3
- data/app/commands/decidim/admin/create_attachment.rb +14 -6
- data/app/commands/decidim/admin/create_attachment_collection.rb +13 -4
- data/app/commands/decidim/admin/create_category.rb +6 -4
- data/app/commands/decidim/admin/create_component.rb +1 -1
- data/app/commands/decidim/admin/create_import.rb +4 -5
- data/app/commands/decidim/admin/create_import_example.rb +1 -1
- data/app/commands/decidim/admin/create_newsletter.rb +1 -1
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/create_scope.rb +1 -1
- data/app/commands/decidim/admin/create_scope_type.rb +6 -3
- data/app/commands/decidim/admin/create_static_page.rb +1 -1
- data/app/commands/decidim/admin/create_static_page_topic.rb +1 -1
- data/app/commands/decidim/admin/deliver_newsletter.rb +6 -6
- data/app/commands/decidim/admin/destroy_area.rb +1 -1
- data/app/commands/decidim/admin/destroy_category.rb +6 -3
- data/app/commands/decidim/admin/destroy_component.rb +1 -1
- data/app/commands/decidim/admin/destroy_newsletter.rb +1 -1
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/destroy_scope.rb +1 -1
- data/app/commands/decidim/admin/destroy_share_token.rb +1 -1
- data/app/commands/decidim/admin/destroy_static_page.rb +1 -1
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +1 -1
- data/app/commands/decidim/admin/hide_resource.rb +2 -2
- data/app/commands/decidim/admin/impersonate_user.rb +1 -1
- data/app/commands/decidim/admin/invite_admin.rb +1 -1
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +7 -3
- data/app/commands/decidim/admin/process_user_group_verification_csv.rb +8 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +1 -1
- data/app/commands/decidim/admin/publish_component.rb +1 -1
- data/app/commands/decidim/admin/reject_user_group.rb +1 -1
- data/app/commands/decidim/admin/remove_admin.rb +1 -1
- data/app/commands/decidim/admin/reorder_content_blocks.rb +1 -1
- data/app/commands/decidim/admin/transfer_user.rb +1 -1
- data/app/commands/decidim/admin/unblock_user.rb +1 -1
- data/app/commands/decidim/admin/unhide_resource.rb +1 -1
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/unpublish_component.rb +1 -1
- data/app/commands/decidim/admin/unreport_resource.rb +1 -1
- data/app/commands/decidim/admin/unreport_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +1 -1
- data/app/commands/decidim/admin/update_area_type.rb +8 -3
- data/app/commands/decidim/admin/update_attachment.rb +4 -3
- data/app/commands/decidim/admin/update_attachment_collection.rb +8 -3
- data/app/commands/decidim/admin/update_category.rb +9 -5
- data/app/commands/decidim/admin/update_component.rb +8 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +9 -6
- data/app/commands/decidim/admin/update_content_block.rb +1 -1
- data/app/commands/decidim/admin/update_external_domain_whitelist.rb +6 -3
- data/app/commands/decidim/admin/update_help_sections.rb +17 -3
- data/app/commands/decidim/admin/update_newsletter.rb +1 -1
- data/app/commands/decidim/admin/update_organization.rb +1 -1
- data/app/commands/decidim/admin/update_organization_appearance.rb +1 -1
- data/app/commands/decidim/admin/update_organization_tos_version.rb +1 -1
- data/app/commands/decidim/admin/update_resource_permissions.rb +2 -2
- data/app/commands/decidim/admin/update_scope.rb +1 -1
- data/app/commands/decidim/admin/update_scope_type.rb +8 -3
- data/app/commands/decidim/admin/update_static_page.rb +1 -1
- data/app/commands/decidim/admin/update_static_page_topic.rb +1 -1
- data/app/commands/decidim/admin/update_user_groups.rb +1 -1
- data/app/commands/decidim/admin/verify_user_group.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +3 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/area_types_controller.rb +6 -3
- data/app/controllers/decidim/admin/categories_controller.rb +3 -3
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components/base_controller.rb +1 -0
- data/app/controllers/decidim/admin/components_controller.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +6 -3
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +6 -3
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +7 -0
- data/app/controllers/decidim/admin/conflicts_controller.rb +3 -1
- data/app/controllers/decidim/admin/dashboard_controller.rb +4 -3
- data/app/controllers/decidim/admin/exports_controller.rb +4 -1
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/metrics_controller.rb +2 -1
- data/app/controllers/decidim/admin/moderations_controller.rb +9 -7
- data/app/controllers/decidim/admin/organization_external_domain_whitelist_controller.rb +1 -1
- data/app/controllers/decidim/admin/reminders_controller.rb +61 -0
- data/app/controllers/decidim/admin/resource_permissions_controller.rb +2 -2
- data/app/controllers/decidim/admin/scope_types_controller.rb +6 -3
- data/app/controllers/decidim/admin/static_pages_controller.rb +1 -7
- data/app/forms/decidim/admin/category_form.rb +1 -2
- data/app/forms/decidim/admin/component_form.rb +16 -7
- data/app/forms/decidim/admin/import_example_form.rb +1 -5
- data/app/forms/decidim/admin/import_form.rb +7 -10
- data/app/forms/decidim/admin/managed_user_promotion_form.rb +1 -1
- data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +7 -4
- data/app/forms/decidim/admin/permission_form.rb +9 -8
- data/app/forms/decidim/admin/permissions_form.rb +1 -10
- data/app/forms/decidim/admin/selective_newsletter_form.rb +1 -1
- data/app/forms/decidim/admin/user_group_csv_verification_form.rb +2 -2
- data/app/helpers/decidim/admin/bulk_actions_helper.rb +0 -4
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +11 -2
- data/app/helpers/decidim/admin/newsletters_helper.rb +1 -1
- data/app/helpers/decidim/admin/reminders_helper.rb +12 -0
- data/app/packs/entrypoints/decidim_admin.js +2 -1
- data/app/packs/src/decidim/admin/admin_autocomplete.js +82 -0
- data/app/packs/src/decidim/admin/application.js +0 -16
- data/app/packs/stylesheets/decidim/admin/_decidim.scss +0 -1
- data/app/packs/stylesheets/decidim/admin/modules/_autocomplete.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/modules/_modules.scss +2 -0
- data/app/packs/stylesheets/decidim/admin/modules/_upload_modal.scss +42 -0
- data/app/permissions/decidim/admin/permissions.rb +1 -0
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +3 -1
- data/app/queries/decidim/admin/active_users_counter.rb +1 -1
- data/app/queries/decidim/admin/newsletter_recipients.rb +5 -4
- data/app/queries/decidim/admin/user_filter.rb +1 -1
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachments/index.html.erb +1 -0
- data/app/views/decidim/admin/categories/_form.html.erb +0 -4
- data/app/views/decidim/admin/categories/show.html.erb +1 -2
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +6 -6
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -4
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +20 -1
- data/app/views/decidim/admin/reminders/new.html.erb +21 -0
- data/app/views/decidim/admin/shared/_gallery.html.erb +6 -1
- data/app/views/decidim/admin/shared/_js-callout.html.erb +6 -0
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +2 -0
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +242 -28
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +28 -6
- data/config/locales/cs.yml +29 -5
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +47 -5
- data/config/locales/el.yml +1 -6
- data/config/locales/en.yml +26 -5
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +27 -5
- data/config/locales/es-PY.yml +27 -5
- data/config/locales/es.yml +28 -6
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +1 -6
- data/config/locales/fi-plain.yml +27 -5
- data/config/locales/fi.yml +27 -5
- data/config/locales/fr-CA.yml +26 -4
- data/config/locales/fr.yml +26 -4
- data/config/locales/ga-IE.yml +1 -1
- data/config/locales/gl.yml +16 -5
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +25 -4
- data/config/locales/id-ID.yml +1 -3
- data/config/locales/is-IS.yml +2 -4
- data/config/locales/it.yml +6 -6
- data/config/locales/ja.yml +38 -17
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +1 -6
- data/config/locales/lt.yml +946 -0
- data/config/locales/lv.yml +1 -3
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +1 -6
- data/config/locales/no.yml +13 -7
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +82 -5
- data/config/locales/pt-BR.yml +2 -7
- data/config/locales/pt.yml +1 -6
- data/config/locales/ro-RO.yml +7 -6
- data/config/locales/ru.yml +1 -3
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +1 -3
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -2
- data/config/locales/sv.yml +30 -8
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +1 -4
- data/config/locales/uk.yml +1 -2
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +1 -3
- data/config/locales/zh-TW.yml +1 -0
- data/lib/decidim/admin/engine.rb +0 -1
- data/lib/decidim/admin/import/importer.rb +9 -7
- data/lib/decidim/admin/import/readers/json.rb +1 -1
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +15 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +16 -6
- data/lib/decidim/admin/test/commands/destroy_category_examples.rb +29 -1
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +15 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +16 -6
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +4 -4
- data/lib/decidim/admin/test/filters_participatory_space_users_examples.rb +4 -4
- data/lib/decidim/admin/test/forms/category_form_examples.rb +1 -21
- data/lib/decidim/admin/test/manage_attachments_examples.rb +9 -2
- data/lib/decidim/admin/test/manage_categories_examples.rb +0 -10
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +0 -2
- data/lib/decidim/admin/test/manage_moderations_examples.rb +26 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +21 -15
- data/app/packs/src/decidim/admin/autocomplete.component.js +0 -146
- data/app/packs/src/decidim/admin/autocomplete.component.test.js +0 -19
- data/app/packs/stylesheets/decidim/admin/components/_autocomplete_select.component.scss +0 -19
data/config/locales/es-PY.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-PY:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -123,6 +124,10 @@ es-PY:
|
|
123
124
|
file: Expediente
|
124
125
|
errors:
|
125
126
|
models:
|
127
|
+
newsletter:
|
128
|
+
attributes:
|
129
|
+
base:
|
130
|
+
at_least_one_space: Seleccione al menos un espacio participativo
|
126
131
|
organization:
|
127
132
|
attributes:
|
128
133
|
official_img_footer:
|
@@ -173,7 +178,7 @@ es-PY:
|
|
173
178
|
reject: Rechazar
|
174
179
|
share: Compartir
|
175
180
|
user:
|
176
|
-
new:
|
181
|
+
new: Nueva administradora
|
177
182
|
verify: Verificar
|
178
183
|
admin_terms_of_use:
|
179
184
|
accept:
|
@@ -256,6 +261,8 @@ es-PY:
|
|
256
261
|
update:
|
257
262
|
error: Se ha producido un error al actualizar este archivo adjunto.
|
258
263
|
success: Adjunto actualizado correctamente.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Por favor ten cuidado al trabajar con archivos adjuntos en un espacio privado. Cualquier participante puede compartir este documento con otras.
|
259
266
|
autocomplete:
|
260
267
|
no_results: No se han encontrado resultados
|
261
268
|
search_prompt: Escriba al menos tres caracteres para buscar
|
@@ -338,7 +345,7 @@ es-PY:
|
|
338
345
|
dashboard:
|
339
346
|
show:
|
340
347
|
view_more_logs: Ver más registros
|
341
|
-
welcome:
|
348
|
+
welcome: Bienvenida al panel de administración.
|
342
349
|
domain_whitelist:
|
343
350
|
form:
|
344
351
|
domain_too_short: Dominio demasiado corto
|
@@ -831,9 +838,23 @@ es-PY:
|
|
831
838
|
invalid: Se ha producido un error al leer el archivo CSV.
|
832
839
|
success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
|
833
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Borrar todas las participantes privadas
|
843
|
+
confirm: '¿Estás segura que quieres eliminar todas las participantes privadas? Esta acción no se puede deshacer, no podrás recupararlas.'
|
844
|
+
empty: No hay participantes privadas.
|
845
|
+
explanation: Hay %{count} participante/s privada/s.
|
846
|
+
title: Borrar las participantes privadas
|
834
847
|
explanation: 'Sube tu archivo CSV. Debe tener dos columnas con correo electrónico en la primera columna del archivo y el nombre en la última columna del archivo (correo electrónico, nombre) de los usuarios que deseas añadir al espacio participativo, sin encabezados. Evitar usar caracteres no válidos como `<>?%&^*#@()[]=+:;"{}\|` en el nombre de usuario.'
|
835
848
|
title: Sube tu archivo CSV
|
836
849
|
upload: Subir
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Se ha producido un error al crear los recordatorios.
|
853
|
+
success:
|
854
|
+
one: "%{count} usuaria será recordada."
|
855
|
+
other: "%{count} usuarias serán recordadas."
|
856
|
+
new:
|
857
|
+
submit: Enviar
|
837
858
|
resource_permissions:
|
838
859
|
edit:
|
839
860
|
submit: Enviar
|
@@ -891,6 +912,7 @@ es-PY:
|
|
891
912
|
gallery:
|
892
913
|
add_images: Añadir imágenes
|
893
914
|
delete_image: Borrar la imagen
|
915
|
+
edit_images: Editar imagenes
|
894
916
|
gallery_legend: Añadir una galería de imágenes (opccional)
|
895
917
|
static_page_topics:
|
896
918
|
create:
|
@@ -951,7 +973,7 @@ es-PY:
|
|
951
973
|
static_pages: Páginas
|
952
974
|
statistics: Actividad
|
953
975
|
user_groups: Grupos de usuarios
|
954
|
-
users:
|
976
|
+
users: Administradoras
|
955
977
|
user_group:
|
956
978
|
csv_verify:
|
957
979
|
invalid: Se produjo un error al leer el archivo CSV.
|
@@ -987,7 +1009,7 @@ es-PY:
|
|
987
1009
|
role: Rol
|
988
1010
|
new:
|
989
1011
|
create: Invitar
|
990
|
-
title: Invitar
|
1012
|
+
title: Invitar nueva administradora
|
991
1013
|
users_statistics:
|
992
1014
|
users_count:
|
993
1015
|
admins: Administradores
|
@@ -1038,7 +1060,7 @@ es-PY:
|
|
1038
1060
|
hidden_at: Fecha de ocultación
|
1039
1061
|
participatory_space: Espacio participativo
|
1040
1062
|
report_count: Recuento
|
1041
|
-
reportable_id:
|
1063
|
+
reportable_id: ID
|
1042
1064
|
reportable_type: Tipo
|
1043
1065
|
reported_content_url: URL del contenido reportado
|
1044
1066
|
reports: Denuncias
|
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -123,6 +124,10 @@ es:
|
|
123
124
|
file: Archivo
|
124
125
|
errors:
|
125
126
|
models:
|
127
|
+
newsletter:
|
128
|
+
attributes:
|
129
|
+
base:
|
130
|
+
at_least_one_space: Seleccione al menos un espacio participativo
|
126
131
|
organization:
|
127
132
|
attributes:
|
128
133
|
official_img_footer:
|
@@ -173,7 +178,7 @@ es:
|
|
173
178
|
reject: Rechazar
|
174
179
|
share: Compartir
|
175
180
|
user:
|
176
|
-
new:
|
181
|
+
new: Nueva administradora
|
177
182
|
verify: Verificar
|
178
183
|
admin_terms_of_use:
|
179
184
|
accept:
|
@@ -256,6 +261,8 @@ es:
|
|
256
261
|
update:
|
257
262
|
error: Se ha producido un error al actualizar este adjunto.
|
258
263
|
success: Adjunto actualizado correctamente.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Por favor ten cuidado al trabajar con archivos adjuntos en un espacio privado. Cualquier participante puede compartir este documento con otras.
|
259
266
|
autocomplete:
|
260
267
|
no_results: No se han encontrado resultados
|
261
268
|
search_prompt: Escriba al menos tres caracteres para buscar
|
@@ -338,7 +345,7 @@ es:
|
|
338
345
|
dashboard:
|
339
346
|
show:
|
340
347
|
view_more_logs: Ver más registros
|
341
|
-
welcome: Bienvenida al panel de administración
|
348
|
+
welcome: Bienvenida al panel de administración.
|
342
349
|
domain_whitelist:
|
343
350
|
form:
|
344
351
|
domain_too_short: Dominio demasiado corto
|
@@ -501,7 +508,7 @@ es:
|
|
501
508
|
download_example_format: Ejemplo como %{name}
|
502
509
|
file_legend: Añadir un archivo de importación que será procesado.
|
503
510
|
import: Importar
|
504
|
-
notice: "%{
|
511
|
+
notice: "%{count} %{resource_name} importado correctamente"
|
505
512
|
logs:
|
506
513
|
logs_list:
|
507
514
|
no_logs_yet: Aún no hay ningún registro de actividad
|
@@ -831,9 +838,23 @@ es:
|
|
831
838
|
invalid: Se ha producido un error al leer el archivo CSV.
|
832
839
|
success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
|
833
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Borrar todas las participantes privadas
|
843
|
+
confirm: '¿Estás segura que quieres eliminar todas las participantes privadas? Esta acción no se puede deshacer, no podrás recupararlas.'
|
844
|
+
empty: No hay participantes privadas.
|
845
|
+
explanation: Hay %{count} participante/s privada/s.
|
846
|
+
title: Borrar las participantes privadas
|
834
847
|
explanation: 'Sube tu archivo CSV. Debe tener dos columnas con correo electrónico en la primera columna del archivo y el nombre en la última columna del archivo (correo electrónico, nombre) de los usuarios que deseas añadir al espacio participativo, sin encabezados. Evitar usar caracteres no válidos como `<>?%&^*#@()[]=+:;"{}\|` en el nombre de usuario.'
|
835
848
|
title: Sube tu archivo CSV
|
836
849
|
upload: Subir
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Se ha producido un error al crear los recordatorios.
|
853
|
+
success:
|
854
|
+
one: "%{count} usuaria será recordada."
|
855
|
+
other: "%{count} usuarias serán recordadas."
|
856
|
+
new:
|
857
|
+
submit: Enviar
|
837
858
|
resource_permissions:
|
838
859
|
edit:
|
839
860
|
submit: Enviar
|
@@ -891,6 +912,7 @@ es:
|
|
891
912
|
gallery:
|
892
913
|
add_images: Añadir imágenes
|
893
914
|
delete_image: Borrar la imagen
|
915
|
+
edit_images: Editar imagenes
|
894
916
|
gallery_legend: Añadir una galería de imágenes (opcional)
|
895
917
|
static_page_topics:
|
896
918
|
create:
|
@@ -951,7 +973,7 @@ es:
|
|
951
973
|
static_pages: Páginas
|
952
974
|
statistics: Actividad
|
953
975
|
user_groups: Grupos
|
954
|
-
users:
|
976
|
+
users: Administradoras
|
955
977
|
user_group:
|
956
978
|
csv_verify:
|
957
979
|
invalid: Se produjo un error al leer el archivo CSV.
|
@@ -987,7 +1009,7 @@ es:
|
|
987
1009
|
role: Rol
|
988
1010
|
new:
|
989
1011
|
create: Invitar
|
990
|
-
title: Invitar
|
1012
|
+
title: Invitar nueva administradora
|
991
1013
|
users_statistics:
|
992
1014
|
users_count:
|
993
1015
|
admins: Administradoras
|
@@ -1038,7 +1060,7 @@ es:
|
|
1038
1060
|
hidden_at: Fecha de ocultación
|
1039
1061
|
participatory_space: Espacio participativo
|
1040
1062
|
report_count: Recuento
|
1041
|
-
reportable_id:
|
1063
|
+
reportable_id: ID
|
1042
1064
|
reportable_type: Tipo
|
1043
1065
|
reported_content_url: URL del contenido reportado
|
1044
1066
|
reports: Denuncias
|
data/config/locales/et.yml
CHANGED
data/config/locales/eu.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
eu:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -172,8 +173,6 @@ eu:
|
|
172
173
|
permissions: Baimenak
|
173
174
|
reject: Ukatu
|
174
175
|
share: Partekatu
|
175
|
-
user:
|
176
|
-
new: Beste erabiltzaile bat
|
177
176
|
verify: Egiaztatu
|
178
177
|
admin_terms_of_use:
|
179
178
|
accept:
|
@@ -338,7 +337,6 @@ eu:
|
|
338
337
|
dashboard:
|
339
338
|
show:
|
340
339
|
view_more_logs: Ikusi gehiago erregistroak
|
341
|
-
welcome: Ongi etorri Decidim Admin Panelera.
|
342
340
|
domain_whitelist:
|
343
341
|
form:
|
344
342
|
domain_too_short: Domeinu laburregia
|
@@ -933,7 +931,6 @@ eu:
|
|
933
931
|
static_pages: Orriak
|
934
932
|
statistics: Jarduera
|
935
933
|
user_groups: Erabiltzaile-taldeak
|
936
|
-
users: Parte-hartzaileak
|
937
934
|
user_group:
|
938
935
|
csv_verify:
|
939
936
|
invalid: Errore bat gertatu da CSV fitxategia irakurtzean.
|
@@ -969,7 +966,6 @@ eu:
|
|
969
966
|
role: Rola
|
970
967
|
new:
|
971
968
|
create: Gonbit egin
|
972
|
-
title: Gonbit egin erabiltzaile bati administratzaile gisa
|
973
969
|
users_statistics:
|
974
970
|
users_count:
|
975
971
|
admins: Administratzaileak
|
@@ -1020,7 +1016,6 @@ eu:
|
|
1020
1016
|
hidden_at: Ezkutatze-data
|
1021
1017
|
participatory_space: Parte hartzeko esparrua
|
1022
1018
|
report_count: Zenbaketa
|
1023
|
-
reportable_id: Id
|
1024
1019
|
reportable_type: Mota
|
1025
1020
|
reported_content_url: Emandako edukiaren URLa
|
1026
1021
|
reports: Salaketak
|
data/config/locales/fi-plain.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fi-pl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -123,6 +124,10 @@ fi-pl:
|
|
123
124
|
file: Tiedosto
|
124
125
|
errors:
|
125
126
|
models:
|
127
|
+
newsletter:
|
128
|
+
attributes:
|
129
|
+
base:
|
130
|
+
at_least_one_space: Valitse vähintään yksi osallistumistila
|
126
131
|
organization:
|
127
132
|
attributes:
|
128
133
|
official_img_footer:
|
@@ -173,7 +178,7 @@ fi-pl:
|
|
173
178
|
reject: Hylkää
|
174
179
|
share: Jaa
|
175
180
|
user:
|
176
|
-
new: Uusi
|
181
|
+
new: Uusi hallintakäyttäjä
|
177
182
|
verify: Vahvista
|
178
183
|
admin_terms_of_use:
|
179
184
|
accept:
|
@@ -256,6 +261,8 @@ fi-pl:
|
|
256
261
|
update:
|
257
262
|
error: Tämän liitteen päivityksessä tapahtui virhe.
|
258
263
|
success: Liite luotu onnistuneesti.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Ole varovainen, kun työskentelet liitetiedostojen kanssa yksityisessä tilassa. Kuka tahansa osallistuja voi jakaa tämän asiakirjan muille.
|
259
266
|
autocomplete:
|
260
267
|
no_results: Ei tuloksia
|
261
268
|
search_prompt: Kirjoita vähintään kolme merkkiä hakuun
|
@@ -338,7 +345,7 @@ fi-pl:
|
|
338
345
|
dashboard:
|
339
346
|
show:
|
340
347
|
view_more_logs: Näytä lisää lokitietoja
|
341
|
-
welcome: Tervetuloa
|
348
|
+
welcome: Tervetuloa hallintapaneeliin.
|
342
349
|
domain_whitelist:
|
343
350
|
form:
|
344
351
|
domain_too_short: Verkkotunnus on liian lyhyt
|
@@ -831,9 +838,23 @@ fi-pl:
|
|
831
838
|
invalid: CSV-tiedostossa on ongelma.
|
832
839
|
success: CSV-tiedosto ladattu onnistuneesti. Lähetämme kutsusähköpostin osallistujille. Tämä voi kestää hetken.
|
833
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Poista kaikki yksityiset osallistujat
|
843
|
+
confirm: Oletko varma, että haluat poistaa kaikki yksityiset osallistujat? Tätä toimintoa ei voi peruuttaa ja poistettuja osallistujia ei voi palauttaa.
|
844
|
+
empty: Tässä osallistumistilassa ei ole yksityisiä osallistujia.
|
845
|
+
explanation: Tässä osallistumistilassa on %{count} yksityistä osallistujaa.
|
846
|
+
title: Poista kaikki yksityiset osallistujat
|
834
847
|
explanation: 'Lataa CSV-tiedosto osallistumistilan käyttäjistä. Tiedostossa on oltava kaksi saraketta tuotaville käyttäjille ilman sarakeotsikoita: sähköpostiosoitteet ensimmäisessä ja nimi toisessa sarakkeessa (sähköposti, nimi). Vältä erikoismerkkejä nimessä, kuten `<>?%&^*#@()[]=+:;"{}\|`.'
|
835
848
|
title: Lataa CSV-tiedosto
|
836
849
|
upload: Lataa
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Muistutusten luonti epäonnistui.
|
853
|
+
success:
|
854
|
+
one: "%{count} käyttäjää muistutetaan."
|
855
|
+
other: "%{count} käyttäjää muistutetaan."
|
856
|
+
new:
|
857
|
+
submit: Lähetä
|
837
858
|
resource_permissions:
|
838
859
|
edit:
|
839
860
|
submit: Lähetä
|
@@ -891,6 +912,7 @@ fi-pl:
|
|
891
912
|
gallery:
|
892
913
|
add_images: Lisää kuvia
|
893
914
|
delete_image: Poista kuva
|
915
|
+
edit_images: Muokkaa kuvia
|
894
916
|
gallery_legend: Lisää kuvagalleria (valinnainen)
|
895
917
|
static_page_topics:
|
896
918
|
create:
|
@@ -951,7 +973,7 @@ fi-pl:
|
|
951
973
|
static_pages: Sivut
|
952
974
|
statistics: Toiminta
|
953
975
|
user_groups: Käyttäjäryhmät
|
954
|
-
users:
|
976
|
+
users: Hallintakäyttäjät
|
955
977
|
user_group:
|
956
978
|
csv_verify:
|
957
979
|
invalid: CSV-tiedoston käsittelyssä tapahtui virhe.
|
@@ -987,7 +1009,7 @@ fi-pl:
|
|
987
1009
|
role: Rooli
|
988
1010
|
new:
|
989
1011
|
create: Kutsu
|
990
|
-
title:
|
1012
|
+
title: Luo uusi hallintakäyttäjä
|
991
1013
|
users_statistics:
|
992
1014
|
users_count:
|
993
1015
|
admins: Ylläpitäjät
|
@@ -1038,7 +1060,7 @@ fi-pl:
|
|
1038
1060
|
hidden_at: Piilotuksen ajankohta
|
1039
1061
|
participatory_space: Osallistumistila
|
1040
1062
|
report_count: Määrä
|
1041
|
-
reportable_id:
|
1063
|
+
reportable_id: ID
|
1042
1064
|
reportable_type: Tyyppi
|
1043
1065
|
reported_content_url: Raportoidun sisällön URL
|
1044
1066
|
reports: Raportit
|
data/config/locales/fi.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fi:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -123,6 +124,10 @@ fi:
|
|
123
124
|
file: Tiedosto
|
124
125
|
errors:
|
125
126
|
models:
|
127
|
+
newsletter:
|
128
|
+
attributes:
|
129
|
+
base:
|
130
|
+
at_least_one_space: Valitse vähintään yksi osallistumistila
|
126
131
|
organization:
|
127
132
|
attributes:
|
128
133
|
official_img_footer:
|
@@ -173,7 +178,7 @@ fi:
|
|
173
178
|
reject: Hylkää
|
174
179
|
share: Jaa
|
175
180
|
user:
|
176
|
-
new: Uusi
|
181
|
+
new: Uusi hallintakäyttäjä
|
177
182
|
verify: Vahvista
|
178
183
|
admin_terms_of_use:
|
179
184
|
accept:
|
@@ -256,6 +261,8 @@ fi:
|
|
256
261
|
update:
|
257
262
|
error: Liitteen päivitys epäonnistui.
|
258
263
|
success: Liitteen luonti onnistui.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Ole varovainen, kun työskentelet liitetiedostojen kanssa yksityisessä tilassa. Kuka tahansa osallistuja voi jakaa tämän asiakirjan muille.
|
259
266
|
autocomplete:
|
260
267
|
no_results: Ei tuloksia
|
261
268
|
search_prompt: Kirjoita vähintään kolme merkkiä hakuun
|
@@ -338,7 +345,7 @@ fi:
|
|
338
345
|
dashboard:
|
339
346
|
show:
|
340
347
|
view_more_logs: Näytä lisää lokitietoja
|
341
|
-
welcome: Tervetuloa
|
348
|
+
welcome: Tervetuloa hallintapaneeliin.
|
342
349
|
domain_whitelist:
|
343
350
|
form:
|
344
351
|
domain_too_short: Verkkotunnus on liian lyhyt
|
@@ -831,9 +838,23 @@ fi:
|
|
831
838
|
invalid: CSV-tiedostossa on ongelma.
|
832
839
|
success: CSV-tiedosto ladattu onnistuneesti. Lähetämme kutsusähköpostin osallistujille. Tämä voi kestää hetken.
|
833
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Poista kaikki yksityiset osallistujat
|
843
|
+
confirm: Oletko varma, että haluat poistaa kaikki yksityiset osallistujat? Tätä toimintoa ei voi peruuttaa ja poistettuja osallistujia ei voi palauttaa.
|
844
|
+
empty: Tässä osallistumistilassa ei ole yksityisiä osallistujia.
|
845
|
+
explanation: Tässä osallistumistilassa on %{count} yksityistä osallistujaa.
|
846
|
+
title: Poista kaikki yksityiset osallistujat
|
834
847
|
explanation: 'Lataa CSV-tiedosto osallistumistilan käyttäjistä. Tiedostossa on oltava kaksi saraketta tuotaville käyttäjille ilman sarakeotsikoita: sähköpostiosoitteet ensimmäisessä ja nimi toisessa sarakkeessa (sähköposti, nimi). Vältä erikoismerkkejä nimessä, kuten `<>?%&^*#@()[]=+:;"{}\|`.'
|
835
848
|
title: Lataa CSV-tiedosto
|
836
849
|
upload: Lataa
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Muistutusten luonti epäonnistui.
|
853
|
+
success:
|
854
|
+
one: "%{count} käyttäjää muistutetaan."
|
855
|
+
other: "%{count} käyttäjää muistutetaan."
|
856
|
+
new:
|
857
|
+
submit: Lähetä
|
837
858
|
resource_permissions:
|
838
859
|
edit:
|
839
860
|
submit: Lähetä
|
@@ -891,6 +912,7 @@ fi:
|
|
891
912
|
gallery:
|
892
913
|
add_images: Lisää kuvia
|
893
914
|
delete_image: Poista kuva
|
915
|
+
edit_images: Muokkaa kuvia
|
894
916
|
gallery_legend: Lisää kuvagalleria (valinnainen)
|
895
917
|
static_page_topics:
|
896
918
|
create:
|
@@ -951,7 +973,7 @@ fi:
|
|
951
973
|
static_pages: Sivut
|
952
974
|
statistics: Toiminta
|
953
975
|
user_groups: Käyttäjäryhmät
|
954
|
-
users:
|
976
|
+
users: Hallintakäyttäjät
|
955
977
|
user_group:
|
956
978
|
csv_verify:
|
957
979
|
invalid: CSV-tiedoston käsittely epäonnistui.
|
@@ -987,7 +1009,7 @@ fi:
|
|
987
1009
|
role: Rooli
|
988
1010
|
new:
|
989
1011
|
create: Kutsu
|
990
|
-
title:
|
1012
|
+
title: Luo uusi hallintakäyttäjä
|
991
1013
|
users_statistics:
|
992
1014
|
users_count:
|
993
1015
|
admins: Ylläpitäjät
|
@@ -1038,7 +1060,7 @@ fi:
|
|
1038
1060
|
hidden_at: Piilotuksen ajankohta
|
1039
1061
|
participatory_space: Osallistumistila
|
1040
1062
|
report_count: Määrä
|
1041
|
-
reportable_id:
|
1063
|
+
reportable_id: ID
|
1042
1064
|
reportable_type: Tyyppi
|
1043
1065
|
reported_content_url: Raportoidun sisällön URL
|
1044
1066
|
reports: Raportit
|
data/config/locales/fr-CA.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fr-CA:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -123,6 +124,10 @@ fr-CA:
|
|
123
124
|
file: Fichier
|
124
125
|
errors:
|
125
126
|
models:
|
127
|
+
newsletter:
|
128
|
+
attributes:
|
129
|
+
base:
|
130
|
+
at_least_one_space: Sélectionnez au moins une concertation
|
126
131
|
organization:
|
127
132
|
attributes:
|
128
133
|
official_img_footer:
|
@@ -173,7 +178,7 @@ fr-CA:
|
|
173
178
|
reject: Rejeter
|
174
179
|
share: Partager
|
175
180
|
user:
|
176
|
-
new: Nouvel
|
181
|
+
new: Nouvel administrateur
|
177
182
|
verify: Vérifier
|
178
183
|
admin_terms_of_use:
|
179
184
|
accept:
|
@@ -256,6 +261,8 @@ fr-CA:
|
|
256
261
|
update:
|
257
262
|
error: Une erreur s'est produite lors de la mise à jour de ce document lié.
|
258
263
|
success: Document lié mis à jour avec succès.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Soyez prudent lorsque vous travaillez avec des pièces jointes dans un espace privé. Tout participant pourrait partager ce document à d'autres.
|
259
266
|
autocomplete:
|
260
267
|
no_results: Aucun résultat trouvé
|
261
268
|
search_prompt: Renseignez au moins trois caractères pour lancer la recherche
|
@@ -338,7 +345,7 @@ fr-CA:
|
|
338
345
|
dashboard:
|
339
346
|
show:
|
340
347
|
view_more_logs: Afficher plus
|
341
|
-
welcome: Bienvenue dans l'espace d'administration
|
348
|
+
welcome: Bienvenue dans l'espace d'administration.
|
342
349
|
domain_whitelist:
|
343
350
|
form:
|
344
351
|
domain_too_short: Le nom de domaine est trop court
|
@@ -831,9 +838,23 @@ fr-CA:
|
|
831
838
|
invalid: Il y a eu un problème de lecture du fichier CSV.
|
832
839
|
success: Fichier CSV a été transféré avec succès, nous envoyons un courriel d'invitation aux participants. Cela peut prendre un certain temps.
|
833
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Supprimer tous les utilisateurs privés
|
843
|
+
confirm: Êtes-vous sûr de vouloir supprimer tous les utilisateurs privés ? Cette action ne peut pas être annulée, vous ne pourrez pas les récupérer.
|
844
|
+
empty: Vous n'avez aucun utilisateur privé.
|
845
|
+
explanation: Vous avez %{count} utilisateurs privés.
|
846
|
+
title: Supprimer les utilisateurs privés
|
834
847
|
explanation: 'Téléchargez votre fichier CSV. Il doit avoir deux colonnes avec dans la première colonne les emails, et dans la deuxième colonne les noms (email, nom) des utilisateurs que vous souhaitez ajouter à l''espace participatif, sans en-tête. Évitez les caractères spéciaux comme `<>?%&^*#@()[]=+:;"{}\|` dans les noms des utilisateurs.'
|
835
848
|
title: Téléchargez votre fichier CSV
|
836
849
|
upload: Télécharger
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Il y a eu un problème lors de la création des rappels.
|
853
|
+
success:
|
854
|
+
one: "%{count} utilisateur recevra un rappel."
|
855
|
+
other: "%{count} utilisateurs recevront un rappel."
|
856
|
+
new:
|
857
|
+
submit: Envoyer
|
837
858
|
resource_permissions:
|
838
859
|
edit:
|
839
860
|
submit: Soumettre
|
@@ -891,6 +912,7 @@ fr-CA:
|
|
891
912
|
gallery:
|
892
913
|
add_images: Ajouter des images
|
893
914
|
delete_image: Supprimer l'image
|
915
|
+
edit_images: Modifier les images
|
894
916
|
gallery_legend: Ajouter une galerie d'images (facultatif)
|
895
917
|
static_page_topics:
|
896
918
|
create:
|
@@ -951,7 +973,7 @@ fr-CA:
|
|
951
973
|
static_pages: Pages
|
952
974
|
statistics: Activité
|
953
975
|
user_groups: Groupes d'utilisateurs
|
954
|
-
users:
|
976
|
+
users: Administrateurs
|
955
977
|
user_group:
|
956
978
|
csv_verify:
|
957
979
|
invalid: Une erreur s'est produite lors de la lecture du fichier CSV.
|
@@ -987,7 +1009,7 @@ fr-CA:
|
|
987
1009
|
role: Rôle
|
988
1010
|
new:
|
989
1011
|
create: Inviter
|
990
|
-
title: Inviter
|
1012
|
+
title: Inviter un nouvel administrateur
|
991
1013
|
users_statistics:
|
992
1014
|
users_count:
|
993
1015
|
admins: Administrateurs
|
data/config/locales/fr.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fr:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -123,6 +124,10 @@ fr:
|
|
123
124
|
file: Fichier
|
124
125
|
errors:
|
125
126
|
models:
|
127
|
+
newsletter:
|
128
|
+
attributes:
|
129
|
+
base:
|
130
|
+
at_least_one_space: Sélectionnez au moins une concertation
|
126
131
|
organization:
|
127
132
|
attributes:
|
128
133
|
official_img_footer:
|
@@ -173,7 +178,7 @@ fr:
|
|
173
178
|
reject: Rejeter
|
174
179
|
share: Partager
|
175
180
|
user:
|
176
|
-
new: Nouvel
|
181
|
+
new: Nouvel administrateur
|
177
182
|
verify: Vérifier
|
178
183
|
admin_terms_of_use:
|
179
184
|
accept:
|
@@ -256,6 +261,8 @@ fr:
|
|
256
261
|
update:
|
257
262
|
error: Une erreur s'est produite lors de la mise à jour de ce document lié.
|
258
263
|
success: Document lié mis à jour avec succès.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Soyez prudent lorsque vous travaillez avec des pièces jointes dans un espace privé. Tout participant pourrait partager ce document à d'autres.
|
259
266
|
autocomplete:
|
260
267
|
no_results: Aucun résultat trouvé
|
261
268
|
search_prompt: Renseignez au moins trois caractères pour lancer la recherche
|
@@ -338,7 +345,7 @@ fr:
|
|
338
345
|
dashboard:
|
339
346
|
show:
|
340
347
|
view_more_logs: Afficher plus
|
341
|
-
welcome: Bienvenue dans l'espace d'administration
|
348
|
+
welcome: Bienvenue dans l'espace d'administration.
|
342
349
|
domain_whitelist:
|
343
350
|
form:
|
344
351
|
domain_too_short: Le nom de domaine est trop court
|
@@ -831,9 +838,23 @@ fr:
|
|
831
838
|
invalid: Il y a eu un problème de lecture du fichier CSV.
|
832
839
|
success: Fichier CSV a été transféré avec succès, nous envoyons un courriel d'invitation aux participants. Cela peut prendre un certain temps.
|
833
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Supprimer tous les utilisateurs privés
|
843
|
+
confirm: Êtes-vous sûr de vouloir supprimer tous les utilisateurs privés ? Cette action ne peut pas être annulée, vous ne pourrez pas les récupérer.
|
844
|
+
empty: Vous n'avez aucun utilisateur privé.
|
845
|
+
explanation: Vous avez %{count} utilisateurs privés.
|
846
|
+
title: Supprimer les utilisateurs privés
|
834
847
|
explanation: 'Téléchargez votre fichier CSV. Il doit avoir deux colonnes avec dans la première colonne les emails, et dans la deuxième colonne les noms (email, nom) des utilisateurs que vous souhaitez ajouter à l''espace participatif, sans en-tête. Évitez les caractères spéciaux comme `<>?%&^*#@()[]=+:;"{}\|` dans les noms des utilisateurs.'
|
835
848
|
title: Téléchargez votre fichier CSV
|
836
849
|
upload: Télécharger
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Il y a eu un problème lors de la création des rappels.
|
853
|
+
success:
|
854
|
+
one: "%{count} utilisateur recevra un rappel."
|
855
|
+
other: "%{count} utilisateurs recevront un rappel."
|
856
|
+
new:
|
857
|
+
submit: Envoyer
|
837
858
|
resource_permissions:
|
838
859
|
edit:
|
839
860
|
submit: Soumettre
|
@@ -891,6 +912,7 @@ fr:
|
|
891
912
|
gallery:
|
892
913
|
add_images: Ajouter des images
|
893
914
|
delete_image: Supprimer l'image
|
915
|
+
edit_images: Modifier les images
|
894
916
|
gallery_legend: Ajouter une galerie d'images (facultatif)
|
895
917
|
static_page_topics:
|
896
918
|
create:
|
@@ -951,7 +973,7 @@ fr:
|
|
951
973
|
static_pages: Pages
|
952
974
|
statistics: Activité
|
953
975
|
user_groups: Groupes d'utilisateurs
|
954
|
-
users:
|
976
|
+
users: Administrateurs
|
955
977
|
user_group:
|
956
978
|
csv_verify:
|
957
979
|
invalid: Une erreur s'est produite lors de la lecture du fichier CSV.
|
@@ -987,7 +1009,7 @@ fr:
|
|
987
1009
|
role: Rôle
|
988
1010
|
new:
|
989
1011
|
create: Inviter
|
990
|
-
title: Inviter
|
1012
|
+
title: Inviter un nouvel administrateur
|
991
1013
|
users_statistics:
|
992
1014
|
users_count:
|
993
1015
|
admins: Administrateurs
|