decidim-decidim_awesome 0.11.2 → 0.11.4

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.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +54 -2
  4. data/app/cells/concerns/decidim/decidim_awesome/proposal_l_cell_override.rb +5 -3
  5. data/app/cells/decidim/decidim_awesome/content_blocks/map_cell.rb +0 -4
  6. data/app/cells/decidim/decidim_awesome/voting/proposal_metadata_cell.rb +18 -3
  7. data/app/commands/concerns/decidim/decidim_awesome/proposals/create_proposal_override.rb +2 -2
  8. data/app/commands/concerns/decidim/decidim_awesome/proposals/update_proposal_override.rb +1 -1
  9. data/app/commands/concerns/decidim/decidim_awesome/system/register_organization_override.rb +29 -0
  10. data/app/commands/concerns/decidim/decidim_awesome/system/update_organization_override.rb +35 -0
  11. data/app/commands/concerns/decidim/decidim_awesome/update_account_override.rb +30 -0
  12. data/app/commands/decidim/decidim_awesome/admin/create_scoped_style.rb +3 -2
  13. data/app/commands/decidim/decidim_awesome/admin/destroy_scoped_style.rb +6 -4
  14. data/app/controllers/concerns/decidim/decidim_awesome/check_login_authorizations.rb +60 -0
  15. data/app/controllers/concerns/decidim/decidim_awesome/needs_awesome_config.rb +0 -2
  16. data/app/controllers/concerns/decidim/decidim_awesome/proposals/memoize_extra_fields.rb +23 -0
  17. data/app/controllers/concerns/decidim/decidim_awesome/use_user_time_zone.rb +32 -0
  18. data/app/controllers/decidim/decidim_awesome/admin/admin_authorizations_controller.rb +122 -0
  19. data/app/controllers/decidim/decidim_awesome/admin/checks_controller.rb +1 -1
  20. data/app/controllers/decidim/decidim_awesome/admin/config_controller.rb +7 -1
  21. data/app/controllers/decidim/decidim_awesome/admin/constraints_controller.rb +5 -1
  22. data/app/controllers/decidim/decidim_awesome/admin/scoped_styles_controller.rb +12 -4
  23. data/app/controllers/decidim/decidim_awesome/required_authorizations_controller.rb +58 -0
  24. data/app/forms/concerns/decidim/decidim_awesome/account_form_override.rb +25 -0
  25. data/app/forms/concerns/decidim/decidim_awesome/system/organization_form_override.rb +34 -0
  26. data/app/forms/decidim/decidim_awesome/admin/config_form.rb +41 -8
  27. data/app/helpers/decidim/decidim_awesome/map_helper.rb +28 -26
  28. data/app/overrides/decidim/account/show/add_timezone_select.html.erb.deface +3 -0
  29. data/app/overrides/decidim/admin/officializations/index/add_modal.html.erb.deface +3 -0
  30. data/app/overrides/decidim/admin/officializations/index/add_td.html.erb.deface +5 -0
  31. data/app/overrides/decidim/admin/officializations/index/add_th.html.erb.deface +5 -0
  32. data/app/overrides/decidim/system/organizations/_advanced_settings/add_awesome_config.html.erb.deface +9 -0
  33. data/app/overrides/layouts/decidim/_head/add_awesome_tags.html.erb.deface +1 -1
  34. data/app/overrides/layouts/decidim/admin/_header/add_awesome_custom_styles.html.erb.deface +3 -0
  35. data/app/overrides/layouts/decidim/admin/_header/add_awesome_tags.html.erb.deface +1 -0
  36. data/app/packs/src/decidim/decidim_awesome/admin/proposal_sortings.js +0 -5
  37. data/app/packs/src/decidim/decidim_awesome/admin/verification_selects.js +21 -0
  38. data/app/packs/src/decidim/decidim_awesome/admin/verifications.js +43 -0
  39. data/app/packs/src/decidim/decidim_awesome/awesome_admin.js +1 -0
  40. data/app/packs/src/decidim/decidim_awesome/awesome_admin_global.js +1 -0
  41. data/app/packs/src/decidim/decidim_awesome/awesome_map/awesome_map.js +1 -1
  42. data/app/packs/stylesheets/decidim/decidim_awesome/admin/verifications.scss +99 -0
  43. data/app/packs/stylesheets/decidim/decidim_awesome/awesome_admin_global.scss +1 -0
  44. data/app/permissions/decidim/decidim_awesome/admin/permissions.rb +42 -11
  45. data/app/permissions/decidim/decidim_awesome/permissions.rb +7 -0
  46. data/app/presenters/decidim/decidim_awesome/admin_log/component_presenter_override.rb +3 -5
  47. data/app/presenters/decidim/decidim_awesome/admin_log/user_presenter_override.rb +46 -0
  48. data/app/views/decidim/decidim_awesome/account/_timezone_select.html.erb +3 -0
  49. data/app/views/decidim/decidim_awesome/admin/admin_authorizations/authorization.html.erb +20 -0
  50. data/app/views/decidim/decidim_awesome/admin/admin_authorizations/callout.html.erb +3 -0
  51. data/app/views/decidim/decidim_awesome/admin/admin_authorizations/conflict.html.erb +5 -0
  52. data/app/views/decidim/decidim_awesome/admin/admin_authorizations/edit.html.erb +41 -0
  53. data/app/views/decidim/decidim_awesome/admin/config/_form_scoped_admin_styles.html.erb +1 -0
  54. data/app/views/decidim/decidim_awesome/admin/config/_form_scoped_styles.html.erb +48 -0
  55. data/app/views/decidim/decidim_awesome/admin/config/_form_surveys.html.erb +8 -0
  56. data/app/views/decidim/decidim_awesome/admin/config/_form_verifications.html.erb +15 -0
  57. data/app/views/decidim/decidim_awesome/admin/constraints/no_permissions.html.erb +6 -0
  58. data/app/views/decidim/decidim_awesome/admin/officializations/_participants_td.html.erb +25 -0
  59. data/app/views/decidim/decidim_awesome/admin/officializations/_participants_th.html.erb +1 -0
  60. data/app/views/decidim/decidim_awesome/admin/officializations/_verification_modal.html.erb +9 -0
  61. data/app/views/decidim/decidim_awesome/required_authorizations/index.html.erb +66 -0
  62. data/app/views/decidim/decidim_awesome/system/organizations/_admin_allowed_authorizations.html.erb +5 -0
  63. data/app/views/layouts/decidim/decidim_awesome/_custom_styles.html.erb +1 -1
  64. data/app/views/layouts/decidim/decidim_awesome/admin/_custom_styles.html.erb +3 -0
  65. data/app/views/layouts/decidim/decidim_awesome/admin/admin_authorizations.html.erb +7 -0
  66. data/config/i18n-tasks.yml +6 -0
  67. data/config/locales/ca.yml +91 -5
  68. data/config/locales/cs.yml +86 -0
  69. data/config/locales/de.yml +131 -0
  70. data/config/locales/en.yml +115 -1
  71. data/config/locales/es.yml +89 -3
  72. data/config/locales/eu.yml +607 -26
  73. data/config/locales/fr.yml +37 -1
  74. data/config/locales/it.yml +0 -1
  75. data/config/locales/ja.yml +86 -0
  76. data/config/locales/nl.yml +0 -1
  77. data/config/locales/pt-BR.yml +0 -1
  78. data/lib/decidim/decidim_awesome/admin_engine.rb +2 -0
  79. data/lib/decidim/decidim_awesome/authorizator.rb +34 -0
  80. data/lib/decidim/decidim_awesome/awesome.rb +55 -1
  81. data/lib/decidim/decidim_awesome/awesome_helpers.rb +48 -19
  82. data/lib/decidim/decidim_awesome/checksums.yml +9 -0
  83. data/lib/decidim/decidim_awesome/engine.rb +20 -4
  84. data/lib/decidim/decidim_awesome/menu.rb +45 -9
  85. data/lib/decidim/decidim_awesome/request_memoizer.rb +16 -0
  86. data/lib/decidim/decidim_awesome/test/factories.rb +0 -4
  87. data/lib/decidim/decidim_awesome/test/initializer.rb +4 -0
  88. data/lib/decidim/decidim_awesome/test/shared_examples/config_examples.rb +1 -1
  89. data/lib/decidim/decidim_awesome/test/shared_examples/custom_styles_examples.rb +156 -0
  90. data/lib/decidim/decidim_awesome/test/shared_examples/summary_examples.rb +26 -10
  91. data/lib/decidim/decidim_awesome/version.rb +1 -1
  92. data/package.json +6 -5
  93. metadata +42 -4
  94. data/app/views/decidim/decidim_awesome/admin/config/_form_styles.html.erb +0 -30
@@ -8,6 +8,10 @@ en:
8
8
  allow_images_in_proposals: Allow images in the proposals editor
9
9
  allow_videos_in_editors: Allow videos in the HTML editor
10
10
  auto_save_forms: Auto save forms in local storage
11
+ force_authorization_after_login: Force authorization after login/registering
12
+ force_authorization_help_text: Help text for the authorization page
13
+ force_authorization_with_any_method: Allow access if any of the authorizations
14
+ is granted (by default, all are required)
11
15
  intergram_auto_no_response: A message that is sent one minute after the user
12
16
  sends its first message and no response was received
13
17
  intergram_auto_response: A message that is sent immediately after the user
@@ -24,8 +28,10 @@ en:
24
28
  instead of a text
25
29
  proposal_custom_fields: Custom fields %{id}
26
30
  proposal_private_custom_fields: Private Custom fields %{id}
31
+ scoped_admin_styles: Custom styles %{id}
27
32
  scoped_admins: Scoped admins group %{id}
28
33
  scoped_styles: Custom styles %{id}
34
+ user_timezone: Allow users to set their timezone in their profile
29
35
  validate_body_max_caps_percent: Maximum allowed percentage of capital letters
30
36
  for the body
31
37
  validate_body_max_marks_together: Maximum consecutive marks symbols allowed
@@ -55,6 +61,11 @@ en:
55
61
  target: Opens in
56
62
  url: URL
57
63
  visibility: Visibility
64
+ organization:
65
+ awesome_admins_available_authorizations: Allow admins to manually verify users
66
+ with these authorizations
67
+ user:
68
+ user_time_zone: Personal timezone
58
69
  decidim:
59
70
  admin:
60
71
  actions:
@@ -152,6 +163,10 @@ en:
152
163
  supported_last: Supported last
153
164
  za: Z-A (Reverse alphabetical)
154
165
  decidim_awesome:
166
+ account:
167
+ timezone_select:
168
+ time_zone_helper: Use your personal time zone to display dates in your local
169
+ time when you are logged in.
155
170
  admin:
156
171
  actions: Actions
157
172
  admin_accountability:
@@ -197,6 +212,34 @@ en:
197
212
  collaborator: Collaborator
198
213
  moderator: Moderator
199
214
  valuator: Valuator
215
+ admin_authorizations:
216
+ authorization:
217
+ confirm_destroy: Are you sure you want to destroy this authorization?
218
+ This might affect the user's access to the platform.
219
+ destroy: Destroy
220
+ granted_at: Granted at %{date}
221
+ metadata: Contains metadata? %{metadata}
222
+ authorization_destroyed: Authorization successfully destroyed.
223
+ authorization_not_destroyed: Authorization could not be destroyed!
224
+ authorization_transferred: 'Warning: There was verification conflict and
225
+ the verification has been transferred to %{user}'
226
+ conflict: There is a conflict with an existing authorization
227
+ conflict_help_html: "You must solve the conflict with the user %{user} before
228
+ you can authorize the user with this authorization.\n<br><br>\nA verfication
229
+ conflict happens when another user has the same data as the user you are
230
+ trying to authorize. \nYou can solve this conflict by removing the conflicting
231
+ authorization from the other user or using different data for this user.\n"
232
+ edit:
233
+ authorize: Authorize %{user} with %{name}
234
+ do_it_if_sure: Do this only if you are sure that the user has this authorization.
235
+ force_verification: Force verification with the current data
236
+ force_verification_help: Verification has failed, but you can force it
237
+ if you are sure the user has this authorization.
238
+ force_verification_reason: 'Give a reason to force the verification:'
239
+ warning: 'Warning: By forcing this authorization, you are overriding the
240
+ user''s current authorization status.'
241
+ user_authorized: "%{user} successfully authorized with %{name}"
242
+ user_not_authorized: "%{user} could not be authorized with %{name}"
200
243
  checks:
201
244
  index:
202
245
  admin_head_tags: Awesome tags included in the admin application header
@@ -274,6 +317,14 @@ en:
274
317
  drag_and_drop_supported: When uploading images, Drag & Drop is supported.
275
318
  Images will be uploaded to the server and inserted as external resources
276
319
  (it doesn't use base64 inline encoding).
320
+ force_authorization_after_login: 'If enabled, users will be redirected
321
+ to the authorization page after login or registration if some of the
322
+ specified authorizations are not granted. This is useful if you want
323
+ to force users to be verified with a specific authorization before
324
+ they can login at all (ie: to prevent spam).'
325
+ force_authorization_help_text: Add a custom text to explain why authorization
326
+ is required. Also make sure you add a contact method in case users
327
+ need help.
277
328
  intergram_about: Intergram uses Telegram messenger to handle a live
278
329
  support chat widget embedded in the bottom of the page.
279
330
  intergram_config: Invite the <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram
@@ -304,6 +355,12 @@ en:
304
355
  %{warning}
305
356
  This text can be customized with a custom translation by using the key:
306
357
  %{key}
358
+ scoped_admin_styles: Be aware that hidding things here might left the
359
+ admin unusable. Please act with caution.
360
+ scoped_admin_styles_variables: 'You can use the following CSS variables
361
+ for organization customized color:'
362
+ scoped_admin_styles_warning: "<strong>Warning</strong>: In here add
363
+ custom CSS that applies only in this admin."
307
364
  scoped_admins: Promote regular user to admins that can only administrate
308
365
  certain parts of the public web (use the restrictions editor for that).
309
366
  Note that users who already have regular admin permissions will be
@@ -312,6 +369,9 @@ en:
312
369
  of the public web (use the restrictions editor for that)
313
370
  scoped_styles_variables: 'You can use the following CSS variables for
314
371
  organization customized colors:'
372
+ user_timezone: This will a add a select box in the user profile to set
373
+ the timezone. This will be used to show dates and times in the user
374
+ local time.
315
375
  validate_body_max_caps_percent: Zero won't allow any capital letter,
316
376
  100 will force to write everything in capital letters
317
377
  validate_body_max_marks_together: 'Limit the number of question and
@@ -326,6 +386,10 @@ en:
326
386
  ''!!!'' won''t be allowed in the text'
327
387
  validate_title_min_length: Title is always mandatory and this number
328
388
  cannot be zero
389
+ verifications_html: |
390
+ Here you can make some tweaks to the verification process.<br>
391
+ <b>NOTE:</b> Be aware that changing these settings might prevent some users from accessing the platform. Use it with caution!<br><br>
392
+ Also note that these settings are applied to all users. Admins will always have access to the admin backend though.
329
393
  validators:
330
394
  body: User input validations for the "body" field
331
395
  title: User input validations for the "title" field
@@ -339,6 +403,11 @@ en:
339
403
  new: Add a new "private custom fields" box
340
404
  remove: Remove this "private custom fields" box
341
405
  sure_to_remove: Are you sure you want to destroy this private fields box?
406
+ form_scoped_admin_styles:
407
+ delete: Delete
408
+ new: Add a new "admin panel" CSS box
409
+ remove: Remove this CSS box
410
+ sure_to_remove: Are you sure you want to destroy this CSS box?
342
411
  form_scoped_admins:
343
412
  delete: Delete
344
413
  new: Add a new "Scoped Admins" group
@@ -347,7 +416,7 @@ en:
347
416
  group?
348
417
  form_scoped_styles:
349
418
  delete: Delete
350
- new: Add a new CSS box
419
+ new: Add a new "public frontend" CSS box
351
420
  remove: Remove this CSS box
352
421
  sure_to_remove: Are you sure you want to destroy this CSS box?
353
422
  none: "⛔ Never! - Deactivate any other constraint"
@@ -363,8 +432,11 @@ en:
363
432
  proposal_custom_fields: 'Proposals Custom Fields: Public fields'
364
433
  proposal_private_custom_fields: 'Proposals Custom Fields: Private fields'
365
434
  proposals: Proposals Hacks
435
+ scoped_admin_styles: 'Custom Styles: Admin panel'
436
+ scoped_styles: 'Custom Styles: Public frontend'
366
437
  styles: Custom Styles
367
438
  surveys: Surveys & Forms
439
+ verifications: Verifications / Authorization Hacks
368
440
  update:
369
441
  error: Error updating configuration! %{error}
370
442
  success: Configuration updated successfully
@@ -472,6 +544,7 @@ en:
472
544
  proposals: Proposals Hacks
473
545
  styles: Custom Styles
474
546
  surveys: Surveys & Forms
547
+ verifications: Verifications
475
548
  menu_hacks:
476
549
  create:
477
550
  error: Error creating menu item! %{error}
@@ -512,6 +585,11 @@ en:
512
585
  success: Menu item updated successfully
513
586
  url_exists: The same URL is already configured, please edit that instead
514
587
  of creating it again.
588
+ officializations:
589
+ authorizations: Authorizations
590
+ verification_modal:
591
+ authorizations_for: Authorizations for %{user}
592
+ close: Close
515
593
  proposal_custom_fields:
516
594
  menu:
517
595
  title: Public fields
@@ -520,10 +598,23 @@ en:
520
598
  private_data_last_update: This data was last updated %{time_ago} ago.
521
599
  proposal_private_custom_fields: Private fields
522
600
  remove_private_data: "👉 You might want to remove it"
601
+ scoped_admin_styles:
602
+ menu:
603
+ title: Admin panel
604
+ scoped_styles:
605
+ menu:
606
+ title: Public frontend
523
607
  admin_log:
524
608
  component:
525
609
  destroy_private_data: "%{user_name} destroyed %{count} items of private
526
610
  data for %{resource_name} in %{space_name}"
611
+ user:
612
+ admin_creates_authorization: "%{user_name} verified %{resource_name} with
613
+ %{handler_name}"
614
+ admin_destroys_authorization: "%{user_name} destroyed the verification %{handler_name}
615
+ on %{resource_name}"
616
+ admin_forces_authorization: "%{user_name} forced the verification %{handler_name}
617
+ on %{resource_name}. Reason: %{reason}"
527
618
  amendments:
528
619
  modal:
529
620
  amendment_exists: An amendment already exists
@@ -596,6 +687,29 @@ en:
596
687
  view_meeting: View meeting
597
688
  view_proposal: View proposal
598
689
  proposal_private_custom_fields_disclosure: This information won't be published
690
+ required_authorizations:
691
+ index:
692
+ cancel: I'll do this in another moment, %{link}.
693
+ granted_title: Granted verifications
694
+ logout: let me logout
695
+ missing_title: Not verified yet
696
+ resume_title: Pending verifications
697
+ resume_with_method: Resume verification with %{name}
698
+ title: Verify your identity
699
+ verify_with_all_these_options: 'Please verify yourself with all these methods
700
+ before being able to access the platform:'
701
+ verify_with_any_of_these_options: 'Please verify yourself with at least
702
+ one of these options before being able to access the platform:'
703
+ verify_with_method: Verify with %{name}
704
+ session:
705
+ authorization_is_required: In order to participate in this platform, you need
706
+ to authorize your account with a valid authorization (%{authorizations}).
707
+ system:
708
+ organizations:
709
+ admin_allowed_authoritzations_help_html: |
710
+ Admins will be able to manually verify users with these authorizations.
711
+ <br>Use this feature with caution, as it can lead to security issues.
712
+ awesome_tweaks: Decidim Awesome Tweaks
599
713
  validators:
600
714
  too_much_caps: Is using too many capital letters (over %{percent}% of the
601
715
  text)
@@ -7,6 +7,9 @@ es:
7
7
  allow_images_in_proposals: Permitir imágenes en el editor de propuestas
8
8
  allow_videos_in_editors: Permitir vídeos en el editor HTML
9
9
  auto_save_forms: Guardar automáticamente los formularios en el almacenamiento local
10
+ force_authorization_after_login: Forzar autorización después de iniciar sesión/registro
11
+ force_authorization_help_text: Texto de ayuda para la página de autorización
12
+ force_authorization_with_any_method: Permitir el acceso si se concede alguna de las autorizaciones (por defecto, todas son necesarias)
10
13
  intergram_auto_no_response: Un mensaje que se envía un minuto después de que la usuaria haya enviado su primer mensaje y no se haya recibido respuesta
11
14
  intergram_auto_response: Un mensaje que se envía inmediatamente después de que la usuaria envíe su primer mensaje
12
15
  intergram_chat_id: ID de chat
@@ -17,10 +20,12 @@ es:
17
20
  intergram_title_closed: Título del chat cerrado
18
21
  intergram_title_open: Título del chat abierto
19
22
  intergram_use_floating_button: Si está marcado, el chat cerrado siempre es un botón en lugar de un texto
20
- proposal_custom_fields: 'Campos personalizados #%{id}'
21
- proposal_private_custom_fields: 'Campos personalizados #%{id}'
23
+ proposal_custom_fields: Campos personalizados %{id}
24
+ proposal_private_custom_fields: Campos personalizados %{id}
25
+ scoped_admin_styles: Estilos personalizados %{id}
22
26
  scoped_admins: 'Grupo de administradoras acotadas #%{id}'
23
- scoped_styles: 'Estilos personalizados #%{id}'
27
+ scoped_styles: Estilos personalizados %{id}
28
+ user_timezone: Permitir a los usuarios establecer su zona horaria en su perfil
24
29
  validate_body_max_caps_percent: Porcentaje máximo permitido de letras mayúsculas para el cuerpo
25
30
  validate_body_max_marks_together: Máximo número de símbolos consecutivos permitidos en el cuerpo
26
31
  validate_body_min_length: Mínimo de caracteres requeridos para el cuerpo
@@ -46,6 +51,10 @@ es:
46
51
  target: Abrir en
47
52
  url: URL
48
53
  visibility: Visibilidad
54
+ organization:
55
+ awesome_admins_available_authorizations: Permitir a las administradoras verificar manualmente los participantes con estos verificadores
56
+ user:
57
+ user_time_zone: Zona horaria personal
49
58
  decidim:
50
59
  admin:
51
60
  actions:
@@ -132,6 +141,9 @@ es:
132
141
  supported_last: Mis soportes últimos
133
142
  za: Z-A (Alfabético inverso)
134
143
  decidim_awesome:
144
+ account:
145
+ timezone_select:
146
+ time_zone_helper: Utilice su zona horaria personal para mostrar las fechas en su hora local cuando haya iniciado sesión.
135
147
  admin:
136
148
  actions: Acciones
137
149
  admin_accountability:
@@ -170,6 +182,26 @@ es:
170
182
  collaborator: Colaborador/a
171
183
  moderator: Moderadora
172
184
  valuator: Evaluador/a
185
+ admin_authorizations:
186
+ authorization:
187
+ confirm_destroy: '¿Seguro de que desea destruir esta autorización? Esto podría afectar al acceso del participante a la plataforma.'
188
+ destroy: Eliminar
189
+ granted_at: Concedido a %{date}
190
+ metadata: '¿Contiene metadatos? %{metadata}'
191
+ authorization_destroyed: Autorización destruida con éxito.
192
+ authorization_not_destroyed: '¡No se pudo eliminar la autorización!'
193
+ authorization_transferred: 'Advertencia: Hubo un conflicto de verificación y la verificación ha sido transferida a %{user}'
194
+ conflict: Hay un conflicto con una autorización existente
195
+ conflict_help_html: "Debe resolver el conflicto con el participante %{user} antes de poder verificar al participante con esta autorización. \n<br><br> \nEl conflicto de verificación se produce cuando otro participante tiene los mismos datos que el participante que está intentando autorizar. \nPuede resolver este conflicto eliminando el conflicto de verificación del otro participante o utilizando datos diferentes para este participante.\n"
196
+ edit:
197
+ authorize: Autorizar a %{user} con %{name}
198
+ do_it_if_sure: Haga esto solo si está seguro de que el participante tiene esta autorización.
199
+ force_verification: Forzar verificación con los datos actuales
200
+ force_verification_help: La verificación ha fallado, pero puedes forzar si está seguro de que el participante tiene esta autorización.
201
+ force_verification_reason: 'Dar una razón para forzar la verificación:'
202
+ warning: 'Advertencia: Al forzar esta autorización, está forzando el estado actual de autorización del participante.'
203
+ user_authorized: "%{user} autorizado con éxito con %{name}"
204
+ user_not_authorized: "%{user} autorizado con éxito con %{name}"
173
205
  checks:
174
206
  index:
175
207
  admin_head_tags: Etiquetas Awesome incluidas en el encabezado de la aplicación de administración
@@ -230,6 +262,8 @@ es:
230
262
  allow_videos_in_editors: Esto añadirá un icono para enlazar videos en el editor HTML
231
263
  auto_save_forms: Esto usará el almacenamiento local del navegador para guardar automáticamente los datos introducidos por las usuarias en las encuestas y otros formularios mientras los rellenen. Si no se ha mandado el formulario, los datos se restaurarán en la siguiente visita con el mismo navegador. Los datos se eliminarán una vez se envíe el formulario. Si las usuarias eliminan sus datos del navegador, estos tampoco se restaurarán.
232
264
  drag_and_drop_supported: Cuando se suban imágenes, se puede hacer a través del método "arrastrar & soltar". Las imágenes se subirán en el servidor y se insertarán como recursos externos (no se utiliza codificación en línea base64).
265
+ force_authorization_after_login: 'Si está habilitado, las usuarias serán redireccionados a la página de autorización después del inicio de sesión o registro si algunas de las autorizaciones especificadas no son concedidas. Esto es útil si desea forzar a las usuarias a que se verifiquen a través de una autorización específica antes de que puedan iniciar sesión en cualquier momento (por ejemplo: para prevenir spam).'
266
+ force_authorization_help_text: Añade un texto personalizado para explicar por qué es necesaria la autorización. Asegúrate también de añadir un modo de contacto en caso de que las usuarias necesiten ayuda.
233
267
  intergram_about: Intergram utiliza el Telegram Messenger para gestionar un widget de chat de soporte incrustado en la parte inferior de la página.
234
268
  intergram_config: 'Invita a la <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram bot</a> a tu grupo o inicia un chat con ella directamente. <a href="https://github.com/idoco/intergram#embed-intergram-in-your-website-with-these-2-simple-steps">+ info</a>'
235
269
  original_editor_override: Desde la versión 0.26, es posible (sólo para administradoras) subir imágenes en los editores. Por lo tanto, las opciones de configuración para imágenes aquí sólo afecta a los editores públicos (las administradoras siempre lo tendrán activado).
@@ -242,15 +276,23 @@ es:
242
276
  %{warning}
243
277
  Este texto se puede personalizar con una traducción personalizada usando la clave:
244
278
  %{key}
279
+ scoped_admin_styles: Ten en cuenta que ocultar las cosas aquí puede dejar el administrador inutilizable. Por favor actúa con precaución.
280
+ scoped_admin_styles_variables: 'Puedes utilizar las siguientes variables CSS para los colores personalizados de la organización:'
281
+ scoped_admin_styles_warning: "<strong>Atención</strong>: Aquí se puede añadir CSS personalizado que solo aplica en este administrador."
245
282
  scoped_admins: Promueve usuarias normales a administradoras con acceso limitado a ciertas partes de la web pública (utilizar el editor de restricciones para eso). Tener en cuenta que las usuarias que ya tienen permisos regulares de administración serán ignorados.
246
283
  scoped_styles: Crea CSS personalizados que solo se apliquen en ciertas partes de la web pública (para ello, utiliza el editor de restricciones)
247
284
  scoped_styles_variables: 'Puedes utilizar las siguientes variables CSS para los colores personalizados de la organización:'
285
+ user_timezone: Esto añadirá un selector en el perfil de usuario para establecer la zona horaria. Esto se utilizará para mostrar fechas y horas en la hora local del usuario.
248
286
  validate_body_max_caps_percent: Cero no permitirá ninguna letra mayúscula, 100 forzará a escribir todo en mayúsculas
249
287
  validate_body_max_marks_together: 'Limitar el número de símbolos de preguntas y exclamaciones que se pueden escribir juntos. Es decir, si es 2, entonces ''!!!'' no estará permitido en el texto'
250
288
  validate_body_min_length: Este número puede ser cero, lo que permite que este campo no sea obligatorio
251
289
  validate_title_max_caps_percent: Cero no permitirá ninguna letra mayúscula, 100 forzará a escribir todo en mayúsculas
252
290
  validate_title_max_marks_together: 'Limitar el número de símbolos de preguntas y exclamaciones que se pueden escribir juntos. Es decir, si es 2, entonces ''!!!'' no estará permitido en el texto'
253
291
  validate_title_min_length: El título siempre es obligatorio y este número no puede ser cero
292
+ verifications_html: |
293
+ Aquí puedes realizar algunos ajustes en el proceso de verificación.<br>
294
+ <b>NOTA:</b> Ten en cuenta que cambiar estos ajustes puede impedir que algunas usuarias accedan a la plataforma. ¡Utilízalo con precaución!<br><br>
295
+ Ten en cuenta también, que estos ajustes se aplican a todas las usuarias. Las administradoras siempre tendrán acceso al tablero de administración.
254
296
  validators:
255
297
  body: Validaciones de entrada de usuario para el campo "cuerpo"
256
298
  title: Validaciones de entrada de usuario para el campo "título"
@@ -264,6 +306,11 @@ es:
264
306
  new: Añadir una nueva caja de "campos personalizados"
265
307
  remove: Eliminar esta caja de "campos personalizados"
266
308
  sure_to_remove: '¿Seguro de que quieres eliminar esta caja de campos personalizados?'
309
+ form_scoped_admin_styles:
310
+ delete: Eliminar
311
+ new: Añadir un nuevo cuadro CSS
312
+ remove: Eliminar esta caja CSS
313
+ sure_to_remove: '¿Estás segura de que quieres eliminar esta caja CSS?'
267
314
  form_scoped_admins:
268
315
  delete: Eliminar
269
316
  new: Añadir un nuevo grupo de "Administradoras acotadas"
@@ -287,8 +334,11 @@ es:
287
334
  proposal_custom_fields: 'Campos personalizados de propuestas: campos públicos'
288
335
  proposal_private_custom_fields: 'Campos personalizados de propuestas: Campos privados'
289
336
  proposals: Modificaciones a las propuestas
337
+ scoped_admin_styles: 'Estilos personalizados: Panel de administración'
338
+ scoped_styles: 'Estilos personalizados: Interficie pública'
290
339
  styles: Estilos personalizados
291
340
  surveys: Encuestas y formularios
341
+ verifications: Verificaciones / Hacks de autorización
292
342
  update:
293
343
  error: '¡Error actualizando la configuración! %{error}'
294
344
  success: Configuración actualizada correctamente
@@ -393,6 +443,7 @@ es:
393
443
  proposals: Modificaciones a las propuestas
394
444
  styles: Estilos personalizados
395
445
  surveys: Encuestas y formularios
446
+ verifications: Verificaciones
396
447
  menu_hacks:
397
448
  create:
398
449
  error: 'Error al crear nuevo ítem de menú: %{error}'
@@ -431,6 +482,11 @@ es:
431
482
  error: 'Error al actualizar el ítem de menú: %{error}'
432
483
  success: Ítem de menú actualizado correctamente
433
484
  url_exists: Esta URL ya ha sido configurada en otro ítem de menú, por favor edítalo en lugar de crear uno nuevo.
485
+ officializations:
486
+ authorizations: Autorizaciones
487
+ verification_modal:
488
+ authorizations_for: Autorizaciones para %{user}
489
+ close: Cerrar
434
490
  proposal_custom_fields:
435
491
  menu:
436
492
  title: Campos públicos
@@ -439,9 +495,19 @@ es:
439
495
  private_data_last_update: Estos datos fueron actualizados hace %{time_ago}.
440
496
  proposal_private_custom_fields: Campos privados
441
497
  remove_private_data: "👉 Es posible que quieras eliminarlo"
498
+ scoped_admin_styles:
499
+ menu:
500
+ title: Panel admin
501
+ scoped_styles:
502
+ menu:
503
+ title: Interfaz pública
442
504
  admin_log:
443
505
  component:
444
506
  destroy_private_data: "%{user_name} ha destruido %{count} elementos de datos privados para %{resource_name} en %{space_name}"
507
+ user:
508
+ admin_creates_authorization: "%{user_name} verificó %{resource_name} con %{handler_name}"
509
+ admin_destroys_authorization: "%{user_name} destruyó la verificación %{handler_name} en %{resource_name}"
510
+ admin_forces_authorization: "%{user_name} forzó la verificación %{handler_name} en %{resource_name}. Razón: %{reason}"
445
511
  amendments:
446
512
  modal:
447
513
  amendment_exists: Ya existe una enmienda
@@ -506,6 +572,26 @@ es:
506
572
  view_meeting: Ver encuentro
507
573
  view_proposal: Ver propuesta
508
574
  proposal_private_custom_fields_disclosure: Esta información no será publicada
575
+ required_authorizations:
576
+ index:
577
+ cancel: Haré esto en otro momento, %{link}.
578
+ granted_title: Verificaciones concedidas
579
+ logout: déjame cerrar la sesión
580
+ missing_title: No verificada aún
581
+ resume_title: Verificaciones pendientes
582
+ resume_with_method: Reanudar la verificación con %{name}
583
+ title: Verifica tu identidad
584
+ verify_with_all_these_options: 'Por favor, verifícate con todos estos métodos antes de poder acceder a la plataforma:'
585
+ verify_with_any_of_these_options: 'Por favor, verifícate por lo menos con uno de estos métodos antes de poder acceder a la plataforma:'
586
+ verify_with_method: Verificar con %{name}
587
+ session:
588
+ authorization_is_required: Para participar en esta plataforma, necesitas autorizar tu cuenta con una autorización válida (%{authorizations}).
589
+ system:
590
+ organizations:
591
+ admin_allowed_authoritzations_help_html: |
592
+ Las administradoras podrán verificar manualmente a los participantes con estos verificadores.
593
+ <br>Utilice esta función con precaución, ya que puede dar lugar a problemas de seguridad.
594
+ awesome_tweaks: Configuraciones para Decidim Awesome
509
595
  validators:
510
596
  too_much_caps: Contiene demasiadas letras mayúsculas (más del %{percent}% del texto)
511
597
  voting: