decidim-core 0.9.3 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/append_redirect_url_to_modals.js.es6 +1 -1
  3. data/app/assets/javascripts/decidim/data_picker.js.es6 +32 -28
  4. data/app/assets/javascripts/decidim/form_filter.component.js.es6 +2 -2
  5. data/app/assets/javascripts/decidim/foundation.js.es6 +1 -2
  6. data/app/assets/stylesheets/decidim/_decidim.scss +6 -1
  7. data/app/assets/stylesheets/decidim/modules/_address.scss +4 -0
  8. data/app/assets/stylesheets/decidim/modules/_block-banner.scss +39 -0
  9. data/app/assets/stylesheets/decidim/modules/_buttons.scss +76 -1
  10. data/app/assets/stylesheets/decidim/modules/_callout.scss +4 -0
  11. data/app/assets/stylesheets/decidim/modules/_cards.scss +117 -16
  12. data/app/assets/stylesheets/decidim/modules/_collapsible-list.scss +19 -0
  13. data/app/assets/stylesheets/decidim/modules/_data-picker.scss +0 -1
  14. data/app/assets/stylesheets/decidim/modules/_docs-manager.scss +16 -0
  15. data/app/assets/stylesheets/decidim/modules/_icons.scss +13 -4
  16. data/app/assets/stylesheets/decidim/modules/_margins.scss +39 -0
  17. data/app/assets/stylesheets/decidim/modules/_modules.scss +4 -0
  18. data/app/assets/stylesheets/decidim/modules/_navbar.scss +26 -0
  19. data/app/assets/stylesheets/decidim/modules/_process-phase.scss +49 -0
  20. data/app/assets/stylesheets/decidim/modules/_reveal.scss +39 -0
  21. data/app/assets/stylesheets/decidim/modules/_typography.scss +45 -0
  22. data/app/assets/stylesheets/decidim/modules/_wizard-steps.scss +45 -0
  23. data/app/assets/stylesheets/decidim/utils/_helpers.scss +14 -0
  24. data/app/assets/stylesheets/decidim/utils/_mixins.scss +34 -0
  25. data/app/assets/stylesheets/decidim/utils/_settings.scss +6 -3
  26. data/app/commands/decidim/create_report.rb +2 -2
  27. data/app/controllers/decidim/devise/invitations_controller.rb +1 -1
  28. data/app/controllers/decidim/features/base_controller.rb +1 -1
  29. data/app/controllers/decidim/locales_controller.rb +1 -1
  30. data/app/forms/decidim/registration_form.rb +1 -1
  31. data/app/helpers/decidim/decidim_form_helper.rb +26 -1
  32. data/app/helpers/decidim/meta_tags_helper.rb +2 -0
  33. data/app/helpers/decidim/resource_reference_helper.rb +24 -0
  34. data/app/helpers/decidim/scopes_helper.rb +22 -4
  35. data/app/helpers/decidim/view_hooks_helper.rb +6 -3
  36. data/app/mailers/decidim/messaging/conversation_mailer.rb +2 -0
  37. data/app/models/decidim/abilities/base_ability.rb +1 -1
  38. data/app/models/decidim/action_log.rb +57 -0
  39. data/app/models/decidim/area.rb +25 -0
  40. data/app/models/decidim/area_type.rb +20 -0
  41. data/app/models/decidim/attachment.rb +3 -0
  42. data/app/models/decidim/attachment_collection.rb +16 -0
  43. data/app/models/decidim/authorization.rb +1 -0
  44. data/app/models/decidim/categorization.rb +2 -0
  45. data/app/models/decidim/category.rb +8 -0
  46. data/app/models/decidim/feature.rb +6 -1
  47. data/app/models/decidim/moderation.rb +7 -0
  48. data/app/models/decidim/newsletter.rb +7 -0
  49. data/app/models/decidim/organization.rb +9 -0
  50. data/app/models/decidim/participatory_process_user_role.rb +9 -0
  51. data/app/models/decidim/resource_link.rb +8 -1
  52. data/app/models/decidim/scope.rb +7 -0
  53. data/app/models/decidim/static_page.rb +7 -0
  54. data/app/models/decidim/user.rb +5 -1
  55. data/app/models/decidim/user_group.rb +7 -0
  56. data/app/presenters/decidim/admin_log/feature_presenter.rb +43 -0
  57. data/app/presenters/decidim/admin_log/moderation_presenter.rb +48 -0
  58. data/app/presenters/decidim/admin_log/newsletter_presenter.rb +47 -0
  59. data/app/presenters/decidim/admin_log/newsletter_resource_presenter.rb +18 -0
  60. data/app/presenters/decidim/admin_log/organization_presenter.rb +84 -0
  61. data/app/presenters/decidim/admin_log/scope_presenter.rb +54 -0
  62. data/app/presenters/decidim/admin_log/static_page_presenter.rb +48 -0
  63. data/app/presenters/decidim/admin_log/static_page_resource_presenter.rb +18 -0
  64. data/app/presenters/decidim/admin_log/user_group_presenter.rb +31 -0
  65. data/app/presenters/decidim/admin_log/user_presenter.rb +59 -0
  66. data/app/presenters/decidim/area_presenter.rb +14 -0
  67. data/app/presenters/decidim/area_type_presenter.rb +14 -0
  68. data/app/presenters/decidim/category_presenter.rb +14 -0
  69. data/app/presenters/decidim/log/base_presenter.rb +253 -0
  70. data/app/presenters/decidim/log/diff_presenter.rb +120 -0
  71. data/app/presenters/decidim/log/resource_presenter.rb +71 -0
  72. data/app/presenters/decidim/log/space_presenter.rb +63 -0
  73. data/app/presenters/decidim/log/user_presenter.rb +85 -0
  74. data/app/presenters/decidim/log/value_types/area_presenter.rb +28 -0
  75. data/app/presenters/decidim/log/value_types/date_presenter.rb +20 -0
  76. data/app/presenters/decidim/log/value_types/default_presenter.rb +43 -0
  77. data/app/presenters/decidim/log/value_types/locale_presenter.rb +20 -0
  78. data/app/presenters/decidim/log/value_types/percentage_presenter.rb +21 -0
  79. data/app/presenters/decidim/log/value_types/scope_presenter.rb +28 -0
  80. data/app/presenters/decidim/log/value_types/scope_type_presenter.rb +28 -0
  81. data/app/presenters/decidim/user_presenter.rb +1 -1
  82. data/app/services/decidim/action_authorizer.rb +1 -1
  83. data/app/services/decidim/action_logger.rb +108 -0
  84. data/app/services/decidim/events_manager.rb +1 -1
  85. data/app/services/decidim/log/diff_changeset_calculator.rb +135 -0
  86. data/app/services/decidim/resource_search.rb +2 -8
  87. data/app/services/decidim/settings_change.rb +31 -0
  88. data/app/services/decidim/traceability.rb +57 -11
  89. data/app/types/decidim/core/component_type.rb +12 -0
  90. data/app/types/decidim/core/date_time_type.rb +12 -0
  91. data/app/types/decidim/core/date_type.rb +13 -0
  92. data/app/types/decidim/core/decidim_type.rb +23 -0
  93. data/app/types/decidim/core/localized_string_type.rb +14 -0
  94. data/app/types/decidim/core/organization_type.rb +20 -0
  95. data/app/types/decidim/core/participatory_space_type.rb +12 -0
  96. data/app/types/decidim/core/session_type.rb +19 -0
  97. data/app/types/decidim/core/statistic_type.rb +22 -0
  98. data/app/types/decidim/core/translated_field_type.rb +45 -0
  99. data/app/types/decidim/core/user_group_type.rb +39 -0
  100. data/app/types/decidim/core/user_type.rb +41 -0
  101. data/app/validators/etiquette_validator.rb +1 -1
  102. data/app/views/decidim/application/_attachments.html.erb +4 -0
  103. data/app/views/decidim/application/_collection.html.erb +14 -0
  104. data/app/views/decidim/application/_document.html.erb +19 -0
  105. data/app/views/decidim/application/_documents.html.erb +8 -23
  106. data/app/views/decidim/shared/_announcement.html.erb +3 -2
  107. data/app/views/decidim/shared/_tags.html.erb +1 -0
  108. data/app/views/decidim/widgets/_data_picker.html.erb +6 -0
  109. data/app/views/layouts/decidim/mailer.html.erb +2 -2
  110. data/config/initializers/devise.rb +3 -3
  111. data/config/locales/ca.yml +65 -11
  112. data/config/locales/en.yml +64 -10
  113. data/config/locales/es.yml +66 -12
  114. data/config/locales/eu.yml +61 -10
  115. data/config/locales/fi.yml +64 -10
  116. data/config/locales/fr.yml +64 -10
  117. data/config/locales/gl.yml +64 -10
  118. data/config/locales/it.yml +64 -10
  119. data/config/locales/nl.yml +64 -10
  120. data/config/locales/pl.yml +60 -10
  121. data/config/locales/pt-BR.yml +64 -10
  122. data/config/locales/pt.yml +64 -10
  123. data/config/locales/sv.yml +64 -10
  124. data/config/locales/uk.yml +72 -0
  125. data/db/migrate/20170215115407_add_organization_custom_reference.rb +1 -1
  126. data/db/migrate/20170313095436_add_available_authorizations_to_organization.rb +1 -1
  127. data/db/migrate/20171207182729_create_decidim_attachment_collections.rb +12 -0
  128. data/db/migrate/20180130093153_add_action_log.rb +18 -0
  129. data/db/migrate/20180206143340_fix_reference_for_all_resources.rb +13 -0
  130. data/db/migrate/20180215104821_create_decidim_area_types.rb +11 -0
  131. data/db/migrate/20180215104945_create_decidim_areas.rb +12 -0
  132. data/db/migrate/20180221101934_fix_nickname_index.rb +1 -1
  133. data/db/migrate/20180226140756_add_version_to_action_logs.rb +19 -0
  134. data/db/migrate/20180314085339_rename_maximum_votes_per_proposal_to_threshold_per_proposal.rb +27 -0
  135. data/db/migrate/20180326075746_change_event_name_and_class_to_rename_to_publish_proposal_event.rb +17 -0
  136. data/db/seeds.rb +28 -0
  137. data/lib/decidim/abilities/participatory_process_role_ability.rb +2 -2
  138. data/lib/decidim/api/author_interface.rb +25 -0
  139. data/lib/decidim/api/component_interface.rb +16 -0
  140. data/lib/decidim/api/participatory_space_interface.rb +38 -0
  141. data/lib/decidim/authorable.rb +8 -0
  142. data/lib/decidim/core.rb +27 -9
  143. data/lib/decidim/core/engine.rb +3 -4
  144. data/lib/decidim/core/test.rb +2 -0
  145. data/lib/decidim/core/test/factories.rb +62 -6
  146. data/lib/decidim/core/test/shared_examples/announcements_examples.rb +1 -1
  147. data/lib/decidim/core/test/shared_examples/comments_examples.rb +47 -5
  148. data/lib/decidim/core/test/shared_examples/component_type.rb +7 -0
  149. data/lib/decidim/core/test/shared_examples/has_attachment_collections.rb +63 -0
  150. data/lib/decidim/core/test/shared_examples/has_attachments.rb +21 -0
  151. data/lib/decidim/core/test/shared_examples/has_reference.rb +1 -1
  152. data/lib/decidim/core/test/shared_examples/simple_event.rb +27 -1
  153. data/lib/decidim/core/version.rb +1 -1
  154. data/lib/decidim/events/author_event.rb +1 -1
  155. data/lib/decidim/events/base_event.rb +1 -1
  156. data/lib/decidim/events/simple_event.rb +21 -0
  157. data/lib/decidim/exporters/excel.rb +1 -1
  158. data/lib/decidim/feature_manifest.rb +2 -0
  159. data/lib/decidim/form_builder.rb +37 -3
  160. data/lib/decidim/has_attachment_collections.rb +18 -0
  161. data/lib/decidim/has_attachments.rb +14 -0
  162. data/lib/decidim/has_category.rb +5 -0
  163. data/lib/decidim/has_reference.rb +4 -4
  164. data/lib/decidim/loggable.rb +32 -0
  165. data/lib/decidim/participable.rb +0 -2
  166. data/lib/decidim/participatory_space_manifest.rb +2 -0
  167. data/lib/decidim/publicable.rb +2 -2
  168. data/lib/decidim/query_extensions.rb +46 -14
  169. data/lib/decidim/resourceable.rb +15 -6
  170. data/lib/decidim/scopable.rb +35 -1
  171. data/lib/decidim/scopable_feature.rb +16 -0
  172. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ca.js +0 -0
  173. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.es.js +0 -0
  174. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.eu.js +0 -0
  175. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fi.js +0 -0
  176. data/vendor/assets/javascripts/leaflet.markercluster.js +0 -0
  177. metadata +91 -38
  178. data/app/commands/decidim/remove_admin.rb +0 -25
  179. data/app/helpers/decidim/feature_reference_helper.rb +0 -25
  180. data/lib/decidim/core/api.rb +0 -13
  181. data/lib/decidim/core/api/author_interface.rb +0 -18
  182. data/lib/decidim/core/api/decidim_type.rb +0 -17
  183. data/lib/decidim/core/api/localized_string_type.rb +0 -12
  184. data/lib/decidim/core/api/process_step_type.rb +0 -19
  185. data/lib/decidim/core/api/process_type.rb +0 -17
  186. data/lib/decidim/core/api/session_type.rb +0 -17
  187. data/lib/decidim/core/api/translated_field_type.rb +0 -43
  188. data/lib/decidim/core/api/user_group_type.rb +0 -37
  189. data/lib/decidim/core/api/user_type.rb +0 -39
  190. data/lib/decidim/devise_failure_app.rb +0 -36
  191. data/lib/decidim/has_scope.rb +0 -25
  192. data/lib/decidim/i18n_exceptions.rb +0 -15
@@ -53,8 +53,47 @@ ca:
53
53
  error: S'ha produït un error en actualitzar el seu compte.
54
54
  success: El seu compte s'ha actualitzat correctament.
55
55
  success_with_email_confirmation: El teu compte s'ha actualitzat correctament. Rebràs un correu electrònic per confirmar la teva nova adreça de correu electrònic.
56
+ admin_log:
57
+ feature:
58
+ create: "%{user_name} ha afegit el component %{resource_name} a l'espai %{space_name}"
59
+ delete: "%{user_name} ha eliminat el component %{resource_name} de l'espai %{space_name}"
60
+ publish: "%{user_name} ha publicat el component %{resource_name} a l'espai %{space_name}"
61
+ unpublish: "%{user_name} no s'ha publicat el component %{resource_name} des de l'espai %{space_name}"
62
+ moderation:
63
+ hide: "%{user_name} ha ocultat un recurs del tipus %{resource_type} a l'espai %{space_name}"
64
+ unreport: "%{user_name} ha publicat un recurs del tipus %{resource_type} a l'espai %{space_name}"
65
+ newsletter:
66
+ create: "%{user_name} ha creat el butlletí %{resource_name}"
67
+ delete: "%{user_name} ha eliminat el butlletí %{resource_name}"
68
+ deliver: "%{user_name} ha enviat el butlletí %{resource_name}"
69
+ update: "%{user_name} ha actualitzat el butlletí %{resource_name}"
70
+ organization:
71
+ update: "%{user_name} ha actualitzat la configuració de l'organització"
72
+ scope:
73
+ create: "%{user_name} ha creat l'àmbit %{resource_name}"
74
+ create_with_parent: "%{user_name} ha creat l'àmbit %{resource_name} dins l'àmbit %{parent_scope}"
75
+ delete: "%{user_name} ha suprimit l'àmbit %{resource_name}"
76
+ delete_with_parent: "%{user_name} ha suprimit l'àmbit %{resource_name} dins l'àmbit %{parent_scope}"
77
+ update: "%{user_name} ha actualitzat l'àmbit %{resource_name}"
78
+ update_with_parent: "%{user_name} ha actualitzat l'àmbit %{resource_name} dins l'àmbit %{parent_scope}"
79
+ static_page:
80
+ create: "%{user_name} ha creat la pàgina estàtica %{resource_name}"
81
+ delete: "%{user_name} ha esborrat la pàgina estàtica %{resource_name}"
82
+ update: "%{user_name} ha actualitzat la pàgina estàtica %{resource_name}"
83
+ user:
84
+ invite: "%{user_name} ha convidat l'usuari a %{resource_name} amb el rol: %{role}"
85
+ officialize: "%{user_name} ha oficialitzat l'usuari %{resource_name}"
86
+ remove_from_admin: "%{user_name} ha eliminat l'usuari %{resource_name} amb el rol: %{role}"
87
+ unofficialize: "%{user_name} ha desoficialitzat l'usuari %{resource_name}"
88
+ user_group:
89
+ reject: "%{user_name} ha rebutjat la verificació del grup d'usuaris %{resource_name}"
90
+ verify: "%{user_name} ha verificat el grup d'usuaris %{resource_name}"
56
91
  anonymous_user: Anònim
57
92
  application:
93
+ collection:
94
+ documents:
95
+ one: Document
96
+ other: Documents
58
97
  documents:
59
98
  related_documents: Documents relacionats
60
99
  photos:
@@ -96,7 +135,7 @@ ca:
96
135
  registrations:
97
136
  new:
98
137
  already_have_an_account?: Ja tens un compte?
99
- newsletter: Rebeu un butlletí ocasional amb informació rellevant
138
+ newsletter: Vull rebre un butlletí ocasional amb informació rellevant
100
139
  nickname_help: El vostre identificador curt i únic
101
140
  sign_in: Entra
102
141
  sign_up: Registra't
@@ -135,18 +174,14 @@ ca:
135
174
  email_intro: 'Hi ha hagut una actualització a "%{resource_title}". Es pot veure en aquesta pàgina:'
136
175
  email_outro: Has rebut aquesta notificació perquè que segueixes "%{resource_title}". El pots deixar de seguir al link anterior.
137
176
  email_subject: Una actualització a %{resource_title}
138
- feature_published_event:
139
- email_intro: 'El component %{resource_title} ja està actiu per %{participatory_space_title}. Pots veure-ho des d''aquesta pàgina:'
140
- email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
141
- email_subject: Una actualització a %{participatory_space_title}
142
- notification_title: El component %{resource_title} ja està actiu per <a href="%{resource_path}">%{participatory_space_title}</a>
177
+ features:
178
+ feature_published:
179
+ email_intro: 'El component %{resource_title} ja està actiu per %{participatory_space_title}. Podeu veure-ho des d''aquesta pàgina:'
180
+ email_outro: Heu rebut aquesta notificació perquè esteu seguint %{participatory_space_title}. Podeu deixar de rebre notificacions seguint l'enllaç anterior.
181
+ email_subject: Una actualització a %{participatory_space_title}
182
+ notification_title: El component %{resource_title} ja està actiu per <a href="%{resource_path}">%{participatory_space_title}</a>
143
183
  notification_event:
144
184
  notification_title: S'ha produït un esdeveniment a <a href="%{resource_path}">%{resource_title}</a>.
145
- participatory_process_step_activated_event:
146
- email_intro: 'La fase %{resource_title} ja està activa per %{participatory_space_title}. Pots veure-ho des d''aquesta pàgina:'
147
- email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
148
- email_subject: S'ha produït un esdeveniment a %{participatory_space_title}
149
- notification_title: La fase %{resource_title} ja està activa per <a href="%{resource_path}">%{participatory_space_title}</a>
150
185
  users:
151
186
  profile_updated:
152
187
  email_intro: El <a href="%{resource_url}">perfil</a> d'en/na %{name} (%{nickname}), a qui estàs seguint, s'ha actualitzat.
@@ -194,6 +229,23 @@ ca:
194
229
  errors:
195
230
  error: Hi ha un error en aquest camp.
196
231
  remove_this_file: Eliminar aquest arxiu
232
+ log:
233
+ base_presenter:
234
+ create: "%{user_name} creat %{resource_name}"
235
+ create_with_space: "%{user_name} ha creat %{resource_name} a %{space_name}"
236
+ delete: "%{user_name} ha eliminat %{resource_name}"
237
+ delete_with_space: "%{user_name} ha eliminat %{resource_name} en %{space_name}"
238
+ unknown_action: "%{user_name} ha realitzat una acció a %{resource_name}"
239
+ unknown_action_with_space: "%{user_name} ha realitzat una acció a %{resource_name} en %{space_name}"
240
+ update: "%{user_name} ha actualitzat %{resource_name}"
241
+ update_with_space: "%{user_name} ha actualitzat %{resource_name} a %{space_name}"
242
+ value_types:
243
+ area_presenter:
244
+ not_found: 'L''àrea no s''ha trobat a la base de dades (ID: %{id})'
245
+ scope_presenter:
246
+ not_found: 'L''àmbit no s''ha trobat a la base de dades (ID: %{id})'
247
+ scope_type_presenter:
248
+ not_found: 'El tipus d''àmbit no s''ha trobat a la base de dades (ID: %{id})'
197
249
  managed_users:
198
250
  expired_session: La sessió de suplantació actual ha caducat.
199
251
  menu:
@@ -444,6 +496,7 @@ ca:
444
496
  answers_count: Enquestes realitzades
445
497
  assemblies_count: Assemblees
446
498
  comments_count: Comentaris
499
+ endorsements_count: Adhesions
447
500
  headline: Estat actual de %{organization}
448
501
  meetings_count: Trobades
449
502
  orders_count: Vots
@@ -483,6 +536,7 @@ ca:
483
536
  day_of_month: "%b %d"
484
537
  day_of_week: "%a"
485
538
  day_of_year: "%d/%m/%y"
539
+ decidim_day_of_year: "%d %B %Y"
486
540
  decidim_short: "%d/%m/%Y %H:%M"
487
541
  time_of_day: "%H:%M"
488
542
  views:
@@ -54,8 +54,47 @@ en:
54
54
  error: There's been an error updating your account.
55
55
  success: Your account was updated successfully.
56
56
  success_with_email_confirmation: Your account was updated successfully. You'll receive an email to confirm your new email address.
57
+ admin_log:
58
+ feature:
59
+ create: "%{user_name} added the %{resource_name} feature to the %{space_name} space"
60
+ delete: "%{user_name} removed the %{resource_name} feature from the %{space_name} space"
61
+ publish: "%{user_name} published the %{resource_name} feature in the %{space_name} space"
62
+ unpublish: "%{user_name} unpublished the %{resource_name} feature from the %{space_name} space"
63
+ moderation:
64
+ hide: "%{user_name} hid a resource of type %{resource_type} in the %{space_name} space"
65
+ unreport: "%{user_name} unreported a resource of type %{resource_type} in the %{space_name} space"
66
+ newsletter:
67
+ create: "%{user_name} created the %{resource_name} newsletter"
68
+ delete: "%{user_name} deleted the %{resource_name} newsletter"
69
+ deliver: "%{user_name} delivered the %{resource_name} newsletter"
70
+ update: "%{user_name} updated the %{resource_name} newsletter"
71
+ organization:
72
+ update: "%{user_name} updated the organization settings"
73
+ scope:
74
+ create: "%{user_name} created the %{resource_name} scope"
75
+ create_with_parent: "%{user_name} created the %{resource_name} scope inside the %{parent_scope} scope"
76
+ delete: "%{user_name} deleted the %{resource_name} scope"
77
+ delete_with_parent: "%{user_name} deleted the %{resource_name} scope inside the %{parent_scope} scope"
78
+ update: "%{user_name} updated the %{resource_name} scope"
79
+ update_with_parent: "%{user_name} updated the %{resource_name} scope inside the %{parent_scope} scope"
80
+ static_page:
81
+ create: "%{user_name} created the %{resource_name} static page"
82
+ delete: "%{user_name} deleted the %{resource_name} static page"
83
+ update: "%{user_name} updated the %{resource_name} static page"
84
+ user:
85
+ invite: "%{user_name} invited the user %{resource_name} with role: %{role}"
86
+ officialize: "%{user_name} officialized the user %{resource_name}"
87
+ remove_from_admin: "%{user_name} removed the user %{resource_name} with role: %{role}"
88
+ unofficialize: "%{user_name} unofficialized the user %{resource_name}"
89
+ user_group:
90
+ reject: "%{user_name} rejected the %{resource_name} user group verification"
91
+ verify: "%{user_name} verified the %{resource_name} user group"
57
92
  anonymous_user: Anonymous
58
93
  application:
94
+ collection:
95
+ documents:
96
+ one: Document
97
+ other: Documents
59
98
  documents:
60
99
  related_documents: Related documents
61
100
  photos:
@@ -136,18 +175,14 @@ en:
136
175
  email_intro: 'There has been an update to "%{resource_title}". You can see it from this page:'
137
176
  email_outro: You have received this notification because you are following "%{resource_title}". You can unfollow it from the previous link.
138
177
  email_subject: An update to %{resource_title}
139
- feature_published_event:
140
- email_intro: 'The %{resource_title} component is now active for %{participatory_space_title}. You can see it from this page:'
141
- email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
142
- email_subject: An update to %{participatory_space_title}
143
- notification_title: The %{resource_title} component is now active for <a href="%{resource_path}">%{participatory_space_title}</a>
178
+ features:
179
+ feature_published:
180
+ email_intro: 'The %{resource_title} component is now active for %{participatory_space_title}. You can see it from this page:'
181
+ email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
182
+ email_subject: An update to %{participatory_space_title}
183
+ notification_title: The %{resource_title} component is now active for <a href="%{resource_path}">%{participatory_space_title}</a>
144
184
  notification_event:
145
185
  notification_title: An event occured to <a href="%{resource_path}">%{resource_title}</a>.
146
- participatory_process_step_activated_event:
147
- email_intro: 'The %{resource_title} step is now active for %{participatory_space_title}. You can see it from this page:'
148
- email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
149
- email_subject: An update to %{participatory_space_title}
150
- notification_title: The %{resource_title} step is now active for <a href="%{resource_path}">%{participatory_space_title}</a>
151
186
  users:
152
187
  profile_updated:
153
188
  email_intro: The <a href="%{resource_url}">profile page</a> of %{name} (%{nickname}), who you are following, has been updated.
@@ -195,6 +230,23 @@ en:
195
230
  errors:
196
231
  error: There's an error in this field.
197
232
  remove_this_file: Remove this file
233
+ log:
234
+ base_presenter:
235
+ create: "%{user_name} created %{resource_name}"
236
+ create_with_space: "%{user_name} created %{resource_name} in %{space_name}"
237
+ delete: "%{user_name} deleted %{resource_name}"
238
+ delete_with_space: "%{user_name} deleted %{resource_name} in %{space_name}"
239
+ unknown_action: "%{user_name} performed some action on %{resource_name}"
240
+ unknown_action_with_space: "%{user_name} performed some action on %{resource_name} in %{space_name}"
241
+ update: "%{user_name} updated %{resource_name}"
242
+ update_with_space: "%{user_name} updated %{resource_name} in %{space_name}"
243
+ value_types:
244
+ area_presenter:
245
+ not_found: 'The area was not found on the database (ID: %{id})'
246
+ scope_presenter:
247
+ not_found: 'The scope was not found on the database (ID: %{id})'
248
+ scope_type_presenter:
249
+ not_found: 'The scope type was not found on the database (ID: %{id})'
198
250
  managed_users:
199
251
  expired_session: The current impersonation session has expired.
200
252
  menu:
@@ -445,6 +497,7 @@ en:
445
497
  answers_count: Completed Surveys
446
498
  assemblies_count: Assemblies
447
499
  comments_count: Comments
500
+ endorsements_count: Endorsements
448
501
  headline: Current state of %{organization}
449
502
  meetings_count: Meetings
450
503
  orders_count: Votes
@@ -484,6 +537,7 @@ en:
484
537
  day_of_month: "%b %d"
485
538
  day_of_week: "%a"
486
539
  day_of_year: "%d.%m.%y"
540
+ decidim_day_of_year: "%d %B %Y"
487
541
  decidim_short: "%d/%m/%Y %H:%M"
488
542
  time_of_day: "%H:%M"
489
543
  views:
@@ -53,8 +53,47 @@ es:
53
53
  error: Se ha producido un error al actualizar tu cuenta.
54
54
  success: Tu cuenta se ha actualizado correctamente.
55
55
  success_with_email_confirmation: Tu cuenta se ha actualizado correctamente. Recibirás un correo electrónico para confirmar tu nueva dirección de correo electrónico.
56
+ admin_log:
57
+ feature:
58
+ create: "%{user_name} agregó el componente %{resource_name} al espacio %{space_name}"
59
+ delete: "%{user_name} eliminó el componente %{resource_name} del espacio %{space_name}"
60
+ publish: "%{user_name} publicó el componente %{resource_name} en el espacio %{space_name}"
61
+ unpublish: "%{user_name} despublicó el componente %{resource_name} del espacio %{space_name}"
62
+ moderation:
63
+ hide: "%{user_name} escondió un recurso de tipo %{resource_type} en el espacio %{space_name}"
64
+ unreport: "%{user_name} publicó un recurso de tipo %{resource_type} en el espacio %{space_name}"
65
+ newsletter:
66
+ create: "%{user_name} creó el newsletter %{resource_name}"
67
+ delete: "%{user_name} eliminó el newsletter %{resource_name}"
68
+ deliver: "%{user_name} envió el newsletter %{resource_name}"
69
+ update: "%{user_name} actualizó el newsletter %{resource_name}"
70
+ organization:
71
+ update: "%{user_name} actualizó la configuración de la organización"
72
+ scope:
73
+ create: "%{user_name} creó el ámbito %{resource_name}"
74
+ create_with_parent: "%{user_name} creó el ámbito %{resource_name} dentro del ámbito %{parent_scope}"
75
+ delete: "%{user_name} eliminó el ámbito %{resource_name}"
76
+ delete_with_parent: "%{user_name} eliminó el ámbito %{resource_name} dentro del ámbito %{parent_scope}"
77
+ update: "%{user_name} actualizó el ámbito %{resource_name}"
78
+ update_with_parent: "%{user_name} actualizó el ámbito %{resource_name} dentro del ámbito %{parent_scope}"
79
+ static_page:
80
+ create: "%{user_name} creó la página estática %{resource_name}"
81
+ delete: "%{user_name} eliminó la página estática %{resource_name}"
82
+ update: "%{user_name} actualizó la página estática %{resource_name}"
83
+ user:
84
+ invite: "%{user_name} invitó al usuario %{resource_name} con el rol: %{role}"
85
+ officialize: "%{user_name} oficializó al usuario %{resource_name}"
86
+ remove_from_admin: "%{user_name} eliminó al usuario %{resource_name} con el rol: %{role}"
87
+ unofficialize: "%{user_name} desoficializó al usuario %{resource_name}"
88
+ user_group:
89
+ reject: "%{user_name} rechazó la verificación del grupo de usuarios %{resource_name}"
90
+ verify: "%{user_name} verificó al grupo de usuarios %{resource_name}"
56
91
  anonymous_user: Anónimo
57
92
  application:
93
+ collection:
94
+ documents:
95
+ one: Documento
96
+ other: Documentos
58
97
  documents:
59
98
  related_documents: Documentos relacionados
60
99
  photos:
@@ -96,7 +135,7 @@ es:
96
135
  registrations:
97
136
  new:
98
137
  already_have_an_account?: '¿Ya tienes una cuenta?'
99
- newsletter: Reciba un boletín ocasional con información relevante
138
+ newsletter: Quiro recibir un boletín ocasional con información relevante
100
139
  nickname_help: Su identificador corto y único
101
140
  sign_in: Entra
102
141
  sign_up: Regístrate
@@ -135,18 +174,14 @@ es:
135
174
  email_intro: 'Ha habido una actualización de "%{resource_title}". Se puede ver en esta página:'
136
175
  email_outro: Has recibido esta notificación porque sigues "%{resource_title}". Puedes dejar de seguirlo en el enlace anterior.
137
176
  email_subject: Una actualización de %{resource_title}
138
- feature_published_event:
139
- email_intro: 'El componente %{resource_title} ahora está activo para %{participatory_space_title}. Puedes verlo desde esta página:'
140
- email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
141
- email_subject: Una actualización de %{participatory_space_title}
142
- notification_title: El componente %{resource_title} ahora está activo para <a href="%{resource_path}">%{participatory_space_title}</a>
177
+ features:
178
+ feature_published:
179
+ email_intro: 'Ya está activo el componente %{resource_title} para %{participatory_space_title}. Puedes verlo desde esta página:'
180
+ email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
181
+ email_subject: Una actualización de %{participatory_space_title}
182
+ notification_title: Ya está activo el componente %{resource_title} para <a href="%{resource_path}">%{participatory_space_title}</a>
143
183
  notification_event:
144
184
  notification_title: Un evento ha ocurrido en <a href="%{resource_path}">%{resource_title}</a>.
145
- participatory_process_step_activated_event:
146
- email_intro: 'La fase %{resource_title} ahora está activa para %{participatory_space_title}. Puedes verla desde esta página:'
147
- email_outro: Has recibido esta notificación porque estás siguiendo %{participatory_space_title}. Puedes dejar de recibir notificaciones siguiendo el enlace anterior.
148
- email_subject: Un evento ha ocurrido en %{participatory_space_title}
149
- notification_title: La fase %{resource_title} ahora está activa para <a href="%{resource_path}">%{participatory_space_title}</a>
150
185
  users:
151
186
  profile_updated:
152
187
  email_intro: La página <a href="%{resource_url}">de perfil</a> de %{name} (%{nickname}), a quien estás siguiendo, se ha actualizado.
@@ -194,6 +229,23 @@ es:
194
229
  errors:
195
230
  error: Hay un error en este campo.
196
231
  remove_this_file: Eliminar este archivo
232
+ log:
233
+ base_presenter:
234
+ create: "%{user_name} creó %{resource_name}"
235
+ create_with_space: "%{user_name} creó %{resource_name} en %{space_name}"
236
+ delete: "%{user_name} eliminó %{resource_name}"
237
+ delete_with_space: "%{user_name} eliminó %{resource_name} en %{space_name}"
238
+ unknown_action: "%{user_name} realizó una acción en %{resource_name}"
239
+ unknown_action_with_space: "%{user_name} realizó una acción en %{resource_name} en %{space_name}"
240
+ update: "%{user_name} actualizó %{resource_name}"
241
+ update_with_space: "%{user_name} actualizó %{resource_name} en %{space_name}"
242
+ value_types:
243
+ area_presenter:
244
+ not_found: 'No se encontró el área en la base de datos (ID: %{id})'
245
+ scope_presenter:
246
+ not_found: 'No se encontró el ámbito en la base de datos (ID: %{id})'
247
+ scope_type_presenter:
248
+ not_found: 'No se encontró el tipo de ámbito en la base de datos (ID: %{id})'
197
249
  managed_users:
198
250
  expired_session: La sesión de suplantación actual ha caducado.
199
251
  menu:
@@ -410,7 +462,7 @@ es:
410
462
  notifications: Notificaciones
411
463
  profile: Mi cuenta
412
464
  public_profile: Mi perfil público
413
- sign_out: Sal
465
+ sign_out: Cerrar sesión
414
466
  user_profile:
415
467
  account: Cuenta
416
468
  authorizations: Autorizaciones
@@ -444,6 +496,7 @@ es:
444
496
  answers_count: Encuestas completadas
445
497
  assemblies_count: Asambleas
446
498
  comments_count: Comentarios
499
+ endorsements_count: Respaldos
447
500
  headline: Estado actual de %{organization}
448
501
  meetings_count: Encuentros
449
502
  orders_count: Votos
@@ -483,6 +536,7 @@ es:
483
536
  day_of_month: "%b %d"
484
537
  day_of_week: "%a"
485
538
  day_of_year: "%d/%m/%y"
539
+ decidim_day_of_year: "%d %B %Y"
486
540
  decidim_short: "%d/%m/%Y %H:%M"
487
541
  time_of_day: "%H:%M"
488
542
  views:
@@ -53,8 +53,44 @@ eu:
53
53
  error: Errorea gertatu da zure kontua eguneratzean.
54
54
  success: Zure kontua zuzen eguneratu da.
55
55
  success_with_email_confirmation: Zure kontua zuzen eguneratu da. Mezu elektroniko bat jasoko duzu zure helbide elektroniko berria baieztatzeko.
56
+ admin_log:
57
+ feature:
58
+ create: "%{user_name} gehitu %{resource_name} ezaugarri %{space_name} espazioa"
59
+ delete: "%{user_name} kendu %{resource_name} Ezaugarri %{space_name} espazioa"
60
+ publish: "%{user_name} %{resource_name} funtzioak %{space_name} espazioan argitaratu zituen"
61
+ unpublish: "%{user_name} %{resource_name} funtzioak %{space_name} espaziotik argitaratu gabe argitaratu du"
62
+ moderation:
63
+ hide: "%{user_name} ezkutatu motako baliabide bat %{resource_type} en %{space_name} espazioa"
64
+ unreport: "%{user_name} %{resource_type} motako baliabide bat ez da %{space_name} espazioan"
65
+ newsletter:
66
+ create: "%{user_name} sortu %{resource_name} buletina"
67
+ delete: "%{user_name} ezabatu %{resource_name} buletina"
68
+ deliver: "%{user_name} entregatu %{resource_name} buletina"
69
+ update: "%{user_name} eguneratu %{resource_name} buletina"
70
+ organization:
71
+ update: "%{user_name} Eguneratu antolazioaren ezarpenak"
72
+ scope:
73
+ create: "%{user_name} %{resource_name} esparrua sortu zen"
74
+ delete: "%{user_name} %{resource_name} esparrua ezabatu da"
75
+ update: "%{user_name} %{resource_name} eremua eguneratu du"
76
+ static_page:
77
+ create: "%{user_name} sortu %{resource_name} orri estatikoa"
78
+ delete: "%{user_name} ezabatu %{resource_name} orri estatikoa"
79
+ update: "%{user_name} eguneratu %{resource_name} orri estatikoa"
80
+ user:
81
+ invite: "%{user_name} erabiltzaileak %{resource_name} erabiltzaile gonbidatu rola: %{role}"
82
+ officialize: "%{user_name} Erabiltzaile ofiziala %{resource_name}"
83
+ remove_from_admin: "%{user_name} erabiltzaileak kendu %{resource_name} rolarekin: %{role}"
84
+ unofficialize: "%{user_name} erabiltzaile ez ofiziala %{resource_name}"
85
+ user_group:
86
+ reject: "%{user_name} baztertu %{resource_name} erabiltzaile taldeen egiaztapena"
87
+ verify: "%{user_name} egiaztatu %{resource_name} erabiltzaile taldea"
56
88
  anonymous_user: Anonimoa
57
89
  application:
90
+ collection:
91
+ documents:
92
+ one: Dokumentuaren
93
+ other: Dokumentuak
58
94
  documents:
59
95
  related_documents: Honekin lotutako agiriak
60
96
  photos:
@@ -135,18 +171,14 @@ eu:
135
171
  email_intro: 'Eguneratze da "%{resource_title}". Orri honetan ikus daiteke:'
136
172
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}” jarraitzen duzulako. Jarraitzeari utzi diezaiokezu aurreko estekan.
137
173
  email_subject: '%{resource_title} eguneratzea'
138
- feature_published_event:
139
- email_intro: '%{resource_title} osagaia %{participatory_space_title} da aktibo dagoenean. Orrialde hau ikusi dezakezu:'
140
- email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraituz gero. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
141
- email_subject: '%{participatory_space_title} eguneratze bat'
142
- notification_title: '%{resource_title} osagaia aktibo dago orain <a href="%{resource_path}">%{participatory_space_title}</a>'
174
+ features:
175
+ feature_published:
176
+ email_intro: '%{resource_title} osagaia %{participatory_space_title} da aktibo dagoenean. Orrialde hau ikusi dezakezu:'
177
+ email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraituz gero. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
178
+ email_subject: '%{participatory_space_title} eguneratze bat'
179
+ notification_title: '%{resource_title} osagaia aktibo dago orain <a href="%{resource_path}">%{participatory_space_title}</a>'
143
180
  notification_event:
144
181
  notification_title: 'Gertaera bat gertatu da hemen: <a href="%{resource_path}">%{resource_title}</a>.'
145
- participatory_process_step_activated_event:
146
- email_intro: '%{resource_title} urratsa aktibo dago %{participatory_space_title}-ra. Orrialde hau ikusi dezakezu:'
147
- email_outro: Jakinarazpena jaso duzu %{participatory_space_title} jarraituz gero. Aurreko esteka jarraituz jakinarazpenak jasotzeari uztea erabaki dezakezu.
148
- email_subject: '%{participatory_space_title} eguneratze bat'
149
- notification_title: '%{resource_title} urratsa dago aktiboa orain <a href="%{resource_path}">%{participatory_space_title}</a>'
150
182
  users:
151
183
  profile_updated:
152
184
  email_intro: <a href="%{resource_url}">profile orriaren 1233_4_1_321 %{name} (%{nickname}) jarraitzen ari zarenean, eguneratu egin da.
@@ -194,6 +226,23 @@ eu:
194
226
  errors:
195
227
  error: Errorea bat dago eremu honetan.
196
228
  remove_this_file: Ezabatu artxibo hau
229
+ log:
230
+ base_presenter:
231
+ create: "%{user_name} sortu %{resource_name}"
232
+ create_with_space: "%{user_name} sortu %{resource_name} en %{space_name}"
233
+ delete: "%{user_name} ezabatu %{resource_name}"
234
+ delete_with_space: "%{user_name} ezabatu %{resource_name} en %{space_name}"
235
+ unknown_action: "%{user_name} Ekintza batzuk egin %{resource_name}"
236
+ unknown_action_with_space: "%{user_name} Ekintza batzuk egin %{resource_name} en %{space_name}"
237
+ update: "%{user_name} eguneratu %{resource_name}"
238
+ update_with_space: "%{user_name} eguneratu %{resource_name} en %{space_name}"
239
+ value_types:
240
+ area_presenter:
241
+ not_found: 'Ez zen datu-basea aurkitu (ID: %{id})'
242
+ scope_presenter:
243
+ not_found: 'Esparrua ez da aurkitu datu-basean (ID: %{id})'
244
+ scope_type_presenter:
245
+ not_found: 'Eremu mota ez da aurkitu datu-baseko (ID: %{id})'
197
246
  managed_users:
198
247
  expired_session: Ordezte-saio hau iraungi da.
199
248
  menu:
@@ -443,6 +492,7 @@ eu:
443
492
  answers_count: Amaitutako inkestak
444
493
  assemblies_count: Batzar
445
494
  comments_count: Iruzkinak
495
+ endorsements_count: Oniritziak
446
496
  headline: '%{organization} erakundearen egungo egoera'
447
497
  meetings_count: Topaketak
448
498
  orders_count: Euskarriak
@@ -482,6 +532,7 @@ eu:
482
532
  day_of_month: "%b %d"
483
533
  day_of_week: "%a"
484
534
  day_of_year: "%d.%m.%y"
535
+ decidim_day_of_year: "%d %B %Y"
485
536
  decidim_short: "%d/%m/%Y %H:%M"
486
537
  time_of_day: "%H:%M"
487
538
  views: