hyrax 2.0.0.rc1 → 2.0.0.rc2

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 (111) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +5 -1
  4. data/app/assets/stylesheets/hyrax/_header.scss +6 -0
  5. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +1 -1
  6. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +4 -3
  7. data/app/controllers/hyrax/collections_controller.rb +2 -0
  8. data/app/forms/hyrax/forms/permission_template_form.rb +113 -48
  9. data/app/jobs/ingest_local_file_job.rb +0 -1
  10. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +25 -0
  11. data/app/search_builders/hyrax/deposit_search_builder.rb +6 -3
  12. data/app/search_builders/hyrax/stats/work_status_search_builder.rb +4 -5
  13. data/app/services/hyrax/default_middleware_stack.rb +0 -1
  14. data/app/services/hyrax/file_set_derivatives_service.rb +13 -4
  15. data/app/services/hyrax/statistics/depositors/summary.rb +1 -1
  16. data/app/services/hyrax/workflow/abstract_notification.rb +3 -2
  17. data/app/services/hyrax/workflow/notification_service.rb +3 -12
  18. data/app/services/hyrax/workflow/permission_query.rb +3 -3
  19. data/app/services/hyrax/workflow/status_list_service.rb +1 -1
  20. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +1 -0
  21. data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +1 -1
  22. data/app/views/hyrax/base/_attribute_rows.html.erb +1 -1
  23. data/app/views/hyrax/collections/show.html.erb +3 -0
  24. data/app/views/hyrax/dashboard/_index_partials/_proxy_rights.html.erb +1 -0
  25. data/app/views/hyrax/notifications/_notifications.html.erb +1 -0
  26. data/config/locales/hyrax.de.yml +7 -3
  27. data/config/locales/hyrax.en.yml +16 -12
  28. data/config/locales/hyrax.es.yml +4 -0
  29. data/config/locales/hyrax.fr.yml +4 -0
  30. data/config/locales/hyrax.it.yml +4 -0
  31. data/config/locales/hyrax.pt-BR.yml +4 -0
  32. data/config/locales/hyrax.zh.yml +4 -0
  33. data/hyrax.gemspec +2 -2
  34. data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +1 -1
  35. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +1 -1
  36. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
  37. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +1 -1
  38. data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +1 -1
  39. data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +1 -1
  40. data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +1 -1
  41. data/lib/hyrax/configuration.rb +11 -0
  42. data/lib/hyrax/version.rb +1 -1
  43. data/spec/abilities/file_set_abilities_spec.rb +3 -3
  44. data/spec/abilities/generic_work_abilities_spec.rb +5 -5
  45. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +12 -12
  46. data/spec/actors/hyrax/actors/transactional_request_spec.rb +1 -1
  47. data/spec/controllers/hyrax/api/items_controller_spec.rb +6 -6
  48. data/spec/controllers/hyrax/citations_controller_spec.rb +2 -2
  49. data/spec/controllers/hyrax/collections_controller_spec.rb +1 -0
  50. data/spec/controllers/hyrax/content_blocks_controller_spec.rb +5 -5
  51. data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +2 -2
  52. data/spec/controllers/hyrax/downloads_controller_spec.rb +3 -3
  53. data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +2 -2
  54. data/spec/controllers/hyrax/generic_works_controller_spec.rb +1 -1
  55. data/spec/controllers/hyrax/homepage_controller_spec.rb +1 -1
  56. data/spec/controllers/hyrax/pages_controller_spec.rb +6 -6
  57. data/spec/controllers/hyrax/users_controller_spec.rb +1 -1
  58. data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +1 -1
  59. data/spec/conversions/power_converters/polymorphic_type_spec.rb +1 -1
  60. data/spec/factories/admin_sets.rb +1 -1
  61. data/spec/factories/api_items.rb +1 -1
  62. data/spec/factories/collections_factory.rb +2 -2
  63. data/spec/factories/content_blocks.rb +1 -1
  64. data/spec/factories/featured_works.rb +1 -1
  65. data/spec/factories/file_sets.rb +3 -3
  66. data/spec/factories/generic_works.rb +15 -15
  67. data/spec/factories/operations.rb +1 -1
  68. data/spec/factories/permission_template_accesses.rb +1 -1
  69. data/spec/factories/permission_templates.rb +1 -1
  70. data/spec/factories/proxy_deposit_requests.rb +2 -2
  71. data/spec/factories/single_use_links.rb +1 -1
  72. data/spec/factories/sipity_entities.rb +1 -1
  73. data/spec/factories/uploaded_files.rb +1 -1
  74. data/spec/factories/users.rb +2 -2
  75. data/spec/factories/workflow_actions.rb +1 -1
  76. data/spec/factories/workflow_states.rb +1 -1
  77. data/spec/factories/workflows.rb +1 -1
  78. data/spec/features/notifications_spec.rb +1 -1
  79. data/spec/forms/hyrax/forms/permission_template_form_spec.rb +113 -2
  80. data/spec/helpers/hyrax/collections_helper_spec.rb +2 -2
  81. data/spec/helpers/hyrax/content_block_helper_spec.rb +1 -1
  82. data/spec/helpers/hyrax/trophy_helper_spec.rb +1 -1
  83. data/spec/jobs/create_derivatives_job_spec.rb +3 -4
  84. data/spec/jobs/ingest_local_file_job_spec.rb +2 -5
  85. data/spec/lib/hyrax/arkivo/actor_spec.rb +2 -2
  86. data/spec/lib/hyrax/arkivo/metadata_munger_spec.rb +1 -1
  87. data/spec/lib/hyrax/arkivo/schema_validator_spec.rb +1 -1
  88. data/spec/lib/hyrax/configuration_spec.rb +4 -0
  89. data/spec/models/file_set_spec.rb +1 -1
  90. data/spec/models/generic_work_spec.rb +1 -1
  91. data/spec/models/hyrax/user_usage_stats_spec.rb +1 -1
  92. data/spec/models/sipity/entity_spec.rb +1 -1
  93. data/spec/models/user_spec.rb +7 -7
  94. data/spec/presenters/hyrax/admin/users_presenter_spec.rb +2 -2
  95. data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +20 -0
  96. data/spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb +12 -12
  97. data/spec/services/hyrax/default_middleware_stack_spec.rb +0 -1
  98. data/spec/services/hyrax/embargo_service_spec.rb +4 -4
  99. data/spec/services/hyrax/workflow/notification_service_spec.rb +0 -35
  100. data/spec/services/hyrax/workflow/permission_generator_spec.rb +1 -1
  101. data/spec/services/hyrax/workflow/status_list_service_spec.rb +12 -0
  102. data/spec/spec_helper.rb +6 -6
  103. data/spec/support/features/session_helpers.rb +1 -1
  104. data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +1 -1
  105. data/spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb +1 -1
  106. data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +1 -1
  107. data/spec/views/hyrax/collections/show.html.erb_spec.rb +23 -5
  108. data/spec/views/pages/show.html.erb_spec.rb +1 -1
  109. data/template.rb +1 -1
  110. metadata +8 -6
  111. data/app/actors/hyrax/actors/assign_representative_actor.rb +0 -22
@@ -9,7 +9,6 @@ module Hyrax
9
9
  middleware.use Hyrax::Actors::CreateWithFilesActor
10
10
  middleware.use Hyrax::Actors::CollectionsMembershipActor
11
11
  middleware.use Hyrax::Actors::AddToWorkActor
12
- middleware.use Hyrax::Actors::AssignRepresentativeActor
13
12
  middleware.use Hyrax::Actors::AttachMembersActor
14
13
  middleware.use Hyrax::Actors::ApplyOrderActor
15
14
  middleware.use Hyrax::Actors::InterpretVisibilityActor
@@ -48,15 +48,24 @@ module Hyrax
48
48
 
49
49
  def create_pdf_derivatives(filename)
50
50
  Hydra::Derivatives::PdfDerivatives.create(filename,
51
- outputs: [{ label: :thumbnail, format: 'jpg', size: '338x493', url: derivative_url('thumbnail') }])
51
+ outputs: [{
52
+ label: :thumbnail,
53
+ format: 'jpg',
54
+ size: '338x493',
55
+ url: derivative_url('thumbnail'),
56
+ layer: 0
57
+ }])
52
58
  extract_full_text(filename, uri)
53
59
  end
54
60
 
55
61
  def create_office_document_derivatives(filename)
56
62
  Hydra::Derivatives::DocumentDerivatives.create(filename,
57
- outputs: [{ label: :thumbnail, format: 'jpg',
58
- size: '200x150>',
59
- url: derivative_url('thumbnail') }])
63
+ outputs: [{
64
+ label: :thumbnail, format: 'jpg',
65
+ size: '200x150>',
66
+ url: derivative_url('thumbnail'),
67
+ layer: 0
68
+ }])
60
69
  extract_full_text(filename, uri)
