hyrax 3.2.0 → 3.3.0
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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +3 -6
- data/.dassie/.env +1 -2
- data/.dassie/Gemfile +7 -3
- data/.dassie/app/models/user.rb +0 -2
- data/.dassie/config/analytics.yml +12 -5
- data/.dassie/config/environments/development.rb +2 -0
- data/.dassie/config/initializers/hyrax.rb +2 -0
- data/.dassie/db/migrate/20210921150120_enable_uuid_extension.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20210921150121_create_orm_resources.valkyrie_engine.rb +19 -0
- data/.dassie/db/migrate/20210921150122_add_model_type_to_orm_resources.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20210921150123_change_model_type_to_internal_model.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20210921150124_create_path_gin_index.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20210921150125_create_internal_resource_index.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20210921150126_create_updated_at_index.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20210921150127_add_optimistic_locking_to_orm_resources.valkyrie_engine.rb +7 -0
- data/.dassie/db/migrate/20211130181150_create_default_administrative_set.rb +8 -0
- data/.dassie/db/schema.rb +20 -1
- data/.env +7 -4
- data/.github/workflows/main.yml +17 -0
- data/.github/workflows/release.yml +17 -0
- data/.gitignore +1 -0
- data/.regen +1 -1
- data/CONTAINERS.md +13 -10
- data/README.md +37 -0
- data/app/assets/javascripts/hyrax/admin/graphs.es6 +34 -37
- data/app/assets/javascripts/hyrax/analytics_events.js +69 -0
- data/app/assets/javascripts/hyrax/collapse.js +24 -0
- data/app/assets/javascripts/hyrax/collections.js +1 -2
- data/app/assets/javascripts/hyrax/ga_events.js +2 -8
- data/app/assets/javascripts/hyrax/reports-buttons.js +33 -0
- data/app/assets/javascripts/hyrax.js +2 -1
- data/app/assets/stylesheets/_bootstrap-default-overrides.scss +9 -0
- data/app/authorities/qa/authorities/collections.rb +4 -5
- data/app/authorities/qa/authorities/find_works.rb +1 -1
- data/app/controllers/concerns/hyrax/breadcrumbs_for_collection_analytics.rb +26 -0
- data/app/controllers/concerns/hyrax/breadcrumbs_for_works_analytics.rb +26 -0
- data/app/controllers/concerns/hyrax/controller.rb +22 -0
- data/app/controllers/hyrax/admin/analytics/analytics_controller.rb +40 -0
- data/app/controllers/hyrax/admin/analytics/collection_reports_controller.rb +61 -0
- data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +122 -0
- data/app/controllers/hyrax/collections_controller.rb +4 -1
- data/app/controllers/hyrax/dashboard/collections_controller.rb +15 -6
- data/app/controllers/hyrax/dashboard_controller.rb +8 -0
- data/app/controllers/hyrax/stats_controller.rb +3 -1
- data/app/forms/hyrax/forms/pcdm_collection_form.rb +3 -0
- data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +1 -1
- data/app/jobs/characterize_job.rb +28 -1
- data/app/jobs/valkyrie_ingest_job.rb +56 -0
- data/app/models/concerns/hyrax/ability.rb +26 -5
- data/app/models/concerns/hyrax/solr_document/metadata.rb +1 -0
- data/app/models/file_download_stat.rb +4 -4
- data/app/models/hyrax/default_administrative_set.rb +42 -0
- data/app/models/hyrax/statistic.rb +31 -4
- data/app/presenters/hyrax/admin/dashboard_presenter.rb +8 -6
- data/app/presenters/hyrax/admin/repository_growth_presenter.rb +10 -5
- data/app/presenters/hyrax/admin/user_activity_presenter.rb +8 -12
- data/app/presenters/hyrax/file_set_presenter.rb +2 -0
- data/app/presenters/hyrax/menu_presenter.rb +4 -0
- data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +1 -1
- data/app/presenters/hyrax/work_show_presenter.rb +5 -2
- data/app/presenters/hyrax/work_usage.rb +1 -0
- data/app/search_builders/hyrax/README.md +1 -1
- data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +1 -1
- data/app/search_builders/hyrax/my/collections_search_builder.rb +1 -1
- data/app/services/hyrax/admin_set_create_service.rb +76 -14
- data/app/services/hyrax/analytics/google/events.rb +37 -0
- data/app/services/hyrax/analytics/google/events_daily.rb +72 -0
- data/app/services/hyrax/analytics/google/visits.rb +44 -0
- data/app/services/hyrax/analytics/google/visits_daily.rb +49 -0
- data/app/services/hyrax/analytics/google.rb +204 -0
- data/app/services/hyrax/analytics/matomo.rb +193 -0
- data/app/services/hyrax/analytics/results.rb +79 -0
- data/app/services/hyrax/analytics.rb +12 -82
- data/app/services/hyrax/characterization/valkyrie_characterization_service.rb +134 -0
- data/app/services/hyrax/collections/nested_collection_query_service.rb +8 -3
- data/app/services/hyrax/listeners/acl_index_listener.rb +3 -1
- data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +3 -1
- data/app/services/hyrax/listeners/batch_notification_listener.rb +3 -1
- data/app/services/hyrax/listeners/file_metadata_listener.rb +19 -0
- data/app/services/hyrax/listeners/file_set_lifecycle_listener.rb +6 -2
- data/app/services/hyrax/listeners/file_set_lifecycle_notification_listener.rb +6 -2
- data/app/services/hyrax/listeners/member_cleanup_listener.rb +3 -0
- data/app/services/hyrax/listeners/metadata_index_listener.rb +9 -3
- data/app/services/hyrax/listeners/object_lifecycle_listener.rb +9 -3
- data/app/services/hyrax/listeners/proxy_deposit_listener.rb +3 -1
- data/app/services/hyrax/listeners/trophy_cleanup_listener.rb +3 -0
- data/app/services/hyrax/listeners/workflow_listener.rb +3 -1
- data/app/services/hyrax/listeners.rb +8 -0
- data/app/services/hyrax/restriction_service.rb +4 -0
- data/app/services/hyrax/statistics/users/over_time.rb +8 -5
- data/app/services/hyrax/statistics/works/over_time.rb +10 -0
- data/app/services/hyrax/work_uploads_handler.rb +4 -1
- data/app/views/hyrax/admin/analytics/_date_range_form.html.erb +11 -0
- data/app/views/hyrax/admin/analytics/collection_reports/_custom_range.html.erb +39 -0
- data/app/views/hyrax/admin/analytics/collection_reports/_monthly_summary.html.erb +48 -0
- data/app/views/hyrax/admin/analytics/collection_reports/_summary.html.erb +55 -0
- data/app/views/hyrax/admin/analytics/collection_reports/_top_collections.html.erb +55 -0
- data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +70 -0
- data/app/views/hyrax/admin/analytics/collection_reports/show.html.erb +94 -0
- data/app/views/hyrax/admin/analytics/work_reports/_custom_range.html.erb +43 -0
- data/app/views/hyrax/admin/analytics/work_reports/_monthly_summary.html.erb +35 -0
- data/app/views/hyrax/admin/analytics/work_reports/_summary.html.erb +60 -0
- data/app/views/hyrax/admin/analytics/work_reports/_top_file_set_downloads.html.erb +33 -0
- data/app/views/hyrax/admin/analytics/work_reports/_top_works.html.erb +40 -0
- data/app/views/hyrax/admin/analytics/work_reports/_work_counts.html.erb +18 -0
- data/app/views/hyrax/admin/analytics/work_reports/_work_files.html.erb +41 -0
- data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +77 -0
- data/app/views/hyrax/admin/analytics/work_reports/show.html.erb +90 -0
- data/app/views/hyrax/admin/stats/show.html.erb +1 -1
- data/app/views/hyrax/base/_relationships_parent_row.html.erb +0 -1
- data/app/views/hyrax/base/show.html.erb +6 -0
- data/app/views/hyrax/collections/show.html.erb +4 -0
- data/app/views/hyrax/dashboard/_repository_growth.html.erb +5 -5
- data/app/views/hyrax/dashboard/_resource_type_graph.html.erb +41 -0
- data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -1
- data/app/views/hyrax/dashboard/_tabs.html.erb +11 -0
- data/app/views/hyrax/dashboard/_user_activity.html.erb +17 -23
- data/app/views/hyrax/dashboard/_user_activity_graph.html.erb +55 -0
- data/app/views/hyrax/dashboard/_visibility_graph.html.erb +31 -0
- data/app/views/hyrax/dashboard/_work_type_graph.html.erb +41 -0
- data/app/views/hyrax/dashboard/collections/_form.html.erb +2 -1
- data/app/views/hyrax/dashboard/show_admin.html.erb +24 -45
- data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +22 -0
- data/app/views/hyrax/file_sets/_actions.html.erb +4 -3
- data/app/views/hyrax/file_sets/show.html.erb +6 -0
- data/app/views/hyrax/my/collections/index.html.erb +1 -1
- data/app/views/hyrax/stats/_downloads.html.erb +18 -0
- data/app/views/hyrax/stats/_pageviews.html.erb +18 -0
- data/app/views/hyrax/stats/work.html.erb +17 -9
- data/app/views/layouts/_head_tag_content.html.erb +7 -2
- data/app/views/{_ga.html.erb → shared/_ga.html.erb} +3 -7
- data/app/views/shared/_matomo.html.erb +15 -0
- data/chart/hyrax/Chart.yaml +1 -1
- data/chart/hyrax/values.yaml +1 -1
- data/config/i18n-tasks.yml +2 -2
- data/config/initializers/listeners.rb +5 -5
- data/config/locales/hyrax.de.yml +194 -0
- data/config/locales/hyrax.en.yml +190 -12
- data/config/locales/hyrax.es.yml +194 -0
- data/config/locales/hyrax.fr.yml +194 -0
- data/config/locales/hyrax.it.yml +194 -0
- data/config/locales/hyrax.pt-BR.yml +194 -0
- data/config/locales/hyrax.zh.yml +194 -0
- data/config/routes.rb +4 -0
- data/docker-compose.yml +3 -1
- data/documentation/developing-your-hyrax-based-app.md +2 -2
- data/documentation/legacyREADME.md +1 -1
- data/hyrax.gemspec +3 -1
- data/lib/generators/hyrax/templates/config/analytics.yml +13 -7
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +0 -13
- data/lib/generators/hyrax/templates/db/migrate/20211130181150_create_default_administrative_set.rb.erb +8 -0
- data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +3 -1
- data/lib/hyrax/configuration.rb +67 -5
- data/lib/hyrax/engine.rb +7 -6
- data/lib/hyrax/publisher.rb +4 -0
- data/lib/hyrax/transactions/admin_set_create.rb +22 -0
- data/lib/hyrax/transactions/container.rb +11 -0
- data/lib/hyrax/version.rb +1 -1
- data/lib/tasks/regenerate_derivatives.rake +1 -1
- data/lib/wings/setup.rb +15 -0
- data/lib/wings/valkyrie/persister.rb +16 -0
- data/template.rb +1 -1
- data/vendor/assets/javascripts/morris/morris.min.js +1 -7
- data/vendor/assets/stylesheets/morris.js/0.5.1/morris.css +1 -1
- metadata +87 -11
- data/app/views/hyrax/dashboard/_repository_objects.html.erb +0 -28
data/config/locales/hyrax.it.yml
CHANGED
|
@@ -31,6 +31,9 @@ it:
|
|
|
31
31
|
filters:
|
|
32
32
|
title: 'Filtro per:'
|
|
33
33
|
start_over: Cancellare i filtri
|
|
34
|
+
download:
|
|
35
|
+
one: e 1 download
|
|
36
|
+
other: e %{count} download
|
|
34
37
|
errors:
|
|
35
38
|
messages:
|
|
36
39
|
carrierwave_download_error: Impossibile scaricare l'immagine.
|
|
@@ -178,6 +181,141 @@ it:
|
|
|
178
181
|
item_list_header: Funziona in questo set
|
|
179
182
|
show_actions:
|
|
180
183
|
confirm_delete: Sei sicuro di voler eliminare questo set amministrativo? Questa azione non può essere annullata.
|
|
184
|
+
analytics:
|
|
185
|
+
collection_reports:
|
|
186
|
+
custom_range:
|
|
187
|
+
collection_home_page_views: Visualizzazioni della home page della raccolta
|
|
188
|
+
date_range_heading: Personalizza intervallo di date
|
|
189
|
+
summary_heading: Riepilogo dell'attività dell'utente
|
|
190
|
+
work_downloads: Download di opere
|
|
191
|
+
work_views: Viste delle opere
|
|
192
|
+
index:
|
|
193
|
+
activity: Attività
|
|
194
|
+
and: e
|
|
195
|
+
custom_range: Gamma personalizzata
|
|
196
|
+
date_range_heading: Personalizza rapporto
|
|
197
|
+
downloads: download
|
|
198
|
+
enable_analytics: Abilita Analytics per visualizzare i report
|
|
199
|
+
export: Esportare
|
|
200
|
+
monthly: Mensile
|
|
201
|
+
repo_summary: Il repository contiene
|
|
202
|
+
repo_summary_2: che collettivamente hanno avuto
|
|
203
|
+
report_generated_on: Questo rapporto è stato generato il
|
|
204
|
+
report_header: Report collezioni personalizzate
|
|
205
|
+
summary: Riepilogo
|
|
206
|
+
title: Report collezioni
|
|
207
|
+
views: visualizzazioni di pagina
|
|
208
|
+
monthly_summary:
|
|
209
|
+
collection_views: Visualizzazioni della home page della raccolta
|
|
210
|
+
monthly_subtitle: Stato mese per mese per gli ultimi 12 mesi fino a
|
|
211
|
+
work_downloads: Download di opere
|
|
212
|
+
work_views: Viste delle opere
|
|
213
|
+
show:
|
|
214
|
+
collection_type: Tipo di raccolta
|
|
215
|
+
created_by: Creato da
|
|
216
|
+
custom_range: Gamma personalizzata
|
|
217
|
+
last_updated: Ultimo aggiornamento il
|
|
218
|
+
monthly: Mensile
|
|
219
|
+
return_to_btn: Torna al rapporto sulle collezioni
|
|
220
|
+
summary: Riepilogo
|
|
221
|
+
title: Rapporto di raccolta
|
|
222
|
+
view_collection_btn: Visualizza raccolta
|
|
223
|
+
visibility: Visibilità
|
|
224
|
+
summary:
|
|
225
|
+
all_time: Sempre
|
|
226
|
+
collection_home_page_views: Visualizzazioni della home page della raccolta
|
|
227
|
+
date_range: Intervallo di date
|
|
228
|
+
subtitle: Riepilogo dell'attività dell'utente
|
|
229
|
+
this_month: Questo mese
|
|
230
|
+
this_week: Questa settimana
|
|
231
|
+
this_year: Quest'anno
|
|
232
|
+
today: Oggi
|
|
233
|
+
work_downloads: Download di opere
|
|
234
|
+
work_views: Viste delle opere
|
|
235
|
+
top_collections:
|
|
236
|
+
collection_page_views: Visualizzazioni della pagina della raccolta
|
|
237
|
+
collection_title: Titolo della raccolta
|
|
238
|
+
deleted: Raccolta eliminata
|
|
239
|
+
export: Esportare
|
|
240
|
+
file_downloads_in_collection: Download di set di file in questa raccolta
|
|
241
|
+
top_collections: Collezioni migliori
|
|
242
|
+
works_in_collection_views: Funziona in questa collezione Viste
|
|
243
|
+
date_range_form:
|
|
244
|
+
date_range_heading: Personalizza intervallo di date
|
|
245
|
+
end_date: Data di fine
|
|
246
|
+
reset_date_range: Reimposta intervallo di date
|
|
247
|
+
set_date_range: Imposta l'intervallo di date del rapporto
|
|
248
|
+
start_date: Data d'inizio
|
|
249
|
+
work_reports:
|
|
250
|
+
custom_range:
|
|
251
|
+
date_range_heading: Personalizza intervallo di date
|
|
252
|
+
file_downloads: Download di file
|
|
253
|
+
page_views: Visualizzazioni di pagina
|
|
254
|
+
summary_heading: Riepilogo dell'attività dell'utente
|
|
255
|
+
unique_visitors: visitatori Singoli
|
|
256
|
+
index:
|
|
257
|
+
access_to: Hai accesso a
|
|
258
|
+
activity: Attività
|
|
259
|
+
and: e
|
|
260
|
+
custom_range: Gamma personalizzata
|
|
261
|
+
date_range_heading: Personalizza rapporto
|
|
262
|
+
downloads: download
|
|
263
|
+
enable_analytics: Abilita Analytics per visualizzare i report
|
|
264
|
+
export: Esportare
|
|
265
|
+
monthly: Mensile
|
|
266
|
+
repo_summary: in questo deposito che collettivamente hanno avuto
|
|
267
|
+
report_generated_on: Questo rapporto è stato generato il
|
|
268
|
+
report_header: Rapporto sui lavori personalizzati
|
|
269
|
+
subtitle: Riepilogo dell'attività dell'utente
|
|
270
|
+
summary: Riepilogo
|
|
271
|
+
title: Relazione sui lavori
|
|
272
|
+
views: visualizzazioni
|
|
273
|
+
works: lavori
|
|
274
|
+
monthly_summary:
|
|
275
|
+
file_downloads: Download di file
|
|
276
|
+
monthly_subtitle: Stato mese per mese per gli ultimi 12 mesi fino a
|
|
277
|
+
page_views: Visualizzazioni di pagina
|
|
278
|
+
show:
|
|
279
|
+
custom_range: Gamma personalizzata
|
|
280
|
+
deposited_by: Depositato da
|
|
281
|
+
monthly: Mensile
|
|
282
|
+
resource_type: Tipo di risorsa
|
|
283
|
+
return_to_btn: Ritorno al resoconto dei lavori
|
|
284
|
+
status: Stato
|
|
285
|
+
summary: Riepilogo
|
|
286
|
+
title: Rapporto di lavoro
|
|
287
|
+
view_work_btn: Visualizza lavoro
|
|
288
|
+
visibility: Visibilità
|
|
289
|
+
work_type: Tipo di lavoro
|
|
290
|
+
summary:
|
|
291
|
+
all_time: Sempre
|
|
292
|
+
date_range: Intervallo di date
|
|
293
|
+
file_downloads: Download di file
|
|
294
|
+
page_views: Visualizzazioni di pagina
|
|
295
|
+
subtitle: Riepilogo dell'attività dell'utente
|
|
296
|
+
this_month: Questo mese
|
|
297
|
+
this_week: Questa settimana
|
|
298
|
+
this_year: Quest'anno
|
|
299
|
+
today: Oggi
|
|
300
|
+
unique_visitors: visitatori Singoli
|
|
301
|
+
top_file_set_downloads:
|
|
302
|
+
file: File
|
|
303
|
+
file_downloads: Download di file
|
|
304
|
+
file_name: Nome del file
|
|
305
|
+
top_downloads: Download di file principali
|
|
306
|
+
top_works:
|
|
307
|
+
export: Esportare
|
|
308
|
+
file_downloads: Download di file
|
|
309
|
+
top_works: I migliori lavori
|
|
310
|
+
work_title: Titolo del lavoro
|
|
311
|
+
work_views: Visualizzazioni della pagina di lavoro
|
|
312
|
+
work_counts:
|
|
313
|
+
child_works: bambino lavora
|
|
314
|
+
files: File
|
|
315
|
+
total_size: dimensione totale
|
|
316
|
+
work_files:
|
|
317
|
+
title: File
|
|
318
|
+
total_downloads: Download totali
|
|
181
319
|
appearances:
|
|
182
320
|
show:
|
|
183
321
|
header: Aspetto
|
|
@@ -263,11 +401,14 @@ it:
|
|
|
263
401
|
header: Caratteristiche
|
|
264
402
|
sidebar:
|
|
265
403
|
activity: Attività
|
|
404
|
+
analytics: Analisi
|
|
266
405
|
appearance: Aspetto
|
|
267
406
|
collection_types: Tipi di raccolta
|
|
268
407
|
collections: collezioni
|
|
408
|
+
collections_report: Report collezioni
|
|
269
409
|
configuration: Configurazione
|
|
270
410
|
content_blocks: Blocchi di contenuti
|
|
411
|
+
dashboard: Pannello di controllo
|
|
271
412
|
delete_all: Cancella tutto
|
|
272
413
|
notifications: notifiche
|
|
273
414
|
pages: pagine
|
|
@@ -284,6 +425,7 @@ it:
|
|
|
284
425
|
workflow_roles: Ruoli di flusso di lavoro
|
|
285
426
|
works: Lavori
|
|
286
427
|
works_listing: Elenco delle opere
|
|
428
|
+
works_report: Relazione sui lavori
|
|
287
429
|
stats:
|
|
288
430
|
deposited_form:
|
|
289
431
|
end_label: Fine [impostazione predefinita]
|
|
@@ -296,6 +438,10 @@ it:
|
|
|
296
438
|
unpublished: inedito
|
|
297
439
|
user_deposits:
|
|
298
440
|
end_label: Fine [impostazione predefinita]
|
|
441
|
+
headers:
|
|
442
|
+
main: Statistiche di lavoro
|
|
443
|
+
total: 'Opere totali:'
|
|
444
|
+
visibility: Totali per visibilità
|
|
299
445
|
heading: Visualizza file depositati dagli utenti
|
|
300
446
|
start_label: Di partenza
|
|
301
447
|
works:
|
|
@@ -692,13 +838,17 @@ it:
|
|
|
692
838
|
authorize_proxies: Autorizzare i Proxy
|
|
693
839
|
breadcrumbs:
|
|
694
840
|
admin: Amministrazione
|
|
841
|
+
collections_report: Report collezioni
|
|
842
|
+
works_report: Relazione sui lavori
|
|
695
843
|
collection_type_actions:
|
|
696
844
|
close: Vicino
|
|
697
845
|
create_collection: Crea raccolta
|
|
698
846
|
select_type_of_collection: Seleziona il tipo di collezione
|
|
699
847
|
collections:
|
|
848
|
+
collection_title: Titolo della raccolta
|
|
700
849
|
edit:
|
|
701
850
|
header: 'Modifica collezione: %{title}'
|
|
851
|
+
files: File
|
|
702
852
|
form:
|
|
703
853
|
permission_update_errors:
|
|
704
854
|
error: Opzione di aggiornamento non valida per modello di autorizzazione.
|
|
@@ -789,8 +939,10 @@ it:
|
|
|
789
939
|
remove: Rimuovere
|
|
790
940
|
title: Gli spettatori
|
|
791
941
|
type: genere
|
|
942
|
+
last_updated: Ultimo aggiornamento
|
|
792
943
|
new:
|
|
793
944
|
header: Crea nuova collezione
|
|
945
|
+
recent_activity: Attività Recente
|
|
794
946
|
show:
|
|
795
947
|
header: Collezione
|
|
796
948
|
item_count: Lavori
|
|
@@ -819,6 +971,7 @@ it:
|
|
|
819
971
|
sort_and_per_page:
|
|
820
972
|
show_par_page_html: Mostra %{select} per pagina
|
|
821
973
|
sort_by: 'Ordina Per:'
|
|
974
|
+
title: Collezioni
|
|
822
975
|
work_action_menu:
|
|
823
976
|
delete_work: Elimina lavoro
|
|
824
977
|
deleting_from_work: L'eliminazione di un'opera da %{application_name} è permanente. Fai clic su OK per eliminare quest'opera da %{application_name} o Annulla per annullare questa operazione
|
|
@@ -827,6 +980,7 @@ it:
|
|
|
827
980
|
remove_from_collection: Rimuovi dalla raccolta
|
|
828
981
|
select_an_action: Seleziona un'azione
|
|
829
982
|
transfer_ownership_of_work: Trasferimento della proprietà del lavoro
|
|
983
|
+
works: Lavori
|
|
830
984
|
create_work: Crea lavoro
|
|
831
985
|
current_proxies: Proxy attuali
|
|
832
986
|
delete_notification: Elimina notifica
|
|
@@ -886,6 +1040,7 @@ it:
|
|
|
886
1040
|
view: vista
|
|
887
1041
|
users: 'utenti:'
|
|
888
1042
|
collections: Le tue collezioni
|
|
1043
|
+
collections_report: Report collezioni
|
|
889
1044
|
facet_label:
|
|
890
1045
|
collections: 'Collezioni filtro:'
|
|
891
1046
|
highlighted: 'Filtra i punti salienti:'
|
|
@@ -921,6 +1076,7 @@ it:
|
|
|
921
1076
|
show_label: Visualizza tutti i dettagli di
|
|
922
1077
|
thumbnail: miniatura
|
|
923
1078
|
works: Le tue opere
|
|
1079
|
+
works_report: Relazione sui lavori
|
|
924
1080
|
your_collections: Le tue collezioni
|
|
925
1081
|
your_works: I tuoi lavori
|
|
926
1082
|
nest_collections_form:
|
|
@@ -954,12 +1110,18 @@ it:
|
|
|
954
1110
|
objects: Oggetti
|
|
955
1111
|
subtitle: Ultimi 90 giorni
|
|
956
1112
|
title: Crescita del repository
|
|
1113
|
+
works: Lavori
|
|
957
1114
|
repository_objects:
|
|
958
1115
|
status: Stato attuale
|
|
959
1116
|
subtitle: Stato attuale
|
|
960
1117
|
title: Oggetti del repository
|
|
1118
|
+
resource_type_graph:
|
|
1119
|
+
count: Contare
|
|
1120
|
+
resource_type: Tipo di risorsa
|
|
1121
|
+
title: Tipi di risorse
|
|
961
1122
|
show_admin:
|
|
962
1123
|
current_registered_users: Corrente
|
|
1124
|
+
graph_reports: Rapporti grafici personalizzati
|
|
963
1125
|
new_visitors: Nuovi visitatori
|
|
964
1126
|
past_30_days: Ultimi 30 giorni
|
|
965
1127
|
registered_users: Utente registrato
|
|
@@ -973,6 +1135,8 @@ it:
|
|
|
973
1135
|
heading: Le tue statistiche
|
|
974
1136
|
joined_on: Unito
|
|
975
1137
|
works: Opere create
|
|
1138
|
+
tabs:
|
|
1139
|
+
admin_sets: Set di amministrazione
|
|
976
1140
|
title: la mia scrivania
|
|
977
1141
|
transfer_of_ownership: Trasferimenti di proprietà
|
|
978
1142
|
transfer_works_link: Seleziona le opere da trasferire
|
|
@@ -981,10 +1145,27 @@ it:
|
|
|
981
1145
|
user_activity:
|
|
982
1146
|
date: Data
|
|
983
1147
|
new_users: Nuovi utenti
|
|
1148
|
+
new_visitors: Nuovi visitatori
|
|
1149
|
+
registered_users: utente registrato
|
|
1150
|
+
returning_visitors: Visitatori di ritorno
|
|
984
1151
|
subtitle: Nuove iscrizioni utente
|
|
985
1152
|
title: Attività dell'utente
|
|
1153
|
+
total_visitors: Visitatori totali
|
|
1154
|
+
user_summary: Riepilogo utente
|
|
1155
|
+
user_activity_graph:
|
|
1156
|
+
date: Data
|
|
1157
|
+
new_users: Nuovi utenti
|
|
1158
|
+
new_visits: Nuove visite
|
|
1159
|
+
return_visits: Visite di ritorno
|
|
1160
|
+
total_visits: Visite totali
|
|
986
1161
|
user_notifications: Notifiche utente
|
|
987
1162
|
view_files: Vedi files
|
|
1163
|
+
visibility_graph:
|
|
1164
|
+
visibility: Visibilità
|
|
1165
|
+
work_type_graph:
|
|
1166
|
+
count: Contare
|
|
1167
|
+
title: Tipi di lavoro
|
|
1168
|
+
work_type: Tipo di lavoro
|
|
988
1169
|
document_language: it
|
|
989
1170
|
edit_profile: Modifica Profilo
|
|
990
1171
|
embargoes:
|
|
@@ -1365,6 +1546,16 @@ it:
|
|
|
1365
1546
|
contact_form: Modulo di Contatto
|
|
1366
1547
|
export_to_zotero: Esporta in Zotero
|
|
1367
1548
|
export_to_zotero_details: L'esportazione in Zotero è supportata tramite metadati incorporati. Se Zotero non raccoglie automaticamente i metadati per i file depositati, segnala il problema tramite il
|
|
1549
|
+
stats:
|
|
1550
|
+
downloads:
|
|
1551
|
+
downloads: Download
|
|
1552
|
+
pageviews:
|
|
1553
|
+
pageviews: Visualizzazioni di pagina
|
|
1554
|
+
work:
|
|
1555
|
+
and: e
|
|
1556
|
+
downloads: Download
|
|
1557
|
+
header: Analisi del lavoro
|
|
1558
|
+
pageviews: Visualizzazioni di pagina
|
|
1368
1559
|
toolbar:
|
|
1369
1560
|
dashboard:
|
|
1370
1561
|
menu: Cruscotto
|
|
@@ -1643,3 +1834,6 @@ it:
|
|
|
1643
1834
|
member_of_collection_ids: Seleziona una collezione ...
|
|
1644
1835
|
required:
|
|
1645
1836
|
html: <span class="label label-info required-tag">necessario</span>
|
|
1837
|
+
total_view:
|
|
1838
|
+
one: Quest'opera ha 1 vista totale
|
|
1839
|
+
other: Questo lavoro ha %{count} visualizzazioni totali
|
|
@@ -31,6 +31,9 @@ pt-BR:
|
|
|
31
31
|
filters:
|
|
32
32
|
title: 'Filtragem por:'
|
|
33
33
|
start_over: Remover filtros
|
|
34
|
+
download:
|
|
35
|
+
one: e 1 download
|
|
36
|
+
other: e downloads %{count}
|
|
34
37
|
errors:
|
|
35
38
|
messages:
|
|
36
39
|
carrierwave_download_error: Não foi possível baixar a imagem.
|
|
@@ -178,6 +181,141 @@ pt-BR:
|
|
|
178
181
|
item_list_header: Obras neste conjunto
|
|
179
182
|
show_actions:
|
|
180
183
|
confirm_delete: Tem certeza de que deseja excluir este conjunto administrativo? Essa ação não pode ser revertida.
|
|
184
|
+
analytics:
|
|
185
|
+
collection_reports:
|
|
186
|
+
custom_range:
|
|
187
|
+
collection_home_page_views: Visualizações da página inicial da coleção
|
|
188
|
+
date_range_heading: Personalizar intervalo de datas
|
|
189
|
+
summary_heading: Resumo da atividade do usuário
|
|
190
|
+
work_downloads: Downloads de obras
|
|
191
|
+
work_views: Vistas de obras
|
|
192
|
+
index:
|
|
193
|
+
activity: Atividade
|
|
194
|
+
and: e
|
|
195
|
+
custom_range: Faixa Personalizada
|
|
196
|
+
date_range_heading: Relatório Personalizado
|
|
197
|
+
downloads: Transferências
|
|
198
|
+
enable_analytics: Habilite o Analytics para visualizar relatórios
|
|
199
|
+
export: Exportar
|
|
200
|
+
monthly: Por mês
|
|
201
|
+
repo_summary: O repositório contém
|
|
202
|
+
repo_summary_2: que coletivamente tiveram
|
|
203
|
+
report_generated_on: Este relatório foi gerado em
|
|
204
|
+
report_header: Relatório de coleções personalizadas
|
|
205
|
+
summary: Resumo
|
|
206
|
+
title: Relatório de cobranças
|
|
207
|
+
views: visualizações de página
|
|
208
|
+
monthly_summary:
|
|
209
|
+
collection_views: Visualizações da página inicial da coleção
|
|
210
|
+
monthly_subtitle: Status mês a mês dos últimos 12 meses até
|
|
211
|
+
work_downloads: Downloads de obras
|
|
212
|
+
work_views: Vistas de obras
|
|
213
|
+
show:
|
|
214
|
+
collection_type: Tipo de coleção
|
|
215
|
+
created_by: Criado por
|
|
216
|
+
custom_range: Faixa Personalizada
|
|
217
|
+
last_updated: Última atualização em
|
|
218
|
+
monthly: Por mês
|
|
219
|
+
return_to_btn: Retornar ao relatório de cobranças
|
|
220
|
+
summary: Resumo
|
|
221
|
+
title: Relatório de coleção
|
|
222
|
+
view_collection_btn: Ver coleção
|
|
223
|
+
visibility: Visibilidade
|
|
224
|
+
summary:
|
|
225
|
+
all_time: Tempo todo
|
|
226
|
+
collection_home_page_views: Visualizações da página inicial da coleção
|
|
227
|
+
date_range: Intervalo de datas
|
|
228
|
+
subtitle: Resumo da atividade do usuário
|
|
229
|
+
this_month: Este mês
|
|
230
|
+
this_week: Esta semana
|
|
231
|
+
this_year: Este ano
|
|
232
|
+
today: Hoje
|
|
233
|
+
work_downloads: Downloads de obras
|
|
234
|
+
work_views: Vistas de obras
|
|
235
|
+
top_collections:
|
|
236
|
+
collection_page_views: Exibições de página da coleção
|
|
237
|
+
collection_title: Título da coleção
|
|
238
|
+
deleted: Coleção excluída
|
|
239
|
+
export: Exportar
|
|
240
|
+
file_downloads_in_collection: Downloads de conjuntos de arquivos nesta coleção
|
|
241
|
+
top_collections: Top Coleções
|
|
242
|
+
works_in_collection_views: Funciona nesta coleção de visualizações
|
|
243
|
+
date_range_form:
|
|
244
|
+
date_range_heading: Personalizar intervalo de datas
|
|
245
|
+
end_date: Data final
|
|
246
|
+
reset_date_range: Redefinir intervalo de datas
|
|
247
|
+
set_date_range: Definir intervalo de datas do relatório
|
|
248
|
+
start_date: Data de início
|
|
249
|
+
work_reports:
|
|
250
|
+
custom_range:
|
|
251
|
+
date_range_heading: Personalizar intervalo de datas
|
|
252
|
+
file_downloads: Downloads de arquivos
|
|
253
|
+
page_views: Visualizações de página
|
|
254
|
+
summary_heading: Resumo da atividade do usuário
|
|
255
|
+
unique_visitors: visitantes únicos
|
|
256
|
+
index:
|
|
257
|
+
access_to: Você tem acesso a
|
|
258
|
+
activity: Atividade
|
|
259
|
+
and: e
|
|
260
|
+
custom_range: Faixa Personalizada
|
|
261
|
+
date_range_heading: Relatório Personalizado
|
|
262
|
+
downloads: Transferências
|
|
263
|
+
enable_analytics: Habilite o Analytics para visualizar relatórios
|
|
264
|
+
export: Exportar
|
|
265
|
+
monthly: Por mês
|
|
266
|
+
repo_summary: neste repositório que coletivamente tiveram
|
|
267
|
+
report_generated_on: Este relatório foi gerado em
|
|
268
|
+
report_header: Relatório de trabalhos personalizados
|
|
269
|
+
subtitle: Resumo da atividade do usuário
|
|
270
|
+
summary: Resumo
|
|
271
|
+
title: Relatório de Obras
|
|
272
|
+
views: Visualizações
|
|
273
|
+
works: trabalho
|
|
274
|
+
monthly_summary:
|
|
275
|
+
file_downloads: Downloads de arquivos
|
|
276
|
+
monthly_subtitle: Status mês a mês dos últimos 12 meses até
|
|
277
|
+
page_views: Visualizações de página
|
|
278
|
+
show:
|
|
279
|
+
custom_range: Faixa Personalizada
|
|
280
|
+
deposited_by: Depositado por
|
|
281
|
+
monthly: Por mês
|
|
282
|
+
resource_type: Tipo de recurso
|
|
283
|
+
return_to_btn: Relatório de Retorno ao Trabalho
|
|
284
|
+
status: Status
|
|
285
|
+
summary: Resumo
|
|
286
|
+
title: Relatório de trabalho
|
|
287
|
+
view_work_btn: Ver Trabalho
|
|
288
|
+
visibility: Visibilidade
|
|
289
|
+
work_type: Tipo de trabalho
|
|
290
|
+
summary:
|
|
291
|
+
all_time: Tempo todo
|
|
292
|
+
date_range: Intervalo de datas
|
|
293
|
+
file_downloads: Downloads de arquivos
|
|
294
|
+
page_views: Visualizações de página
|
|
295
|
+
subtitle: Resumo da atividade do usuário
|
|
296
|
+
this_month: Este mês
|
|
297
|
+
this_week: Esta semana
|
|
298
|
+
this_year: Este ano
|
|
299
|
+
today: Hoje
|
|
300
|
+
unique_visitors: visitantes únicos
|
|
301
|
+
top_file_set_downloads:
|
|
302
|
+
file: Arquivo
|
|
303
|
+
file_downloads: Downloads de arquivos
|
|
304
|
+
file_name: Nome do arquivo
|
|
305
|
+
top_downloads: Principais downloads de arquivos
|
|
306
|
+
top_works:
|
|
307
|
+
export: Exportar
|
|
308
|
+
file_downloads: Downloads de arquivos
|
|
309
|
+
top_works: Principais obras
|
|
310
|
+
work_title: Título de Trabalho
|
|
311
|
+
work_views: Exibições da página de trabalho
|
|
312
|
+
work_counts:
|
|
313
|
+
child_works: criança trabalha
|
|
314
|
+
files: arquivos
|
|
315
|
+
total_size: tamanho total
|
|
316
|
+
work_files:
|
|
317
|
+
title: arquivos
|
|
318
|
+
total_downloads: Total de downloads
|
|
181
319
|
appearances:
|
|
182
320
|
show:
|
|
183
321
|
header: Aparência
|
|
@@ -263,11 +401,14 @@ pt-BR:
|
|
|
263
401
|
header: Características
|
|
264
402
|
sidebar:
|
|
265
403
|
activity: Atividade
|
|
404
|
+
analytics: Analytics
|
|
266
405
|
appearance: Aparência
|
|
267
406
|
collection_types: Tipos de Coleção
|
|
268
407
|
collections: Coleções
|
|
408
|
+
collections_report: Relatório de cobranças
|
|
269
409
|
configuration: Configuração
|
|
270
410
|
content_blocks: Blocos de Conteúdo
|
|
411
|
+
dashboard: Painel
|
|
271
412
|
delete_all: Excluir tudo
|
|
272
413
|
notifications: Notificações
|
|
273
414
|
pages: Páginas
|
|
@@ -284,6 +425,7 @@ pt-BR:
|
|
|
284
425
|
workflow_roles: Funções do Fluxo de Trabalho
|
|
285
426
|
works: Obra
|
|
286
427
|
works_listing: Lista de obras
|
|
428
|
+
works_report: Relatório de Obras
|
|
287
429
|
stats:
|
|
288
430
|
deposited_form:
|
|
289
431
|
end_label: 'Encerrar [valor padrão: agora]'
|
|
@@ -296,6 +438,10 @@ pt-BR:
|
|
|
296
438
|
unpublished: Inéditos
|
|
297
439
|
user_deposits:
|
|
298
440
|
end_label: 'Encerrando [valor padrão: agora]'
|
|
441
|
+
headers:
|
|
442
|
+
main: Estatísticas de trabalho
|
|
443
|
+
total: 'Total de obras:'
|
|
444
|
+
visibility: Totais por visibilidade
|
|
299
445
|
heading: Exibir arquivos depositados pelos usuários
|
|
300
446
|
start_label: Iniciando
|
|
301
447
|
works:
|
|
@@ -687,13 +833,17 @@ pt-BR:
|
|
|
687
833
|
authorize_proxies: Autorizar suplentes
|
|
688
834
|
breadcrumbs:
|
|
689
835
|
admin: Painel de Ferramentas
|
|
836
|
+
collections_report: Relatório de cobranças
|
|
837
|
+
works_report: Relatório de Trabalhos
|
|
690
838
|
collection_type_actions:
|
|
691
839
|
close: Fechar
|
|
692
840
|
create_collection: Criar coleção
|
|
693
841
|
select_type_of_collection: Selecionar o tipo de coleção
|
|
694
842
|
collections:
|
|
843
|
+
collection_title: Título da coleção
|
|
695
844
|
edit:
|
|
696
845
|
header: 'Editar %{type_title}: %{title}'
|
|
846
|
+
files: arquivos
|
|
697
847
|
form:
|
|
698
848
|
permission_update_errors:
|
|
699
849
|
error: Opção de atualização inválida para o modelo de permissão.
|
|
@@ -784,8 +934,10 @@ pt-BR:
|
|
|
784
934
|
remove: Remover
|
|
785
935
|
title: Usuários com permissão de acesso
|
|
786
936
|
type: Tipo
|
|
937
|
+
last_updated: Ultima atualização
|
|
787
938
|
new:
|
|
788
939
|
header: Nova coleção do tipo %{type_title}
|
|
940
|
+
recent_activity: Atividade recente
|
|
789
941
|
show:
|
|
790
942
|
header: Coleção
|
|
791
943
|
item_count: Obras
|
|
@@ -814,6 +966,7 @@ pt-BR:
|
|
|
814
966
|
sort_and_per_page:
|
|
815
967
|
show_par_page_html: Mostrar %{select} por página
|
|
816
968
|
sort_by: 'Ordenar Por:'
|
|
969
|
+
title: Coleções
|
|
817
970
|
work_action_menu:
|
|
818
971
|
delete_work: Excluir trabalho
|
|
819
972
|
deleting_from_work: A exclusão de um trabalho de %{application_name} é permanente. Clique em OK para excluir este trabalho de %{application_name} ou em Cancelar para cancelar esta operação
|
|
@@ -822,6 +975,7 @@ pt-BR:
|
|
|
822
975
|
remove_from_collection: Remover da coleção
|
|
823
976
|
select_an_action: Selecione uma ação
|
|
824
977
|
transfer_ownership_of_work: Transferir propriedade do trabalho
|
|
978
|
+
works: Trabalho
|
|
825
979
|
create_work: Criar obra
|
|
826
980
|
current_proxies: Suplentes correntes
|
|
827
981
|
delete_notification: Eliminar Notificação
|
|
@@ -881,6 +1035,7 @@ pt-BR:
|
|
|
881
1035
|
view: Acesso
|
|
882
1036
|
users: 'Usuários:'
|
|
883
1037
|
collections: Coleções
|
|
1038
|
+
collections_report: Relatório de cobranças
|
|
884
1039
|
facet_label:
|
|
885
1040
|
collections: 'Filtrar Coleções:'
|
|
886
1041
|
highlighted: 'Filtrar Destaques:'
|
|
@@ -916,6 +1071,7 @@ pt-BR:
|
|
|
916
1071
|
show_label: Exibir todos os detalhes de
|
|
917
1072
|
thumbnail: miniatura
|
|
918
1073
|
works: Obras
|
|
1074
|
+
works_report: Relatório de Obras
|
|
919
1075
|
your_collections: Suas coleções
|
|
920
1076
|
your_works: Suas obras
|
|
921
1077
|
nest_collections_form:
|
|
@@ -949,12 +1105,18 @@ pt-BR:
|
|
|
949
1105
|
objects: Objetos
|
|
950
1106
|
subtitle: Últimos 90 dias
|
|
951
1107
|
title: Crescimento do Repositório
|
|
1108
|
+
works: Trabalho
|
|
952
1109
|
repository_objects:
|
|
953
1110
|
status: Status atual
|
|
954
1111
|
subtitle: Status atual
|
|
955
1112
|
title: Objetos de Repositório
|
|
1113
|
+
resource_type_graph:
|
|
1114
|
+
count: Contar
|
|
1115
|
+
resource_type: Tipo de recurso
|
|
1116
|
+
title: Tipos de recursos
|
|
956
1117
|
show_admin:
|
|
957
1118
|
current_registered_users: Corrente
|
|
1119
|
+
graph_reports: Relatórios gráficos personalizados
|
|
958
1120
|
new_visitors: Novos visitantes
|
|
959
1121
|
past_30_days: Últimos 30 dias
|
|
960
1122
|
registered_users: Usuários cadastrados
|
|
@@ -968,6 +1130,8 @@ pt-BR:
|
|
|
968
1130
|
heading: Suas estatísticas
|
|
969
1131
|
joined_on: Ingressou no
|
|
970
1132
|
works: Obras criadas
|
|
1133
|
+
tabs:
|
|
1134
|
+
admin_sets: Conjuntos de administradores
|
|
971
1135
|
title: Painel de Controle
|
|
972
1136
|
transfer_of_ownership: Transferências de propriedade
|
|
973
1137
|
transfer_works_link: Selecione as obras a transferir
|
|
@@ -976,10 +1140,27 @@ pt-BR:
|
|
|
976
1140
|
user_activity:
|
|
977
1141
|
date: Encontro
|
|
978
1142
|
new_users: Novos usuários
|
|
1143
|
+
new_visitors: Novos Visitantes
|
|
1144
|
+
registered_users: Usuários registrados
|
|
1145
|
+
returning_visitors: Visitantes recorrentes
|
|
979
1146
|
subtitle: Novas inscrições de usuários
|
|
980
1147
|
title: Atividade do usuário
|
|
1148
|
+
total_visitors: Total de visitantes
|
|
1149
|
+
user_summary: Resumo do usuário
|
|
1150
|
+
user_activity_graph:
|
|
1151
|
+
date: Encontro
|
|
1152
|
+
new_users: Novos usuários
|
|
1153
|
+
new_visits: Novas Visitas
|
|
1154
|
+
return_visits: Visitas de retorno
|
|
1155
|
+
total_visits: Visitas totais
|
|
981
1156
|
user_notifications: Notificações do usuário
|
|
982
1157
|
view_files: Ver arquivos
|
|
1158
|
+
visibility_graph:
|
|
1159
|
+
visibility: Visibilidade
|
|
1160
|
+
work_type_graph:
|
|
1161
|
+
count: Contar
|
|
1162
|
+
title: Tipos de Trabalho
|
|
1163
|
+
work_type: Tipo de trabalho
|
|
983
1164
|
document_language: pt-BR
|
|
984
1165
|
edit_profile: Editar Perfil
|
|
985
1166
|
embargoes:
|
|
@@ -1360,6 +1541,16 @@ pt-BR:
|
|
|
1360
1541
|
contact_form: Formulário de Contato
|
|
1361
1542
|
export_to_zotero: Exportar para Zotero
|
|
1362
1543
|
export_to_zotero_details: A exportação para o Zotero é suportada por metadados incorporados. Se o Zotero não coletar automaticamente os metadados dos arquivos depositados, relate o problema através do
|
|
1544
|
+
stats:
|
|
1545
|
+
downloads:
|
|
1546
|
+
downloads: Transferências
|
|
1547
|
+
pageviews:
|
|
1548
|
+
pageviews: Visualizações de página
|
|
1549
|
+
work:
|
|
1550
|
+
and: e
|
|
1551
|
+
downloads: Transferências
|
|
1552
|
+
header: Analítica de Trabalho
|
|
1553
|
+
pageviews: Visualizações de página
|
|
1363
1554
|
toolbar:
|
|
1364
1555
|
dashboard:
|
|
1365
1556
|
menu: Painel de controle
|
|
@@ -1638,3 +1829,6 @@ pt-BR:
|
|
|
1638
1829
|
member_of_collection_ids: Selecione uma coleção ...
|
|
1639
1830
|
required:
|
|
1640
1831
|
html: <span class="label label-info required-tag">obrigatórios</span>
|
|
1832
|
+
total_view:
|
|
1833
|
+
one: Este trabalho tem 1 visualização total
|
|
1834
|
+
other: Este trabalho tem %{count} visualizações totais
|