decidim-admin 0.20.0 → 0.23.1.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.

Files changed (221) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -0
  3. data/app/assets/javascripts/decidim/admin/application.js.es6 +8 -0
  4. data/app/assets/javascripts/decidim/admin/budget_rule_toggler.component.js.es6 +52 -0
  5. data/app/assets/javascripts/decidim/admin/bundle.js +26 -32
  6. data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
  7. data/app/assets/javascripts/decidim/admin/choose_language.js +12 -0
  8. data/app/assets/javascripts/decidim/admin/dynamic_fields.component.js.es6 +24 -5
  9. data/app/assets/javascripts/decidim/admin/form.js.es6 +24 -10
  10. data/app/assets/javascripts/decidim/admin/gallery.js.es6 +5 -0
  11. data/app/assets/javascripts/decidim/admin/newsletters.js.es6 +12 -0
  12. data/app/assets/javascripts/decidim/admin/officializations.js.es6 +20 -0
  13. data/app/assets/javascripts/decidim/admin/scope_picker_enabler.component.js.es6 +14 -0
  14. data/app/assets/stylesheets/decidim/admin/_decidim.scss +2 -0
  15. data/app/assets/stylesheets/decidim/admin/_variables.scss +2 -2
  16. data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +6 -0
  17. data/app/assets/stylesheets/decidim/admin/extra/_cards.scss +11 -0
  18. data/app/assets/stylesheets/decidim/admin/extra/_newsletter-templates-gallery.scss +3 -0
  19. data/app/assets/stylesheets/decidim/admin/extra/_organization-appearance.scss +141 -0
  20. data/app/assets/stylesheets/decidim/admin/extra/_show_email.scss +31 -0
  21. data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +4 -0
  22. data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +15 -1
  23. data/app/assets/stylesheets/decidim/admin/modules/_callouts.scss +11 -0
  24. data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +13 -2
  25. data/app/assets/stylesheets/decidim/admin/modules/_filters.scss +78 -1
  26. data/app/assets/stylesheets/decidim/admin/modules/_forms.scss +16 -2
  27. data/app/assets/stylesheets/decidim/admin/modules/_import_result.scss +10 -0
  28. data/app/assets/stylesheets/decidim/admin/modules/_layout.scss +1 -1
  29. data/app/assets/stylesheets/decidim/admin/modules/_loading-spinner.scss +19 -0
  30. data/app/assets/stylesheets/decidim/admin/modules/_main-nav.scss +0 -1
  31. data/app/assets/stylesheets/decidim/admin/modules/_modules.scss +5 -1
  32. data/app/assets/stylesheets/decidim/admin/modules/_process-header.scss +0 -1
  33. data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +5 -2
  34. data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +23 -7
  35. data/app/assets/stylesheets/decidim/admin/modules/_tabs.scss +7 -0
  36. data/app/assets/stylesheets/decidim/admin/modules/_users_statistics.scss +18 -0
  37. data/app/assets/stylesheets/decidim/admin/utils/_mixins.scss +42 -0
  38. data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +4 -1
  39. data/app/cells/decidim/admin/content_block/show.erb +2 -2
  40. data/app/cells/decidim/admin/results_per_page/show.erb +16 -0
  41. data/app/cells/decidim/admin/results_per_page_cell.rb +14 -0
  42. data/app/commands/decidim/admin/create_attachment.rb +2 -2
  43. data/app/commands/decidim/admin/create_newsletter.rb +34 -9
  44. data/app/commands/decidim/admin/deliver_newsletter.rb +1 -1
  45. data/app/commands/decidim/admin/destroy_share_token.rb +46 -0
  46. data/app/commands/decidim/admin/reorder_content_blocks.rb +1 -1
  47. data/app/commands/decidim/admin/update_component.rb +27 -3
  48. data/app/commands/decidim/admin/update_content_block.rb +25 -1
  49. data/app/commands/decidim/admin/update_newsletter.rb +31 -9
  50. data/app/commands/decidim/admin/update_organization.rb +15 -1
  51. data/app/commands/decidim/admin/update_organization_appearance.rb +3 -1
  52. data/app/controllers/concerns/decidim/admin/filterable.rb +152 -0
  53. data/app/controllers/concerns/decidim/admin/officializations/filterable.rb +31 -0
  54. data/app/controllers/concerns/decidim/admin/paginable.rb +20 -0
  55. data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +8 -2
  56. data/app/controllers/decidim/admin/admin_terms_controller.rb +20 -0
  57. data/app/controllers/decidim/admin/application_controller.rb +3 -0
  58. data/app/controllers/decidim/admin/authorization_workflows_controller.rb +6 -0
  59. data/app/controllers/decidim/admin/components/base_controller.rb +5 -1
  60. data/app/controllers/decidim/admin/components_controller.rb +30 -23
  61. data/app/controllers/decidim/admin/concerns/has_private_users.rb +4 -0
  62. data/app/controllers/decidim/admin/dashboard_controller.rb +33 -1
  63. data/app/controllers/decidim/admin/metrics_controller.rb +22 -0
  64. data/app/controllers/decidim/admin/newsletter_templates_controller.rb +41 -0
  65. data/app/controllers/decidim/admin/newsletters_controller.rb +43 -4
  66. data/app/controllers/decidim/admin/officializations_controller.rb +15 -6
  67. data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -0
  68. data/app/controllers/decidim/admin/organization_controller.rb +4 -3
  69. data/app/controllers/decidim/admin/organization_homepage_content_blocks_controller.rb +2 -1
  70. data/app/controllers/decidim/admin/share_tokens_controller.rb +30 -0
  71. data/app/forms/decidim/admin/attachment_form.rb +3 -0
  72. data/app/forms/decidim/admin/component_form.rb +5 -22
  73. data/app/forms/decidim/admin/newsletter_form.rb +15 -3
  74. data/app/forms/decidim/admin/organization_appearance_form.rb +7 -4
  75. data/app/forms/decidim/admin/organization_form.rb +27 -0
  76. data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +14 -0
  77. data/app/forms/decidim/admin/participatory_space_private_user_form.rb +8 -2
  78. data/app/frontend/components/autocomplete.component.test.tsx +2 -1
  79. data/app/frontend/components/autocomplete.component.tsx +29 -0
  80. data/app/helpers/decidim/admin/admin_terms_helper.rb +47 -0
  81. data/app/helpers/decidim/admin/application_helper.rb +2 -0
  82. data/app/helpers/decidim/admin/dashboard_helper.rb +25 -0
  83. data/app/helpers/decidim/admin/filterable_helper.rb +129 -0
  84. data/app/helpers/decidim/admin/icon_link_helper.rb +1 -1
  85. data/app/helpers/decidim/admin/newsletters_helper.rb +20 -0
  86. data/app/helpers/decidim/admin/paginable/per_page_helper.rb +22 -0
  87. data/app/helpers/decidim/admin/resource_scope_helper.rb +43 -0
  88. data/app/helpers/decidim/admin/scopes_helper.rb +6 -0
  89. data/app/helpers/decidim/admin/settings_helper.rb +56 -47
  90. data/app/helpers/decidim/admin/uploader_image_dimensions_helper.rb +30 -0
  91. data/app/helpers/decidim/admin/user_roles_helper.rb +19 -0
  92. data/app/models/decidim/admin/fake_newsletter.rb +49 -0
  93. data/app/permissions/decidim/admin/permissions.rb +30 -7
  94. data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +57 -0
  95. data/app/queries/decidim/admin/active_users_counter.rb +35 -0
  96. data/app/queries/decidim/admin/newsletter_recipients.rb +20 -9
  97. data/app/views/decidim/admin/admin_terms/show.html.erb +26 -0
  98. data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
  99. data/app/views/decidim/admin/authorization_workflows/index.html.erb +1 -0
  100. data/app/views/decidim/admin/categories/index.html.erb +1 -1
  101. data/app/views/decidim/admin/components/_component.html.erb +40 -33
  102. data/app/views/decidim/admin/components/_form.html.erb +4 -0
  103. data/app/views/decidim/admin/components/_settings_fields.html.erb +2 -2
  104. data/app/views/decidim/admin/components/index.html.erb +11 -8
  105. data/app/views/decidim/admin/dashboard/show.html.erb +49 -9
  106. data/app/views/decidim/admin/exports/_dropdown.html.erb +6 -2
  107. data/app/views/decidim/admin/impersonatable_users/index.html.erb +2 -2
  108. data/app/views/decidim/admin/metrics/_metrics.html.erb +21 -0
  109. data/app/views/decidim/admin/metrics/index.html.erb +7 -0
  110. data/app/views/decidim/admin/newsletter_templates/index.html.erb +28 -0
  111. data/app/views/decidim/admin/newsletter_templates/show.html.erb +12 -0
  112. data/app/views/decidim/admin/newsletters/_form.html.erb +1 -7
  113. data/app/views/decidim/admin/newsletters/edit.html.erb +1 -1
  114. data/app/views/decidim/admin/newsletters/index.html.erb +9 -3
  115. data/app/views/decidim/admin/newsletters/new.html.erb +1 -1
  116. data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +4 -4
  117. data/app/views/decidim/admin/officializations/_show_email_modal.html.erb +31 -0
  118. data/app/views/decidim/admin/officializations/index.html.erb +9 -41
  119. data/app/views/decidim/admin/officializations/show_email.html.erb +2 -0
  120. data/app/views/decidim/admin/organization/_form.html.erb +37 -0
  121. data/app/views/decidim/admin/organization_appearance/_form.html.erb +2 -72
  122. data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +23 -0
  123. data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +38 -0
  124. data/app/views/decidim/admin/organization_appearance/form/_minimap.html.erb +46 -0
  125. data/app/views/decidim/admin/resource_permissions/_options_form.html.erb +1 -1
  126. data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +57 -0
  127. data/app/views/decidim/admin/shared/_filters.html.erb +40 -0
  128. data/app/views/decidim/admin/shared/_gallery.html.erb +21 -0
  129. data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
  130. data/app/views/decidim/admin/user_groups/index.html.erb +4 -4
  131. data/app/views/decidim/admin/users_statistics/_users_count.html.erb +39 -0
  132. data/app/views/layouts/decidim/admin/_application.html.erb +2 -1
  133. data/app/views/layouts/decidim/admin/_header.html.erb +3 -0
  134. data/app/views/layouts/decidim/admin/_title_bar.html.erb +20 -10
  135. data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
  136. data/config/locales/am-ET.yml +1 -0
  137. data/config/locales/ar.yml +57 -49
  138. data/config/locales/bg-BG.yml +16 -0
  139. data/config/locales/bg.yml +135 -0
  140. data/config/locales/ca.yml +130 -50
  141. data/config/locales/cs.yml +184 -104
  142. data/config/locales/da-DK.yml +1 -0
  143. data/config/locales/da.yml +1 -0
  144. data/config/locales/de.yml +145 -47
  145. data/config/locales/el-GR.yml +1 -0
  146. data/config/locales/el.yml +819 -0
  147. data/config/locales/en.yml +127 -48
  148. data/config/locales/eo-UY.yml +0 -1
  149. data/config/locales/eo.yml +51 -0
  150. data/config/locales/es-MX.yml +128 -48
  151. data/config/locales/es-PY.yml +128 -48
  152. data/config/locales/es.yml +128 -48
  153. data/config/locales/et-EE.yml +1 -0
  154. data/config/locales/et.yml +1 -0
  155. data/config/locales/eu.yml +21 -47
  156. data/config/locales/fi-plain.yml +128 -48
  157. data/config/locales/fi.yml +141 -61
  158. data/config/locales/fr-CA.yml +849 -0
  159. data/config/locales/fr.yml +128 -48
  160. data/config/locales/ga-IE.yml +1 -0
  161. data/config/locales/gl.yml +21 -47
  162. data/config/locales/hr-HR.yml +1 -0
  163. data/config/locales/hr.yml +1 -0
  164. data/config/locales/hu.yml +112 -59
  165. data/config/locales/id-ID.yml +21 -47
  166. data/config/locales/is-IS.yml +534 -0
  167. data/config/locales/is.yml +568 -0
  168. data/config/locales/it.yml +133 -83
  169. data/config/locales/ja-JP.yml +855 -0
  170. data/config/locales/ja.yml +849 -0
  171. data/config/locales/ko-KR.yml +1 -0
  172. data/config/locales/ko.yml +1 -0
  173. data/config/locales/lt-LT.yml +1 -0
  174. data/config/locales/lt.yml +1 -0
  175. data/config/locales/lv.yml +799 -0
  176. data/config/locales/mt-MT.yml +1 -0
  177. data/config/locales/mt.yml +1 -0
  178. data/config/locales/nl.yml +103 -48
  179. data/config/locales/no.yml +603 -32
  180. data/config/locales/om-ET.yml +1 -0
  181. data/config/locales/pl.yml +364 -238
  182. data/config/locales/pt-BR.yml +22 -48
  183. data/config/locales/pt.yml +334 -237
  184. data/config/locales/ro-RO.yml +814 -0
  185. data/config/locales/ru.yml +20 -46
  186. data/config/locales/sk-SK.yml +823 -0
  187. data/config/locales/sk.yml +806 -0
  188. data/config/locales/sl.yml +166 -0
  189. data/config/locales/so-SO.yml +1 -0
  190. data/config/locales/sr-CS.yml +590 -0
  191. data/config/locales/sv.yml +134 -55
  192. data/config/locales/ti-ER.yml +1 -0
  193. data/config/locales/tr-TR.yml +21 -47
  194. data/config/locales/uk.yml +19 -48
  195. data/config/locales/vi-VN.yml +1 -0
  196. data/config/locales/vi.yml +1 -0
  197. data/config/locales/zh-CN.yml +849 -0
  198. data/config/locales/zh-TW.yml +1 -0
  199. data/config/routes.rb +20 -3
  200. data/db/migrate/20191118112040_add_accepted_admin_terms_at_field_to_users.rb +7 -0
  201. data/lib/decidim/admin.rb +17 -0
  202. data/lib/decidim/admin/engine.rb +12 -9
  203. data/lib/decidim/admin/form_builder.rb +7 -2
  204. data/lib/decidim/admin/test.rb +2 -0
  205. data/lib/decidim/admin/test/filterable_examples.rb +129 -0
  206. data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +1 -1
  207. data/lib/decidim/admin/test/manage_component_permissions_examples.rb +15 -15
  208. data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +22 -0
  209. data/lib/decidim/admin/version.rb +1 -1
  210. data/vendor/assets/javascripts/jquery.serializejson.js +344 -0
  211. metadata +101 -31
  212. data/app/commands/decidim/admin/create_oauth_application.rb +0 -36
  213. data/app/commands/decidim/admin/destroy_oauth_application.rb +0 -39
  214. data/app/commands/decidim/admin/update_oauth_application.rb +0 -39
  215. data/app/controllers/decidim/admin/oauth_applications_controller.rb +0 -90
  216. data/app/forms/decidim/admin/oauth_application_form.rb +0 -32
  217. data/app/views/decidim/admin/oauth_applications/_form.html.erb +0 -19
  218. data/app/views/decidim/admin/oauth_applications/edit.html.erb +0 -13
  219. data/app/views/decidim/admin/oauth_applications/index.html.erb +0 -40
  220. data/app/views/decidim/admin/oauth_applications/new.html.erb +0 -13
  221. data/app/views/decidim/admin/oauth_applications/show.html.erb +0 -27