61
70
  end
62
71
 
@@ -46,7 +46,7 @@ module Hyrax
46
46
  end
47
47
 
48
48
  def search_builder
49
- DepositSearchBuilder.new([:include_depositor_facet], self)
49
+ DepositSearchBuilder.new([:include_depositor_facet, :filter_models], self)
50
50
  end
51
51
 
52
52
  # TODO: This can probably be pushed into the DepositSearchBuilder
@@ -41,7 +41,8 @@ module Hyrax
41
41
  @work_id = entity.proxy_for_global_id.sub(/.*\//, '')
42
42
  @title = entity.proxy_for.title.first
43
43
  @comment = comment.respond_to?(:comment) ? comment.comment.to_s : ''
44
- @recipients = recipients
44
+ # Convert to hash with indifferent access to allow both string and symbol keys
45
+ @recipients = recipients.with_indifferent_access
45
46
  @user = user
46
47
  @entity = entity
47
48
  end
@@ -73,7 +74,7 @@ module Hyrax
73
74
  end
74
75
 
75
76
  def users_to_notify
76
- recipients.fetch('to', []) + recipients.fetch('cc', [])
77
+ recipients.fetch(:to, []) + recipients.fetch(:cc, [])
77
78
  end
78
79
  end
79
80
  end
@@ -48,18 +48,9 @@ module Hyrax
48
48
  # @return [Hash<String, Array>] a hash with keys being the strategy (e.g. "to", "cc") and
49
49
  # the values are a list of users.
50
50
  def recipients(notification)
51
- case entity.workflow_state.name
52
- when 'pending_review'
53
- # notify the managers to review the deposit (CC depositors)
54
- {
55
- to: entity.workflow.permission_template.agent_ids_for(access: 'manage', agent_type: 'user'),
56
- cc: entity.workflow.permission_template.agent_ids_for(access: 'deposit', agent_type: 'user')
57
- }
58
- else
59
- notification.recipients.each_with_object({}) do |r, h|
60
- h[r.recipient_strategy] ||= []
61
- h[r.recipient_strategy] += PermissionQuery.scope_users_for_entity_and_roles(entity: entity, roles: r.role)
62
- end
51
+ notification.recipients.each_with_object({}) do |r, h|
52
+ h[r.recipient_strategy] ||= []
53
+ h[r.recipient_strategy] += PermissionQuery.scope_users_for_entity_and_roles(entity: entity, roles: r.role)
63
54
  end
64
55
  end
65
56
 
@@ -231,8 +231,8 @@ module Hyrax
231
231
  #
232
232
  # An ActiveRecord::Relation scope that meets the following criteria:
233
233
  #
234
- # * Users that are directly associated with the given entity through on or
235
- # more of the given roles
234
+ # * Users that are directly associated with the given entity through one or
235
+ # more of the given roles within the entity's workflow
236
236
  # * Users that are indirectly associated with the given entity by group
237
237
  # and role.
238
238
  #
@@ -248,7 +248,7 @@ module Hyrax
248
248
  agent_table = Sipity::Agent.arel_table
249
249
 
250
250
  workflow_role_id_subquery = workflow_roles.project(workflow_roles[:id]).where(
251
- workflow_roles[:role_id].in(role_ids)
251
+ workflow_roles[:workflow_id].eq(entity.workflow_id).and(workflow_roles[:role_id].in(role_ids))
252
252
  )
253
253
 
254
254
  workflow_agent_id_subquery = workflow_responsibilities.project(workflow_responsibilities[:agent_id]).where(
@@ -38,7 +38,7 @@ module Hyrax
38
38
  actionable_roles = roles_for_user
39
39
  logger.debug("Actionable roles for #{user.user_key} are #{actionable_roles}")
40
40
  return [] if actionable_roles.empty?
41
- WorkRelation.new.search_with_conditions(query(actionable_roles), rows: 1000)
41
+ WorkRelation.new.search_with_conditions(query(actionable_roles), rows: 1000, method: :post)
42
42
  end
43
43
 
44
44
  def query(actionable_roles)
@@ -51,6 +51,7 @@
51
51
  class: 'form-control' %>
52
52
 
53
53
  <%= f.submit t('helpers.submit.hyrax_permission_template_access.create'), class: 'btn btn-info' %>
54
+ <p class="help-block"><%= t('hyrax.admin.admin_sets.form.note')%></p>
54
55
  </div>
55
56
  </div>
56
57
  <% end %>
@@ -34,7 +34,7 @@
34
34
  <li class="radio form-inline">
35
35
  <label>
36
36
  <%= f.radio_button :release_varies, Hyrax::PermissionTemplate::RELEASE_TEXT_VALUE_EMBARGO %>
37
- <%= t('.release.varies.between') %>
37
+ <%= t('.release.varies.period') %>
38
38
  <%= f.collection_select :release_embargo, f.object.embargo_options, :first, :last, prompt: t('.release.varies.embargo.select') %>
39
39
  </label>
40
40
  </li>
@@ -10,4 +10,4 @@
10
10
  <%= presenter.attribute_to_html(:related_url, render_as: :external_link) %>
11
11
  <%= presenter.attribute_to_html(:resource_type, render_as: :faceted) %>
12
12
  <%= presenter.attribute_to_html(:source) %>
13
- <%= presenter.attribute_to_html(:rights_statement) %>
13
+ <%= presenter.attribute_to_html(:rights_statement, render_as: :rights_statement) %>
@@ -12,6 +12,9 @@
12
12
  </div>
13
13
  <div class="col-sm-2">
14
14
  <%= render 'media_display', presenter: @presenter %>
15
+ <% unless has_collection_search_parameters? %>
16
+ <%= render 'hyrax/dashboard/collections/show_actions', presenter: @presenter %>
17
+ <% end %>
15
18
  </div>
16
19
  </div>
17
20
 
@@ -13,6 +13,7 @@
13
13
  <% user.can_receive_deposits_from.each do |depositor| %>
14
14
  <tr><td class="depositor-name"><%= depositor.name %></td>
15
15
  <td><%= link_to(hyrax.user_depositor_path(user, depositor), method: :delete, class: "remove-proxy-button") do %>
16
+ <span class="sr-only"><%= I18n.t('hyrax.dashboard.proxy_delete') %></span>
16
17
  <i class="glyphicon glyphicon-remove"></i><% end %>
17
18
  </td></tr>
18
19
  <% end %>
@@ -24,6 +24,7 @@
24
24
  class: "itemicon itemtrash",
25
25
  title: t('hyrax.mailbox.delete'),
26
26
  method: :delete do %>
27
+ <span class="sr-only"><%= I18n.t('hyrax.dashboard.delete_notification') %></span>
27
28
  <i class="glyphicon glyphicon-trash" aria-hidden="true"></i>
28
29
  <% end %>
29
30
  </td>
@@ -72,6 +72,7 @@ de:
72
72
  header: Admin-Set bearbeiten
73
73
  form:
74
74
  cancel: Abbrechen
75
+ note: Benutzern, denen eine neue Rolle zugewiesen wurde, wird nur die Rolle zugewiesen, die nach der Gewährung dieser Rolle hinterlegt wurde.
75
76
  permission_destroy_errors:
76
77
  admin_group: Die Gruppe der Administratoren des Repositoriums kann nicht entfernt werden
77
78
  permission_update_errors:
@@ -133,7 +134,7 @@ de:
133
134
  no_delay: Keine Verzögerung - Freigabe aller Arbeiten, sobald sie hinterlegt sind
134
135
  title: Freigabe
135
136
  varies:
136
- any: Dem Einzahler erlauben, sich zu entscheiden
137
+ any: Dem Deponierer erlauben, sich zu entscheiden
137
138
  between: Zwischen "jetzt" und
138
139
  description: 'Variabel - Deponenten können den Freigabedatum für eine einzelne Arbeit festlegen:'
139
140
  embargo:
@@ -142,6 +143,7 @@ de:
142
143
  3yrs: 3 Jahre nach der Deponierung
143
144
  6mos: 6 Monate nach der Deponierung
144
145
  select: Wählen Sie die Sperrfrist aus.
146
+ period: 'Der Einlieferer kann eine Embargo-Frist bis zu:'
145
147
  visibility:
146
148
  description: 'Nach dem Release-Datum können die Arbeiten in diesem Admin-Set eingesehen und heruntergeladen werden durch:'
147
149
  everyone: Jeder - alle Arbeiten in diesem Admin-Set werden öffentlich sein
@@ -170,8 +172,8 @@ de:
170
172
  index:
171
173
  action: Aktion
172
174
  description: Beschreibung
173
- feature: Charakteristisch
174
- header: Charakteristik
175
+ feature: Features
176
+ header: Features
175
177
  sidebar:
176
178
  activity: Aktivität
177
179
  admin_sets: Admin-Sets
@@ -431,6 +433,7 @@ de:
431
433
  works_in_collection: Arbeiten in dieser Sammlung
432
434
  create_work: Arbeien erstellen
433
435
  current_proxies: Aktuelle Proxies
436
+ delete_notification: Benachrichtigung löschen
434
437
  heading_actions:
435
438
  close: Schließen
436
439
  create_work: Arbeit erstellen
@@ -482,6 +485,7 @@ de:
482
485
  no_transfer_requests: Sie haben keine Arbeitsübertragungsanforderungen erhalten
483
486
  no_transfers: Sie haben keine Arbeit übertragen
484
487
  proxy_activity: Proxy-Aktivität
488
+ proxy_delete: Proxy löschen
485
489
  proxy_user: Proxy-Benutzer
486
490
  show_admin:
487
491
  new_visitors: Neue Besucher
@@ -71,6 +71,7 @@ en:
71
71
  header: "Edit Administrative Set"
72
72
  form:
73
73
  cancel: "Cancel"
74
+ note: "Users granted a new role will only gain the role on works that are deposited after that role has been granted."
74
75
  permission_destroy_errors:
75
76
  admin_group: "The repository administrators group cannot be removed"
76
77
  permission_update_notices:
@@ -124,16 +125,17 @@ en:
124
125
  current_participants: "Current Participants"
125
126
  form_visibility:
126
127
  cancel: "Cancel"
127
- page_description: "Release and visibility settings control when works added to this set are made available for discovery and download and who can discover and download them."
128
+ page_description: "Release and visibility settings determine the options available to depositors when submitting a work to this administrative set. Changes to these settings do not affect previously deposited works."
128
129
  release:
129
- description: "You can impose a delay (embargo) before works in this administrative set are released for discovery and download."
130
- fixed: "Fixed -- delay release of all works until"
131
- no_delay: "No delay -- release all works as soon as they are deposited"
130
+ description: "Set embargoes and lease polices for this administrative set."
131
+ fixed: "Depositor must choose embargo -- delay release of all works until"
132
+ no_delay: "Do not allow embargoes or leases"
132
133
  title: "Release"
133
134
  varies:
134
- any: "Allow depositor to decide"
135
- between: "Between \"now\" and"
136
- description: "Varies -- depositors can set the release date for an individual work:"
135
+ any: "Depositor can choose any embargo length; leases are allowed"
136
+ between: "Depositor can choose embargo up to date:"
137
+ period: "Depositor can choose embargo period up to:"
138
+ description: "Allow depositor to choose settings:"
137
139
  embargo:
138
140
  1yr: "1 year after deposit"
139
141
  2yrs: "2 years after deposit"
@@ -141,12 +143,12 @@ en:
141
143
  6mos: "6 months after deposit"
142
144
  select: "Select embargo period.."
143
145
  visibility:
144
- description: "After its release date, works in this set can be discovered and downloaded by:"
145
- everyone: "Everyone -- all works in this set will be public"
146
- institution: "Institution -- all works will be visible only to authenticated users of this institution"
147
- restricted: "Restricted -- all works will be visible only to repository managers and managers and reviewers of this administrative set"
146
+ description: "Set visibility policies for the administrative set. Setting honors embargo policies above."
147
+ everyone: "Public - depositor can only choose public visibility setting"
148
+ institution: "Institution -- depositor can only select institution visibility setting"
149
+ restricted: "Private -- depositor can only select private for visibility. Access is restricted to repository administrators, managers, and viewers of the set. Must be used with \"No embargo\" setting above."
148
150
  title: "Visibility"
149
- varies: "Varies -- default is public, but depositors can restrict the visibility of individual works"
151
+ varies: "All settings allowed -- depositor can choose. Must use this option to allow leases."
150
152
  form_workflow:
151
153
  cancel: "Cancel"
152
154
  no_workflows: "There are no workflows to select."
@@ -462,10 +464,12 @@ en:
462
464
  works: "Your Works"
463
465
  no_activity: "User has no recent activity"
464
466
  no_notifications: "User has no notifications"
467
+ delete_notification: "Delete Notification"
465
468
  no_transfer_requests: "You haven't received any work transfer requests"
466
469
  no_transfers: "You haven't transferred any work"
467
470
  proxy_activity: "Proxy Activity"
468
471
  proxy_user: "Proxy User"
472
+ proxy_delete: "Delete Proxy"
469
473
  show_admin:
470
474
  new_visitors: "New Visitors"
471
475
  registered_users: "Registered users"
@@ -72,6 +72,7 @@ es:
72
72
  header: Editar Conjunto Administrativo
73
73
  form:
74
74
  cancel: Cancelar
75
+ note: Los usuarios a los que se les otorgue un nuevo rol solo obtendrán el rol en los trabajos que se depositen después de que se haya otorgado ese rol.
75
76
  permission_destroy_errors:
76
77
  admin_group: No se puede eliminar el grupo de administradores del repositorio
77
78
  permission_update_errors:
@@ -142,6 +143,7 @@ es:
142
143
  3yrs: Tres años después del depósito
143
144
  6mos: Seis meses después del depósito
144
145
  select: Seleccione el período de embargo...
146
+ period: 'El depositante puede elegir un período de embargo hasta:'
145
147
  visibility:
146
148
  description: 'Después de su fecha de lanzamiento, los trabajos de este conjunto pueden ser descubiertos y descargados por:'
147
149
  everyone: Todos -- todos los trabajos de este conjunto serán públicos.
@@ -426,6 +428,7 @@ es:
426
428
  works_in_collection: Trabajos en esta colección
427
429
  create_work: Crear Trabajo
428
430
  current_proxies: Proxies actuales
431
+ delete_notification: Eliminar notificación
429
432
  heading_actions:
430
433
  close: Cerrar
431
434
  create_work: Crear trabajo
@@ -477,6 +480,7 @@ es:
477
480
  no_transfer_requests: No ha recibido ninguna petición de transferencia
478
481
  no_transfers: No ha transferido ningún trabajo
479
482
  proxy_activity: Actividad de Proxy
483
+ proxy_delete: Eliminar proxy
480
484
  proxy_user: Usuario de Proxy
481
485
  show_admin:
482
486
  new_visitors: Visitantes Nuevos
@@ -72,6 +72,7 @@ fr:
72
72
  header: Modifier l'ensemble administratif
73
73
  form:
74
74
  cancel: Annuler
75
+ note: Les utilisateurs auxquels un nouveau rôle est attribué n'acquièrent un rôle que sur les œuvres déposées après l'attribution de ce rôle.
75
76
  permission_destroy_errors:
76
77
  admin_group: Le groupe des administrateurs du référentiel ne peut pas être supprimé
77
78
  permission_update_errors:
@@ -142,6 +143,7 @@ fr:
142
143
  3yrs: 3 ans après le dépôt
143
144
  6mos: 6 mois après le dépôt
144
145
  select: Sélectionnez la période d'embargo ...
146
+ period: 'Le déposant peut choisir la période d''embargo jusqu''à:'
145
147
  visibility:
146
148
  description: 'Après sa date de sortie, les travaux de cet ensemble peuvent être découverts et téléchargés par:'
147
149
  everyone: Tout le monde - tout fonctionne dans cet ensemble sera public
@@ -431,6 +433,7 @@ fr:
431
433
  works_in_collection: Fonctionne dans cette collection
432
434
  create_work: Créer un travail
433
435
  current_proxies: Proxies actuelles
436
+ delete_notification: Supprimer la notification
434
437
  heading_actions:
435
438
  close: Fermer
436
439
  create_work: Créer un travail
@@ -482,6 +485,7 @@ fr:
482
485
  no_transfer_requests: Vous n'avez reçu aucune demande de transfert de travail
483
486
  no_transfers: Vous n'avez transféré aucun travail
484
487
  proxy_activity: Activité de procuration
488
+ proxy_delete: Supprimer le proxy
485
489
  proxy_user: Utilisateur proxy
486
490
  show_admin:
487
491
  new_visitors: Nouveaux visiteurs
@@ -72,6 +72,7 @@ it:
72
72
  header: Modifica impostazione amministrativa
73
73
  form:
74
74
  cancel: Annulla
75
+ note: Gli utenti che hanno assegnato un nuovo ruolo avranno solo il ruolo di opere che vengono depositate dopo che tale ruolo è stato concesso.
75
76
  permission_destroy_errors:
76
77
  admin_group: Impossibile rimuovere il gruppo amministratori di repository
77
78
  permission_update_errors:
@@ -142,6 +143,7 @@ it:
142
143
  3yrs: 3 anni dopo il deposito
143
144
  6mos: 6 mesi dopo il deposito
144
145
  select: Seleziona il periodo di embargo ..
146
+ period: 'Depositor può scegliere il periodo di embargo fino a:'
145
147
  visibility:
146
148
  description: 'Dopo la data di rilascio, i lavori in questo set possono essere scoperti e scaricati da:'
147
149
  everyone: Tutti - tutti i lavori in questo set saranno pubblici
@@ -431,6 +433,7 @@ it:
431
433
  works_in_collection: Funziona in questa collezione
432
434
  create_work: Crea lavoro
433
435
  current_proxies: Proxy attuali
436
+ delete_notification: Elimina notifica
434
437
  heading_actions:
435
438
  close: Vicino
436
439
  create_work: Crea lavoro
@@ -482,6 +485,7 @@ it:
482
485
  no_transfer_requests: Non hai ricevuto richieste di trasferimento di lavoro
483
486
  no_transfers: Non hai trasferito alcun lavoro
484
487
  proxy_activity: Attività proxy
488
+ proxy_delete: Elimina proxy
485
489
  proxy_user: Utente Proxy
486
490
  show_admin:
487
491
  new_visitors: Nuovi visitatori
@@ -72,6 +72,7 @@ pt-BR:
72
72
  header: Editar Conjunto Administrativo
73
73
  form:
74
74
  cancel: Cancelar
75
+ note: Os usuários que receberam uma nova função só ganharão o papel nas obras que são depositadas depois que essa função foi concedida.
75
76
  permission_destroy_errors:
76
77
  admin_group: O grupo de administradores do repositório não pode ser removido
77
78
  permission_update_errors:
@@ -142,6 +143,7 @@ pt-BR:
142
143
  3yrs: 3 anos após o depósito
143
144
  6mos: 6 meses após o depósito
144
145
  select: Selecione o período de embargo ...
146
+ period: 'O depositante pode escolher o período de embargo até:'
145
147
  visibility:
146
148
  description: 'Após a data de lançamento, os trabalhos deste conjunto podem ser descobertos e baixados por:'
147
149
  everyone: Todos - todos os trabalhos neste conjunto serão públicos
@@ -431,6 +433,7 @@ pt-BR:
431
433
  works_in_collection: Funciona nesta coleção
432
434
  create_work: Criar trabalho
433
435
  current_proxies: Proxies atuais
436
+ delete_notification: Eliminar Notificação
434
437
  heading_actions:
435
438
  close: Fechar
436
439
  create_work: Criar trabalho
@@ -482,6 +485,7 @@ pt-BR:
482
485
  no_transfer_requests: Você não recebeu nenhum pedido de transferência de trabalho
483
486
  no_transfers: Você não transferiu nenhum trabalho
484
487
  proxy_activity: Atividade de proxy
488
+ proxy_delete: Eliminar Proxy
485
489
  proxy_user: Usuário Proxy
486
490
  show_admin:
487
491
  new_visitors: Novos visitantes
@@ -78,6 +78,7 @@ zh:
78
78
  header: 编辑管理集
79
79
  form:
80
80
  cancel: 取消
81
+ note: 授予新角色的用户只能在授予该角色后存储的作品获得角色。
81
82
  permission_destroy_errors:
82
83
  admin_group: 无法删除存储库管理员组
83
84
  permission_update_errors:
@@ -148,6 +149,7 @@ zh:
148
149
  3yrs: 存储三年之后
149
150
  6mos: 存储六个月之后
150
151
  select: 选择时滞期限..
152
+ period: 存款人可以选择禁运期限:
151
153
  visibility:
152
154
  description: '发布日期之后, 管理集内的作品可以被发现和下载:'
153
155
  everyone: 每个人 -- 管理集内的所有作品会公开
@@ -432,6 +434,7 @@ zh:
432
434
  works_in_collection: 在这个集合的作品
433
435
  create_work: 创建作品
434
436
  current_proxies: 目前代理
437
+ delete_notification: 删除通知
435
438
  heading_actions:
436
439
  close: 关闭
437
440
  create_work: 创建作品
@@ -483,6 +486,7 @@ zh:
483
486
  no_transfer_requests: 您没有收到任何在作品转让请求
484
487
  no_transfers: 您没有转让任何作品
485
488
  proxy_activity: 代理活动
489
+ proxy_delete: 删除代理
486
490
  proxy_user: 代理用户
487
491
  show_admin:
488
492
  new_visitors: 新访问者