decidim-admin 0.26.2 → 0.27.0.rc2
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/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_controller.rb +3 -3
- 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 +3 -3
- 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/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/reminders_helper.rb +12 -0
- data/app/helpers/decidim/admin/settings_helper.rb +57 -11
- data/app/packs/entrypoints/decidim_admin.js +7 -2
- data/app/packs/src/decidim/admin/admin_autocomplete.js +86 -0
- data/app/packs/src/decidim/admin/application.js +0 -16
- data/app/packs/src/decidim/admin/choose_language.js +11 -9
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +1 -0
- 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/_forms.scss +6 -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 +2 -2
- 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/_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/resource_permissions/edit.html.erb +1 -1
- 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/ar.yml +15 -4
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +22 -4
- data/config/locales/cs.yml +24 -4
- data/config/locales/de.yml +22 -4
- data/config/locales/el.yml +1 -5
- data/config/locales/en.yml +21 -4
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +22 -4
- data/config/locales/es-PY.yml +22 -4
- data/config/locales/es.yml +22 -4
- data/config/locales/eu.yml +1 -5
- data/config/locales/fi-plain.yml +22 -4
- data/config/locales/fi.yml +22 -4
- data/config/locales/fr-CA.yml +22 -4
- data/config/locales/fr.yml +36 -18
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +16 -4
- data/config/locales/hu.yml +196 -3
- data/config/locales/id-ID.yml +1 -3
- data/config/locales/is-IS.yml +2 -4
- data/config/locales/it.yml +6 -5
- data/config/locales/ja.yml +21 -4
- data/config/locales/lb.yml +1 -5
- data/config/locales/lt.yml +994 -0
- data/config/locales/lv.yml +1 -3
- data/config/locales/nl.yml +83 -5
- data/config/locales/no.yml +27 -4
- data/config/locales/pl.yml +77 -5
- data/config/locales/pt-BR.yml +1 -5
- data/config/locales/pt.yml +1 -5
- data/config/locales/ro-RO.yml +7 -5
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +1 -3
- data/config/locales/sl.yml +1 -0
- data/config/locales/sr-CS.yml +1 -2
- data/config/locales/sv.yml +22 -3
- data/config/locales/tr-TR.yml +1 -3
- data/config/locales/uk.yml +1 -2
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/zh-CN.yml +1 -3
- 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/ar.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ar:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -153,7 +154,7 @@ ar:
|
|
153
154
|
reject: رفض
|
154
155
|
share: مشاركة
|
155
156
|
user:
|
156
|
-
new:
|
157
|
+
new: مدير جديد
|
157
158
|
verify: التحقق
|
158
159
|
admin_terms_of_use:
|
159
160
|
accept:
|
@@ -310,7 +311,7 @@ ar:
|
|
310
311
|
dashboard:
|
311
312
|
show:
|
312
313
|
view_more_logs: عرض المزيد من السجلات
|
313
|
-
welcome:
|
314
|
+
welcome: أهلا بك على اللوح الإداري.
|
314
315
|
domain_whitelist:
|
315
316
|
form:
|
316
317
|
domain_too_short: نطاق الدومين قصير جداً
|
@@ -744,8 +745,17 @@ ar:
|
|
744
745
|
create:
|
745
746
|
invalid: حدثت مشكلة أثناء قراءة ملف CSV.
|
746
747
|
new:
|
748
|
+
destroy:
|
749
|
+
button: حذف جميع المشاركين الخاصين
|
750
|
+
confirm: هل أنت متأكد من أنك تريد حذف جميع المشاركين الخاصين؟ لا يمكن التراجع عن هذا الإجراء، ولن تتمكن من استرجاعهم.
|
751
|
+
empty: ليس لديك أي مشاركين خاصين.
|
752
|
+
explanation: لديك %{count} مشاركين خاصين.
|
753
|
+
title: حذف جميع المشاركين الخاصين
|
747
754
|
title: حمّل ملف CSV الخاص بك
|
748
755
|
upload: حمّل
|
756
|
+
reminders:
|
757
|
+
new:
|
758
|
+
submit: إرسال
|
749
759
|
resource_permissions:
|
750
760
|
edit:
|
751
761
|
submit: خضع
|
@@ -790,6 +800,7 @@ ar:
|
|
790
800
|
shared:
|
791
801
|
gallery:
|
792
802
|
delete_image: احذف الصورة
|
803
|
+
edit_images: تعديل الصورة
|
793
804
|
static_page_topics:
|
794
805
|
create:
|
795
806
|
error: كانت هناك مشكلة في إنشاء موضوع جديد.
|
@@ -847,7 +858,7 @@ ar:
|
|
847
858
|
static_pages: صفحات
|
848
859
|
statistics: النشاط
|
849
860
|
user_groups: المجموعات
|
850
|
-
users:
|
861
|
+
users: المدراء
|
851
862
|
user_group:
|
852
863
|
csv_verify:
|
853
864
|
invalid: حدثت مشكلة في قراءة ملف CSV.
|
@@ -883,7 +894,7 @@ ar:
|
|
883
894
|
role: وظيفة
|
884
895
|
new:
|
885
896
|
create: دعا
|
886
|
-
title: دعوة
|
897
|
+
title: دعوة مدير جديد
|
887
898
|
users_statistics:
|
888
899
|
users_count:
|
889
900
|
admins: المدراء
|
data/config/locales/bg.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ca:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -177,7 +178,7 @@ ca:
|
|
177
178
|
reject: Rebutjar
|
178
179
|
share: Compartir
|
179
180
|
user:
|
180
|
-
new:
|
181
|
+
new: Nova administradora
|
181
182
|
verify: Verificar
|
182
183
|
admin_terms_of_use:
|
183
184
|
accept:
|
@@ -260,6 +261,8 @@ ca:
|
|
260
261
|
update:
|
261
262
|
error: S'ha produït un error en actualitzar aquest adjunt.
|
262
263
|
success: Adjunt actualitzat correctament.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Tingues cura quan treballis amb adjunts en un espai privat. Qualsevol participant pot compartir aquest document amb tercers.
|
263
266
|
autocomplete:
|
264
267
|
no_results: No s'han trobat resultats
|
265
268
|
search_prompt: Escriu com a mínim tres caràcters per cercar
|
@@ -342,7 +345,7 @@ ca:
|
|
342
345
|
dashboard:
|
343
346
|
show:
|
344
347
|
view_more_logs: Veure més registres
|
345
|
-
welcome: Benvinguda al
|
348
|
+
welcome: Benvinguda al Tauler d'Aministració.
|
346
349
|
domain_whitelist:
|
347
350
|
form:
|
348
351
|
domain_too_short: El domini és massa curt
|
@@ -835,9 +838,23 @@ ca:
|
|
835
838
|
invalid: S'ha produït un error en llegir el fitxer CSV.
|
836
839
|
success: Arxiu CSV carregat correctament, s'està enviant un missatge de correu electrònic d'invitació als participants. Pot tardar una mica.
|
837
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Esborrar totes les participants privades
|
843
|
+
confirm: Estàs segura que vols esborrar totes les participants privades? Aquesta acció no es pot desfer, no podràs recuperar-les.
|
844
|
+
empty: No hi ha participants privades.
|
845
|
+
explanation: Hi ha %{count} participant/s privada/ades.
|
846
|
+
title: Esborrar les participants privades
|
838
847
|
explanation: 'Carrega el teu arxiu CSV. Ha de tenir dues columnes amb l''adreça de correu electrònic a la primera columna i el nom a la segona (adreça electrònica, nom) dels usuaris que vulguis afegir a l''espai de participació, sense capçaleres. Evita emprar caràcter invàlids com `<>?%&^*#@()[]=+:;"{}\|` al nom d''usuari.'
|
839
848
|
title: Puja el fitxer CSV
|
840
849
|
upload: Carrega
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Hi ha hagut un problema en crear els recordatoris.
|
853
|
+
success:
|
854
|
+
one: "Es recordarà a %{count} usuària."
|
855
|
+
other: "Es recordarà a %{count} usuàries."
|
856
|
+
new:
|
857
|
+
submit: Envia
|
841
858
|
resource_permissions:
|
842
859
|
edit:
|
843
860
|
submit: Enviar
|
@@ -895,6 +912,7 @@ ca:
|
|
895
912
|
gallery:
|
896
913
|
add_images: Afegir imatges
|
897
914
|
delete_image: Esborrar la imatge
|
915
|
+
edit_images: Editar imatges
|
898
916
|
gallery_legend: Afegir una galeria d'imatges (opcional)
|
899
917
|
static_page_topics:
|
900
918
|
create:
|
@@ -955,7 +973,7 @@ ca:
|
|
955
973
|
static_pages: Pàgines
|
956
974
|
statistics: Activitat
|
957
975
|
user_groups: Grups
|
958
|
-
users:
|
976
|
+
users: Administradores
|
959
977
|
user_group:
|
960
978
|
csv_verify:
|
961
979
|
invalid: S'ha produït un error en llegir el fitxer CSV.
|
@@ -991,7 +1009,7 @@ ca:
|
|
991
1009
|
role: Rol
|
992
1010
|
new:
|
993
1011
|
create: Convidar
|
994
|
-
title: Convidar una
|
1012
|
+
title: Convidar una nova administradora
|
995
1013
|
users_statistics:
|
996
1014
|
users_count:
|
997
1015
|
admins: Administradores
|
data/config/locales/cs.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
cs:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -177,7 +178,7 @@ cs:
|
|
177
178
|
reject: Odmítnout
|
178
179
|
share: Sdílet
|
179
180
|
user:
|
180
|
-
new: Nový
|
181
|
+
new: Nový administrátor
|
181
182
|
verify: Ověřit
|
182
183
|
admin_terms_of_use:
|
183
184
|
accept:
|
@@ -260,6 +261,8 @@ cs:
|
|
260
261
|
update:
|
261
262
|
error: Při aktualizaci této přílohy došlo k chybě.
|
262
263
|
success: Příloha byla úspěšně aktualizována.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Buďte opatrní při práci s přílohami v soukromém prostoru. Každý účastník by mohl sdílet tento dokument s ostatními.
|
263
266
|
autocomplete:
|
264
267
|
no_results: Nenalezeny žádné výsledky
|
265
268
|
search_prompt: Zadejte nejméně tři znaky, které chcete vyhledat
|
@@ -342,7 +345,7 @@ cs:
|
|
342
345
|
dashboard:
|
343
346
|
show:
|
344
347
|
view_more_logs: Zobrazit další protokoly
|
345
|
-
welcome: Vítejte v
|
348
|
+
welcome: Vítejte v Admin panelu.
|
346
349
|
domain_whitelist:
|
347
350
|
form:
|
348
351
|
domain_too_short: Doména je příliš krátká
|
@@ -843,9 +846,25 @@ cs:
|
|
843
846
|
invalid: Při čtení souboru CSV došlo k chybě.
|
844
847
|
success: CSV soubor byl úspěšně nahrán, posíláme e-maily na účastníky. To může trvat nějakou dobu.
|
845
848
|
new:
|
849
|
+
destroy:
|
850
|
+
button: Odstranit všechny soukromé účastníky
|
851
|
+
confirm: Jste si jisti, že chcete odstranit všechny soukromé účastníky? Tuto akci nelze vrátit zpět, nebudete je moci obnovit.
|
852
|
+
empty: Nemáte žádné soukromé účastníky.
|
853
|
+
explanation: Máte %{count} soukromých účastníků.
|
854
|
+
title: Odstranit soukromé účastníky
|
846
855
|
explanation: 'Nahrajte soubor CSV. Musí mít dva sloupce s e-mailem v prvním sloupci souboru a jméno v posledním sloupci souboru (e-mail, jméno) uživatelů, které chcete přidat do participačního prostoru, bez záhlaví. Vyhněte se používání neplatných znaků jako `<>?%&^*#@()[]=+:;"{}\|` v uživatelském jméně.'
|
847
856
|
title: Nahrajte Váš CSV soubor
|
848
857
|
upload: Nahrát
|
858
|
+
reminders:
|
859
|
+
create:
|
860
|
+
error: Při vytváření připomenutí došlo k chybě.
|
861
|
+
success:
|
862
|
+
one: "%{count} uživatel bude upozorněn."
|
863
|
+
few: "%{count} uživatelé budou upozorněni."
|
864
|
+
many: "%{count} uživatelů bude upozorněno."
|
865
|
+
other: "%{count} uživatelů bude upozorněno."
|
866
|
+
new:
|
867
|
+
submit: Odeslat
|
849
868
|
resource_permissions:
|
850
869
|
edit:
|
851
870
|
submit: Předložit
|
@@ -903,6 +922,7 @@ cs:
|
|
903
922
|
gallery:
|
904
923
|
add_images: Přidat obrázky
|
905
924
|
delete_image: Odstranit obrázek
|
925
|
+
edit_images: Upravit obrázky
|
906
926
|
gallery_legend: Přidat galerii obrázků (volitelné)
|
907
927
|
static_page_topics:
|
908
928
|
create:
|
@@ -963,7 +983,7 @@ cs:
|
|
963
983
|
static_pages: Stránky
|
964
984
|
statistics: Aktivita
|
965
985
|
user_groups: Skupiny
|
966
|
-
users:
|
986
|
+
users: Administrátoři
|
967
987
|
user_group:
|
968
988
|
csv_verify:
|
969
989
|
invalid: Při čtení souboru CSV došlo k chybě.
|
@@ -999,7 +1019,7 @@ cs:
|
|
999
1019
|
role: Role
|
1000
1020
|
new:
|
1001
1021
|
create: Pozvat
|
1002
|
-
title: Pozvat
|
1022
|
+
title: Pozvat nového administrátora
|
1003
1023
|
users_statistics:
|
1004
1024
|
users_count:
|
1005
1025
|
admins: Administrátoři
|
data/config/locales/de.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
de:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -177,7 +178,7 @@ de:
|
|
177
178
|
reject: Ablehnen
|
178
179
|
share: Teilen
|
179
180
|
user:
|
180
|
-
new: Neuer
|
181
|
+
new: Neuer Administrator
|
181
182
|
verify: Überprüfen
|
182
183
|
admin_terms_of_use:
|
183
184
|
accept:
|
@@ -260,6 +261,8 @@ de:
|
|
260
261
|
update:
|
261
262
|
error: Beim Aktualisieren dieses Anhangs ist ein Fehler aufgetreten.
|
262
263
|
success: Anhang wurde erfolgreich aktualisiert.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Seien Sie vorsichtig, wenn Sie mit Anhängen in einem privaten Raum arbeiten. Jeder Teilnehmer kann dieses Dokument mit anderen teilen.
|
263
266
|
autocomplete:
|
264
267
|
no_results: keine Ergebnisse gefunden
|
265
268
|
search_prompt: Geben Sie mindestens drei Zeichen ein, um zu suchen
|
@@ -342,7 +345,7 @@ de:
|
|
342
345
|
dashboard:
|
343
346
|
show:
|
344
347
|
view_more_logs: Weitere Protokolle anzeigen
|
345
|
-
welcome: Willkommen
|
348
|
+
welcome: Willkommen beim Admin-Panel von Decidim.
|
346
349
|
domain_whitelist:
|
347
350
|
form:
|
348
351
|
domain_too_short: Domain zu kurz
|
@@ -835,9 +838,23 @@ de:
|
|
835
838
|
invalid: Beim Lesen der CSV-Datei ist ein Fehler aufgetreten.
|
836
839
|
success: CSV-Datei wurde erfolgreich hochgeladen, wir senden eine Einladungs-E-Mail an die Teilnehmer. Dies kann eine Weile dauern.
|
837
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Alle private Teilnehmende auswählen
|
843
|
+
confirm: Sind Sie sicher, dass Sie alle private Teilnehmende entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden. Sie werden sie nicht wiederherstellen können.
|
844
|
+
empty: Sie haben keine private Teilnehmende.
|
845
|
+
explanation: Sie haben %{count} private Teilnehmende.
|
846
|
+
title: Alle private Teilnehmende entfernen
|
838
847
|
explanation: 'Laden Sie Ihre CSV-Datei hoch. Diese muss zwei Spalten haben ohne Kopfzeile, mit E-Mail in der ersten Spalte der Datei und Namen in der letzten Spalte der Datei (E-Mail, Name) in Bezug auf die Benutzer, die Sie dem Beteiligungsbereich hinzufügen möchten. Vermeiden sie ungültige Zeichen wie `<>?%&^*#@()[]=+:;"{}\|` im Namen des Nutzers zu verwenden.'
|
839
848
|
title: CSV-Datei hochladen
|
840
849
|
upload: Hochladen
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: Beim Erstellen dieser Erinnerungen ist ein Problem aufgetreten.
|
853
|
+
success:
|
854
|
+
one: "%{count} Benutzer wird erinnert."
|
855
|
+
other: "%{count} Benutzer werden erinnert."
|
856
|
+
new:
|
857
|
+
submit: Senden
|
841
858
|
resource_permissions:
|
842
859
|
edit:
|
843
860
|
submit: einreichen
|
@@ -895,6 +912,7 @@ de:
|
|
895
912
|
gallery:
|
896
913
|
add_images: Bilder hinzufügen
|
897
914
|
delete_image: Bild löschen
|
915
|
+
edit_images: Bilder bearbeiten
|
898
916
|
gallery_legend: Bildergalerie hinzufügen (Optional)
|
899
917
|
static_page_topics:
|
900
918
|
create:
|
@@ -955,7 +973,7 @@ de:
|
|
955
973
|
static_pages: Seiten
|
956
974
|
statistics: Aktivität
|
957
975
|
user_groups: Benutzergruppen
|
958
|
-
users:
|
976
|
+
users: Administratoren
|
959
977
|
user_group:
|
960
978
|
csv_verify:
|
961
979
|
invalid: Beim Lesen der CSV-Datei ist ein Fehler aufgetreten.
|
@@ -991,7 +1009,7 @@ de:
|
|
991
1009
|
role: Rolle
|
992
1010
|
new:
|
993
1011
|
create: Einladen
|
994
|
-
title:
|
1012
|
+
title: Neuen Administrator einladen
|
995
1013
|
users_statistics:
|
996
1014
|
users_count:
|
997
1015
|
admins: Admins
|
data/config/locales/el.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
el:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -171,8 +172,6 @@ el:
|
|
171
172
|
permissions: Δικαιώματα
|
172
173
|
reject: Απόρριψη
|
173
174
|
share: Κοινοποίηση
|
174
|
-
user:
|
175
|
-
new: Νέος χρήστης
|
176
175
|
verify: Επαλήθευση
|
177
176
|
admin_terms_of_use:
|
178
177
|
accept:
|
@@ -337,7 +336,6 @@ el:
|
|
337
336
|
dashboard:
|
338
337
|
show:
|
339
338
|
view_more_logs: Προβολή περισσότερων αρχείων καταγραφής
|
340
|
-
welcome: Καλώς ορίσατε στον Πίνακα διαχειριστή Decidim.
|
341
339
|
domain_whitelist:
|
342
340
|
form:
|
343
341
|
domain_too_short: Πολύ σύντομος τομέας
|
@@ -905,7 +903,6 @@ el:
|
|
905
903
|
static_pages: Σελίδες
|
906
904
|
statistics: Δραστηριότητα
|
907
905
|
user_groups: Ομάδες
|
908
|
-
users: Συμμετέχοντες
|
909
906
|
user_group:
|
910
907
|
csv_verify:
|
911
908
|
invalid: Υπήρξε ένα πρόβλημα κατά την ανάγνωση του αρχείου CSV.
|
@@ -941,7 +938,6 @@ el:
|
|
941
938
|
role: Ρόλος
|
942
939
|
new:
|
943
940
|
create: Πρόσκληση
|
944
|
-
title: Προσκαλέστε τον συμμετέχοντα ως διαχειριστή
|
945
941
|
users_statistics:
|
946
942
|
users_count:
|
947
943
|
admins: Διαχειριστές
|
data/config/locales/en.yml
CHANGED
@@ -178,7 +178,7 @@ en:
|
|
178
178
|
reject: Reject
|
179
179
|
share: Share
|
180
180
|
user:
|
181
|
-
new: New
|
181
|
+
new: New admin
|
182
182
|
verify: Verify
|
183
183
|
admin_terms_of_use:
|
184
184
|
accept:
|
@@ -261,6 +261,8 @@ en:
|
|
261
261
|
update:
|
262
262
|
error: There was a problem updating this attachment.
|
263
263
|
success: Attachment updated successfully.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Be careful when working with attachments in a private space. Any participant could share this document to others.
|
264
266
|
autocomplete:
|
265
267
|
no_results: No results found
|
266
268
|
search_prompt: Type at least three characters to search
|
@@ -343,7 +345,7 @@ en:
|
|
343
345
|
dashboard:
|
344
346
|
show:
|
345
347
|
view_more_logs: View more logs
|
346
|
-
welcome: Welcome to the
|
348
|
+
welcome: Welcome to the Admin Panel.
|
347
349
|
domain_whitelist:
|
348
350
|
form:
|
349
351
|
domain_too_short: Domain too short
|
@@ -836,9 +838,23 @@ en:
|
|
836
838
|
invalid: There was a problem reading the CSV file.
|
837
839
|
success: CSV file uploaded successfully, we're sending an invitation email to participants. This might take a while.
|
838
840
|
new:
|
841
|
+
destroy:
|
842
|
+
button: Delete all private participants
|
843
|
+
confirm: Are you sure you want to delete all private participants? This action can't be undone, you will not be able to recover them.
|
844
|
+
empty: You have no private participants.
|
845
|
+
explanation: You have %{count} private participants.
|
846
|
+
title: Delete private participants
|
839
847
|
explanation: Upload your CSV file. It must have two columns with email in the first column of the file and name in the last column of the file (email, name) of the users that you want to add to the participatory space, without headers. Avoid using invalid chars like `<>?%&^*#@()[]=+:;"{}\|` in user name.
|
840
848
|
title: Upload your CSV file
|
841
849
|
upload: Upload
|
850
|
+
reminders:
|
851
|
+
create:
|
852
|
+
error: There was a problem creating reminders.
|
853
|
+
success:
|
854
|
+
one: "%{count} user will be reminded."
|
855
|
+
other: "%{count} users will be reminded."
|
856
|
+
new:
|
857
|
+
submit: Send
|
842
858
|
resource_permissions:
|
843
859
|
edit:
|
844
860
|
submit: Submit
|
@@ -896,6 +912,7 @@ en:
|
|
896
912
|
gallery:
|
897
913
|
add_images: Add images
|
898
914
|
delete_image: Delete Image
|
915
|
+
edit_images: Edit images
|
899
916
|
gallery_legend: Add an image gallery (Optional)
|
900
917
|
static_page_topics:
|
901
918
|
create:
|
@@ -956,7 +973,7 @@ en:
|
|
956
973
|
static_pages: Pages
|
957
974
|
statistics: Activity
|
958
975
|
user_groups: Groups
|
959
|
-
users:
|
976
|
+
users: Administrators
|
960
977
|
user_group:
|
961
978
|
csv_verify:
|
962
979
|
invalid: There was a problem reading the CSV file.
|
@@ -992,7 +1009,7 @@ en:
|
|
992
1009
|
role: Role
|
993
1010
|
new:
|
994
1011
|
create: Invite
|
995
|
-
title: Invite
|
1012
|
+
title: Invite new administrator
|
996
1013
|
users_statistics:
|
997
1014
|
users_count:
|
998
1015
|
admins: Admins
|
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-MX:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -177,7 +178,7 @@ es-MX:
|
|
177
178
|
reject: Rechazar
|
178
179
|
share: Compartir
|
179
180
|
user:
|
180
|
-
new:
|
181
|
+
new: Nueva administradora
|
181
182
|
verify: Verificar
|
182
183
|
admin_terms_of_use:
|
183
184
|
accept:
|
@@ -260,6 +261,8 @@ es-MX:
|
|
260
261
|
update:
|
261
262
|
error: Se ha producido un error al actualizar este archivo adjunto.
|
262
263
|
success: Adjunto actualizado correctamente.
|
264
|
+
attachments_privacy_warning:
|
265
|
+
message: Tenga cuidado al trabajar con archivos adjuntos en un espacio privado. Cualquier participante podría compartir este documento a otras personas.
|
263
266
|
autocomplete:
|
264
267
|
no_results: No se han encontrado resultados
|
265
268
|
search_prompt: Escriba al menos tres caracteres para buscar
|
@@ -342,7 +345,7 @@ es-MX:
|
|
342
345
|
dashboard:
|
343
346
|
show:
|
344
347
|
view_more_logs: Ver más registros
|
345
|
-
welcome:
|
348
|
+
welcome: Bienvenida al panel de administración.
|
346
349
|
domain_whitelist:
|
347
350
|
form:
|
348
351
|
domain_too_short: Dominio demasiado corto
|
@@ -835,9 +838,23 @@ es-MX:
|
|
835
838
|
invalid: Se ha producido un error al leer el archivo CSV.
|
836
839
|
success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
|
837
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
|
838
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.'
|
839
848
|
title: Sube tu archivo CSV
|
840
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
|
841
858
|
resource_permissions:
|
842
859
|
edit:
|
843
860
|
submit: Enviar
|
@@ -895,6 +912,7 @@ es-MX:
|
|
895
912
|
gallery:
|
896
913
|
add_images: Añadir imágenes
|
897
914
|
delete_image: Borrar la imagen
|
915
|
+
edit_images: Editar imagenes
|
898
916
|
gallery_legend: Añadir una galería de imágenes (opccional)
|
899
917
|
static_page_topics:
|
900
918
|
create:
|
@@ -955,7 +973,7 @@ es-MX:
|
|
955
973
|
static_pages: Páginas
|
956
974
|
statistics: Actividad
|
957
975
|
user_groups: Grupos de usuarios
|
958
|
-
users:
|
976
|
+
users: Administradoras
|
959
977
|
user_group:
|
960
978
|
csv_verify:
|
961
979
|
invalid: Se produjo un error al leer el archivo CSV.
|
@@ -991,7 +1009,7 @@ es-MX:
|
|
991
1009
|
role: Rol
|
992
1010
|
new:
|
993
1011
|
create: Invitar
|
994
|
-
title: Invitar
|
1012
|
+
title: Invitar nueva administradora
|
995
1013
|
users_statistics:
|
996
1014
|
users_count:
|
997
1015
|
admins: Administradores
|
data/config/locales/es-PY.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-PY:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -177,7 +178,7 @@ es-PY:
|
|
177
178
|
reject: Rechazar
|
178
179
|
share: Compartir
|
179
180
|
user:
|
180
|
-
new:
|
181
|
+
new: Nueva administradora
|
181
182
|
verify: Verificar
|
182
183
|
admin_terms_of_use:
|
183
184
|
accept:
|
@@ -260,6 +261,8 @@ es-PY:
|
|
260
261
|
update:
|
261
262
|
error: Se ha producido un error al actualizar este archivo adjunto.
|
262
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.
|
263
266
|
autocomplete:
|
264
267
|
no_results: No se han encontrado resultados
|
265
268
|
search_prompt: Escriba al menos tres caracteres para buscar
|
@@ -342,7 +345,7 @@ es-PY:
|
|
342
345
|
dashboard:
|
343
346
|
show:
|
344
347
|
view_more_logs: Ver más registros
|
345
|
-
welcome:
|
348
|
+
welcome: Bienvenida al panel de administración.
|
346
349
|
domain_whitelist:
|
347
350
|
form:
|
348
351
|
domain_too_short: Dominio demasiado corto
|
@@ -835,9 +838,23 @@ es-PY:
|
|
835
838
|
invalid: Se ha producido un error al leer el archivo CSV.
|
836
839
|
success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
|
837
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
|
838
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.'
|
839
848
|
title: Sube tu archivo CSV
|
840
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
|
841
858
|
resource_permissions:
|
842
859
|
edit:
|
843
860
|
submit: Enviar
|
@@ -895,6 +912,7 @@ es-PY:
|
|
895
912
|
gallery:
|
896
913
|
add_images: Añadir imágenes
|
897
914
|
delete_image: Borrar la imagen
|
915
|
+
edit_images: Editar imagenes
|
898
916
|
gallery_legend: Añadir una galería de imágenes (opccional)
|
899
917
|
static_page_topics:
|
900
918
|
create:
|
@@ -955,7 +973,7 @@ es-PY:
|
|
955
973
|
static_pages: Páginas
|
956
974
|
statistics: Actividad
|
957
975
|
user_groups: Grupos de usuarios
|
958
|
-
users:
|
976
|
+
users: Administradoras
|
959
977
|
user_group:
|
960
978
|
csv_verify:
|
961
979
|
invalid: Se produjo un error al leer el archivo CSV.
|
@@ -991,7 +1009,7 @@ es-PY:
|
|
991
1009
|
role: Rol
|
992
1010
|
new:
|
993
1011
|
create: Invitar
|
994
|
-
title: Invitar
|
1012
|
+
title: Invitar nueva administradora
|
995
1013
|
users_statistics:
|
996
1014
|
users_count:
|
997
1015
|
admins: Administradores
|
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -177,7 +178,7 @@ es:
|
|
177
178
|
reject: Rechazar
|
178
179
|
share: Compartir
|
179
180
|
user:
|
180
|
-
new:
|
181
|
+
new: Nueva administradora
|
181
182
|
verify: Verificar
|
182
183
|
admin_terms_of_use:
|
183
184
|
accept:
|
@@ -260,6 +261,8 @@ es:
|
|
260
261
|
update:
|
261
262
|
error: Se ha producido un error al actualizar este adjunto.
|
262
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.
|
263
266
|
autocomplete:
|
264
267
|
no_results: No se han encontrado resultados
|
265
268
|
search_prompt: Escriba al menos tres caracteres para buscar
|
@@ -342,7 +345,7 @@ es:
|
|
342
345
|
dashboard:
|
343
346
|
show:
|
344
347
|
view_more_logs: Ver más registros
|
345
|
-
welcome: Bienvenida al panel de administración
|
348
|
+
welcome: Bienvenida al panel de administración.
|
346
349
|
domain_whitelist:
|
347
350
|
form:
|
348
351
|
domain_too_short: Dominio demasiado corto
|
@@ -835,9 +838,23 @@ es:
|
|
835
838
|
invalid: Se ha producido un error al leer el archivo CSV.
|
836
839
|
success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
|
837
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
|
838
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.'
|
839
848
|
title: Sube tu archivo CSV
|
840
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
|
841
858
|
resource_permissions:
|
842
859
|
edit:
|
843
860
|
submit: Enviar
|
@@ -895,6 +912,7 @@ es:
|
|
895
912
|
gallery:
|
896
913
|
add_images: Añadir imágenes
|
897
914
|
delete_image: Borrar la imagen
|
915
|
+
edit_images: Editar imagenes
|
898
916
|
gallery_legend: Añadir una galería de imágenes (opcional)
|
899
917
|
static_page_topics:
|
900
918
|
create:
|
@@ -955,7 +973,7 @@ es:
|
|
955
973
|
static_pages: Páginas
|
956
974
|
statistics: Actividad
|
957
975
|
user_groups: Grupos
|
958
|
-
users:
|
976
|
+
users: Administradoras
|
959
977
|
user_group:
|
960
978
|
csv_verify:
|
961
979
|
invalid: Se produjo un error al leer el archivo CSV.
|
@@ -991,7 +1009,7 @@ es:
|
|
991
1009
|
role: Rol
|
992
1010
|
new:
|
993
1011
|
create: Invitar
|
994
|
-
title: Invitar
|
1012
|
+
title: Invitar nueva administradora
|
995
1013
|
users_statistics:
|
996
1014
|
users_count:
|
997
1015
|
admins: Administradoras
|