@@ -14,7 +14,7 @@ en:
14
14
  attachment_collection_id: Folder
15
15
  description: Description
16
16
  file: File
17
- title: Title
17
+ title: Attachment or image name
18
18
  attachment_collection:
19
19
  description: Description
20
20
  name: Name
@@ -30,16 +30,11 @@ en:
30
30
  newsletter:
31
31
  body: Body
32
32
  subject: Subject
33
- oauth_application:
34
- name: Name
35
- organization_logo: Organization logo (square)
36
- organization_name: Organization name
37
- organization_url: Organization URL
38
- redirect_uri: Redirect URI
39
33
  organization:
40
34
  address: SMTP hostname
41
35
  alert_color: Alert
42
36
  badges_enabled: Enable badges
37
+ comments_max_length: Comments max length (Leave 0 for default value)
43
38
  cta_button_path: Call To Action button path
44
39
  cta_button_text: Call To Action button text
45
40
  customize_welcome_notification: Customize welcome notification
@@ -51,6 +46,8 @@ en:
51
46
  from: From email address
52
47
  github_handler: GitHub handler
53
48
  header_snippets: Header snippets
49
+ highlight_alternative_color: Highlight, alternative
50
+ highlight_color: Highlight
54
51
  highlighted_content_banner_action_subtitle: Action button subtitle
55
52
  highlighted_content_banner_action_title: Action button title
56
53
  highlighted_content_banner_action_url: Action button URL
@@ -60,6 +57,9 @@ en:
60
57
  highlighted_content_banner_title: Title
61
58
  instagram_handler: Instagram handler
62
59
  logo: Logo
60
+ machine_translation_display_priority: Machine translation display priority
61
+ machine_translation_display_priority_original: Original text first
62
+ machine_translation_display_priority_translation: Translated text first
63
63
  name: Name
64
64
  official_img_footer: Official logo footer
65
65
  official_img_header: Official logo header
@@ -71,10 +71,12 @@ en:
71
71
  port: Port
72
72
  primary_color: Primary
73
73
  reference_prefix: Reference prefix
74
+ rich_text_editor_in_public_views: Enable rich text editor for participants
74
75
  secondary_color: Secondary
75
76
  send_welcome_notification: Send welcome notification
76
77
  show_statistics: Show statistics
77
78
  success_color: Success
79
+ time_zone: Time Zone
78
80
  tos_version: Terms of service version
79
81
  twitter_handler: Twitter handler
80
82
  user_groups_enabled: Enable groups
@@ -111,10 +113,6 @@ en:
111
113
  file: File
112
114
  errors:
113
115
  models:
114
- oauth_application:
115
- attributes:
116
- redirect_uri:
117
- must_be_ssl: The redirect URI must be a SSL URI
118
116
  organization:
119
117
  attributes:
120
118
  official_img_footer:
@@ -143,9 +141,25 @@ en:
143
141
  export: Export
144
142
  manage: Manage
145
143
  new: New %{name}
144
+ per_page: Per page
146
145
  permissions: Permissions
147
146
  reject: Reject
147
+ share: Share
148
148
  verify: Verify
149
+ admin_terms_of_use:
150
+ accept:
151
+ error: There's been an error while accepting the admin terms of use.
152
+ success: Great! You've accepted the admin terms of use.
153
+ actions:
154
+ accept: I agree this admin terms
155
+ are_you_sure: Are you sure to refuse the admin terms?
156
+ refuse: Refuse the admin terms
157
+ title: Agree to the terms and conditions of use
158
+ required_review:
159
+ alert: 'Required: Review our admin terms of use'
160
+ callout: Please take a moment to review Admin Terms of Use. Otherwise you won't be able to admin the platform.
161
+ cta: Review them now.
162
+ title: Admin Terms of Use
149
163
  area_types:
150
164
  create:
151
165
  error: There was a problem creating a new area type.
@@ -258,6 +272,7 @@ en:
258
272
  headers:
259
273
  actions: Actions
260
274
  name: Component name
275
+ scope: Component scope
261
276
  type: Component type
262
277
  new:
263
278
  add: Add component
@@ -276,7 +291,39 @@ en:
276
291
  welcome: Welcome to the Decidim Admin Panel.
277
292
  exports:
278
293
  export_as: "%{name} as %{export_format}"
294
+ formats:
295
+ CSV: CSV
296
+ Excel: Excel
297
+ FormPDF: PDF
298
+ JSON: JSON
279
299
  notice: Your export is currently in progress. You'll receive an email when it's complete.
300
+ filters:
301
+ category_id_eq:
302
+ label: Category
303
+ filter_label: Filter
304
+ officialized_at_null:
305
+ label: State
306
+ values:
307
+ 'false': Officialized
308
+ 'true': Not officialized
309
+ private_space_eq:
310
+ label: Private
311
+ values:
312
+ 'false': Public
313
+ 'true': Private
314
+ published_at_null:
315
+ label: Published
316
+ values:
317
+ 'false': Published
318
+ 'true': Unpublished
319
+ scope_id_eq:
320
+ label: Scope
321
+ search_label: Search
322
+ search_placeholder:
323
+ name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname.
324
+ title_cont: Search %{collection} by title.
325
+ state_eq:
326
+ label: State
280
327
  help_sections:
281
328
  error: There was a problem updating the help sections
282
329
  form:
@@ -339,7 +386,6 @@ en:
339
386
  homepage: Homepage
340
387
  impersonations: Impersonations
341
388
  newsletters: Newsletters
342
- oauth_applications: OAuth applications
343
389
  participants: Participants
344
390
  scope_types: Scope types
345
391
  scopes: Scopes
@@ -347,6 +393,9 @@ en:
347
393
  static_pages: Pages
348
394
  user_groups: Groups
349
395
  users: Participants
396
+ metrics:
397
+ metrics:
398
+ see_more_metrics: See more metrics
350
399
  models:
351
400
  area:
352
401
  fields:
@@ -383,11 +432,6 @@ en:
383
432
  sent_to: Sent to
384
433
  subject: Subject
385
434
  name: Newsletter
386
- oauth_application:
387
- fields:
388
- created_at: Created at
389
- name: Name
390
- name: OAuth application
391
435
  participatory_space_private_user:
392
436
  name: Participatory space private participant
393
437
  scope:
@@ -398,6 +442,14 @@ en:
398
442
  fields:
399
443
  name: Name
400
444
  plural: Plural
445
+ share_token:
446
+ fields:
447
+ created_at: Created at
448
+ expires_at: Expires at
449
+ last_used_at: Last time used
450
+ times_used: Times used
451
+ token: Token
452
+ user: Created by
401
453
  static_page:
402
454
  fields:
403
455
  created_at: Created at
@@ -430,6 +482,14 @@ en:
430
482
  does_not_belong: Does not belong
431
483
  offensive: Offensive
432
484
  spam: Spam
485
+ newsletter_templates:
486
+ index:
487
+ preview_template: Preview
488
+ title: Newsletter templates
489
+ use_template: Use this template
490
+ show:
491
+ preview: 'Preview template: %{template_name}'
492
+ use_template: Use this template
433
493
  newsletters:
434
494
  create:
435
495
  error: There was a problem creating this newsletter.
@@ -443,8 +503,6 @@ en:
443
503
  edit:
444
504
  save_and_preview: Save and preview
445
505
  title: Edit newsletter
446
- form:
447
- interpolations_hint: 'Hint: You can use "%{name}" anywhere in the body or subject and it will be replaced by the recipient''s name.'
448
506
  index:
449
507
  all: all
450
508
  all_users: 'All users '
@@ -456,6 +514,7 @@ en:
456
514
  not_sent: Not sent
457
515
  participants: 'participants '
458
516
  segmented_to: 'Segmented to %{subject}: '
517
+ subscribed_count: 'Subscribed:'
459
518
  title: Newsletters
460
519
  new:
461
520
  save: Save
@@ -468,6 +527,7 @@ en:
468
527
  followers_help: Sends newsletter to all confirmed users that follow any selected participatory spaces in the list.
469
528
  none: None
470
529
  participants_help: Sends newsletter to all confirmed users that have participated in any of the selected participatory spaces in the list.
530
+ recipients_count: This newsletter will be send to <strong id='recipients_count'>%{count}</strong> users.
471
531
  scopes_help: Sends newsletter to users that have any of the selected scope activated in their account's "My Interests" settings.
472
532
  select_scopes: Filter for users having activated any selected scope in their account's My Interests settings.
473
533
  select_spaces: Select spaces to segment the newsletter
@@ -486,25 +546,6 @@ en:
486
546
  update:
487
547
  error: There was a problem updating this newsletter.
488
548
  success: Newsletter updated successfully. Please review it before sending.
489
- oauth_applications:
490
- create:
491
- error: There was a problem creating this application.
492
- success: Application created successfully.
493
- destroy:
494
- error: There was a problem destroying this application.
495
- success: Application destroyed successfully.
496
- edit:
497
- save: Save
498
- title: Edit application
499
- index:
500
- confirm_delete: Are you sure you want to delete this application?
501
- title: OAuth applications
502
- new:
503
- save: Save
504
- title: New application
505
- update:
506
- error: There was a problem updating this application.
507
- success: Application updated successfully.
508
549
  officializations:
509
550
  create:
510
551
  success: Participant successfully officialized
@@ -514,24 +555,27 @@ en:
514
555
  actions: Actions
515
556
  badge: Badge
516
557
  created_at: Created At
517
- filter:
518
- all: All
519
- not_officialized: Not officialized
520
- officialized: Officialized
521
- filter_by: Filter by
522
558
  name: Name
523
559
  nickname: Nickname
524
560
  not_officialized: Not officialized
525
561
  officialize: Officialize
526
562
  officialized: Officialized
527
563
  reofficialize: Reofficialize
528
- search: Search
564
+ show_email: Show email address
529
565
  status: Status
530
566
  unofficialize: Unofficialize
531
567
  new:
532
568
  badge: Officialization badge
533
569
  officialize: Officialize
534
570
  title: Officialize participant "%{name}"
571
+ show_email_modal:
572
+ close_modal: Close modal
573
+ description: If you need to contact a participant directly you can click on the Show button to see the email address. This action will be logged.
574
+ email_address: Email address
575
+ full_name: Full name
576
+ hidden: hidden
577
+ show: Show
578
+ title: Show participant email address
535
579
  organization:
536
580
  edit:
537
581
  title: Edit organization
@@ -540,6 +584,7 @@ en:
540
584
  facebook: Facebook
541
585
  github: GitHub
542
586
  instagram: Instagram
587
+ rich_text_editor_in_public_views_help: In some text areas, participants will be able to insert some HTML tags by using the rich text editor.
543
588
  social_handlers: Social
544
589
  twitter: Twitter
545
590
  url: Url
@@ -551,13 +596,16 @@ en:
551
596
  edit:
552
597
  update: Update
553
598
  form:
554
- colors_title: Organization colors
599
+ colors:
600
+ colors_title: Organization colors
601
+ header_snippets_help: Use this field to add things to the HTML head. The most common use is to integrate third-party services that require some extra JavaScript or CSS. Also, you can use it to add extra meta tags to the HTML. Note that this will only be rendered in public pages, not in the admin section.
555
602
  cta_button_path_help: 'You can overwrite where the Call To Action button in the homepage links to. Use partial paths, not full URLs here. Accepts letters, numbers, dashes and slashes, and must start with a letter. The Call To Action button is shown in the homepage between the welcome text and the description. Example: %{url}'
556
603
  cta_button_text_help: You can overwrite the Call To Action button text in the homepage for each available language in your organization. If not set, the default value will be used. The Call To Action button is shown in the homepage between the welcome text and the description.
557
- header_snippets_help: Use this field to add things to the HTML head. The most common use is to integrate third-party services that require some extra JavaScript or CSS. Also, you can use it to add extra meta tags to the HTML. Note that this will only be rendered in public pages, not in the admin section.
558
604
  homepage_appearance_title: Edit homepage appearance
559
605
  homepage_highlighted_content_banner_title: Highligted content banner
560
- layout_appearance_title: Edit layout appearance
606
+ images:
607
+ layout_appearance_title: Edit layout appearance
608
+ preview: Preview
561
609
  omnipresent_banner_appearance_title: Edit omnipresent banner
562
610
  organization_homepage:
563
611
  edit:
@@ -584,7 +632,7 @@ en:
584
632
  invalid: There was a problem reading the CSV file.
585
633
  success: CSV file uploaded successfully, we're sending an invitation email to participants. This might take a while.
586
634
  new:
587
- 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.
635
+ 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.
588
636
  title: Upload your CSV file
589
637
  upload: Upload
590
638
  resource_permissions:
@@ -593,6 +641,10 @@ en:
593
641
  title: Edit permissions
594
642
  update:
595
643
  success: Permissions updated successfully.
644
+ resources:
645
+ index:
646
+ headers:
647
+ scope: Scope
596
648
  scope_types:
597
649
  create:
598
650
  error: There was a problem creating a new scope type.
@@ -624,6 +676,23 @@ en:
624
676
  update:
625
677
  error: There was a problem updating this scope.
626
678
  success: Scope updated successfully
679
+ share_tokens:
680
+ actions:
681
+ confirm_destroy: Are you sure you want to delete this token?
682
+ destroy: Delete
683
+ share: Share
684
+ destroy:
685
+ error: There was a problem destroying the token.
686
+ success: Token destroyed successfully.
687
+ share_tokens:
688
+ empty: There are no active tokens
689
+ help: These tokens are used to publicly share this unpublished resource to any user. They will be hidden when the resource is published. Click on the token's share icon to visit the shareable URL.
690
+ title: Share tokens
691
+ shared:
692
+ gallery:
693
+ add_images: Add images
694
+ delete_image: Delete Image
695
+ gallery_legend: Add an image gallery (Optional)
627
696
  static_page_topics:
628
697
  create:
629
698
  error: There was a problem creating a new topic.
@@ -675,10 +744,12 @@ en:
675
744
  dashboard: Dashboard
676
745
  impersonatable_users: Manageable participants
677
746
  impersonations: Participants management
747
+ metrics: Metrics
678
748
  participants: Participants
679
749
  scope_types: Scope types
680
750
  scopes: Scopes
681
751
  static_pages: Pages
752
+ statistics: Activity
682
753
  user_groups: Groups
683
754
  users: Participants
684
755
  user_group:
@@ -724,6 +795,14 @@ en:
724
795
  new:
725
796
  create: Invite
726
797
  title: Invite participant as administrator
798
+ users_statistics:
799
+ users_count:
800
+ admins: Admins
801
+ last_day: Last day
802
+ last_month: Last month
803
+ last_week: Last week
804
+ no_users_count_statistics_yet: There are no users count statistics yet
805
+ participants: Participants
727
806
  view_public_page: View public page
728
807
  forms:
729
808
  errors:
@@ -13,7 +13,6 @@ eo:
13
13
  attachment_collection_id: Dosierujo
14
14
  description: Priskribo
15
15
  file: Dosiero
16
- title: Titolo
17
16
  attachment_collection:
18
17
  description: Priskribo
19
18
  name: Nomo
@@ -0,0 +1,51 @@
1
+ eo:
2
+ activemodel:
3
+ attributes:
4
+ area:
5
+ area_type: Areo tipo
6
+ name: Nomo
7
+ organization: Organizo
8
+ area_type:
9
+ name: Nomo
10
+ organization: Organizo
11
+ plural: Multnombro
12
+ attachment:
13
+ attachment_collection_id: Dosierujo
14
+ description: Priskribo
15
+ file: Dosiero
16
+ attachment_collection:
17
+ description: Priskribo
18
+ name: Nomo
19
+ category:
20
+ description: Priskribo
21
+ name: Nomo
22
+ parent_id: Gepatro
23
+ component:
24
+ name: Nomo
25
+ published_at: Eldonita ĉe
26
+ weight: Pezo
27
+ id: ID
28
+ newsletter:
29
+ body: Korpo
30
+ subject: Temo
31
+ decidim:
32
+ admin:
33
+ actions:
34
+ new: Nova %{name}
35
+ managed_users:
36
+ promotions:
37
+ new:
38
+ explanation: Administritaj partoprenantoj povas esti promociitaj al normaj partoprenantoj. Ĝi signifas, ke ili estos invititaj al la sistemo kaj vi ne povos administri ilin denove. La invitita partoprenanto ricevos retpoŝton por akcepti vian inviton.
39
+ new_managed_user_promotion: Nova administrita partoprenanto-promocio
40
+ models:
41
+ impersonation_log:
42
+ fields:
43
+ ended_at: Finita je
44
+ participatory_space_private_user:
45
+ name: Privata partoprenanto
46
+ user_group:
47
+ fields:
48
+ document_number: Dokumento Nombro
49
+ newsletters:
50
+ select_recipients_to_deliver:
51
+ all_users_help: Sendu la informilon al ĉiuj konfirmitaj partoprenantoj.
@@ -13,7 +13,7 @@ es-MX:
13
13
  attachment_collection_id: Carpeta
14
14
  description: Descripción
15
15
  file: Archivo
16
- title: Título
16
+ title: Nombre del adjunto o imagen
17
17
  attachment_collection:
18
18
  description: Descripción
19
19
  name: Nombre
@@ -29,16 +29,11 @@ es-MX:
29
29
  newsletter:
30
30
  body: Cuerpo
31
31
  subject: Asunto
32
- oauth_application:
33
- name: Nombre
34
- organization_logo: Logotipo de la organización (cuadrado)
35
- organization_name: Nombre de la organización
36
- organization_url: URL de organización
37
- redirect_uri: Redirigir URI
38
32
  organization:
39
33
  address: Nombre de host SMTP
40
34
  alert_color: Alerta
41
35
  badges_enabled: Habilitar insignias
36
+ comments_max_length: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
42
37
  cta_button_path: Ruta del botón de acción principal
43
38
  cta_button_text: Texto del botón de acción principal
44
39
  customize_welcome_notification: Personalizar notificación de bienvenida
@@ -50,6 +45,8 @@ es-MX:
50
45
  from: Correo electrónico del remitente
51
46
  github_handler: Nombre en GitHub
52
47
  header_snippets: Snippets de encabezado
48
+ highlight_alternative_color: Destacado, alternativo
49
+ highlight_color: Destacar
53
50
  highlighted_content_banner_action_subtitle: Subtítulo del botón de acción
54
51
  highlighted_content_banner_action_title: Título del botón de acción
55
52
  highlighted_content_banner_action_url: URL del botón de acción
@@ -59,6 +56,9 @@ es-MX:
59
56
  highlighted_content_banner_title: Título
60
57
  instagram_handler: Nombre de Instagram
61
58
  logo: Logo
59
+ machine_translation_display_priority: Prioridad de la traducción automática
60
+ machine_translation_display_priority_original: Texto original primero
61
+ machine_translation_display_priority_translation: Texto traducido primero
62
62
  name: Nombre
63
63
  official_img_footer: Logotipo oficial de pie de página
64
64
  official_img_header: Logotipo oficial de cabecera
@@ -70,10 +70,12 @@ es-MX:
70
70
  port: Puerto
71
71
  primary_color: Primario
72
72
  reference_prefix: Prefijo de la referencia
73
+ rich_text_editor_in_public_views: Habilitar editor de texto enriquecido para las participantes
73
74
  secondary_color: Secundario
74
75
  send_welcome_notification: Enviar notificación de bienvenida
75
76
  show_statistics: Mostrar estadísticas
76
77
  success_color: Éxito
78
+ time_zone: Zona Horaria
77
79
  tos_version: Versión de los Términos de Servicio
78
80
  twitter_handler: Nombre de Twitter
79
81
  user_groups_enabled: Habilitar grupos de usuarios
@@ -110,10 +112,6 @@ es-MX:
110
112
  file: Expediente
111
113
  errors:
112
114
  models:
113
- oauth_application:
114
- attributes:
115
- redirect_uri:
116
- must_be_ssl: El URI de redirección debe ser un URI SSL
117
115
  organization:
118
116
  attributes:
119
117
  official_img_footer:
@@ -142,9 +140,25 @@ es-MX:
142
140
  export: Exportar
143
141
  manage: Gestionar
144
142
  new: Nuevo %{name}
143
+ per_page: Por página
145
144
  permissions: Permisos
146
145
  reject: Rechazar
146
+ share: Compartir
147
147
  verify: Verificar
148
+ admin_terms_of_use:
149
+ accept:
150
+ error: Ha habido un error al aceptar los Términos y Condiciones de Administración.
151
+ success: '¡Genial! Has aceptado los Términos y Condiciones de Administración.'
152
+ actions:
153
+ accept: Estoy de acuerdo con estos Términos y Condiciones de Administración
154
+ are_you_sure: '¿Estás seguro de rechazar los Términos y Condiciones de Administración?'
155
+ refuse: Rechazar los Términos y Condiciones de Administración
156
+ title: Acepto los Términos y Condiciones de Administración
157
+ required_review:
158
+ alert: 'Requerido: revisa nuestros Términos y Condiciones de Administración'
159
+ callout: Por favor dedica un momento a revisar la actualización de nuestros Términos y Condiciones de Administración. De lo contrario, no podrás usar la plataforma.
160
+ cta: Revísalos ahora.
161
+ title: Términos y Condiciones de Administración
148
162
  area_types:
149
163
  create:
150
164
  error: Hubo un error al crear un nuevo tipo de área.
@@ -236,6 +250,7 @@ es-MX:
236
250
  success: Categoría actualizada correctamente.
237
251
  component_permissions:
238
252
  update:
253
+ error: Hubo un problema al actualizar los permisos de este componente.
239
254
  success: Permisos actualizados con éxito.
240
255
  components:
241
256
  create:
@@ -256,6 +271,7 @@ es-MX:
256
271
  headers:
257
272
  actions: Comportamiento
258
273
  name: Nombre del componente
274
+ scope: Ámbito del componente
259
275
  type: Tipo de componente
260
276
  new:
261
277
  add: Agregar componente
@@ -274,7 +290,39 @@ es-MX:
274
290
  welcome: Bienvenido al panel de administración de Decidim.
275
291
  exports:
276
292
  export_as: "%{name} como %{export_format}"
293
+ formats:
294
+ CSV: CSV
295
+ Excel: Excel
296
+ FormPDF: PDF
297
+ JSON: JSON
277
298
  notice: Su exportación está actualmente en curso. Recibirá un correo electrónico cuando esté completo.
299
+ filters:
300
+ category_id_eq:
301
+ label: Categoría
302
+ filter_label: Filtro
303
+ officialized_at_null:
304
+ label: Estado
305
+ values:
306
+ 'false': Oficializado
307
+ 'true': No oficializado
308
+ private_space_eq:
309
+ label: Privado
310
+ values:
311
+ 'false': Público
312
+ 'true': Privado
313
+ published_at_null:
314
+ label: Publicado
315
+ values:
316
+ 'false': Publicada
317
+ 'true': Sin publicar
318
+ scope_id_eq:
319
+ label: Ámbito
320
+ search_label: Buscar
321
+ search_placeholder:
322
+ name_or_nickname_or_email_cont: Buscar %{collection} por correo electrónico, nombre o alias.
323
+ title_cont: Buscar %{collection} por título.
324
+ state_eq:
325
+ label: Estado
278
326
  help_sections:
279
327
  error: Se ha producido un error al actualizar las secciones de ayuda
280
328
  form:
@@ -337,7 +385,6 @@ es-MX:
337
385
  homepage: Página principal
338
386
  impersonations: Impersonaciones
339
387
  newsletters: Boletines
340
- oauth_applications: Aplicaciones OAuth
341
388
  participants: Participantes
342
389
  scope_types: Tipos de ámbito
343
390
  scopes: Ámbitos
@@ -345,6 +392,9 @@ es-MX:
345
392
  static_pages: Páginas
346
393
  user_groups: Grupos de usuarios
347
394
  users: Usuarios
395
+ metrics:
396
+ metrics:
397
+ see_more_metrics: Ver más métricas
348
398
  models:
349
399
  area:
350
400
  fields:
@@ -381,11 +431,6 @@ es-MX:
381
431
  sent_to: Enviado a
382
432
  subject: Asunto
383
433
  name: Boletín
384
- oauth_application:
385
- fields:
386
- created_at: Creado en
387
- name: Nombre
388
- name: Aplicación OAuth
389
434
  participatory_space_private_user:
390
435
  name: Usuario privado de espacio participativo
391
436
  scope:
@@ -396,6 +441,14 @@ es-MX:
396
441
  fields:
397
442
  name: Nombre
398
443
  plural: Plural
444
+ share_token:
445
+ fields:
446
+ created_at: Creado el
447
+ expires_at: Caduca el
448
+ last_used_at: Último uso
449
+ times_used: Veces utilizado
450
+ token: Token
451
+ user: Creado por
399
452
  static_page:
400
453
  fields:
401
454
  created_at: Fecha de creación
@@ -428,6 +481,14 @@ es-MX:
428
481
  does_not_belong: No pertenece
429
482
  offensive: Ofensiva
430
483
  spam: Contenido no deseado
484
+ newsletter_templates:
485
+ index:
486
+ preview_template: Previsualizar
487
+ title: Plantillas para el boletín
488
+ use_template: Utilizar esta plantilla
489
+ show:
490
+ preview: 'Previsualizar la plantilla: %{template_name}'
491
+ use_template: Utilizar esta plantilla
431
492
  newsletters:
432
493
  create:
433
494
  error: Se ha producido un error al crear este boletín.
@@ -441,8 +502,6 @@ es-MX:
441
502
  edit:
442
503
  save_and_preview: Guardar y vista previa
443
504
  title: Editar boletín
444
- form:
445
- interpolations_hint: 'Sugerencia: Puede utilizar "%{name}" en cualquier parte del cuerpo o asunto y será reemplazado por el nombre del destinatario.'
446
505
  index:
447
506
  all: todos
448
507
  all_users: 'Todos los usuarios '
@@ -454,6 +513,7 @@ es-MX:
454
513
  not_sent: No enviado
455
514
  participants: 'participantes '
456
515
  segmented_to: 'Segmentado para %{subject}: '
516
+ subscribed_count: 'Suscritas:'
457
517
  title: Boletines
458
518
  new:
459
519
  save: Guardar
@@ -466,6 +526,7 @@ es-MX:
466
526
  followers_help: Envía el boletín de noticias a todas las participantes confirmadas que sigan cualquier espacio participativo seleccionado en la lista.
467
527
  none: Ninguno
468
528
  participants_help: Envía el boletín de noticias a todas las participantes confirmadas que hayan participado en cualquier espacio participativo seleccionado de la lista.
529
+ recipients_count: Este boletín se enviará a <strong id='recipients_count'>%{count}</strong> usuarias.
469
530
  scopes_help: Envía el boletín de noticias a las participantes que tengan cualquiera de los ámbitos activados en su configuración de "Mis intereses".
470
531
  select_scopes: Filtrar para las participantes que hayan activado cualquier ámbito en su configuración de "Mis intereses".
471
532
  select_spaces: Selecciona espacios para segmentar el boletín
@@ -484,25 +545,6 @@ es-MX:
484
545
  update:
485
546
  error: Se ha producido un error al actualizar este boletín.
486
547
  success: Boletín actualizado correctamente. Por favor revísalo antes de enviarlo.
487
- oauth_applications:
488
- create:
489
- error: Se ha producido un error al crear esta aplicación.
490
- success: Aplicación creada con éxito.
491
- destroy:
492
- error: Se ha producido un error al destruir esta aplicación.
493
- success: Aplicación eliminada con éxito.
494
- edit:
495
- save: Guardar
496
- title: Editar aplicación
497
- index:
498
- confirm_delete: '¿Estás seguro que quieres eliminar esta aplicación?'
499
- title: Aplicaciones OAuth
500
- new:
501
- save: Guardar
502
- title: Nueva aplicación
503
- update:
504
- error: Se ha producido un error al actualizar esta aplicación.
505
- success: Aplicación actualizada con éxito.
506
548
  officializations:
507
549
  create:
508
550
  success: Usuario oficializado con éxito
@@ -512,24 +554,27 @@ es-MX:
512
554
  actions: Acciones
513
555
  badge: Distintivo
514
556
  created_at: Creado el
515
- filter:
516
- all: Todas
517
- not_officialized: No oficializado
518
- officialized: Oficializado
519
- filter_by: Filtrado por
520
557
  name: Nombre
521
558
  nickname: Apodo
522
559
  not_officialized: No oficializado
523
560
  officialize: Oficializar
524
561
  officialized: Oficializado
525
562
  reofficialize: Re-oficializar
526
- search: Buscar
563
+ show_email: Mostrar la dirección de correo electrónico
527
564
  status: Estado
528
565
  unofficialize: Des-oficializar
529
566
  new:
530
567
  badge: Insignia de oficialización
531
568
  officialize: Oficializar
532
569
  title: Oficializar el usuario "%{name}"
570
+ show_email_modal:
571
+ close_modal: Cierra el modal
572
+ description: Si necesitas contactar directamente con una participante, puedes hacer clic en el botón Mostrar para ver la dirección de correo electrónico. Esta acción se registrará.
573
+ email_address: Dirección de correo electrónico
574
+ full_name: Nombre completo
575
+ hidden: oculto
576
+ show: Mostrar
577
+ title: Mostrar dirección de correo del participante
533
578
  organization:
534
579
  edit:
535
580
  title: Editar organización
@@ -538,6 +583,7 @@ es-MX:
538
583
  facebook: Facebook
539
584
  github: GitHub
540
585
  instagram: Instagram
586
+ rich_text_editor_in_public_views_help: En algunas áreas de texto, los participantes podrán insertar algunas etiquetas HTML utilizando el editor de texto enriquecido.
541
587
  social_handlers: Social
542
588
  twitter: Twitter
543
589
  url: URL
@@ -549,13 +595,16 @@ es-MX:
549
595
  edit:
550
596
  update: Actualizar
551
597
  form:
552
- colors_title: Colores de organizacion
598
+ colors:
599
+ colors_title: Colores de organizacion
600
+ header_snippets_help: Utiliza este campo para agregar cosas a la cabecera HTML. El uso más común es integrar servicios de terceros que requieran JavaScript o CSS adicionales. Además, puedes usarlo para agregar etiquetas HTML adicionales. Ten en cuenta que esto sólo se mostrará en las páginas públicas, no en la sección de administración.
553
601
  cta_button_path_help: 'Puedes sobrescribir el enlace al botón de acción principal en la página principal. Usa rutas parciales, no URLs completas aquí. Acepta letras, números, guiones y barras, y debe comenzar con una letra. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción. Ejemplo: %{url}'
554
602
  cta_button_text_help: Puedes sobrescribir el texto del botón de acción principal en la página de inicio para cada idioma disponible en tu organización. Si no está configurado, se usará el valor predeterminado. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción.
555
- header_snippets_help: Utiliza este campo para agregar cosas a la cabecera HTML. El uso más común es integrar servicios de terceros que requieran JavaScript o CSS adicionales. Además, puedes usarlo para agregar etiquetas HTML adicionales. Ten en cuenta que esto sólo se mostrará en las páginas públicas, no en la sección de administración.
556
603
  homepage_appearance_title: Editar apariencia de página de inicio
557
604
  homepage_highlighted_content_banner_title: Banner de contenido resaltado
558
- layout_appearance_title: Editar apariencia de diseño global
605
+ images:
606
+ layout_appearance_title: Editar apariencia de diseño global
607
+ preview: Previsualizar
559
608
  omnipresent_banner_appearance_title: Editar banner omnipresente
560
609
  organization_homepage:
561
610
  edit:
@@ -582,7 +631,7 @@ es-MX:
582
631
  invalid: Se ha producido un error al leer el archivo CSV.
583
632
  success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
584
633
  new:
585
- explanation: Sube tu archivo CSV. Debe tener dos columnas con correo electrónico en la primera columna del archivo y nombre en la última columna del archivo (correo electrónico, nombre) de las participantes que quieras añadir al espacio participativo, sin cabeceras.
634
+ 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.'
586
635
  title: Sube tu archivo CSV
587
636
  upload: Subir
588
637
  resource_permissions:
@@ -591,6 +640,10 @@ es-MX:
591
640
  title: Editar permisos
592
641
  update:
593
642
  success: Permisos actualizados con éxito.
643
+ resources:
644
+ index:
645
+ headers:
646
+ scope: Ámbito
594
647
  scope_types:
595
648
  create:
596
649
  error: Se ha producido un error al crear un nuevo tipo de ámbito.
@@ -622,6 +675,23 @@ es-MX:
622
675
  update:
623
676
  error: Se produjo un error en la actualización de este ámbito.
624
677
  success: Ámbito actualizado correctamente
678
+ share_tokens:
679
+ actions:
680
+ confirm_destroy: '¿Seguro que quieres eliminar este token?'
681
+ destroy: Eliminar
682
+ share: Compartir
683
+ destroy:
684
+ error: Se ha producido un error al eliminar este token.
685
+ success: Token eliminado correctamente.
686
+ share_tokens:
687
+ empty: No hay tokens activos
688
+ help: Estos tokens se utilizan para compartir públicamente este recurso no publicado a cualquier usuario. Se ocultarán cuando se publique el recurso. Haz clic en el icono de compartir el token para visitar la URL compartible.
689
+ title: Compartir tokens
690
+ shared:
691
+ gallery:
692
+ add_images: Añadir imágenes
693
+ delete_image: Borrar la imagen
694
+ gallery_legend: Añadir una galería de imágenes (opccional)
625
695
  static_page_topics:
626
696
  create:
627
697
  error: Se ha producido un error al crear un nuevo tema.
@@ -673,10 +743,12 @@ es-MX:
673
743
  dashboard: Panel de control
674
744
  impersonatable_users: Usuarios manejables
675
745
  impersonations: Gestion de usuarios
746
+ metrics: Métricas
676
747
  participants: Usuarios
677
748
  scope_types: Tipos de ámbito
678
749
  scopes: Ámbitos
679
750
  static_pages: Páginas
751
+ statistics: Actividad
680
752
  user_groups: Grupos de usuarios
681
753
  users: Usuarios
682
754
  user_group:
@@ -722,6 +794,14 @@ es-MX:
722
794
  new:
723
795
  create: Invitar
724
796
  title: Invitar a un usuario como administrador
797
+ users_statistics:
798
+ users_count:
799
+ admins: Administradores
800
+ last_day: Del último día
801
+ last_month: El último mes
802
+ last_week: La última semana
803
+ no_users_count_statistics_yet: Aún no hay estadísticas de recuenteo de usuarias
804
+ participants: Participantes
725
805
  view_public_page: Ver página pública
726
806
  forms:
727
807
  errors: