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/chart/hyrax/values.yaml
CHANGED
data/config/i18n-tasks.yml
CHANGED
|
@@ -85,9 +85,9 @@ search:
|
|
|
85
85
|
## See this example of a custom scanner: https://github.com/glebm/i18n-tasks/wiki/A-custom-scanner-example
|
|
86
86
|
|
|
87
87
|
## Google Translate
|
|
88
|
-
#
|
|
88
|
+
# translation:
|
|
89
89
|
# # Get an API key and set billing info at https://code.google.com/apis/console to use Google Translate
|
|
90
|
-
# api_key: "AbC-dEf5"
|
|
90
|
+
# api_key: "AbC-dEf5"
|
|
91
91
|
|
|
92
92
|
## Do not consider these keys missing:
|
|
93
93
|
# ignore_missing:
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
Hyrax.publisher.subscribe(Hyrax::Listeners::AclIndexListener.new)
|
|
4
|
-
Hyrax.publisher.subscribe(Hyrax::Listeners::ActiveFedoraAclIndexListener.new) unless
|
|
5
|
-
Hyrax.config.disable_wings
|
|
6
|
-
Hyrax.publisher.subscribe(Hyrax::Listeners::MemberCleanupListener.new)
|
|
7
|
-
Hyrax.publisher.subscribe(Hyrax::Listeners::MetadataIndexListener.new)
|
|
4
|
+
Hyrax.publisher.subscribe(Hyrax::Listeners::ActiveFedoraAclIndexListener.new) unless Hyrax.config.disable_wings
|
|
8
5
|
Hyrax.publisher.subscribe(Hyrax::Listeners::BatchNotificationListener.new)
|
|
9
|
-
Hyrax.publisher.subscribe(Hyrax::Listeners::
|
|
6
|
+
Hyrax.publisher.subscribe(Hyrax::Listeners::FileMetadataListener.new)
|
|
10
7
|
Hyrax.publisher.subscribe(Hyrax::Listeners::FileSetLifecycleListener.new)
|
|
11
8
|
Hyrax.publisher.subscribe(Hyrax::Listeners::FileSetLifecycleNotificationListener.new)
|
|
9
|
+
Hyrax.publisher.subscribe(Hyrax::Listeners::MemberCleanupListener.new)
|
|
10
|
+
Hyrax.publisher.subscribe(Hyrax::Listeners::MetadataIndexListener.new)
|
|
11
|
+
Hyrax.publisher.subscribe(Hyrax::Listeners::ObjectLifecycleListener.new)
|
|
12
12
|
Hyrax.publisher.subscribe(Hyrax::Listeners::ProxyDepositListener.new)
|
|
13
13
|
Hyrax.publisher.subscribe(Hyrax::Listeners::TrophyCleanupListener.new)
|
|
14
14
|
Hyrax.publisher.subscribe(Hyrax::Listeners::WorkflowListener.new)
|
data/config/locales/hyrax.de.yml
CHANGED
|
@@ -31,6 +31,9 @@ de:
|
|
|
31
31
|
filters:
|
|
32
32
|
title: 'Filtern nach:'
|
|
33
33
|
start_over: Filter löschen
|
|
34
|
+
download:
|
|
35
|
+
one: und 1 Download
|
|
36
|
+
other: und %{count}-Downloads
|
|
34
37
|
errors:
|
|
35
38
|
messages:
|
|
36
39
|
carrierwave_download_error: Bild konnte nicht heruntergeladen werden.
|
|
@@ -178,6 +181,141 @@ de:
|
|
|
178
181
|
item_list_header: Arbeiten in diesem Admin-Set
|
|
179
182
|
show_actions:
|
|
180
183
|
confirm_delete: Möchten Sie dieses Admin-Set wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.
|
|
184
|
+
analytics:
|
|
185
|
+
collection_reports:
|
|
186
|
+
custom_range:
|
|
187
|
+
collection_home_page_views: Aufrufe der Sammlungs-Startseite
|
|
188
|
+
date_range_heading: Datumsbereich anpassen
|
|
189
|
+
summary_heading: Zusammenfassung der Benutzeraktivität
|
|
190
|
+
work_downloads: Downloads von Werken
|
|
191
|
+
work_views: Werkansichten
|
|
192
|
+
index:
|
|
193
|
+
activity: Aktivität
|
|
194
|
+
and: und
|
|
195
|
+
custom_range: Benutzerdefinierten Bereich
|
|
196
|
+
date_range_heading: Bericht anpassen
|
|
197
|
+
downloads: Downloads
|
|
198
|
+
enable_analytics: Aktivieren Sie Analytics, um Berichte anzuzeigen
|
|
199
|
+
export: Export
|
|
200
|
+
monthly: Monatlich
|
|
201
|
+
repo_summary: Das Repository enthält
|
|
202
|
+
repo_summary_2: die kollektiv hatten
|
|
203
|
+
report_generated_on: Dieser Bericht wurde erstellt am
|
|
204
|
+
report_header: Bericht zu benutzerdefinierten Sammlungen
|
|
205
|
+
summary: Zusammenfassung
|
|
206
|
+
title: Sammlungsbericht
|
|
207
|
+
views: Seitenaufrufe
|
|
208
|
+
monthly_summary:
|
|
209
|
+
collection_views: Aufrufe der Sammlungs-Startseite
|
|
210
|
+
monthly_subtitle: Monat für Monat Status für die letzten 12 Monate bis
|
|
211
|
+
work_downloads: Downloads von Werken
|
|
212
|
+
work_views: Werkansichten
|
|
213
|
+
show:
|
|
214
|
+
collection_type: Sammlungstyp
|
|
215
|
+
created_by: Erstellt von
|
|
216
|
+
custom_range: Benutzerdefinierten Bereich
|
|
217
|
+
last_updated: Zuletzt aktualisiert am
|
|
218
|
+
monthly: Monatlich
|
|
219
|
+
return_to_btn: Zurück zum Sammlungsbericht
|
|
220
|
+
summary: Zusammenfassung
|
|
221
|
+
title: Sammlungsbericht
|
|
222
|
+
view_collection_btn: Kollektion ansehen
|
|
223
|
+
visibility: Sichtweite
|
|
224
|
+
summary:
|
|
225
|
+
all_time: Alle Zeit
|
|
226
|
+
collection_home_page_views: Aufrufe der Sammlungs-Startseite
|
|
227
|
+
date_range: Datumsbereich
|
|
228
|
+
subtitle: Zusammenfassung der Benutzeraktivität
|
|
229
|
+
this_month: Diesen Monat
|
|
230
|
+
this_week: In dieser Woche
|
|
231
|
+
this_year: Dieses Jahr
|
|
232
|
+
today: Heute
|
|
233
|
+
work_downloads: Downloads von Werken
|
|
234
|
+
work_views: Werkansichten
|
|
235
|
+
top_collections:
|
|
236
|
+
collection_page_views: Seitenaufrufe der Sammlung
|
|
237
|
+
collection_title: Sammlungstitel
|
|
238
|
+
deleted: Sammlung gelöscht
|
|
239
|
+
export: Export
|
|
240
|
+
file_downloads_in_collection: Dateiset-Downloads in dieser Sammlung
|
|
241
|
+
top_collections: Top-Kollektionen
|
|
242
|
+
works_in_collection_views: Funktioniert in dieser Sammlungsansichten
|
|
243
|
+
date_range_form:
|
|
244
|
+
date_range_heading: Datumsbereich anpassen
|
|
245
|
+
end_date: Endtermin
|
|
246
|
+
reset_date_range: Datumsbereich zurücksetzen
|
|
247
|
+
set_date_range: Berichtszeitraum festlegen
|
|
248
|
+
start_date: Startdatum
|
|
249
|
+
work_reports:
|
|
250
|
+
custom_range:
|
|
251
|
+
date_range_heading: Datumsbereich anpassen
|
|
252
|
+
file_downloads: Datei-Downloads
|
|
253
|
+
page_views: Seitenaufrufe
|
|
254
|
+
summary_heading: Zusammenfassung der Benutzeraktivität
|
|
255
|
+
unique_visitors: einzigartige Besucher
|
|
256
|
+
index:
|
|
257
|
+
access_to: Sie haben Zugriff auf
|
|
258
|
+
activity: Aktivität
|
|
259
|
+
and: und
|
|
260
|
+
custom_range: Benutzerdefinierten Bereich
|
|
261
|
+
date_range_heading: Bericht anpassen
|
|
262
|
+
downloads: Downloads
|
|
263
|
+
enable_analytics: Aktivieren Sie Analytics, um Berichte anzuzeigen
|
|
264
|
+
export: Export
|
|
265
|
+
monthly: Monatlich
|
|
266
|
+
repo_summary: in diesem Repository, die kollektiv hatten
|
|
267
|
+
report_generated_on: Dieser Bericht wurde erstellt am
|
|
268
|
+
report_header: Bericht über benutzerdefinierte Arbeiten
|
|
269
|
+
subtitle: Zusammenfassung der Benutzeraktivität
|
|
270
|
+
summary: Zusammenfassung
|
|
271
|
+
title: Werksbericht
|
|
272
|
+
views: Ansichten
|
|
273
|
+
works: funktioniert
|
|
274
|
+
monthly_summary:
|
|
275
|
+
file_downloads: Datei-Downloads
|
|
276
|
+
monthly_subtitle: Monat für Monat Status für die letzten 12 Monate bis
|
|
277
|
+
page_views: Seitenaufrufe
|
|
278
|
+
show:
|
|
279
|
+
custom_range: Benutzerdefinierten Bereich
|
|
280
|
+
deposited_by: Hinterlegt von
|
|
281
|
+
monthly: Monatlich
|
|
282
|
+
resource_type: Ressourcentyp
|
|
283
|
+
return_to_btn: Zurück zum Werksbericht
|
|
284
|
+
status: Status
|
|
285
|
+
summary: Zusammenfassung
|
|
286
|
+
title: Arbeitsbericht
|
|
287
|
+
view_work_btn: Arbeit ansehen
|
|
288
|
+
visibility: Sichtweite
|
|
289
|
+
work_type: Arbeitstyp
|
|
290
|
+
summary:
|
|
291
|
+
all_time: Alle Zeit
|
|
292
|
+
date_range: Datumsbereich
|
|
293
|
+
file_downloads: Datei-Downloads
|
|
294
|
+
page_views: Seitenaufrufe
|
|
295
|
+
subtitle: Zusammenfassung der Benutzeraktivität
|
|
296
|
+
this_month: Diesen Monat
|
|
297
|
+
this_week: In dieser Woche
|
|
298
|
+
this_year: Dieses Jahr
|
|
299
|
+
today: Heute
|
|
300
|
+
unique_visitors: einzigartige Besucher
|
|
301
|
+
top_file_set_downloads:
|
|
302
|
+
file: Datei
|
|
303
|
+
file_downloads: Datei-Downloads
|
|
304
|
+
file_name: Dateiname
|
|
305
|
+
top_downloads: Top-Datei-Downloads
|
|
306
|
+
top_works:
|
|
307
|
+
export: Export
|
|
308
|
+
file_downloads: Datei-Downloads
|
|
309
|
+
top_works: Top-Werke
|
|
310
|
+
work_title: Arbeitstitel
|
|
311
|
+
work_views: Arbeitsseitenaufrufe
|
|
312
|
+
work_counts:
|
|
313
|
+
child_works: Kind arbeitet
|
|
314
|
+
files: Dateien
|
|
315
|
+
total_size: Gesamtgröße
|
|
316
|
+
work_files:
|
|
317
|
+
title: Dateien
|
|
318
|
+
total_downloads: Downloads insgesamt
|
|
181
319
|
appearances:
|
|
182
320
|
show:
|
|
183
321
|
header: Design
|
|
@@ -263,11 +401,14 @@ de:
|
|
|
263
401
|
header: Funktionen
|
|
264
402
|
sidebar:
|
|
265
403
|
activity: Aktivität
|
|
404
|
+
analytics: Analytik
|
|
266
405
|
appearance: Design
|
|
267
406
|
collection_types: Sammlungstypen
|
|
268
407
|
collections: Sammlungen
|
|
408
|
+
collections_report: Sammlungsbericht
|
|
269
409
|
configuration: Konfiguration
|
|
270
410
|
content_blocks: Inhaltsblöcke
|
|
411
|
+
dashboard: Armaturenbrett
|
|
271
412
|
delete_all: Alles löschen
|
|
272
413
|
notifications: Benachrichtigungen
|
|
273
414
|
pages: Seiten
|
|
@@ -284,6 +425,7 @@ de:
|
|
|
284
425
|
workflow_roles: Workflow-Rollen
|
|
285
426
|
works: Arbeiten
|
|
286
427
|
works_listing: Auflistung der Arbeiten
|
|
428
|
+
works_report: Werksbericht
|
|
287
429
|
stats:
|
|
288
430
|
deposited_form:
|
|
289
431
|
end_label: Ende [Voreinstellung]
|
|
@@ -296,6 +438,10 @@ de:
|
|
|
296
438
|
unpublished: Unveröffentlicht
|
|
297
439
|
user_deposits:
|
|
298
440
|
end_label: Ende [Voreinstellung]
|
|
441
|
+
headers:
|
|
442
|
+
main: Arbeitsstatistik
|
|
443
|
+
total: 'Gesamte Werke:'
|
|
444
|
+
visibility: Summen nach Sichtbarkeit
|
|
299
445
|
heading: Von Benutzern deponierte Dateien anzeigen
|
|
300
446
|
start_label: Beginnend
|
|
301
447
|
works:
|
|
@@ -687,13 +833,17 @@ de:
|
|
|
687
833
|
authorize_proxies: Vertreter autorisieren
|
|
688
834
|
breadcrumbs:
|
|
689
835
|
admin: Verwaltung
|
|
836
|
+
collections_report: Sammlungsbericht
|
|
837
|
+
works_report: Werksbericht
|
|
690
838
|
collection_type_actions:
|
|
691
839
|
close: Schließen
|
|
692
840
|
create_collection: Sammlung erstellen
|
|
693
841
|
select_type_of_collection: Wählen Sie den Typ der Sammlung aus
|
|
694
842
|
collections:
|
|
843
|
+
collection_title: Sammlungstitel
|
|
695
844
|
edit:
|
|
696
845
|
header: 'Bearbeiten von %{type_title}: %{title}'
|
|
846
|
+
files: Dateien
|
|
697
847
|
form:
|
|
698
848
|
permission_update_errors:
|
|
699
849
|
error: Ungültige Update-Option für die Berechtigungsvorlage
|
|
@@ -784,8 +934,10 @@ de:
|
|
|
784
934
|
remove: Entfernen
|
|
785
935
|
title: Betrachter
|
|
786
936
|
type: Typ
|
|
937
|
+
last_updated: Letzte Aktualisierung
|
|
787
938
|
new:
|
|
788
939
|
header: Neue Sammlung erstellen
|
|
940
|
+
recent_activity: Letzte Aktivität
|
|
789
941
|
show:
|
|
790
942
|
header: Sammlung
|
|
791
943
|
item_count: Arbeiten
|
|
@@ -814,6 +966,7 @@ de:
|
|
|
814
966
|
sort_and_per_page:
|
|
815
967
|
show_par_page_html: Zeige %{select} pro Seite
|
|
816
968
|
sort_by: 'Sortieren nach:'
|
|
969
|
+
title: Kollektionen
|
|
817
970
|
work_action_menu:
|
|
818
971
|
delete_work: Arbeit löschen
|
|
819
972
|
deleting_from_work: Das Löschen einer Arbeit aus %{application_name} ist dauerhaft. Klicken Sie auf OK, um diese Arbeit von %{application_name} zu löschen, oder auf Abbrechen, um diesen Vorgang abzubrechen
|
|
@@ -822,6 +975,7 @@ de:
|
|
|
822
975
|
remove_from_collection: Aus der Sammlung entfernen
|
|
823
976
|
select_an_action: Wählen Sie eine Aktion aus
|
|
824
977
|
transfer_ownership_of_work: Übertragen Sie das Eigentum an der Arbeit
|
|
978
|
+
works: Funktioniert
|
|
825
979
|
create_work: Arbeiten erstellen
|
|
826
980
|
current_proxies: Aktuelle Vertreter
|
|
827
981
|
delete_notification: Benachrichtigung löschen
|
|
@@ -881,6 +1035,7 @@ de:
|
|
|
881
1035
|
view: Ansicht
|
|
882
1036
|
users: 'Benutzer:'
|
|
883
1037
|
collections: Ihre Sammlungen
|
|
1038
|
+
collections_report: Sammlungsbericht
|
|
884
1039
|
facet_label:
|
|
885
1040
|
collections: 'Filter Sammlungen:'
|
|
886
1041
|
highlighted: 'Filter Hervorhebungen:'
|
|
@@ -916,6 +1071,7 @@ de:
|
|
|
916
1071
|
show_label: Zeige alle Details von
|
|
917
1072
|
thumbnail: Miniaturansicht
|
|
918
1073
|
works: Ihre Arbeiten
|
|
1074
|
+
works_report: Werksbericht
|
|
919
1075
|
your_collections: Ihre Sammlungen
|
|
920
1076
|
your_works: Ihre Werke
|
|
921
1077
|
nest_collections_form:
|
|
@@ -949,12 +1105,18 @@ de:
|
|
|
949
1105
|
objects: Objekte
|
|
950
1106
|
subtitle: Die letzten 90 Tage
|
|
951
1107
|
title: Repository-Wachstum
|
|
1108
|
+
works: Funktioniert
|
|
952
1109
|
repository_objects:
|
|
953
1110
|
status: Aktueller Status
|
|
954
1111
|
subtitle: Aktueller Status
|
|
955
1112
|
title: Repository-Objekte
|
|
1113
|
+
resource_type_graph:
|
|
1114
|
+
count: Zählen
|
|
1115
|
+
resource_type: Ressourcentyp
|
|
1116
|
+
title: Ressourcentypen
|
|
956
1117
|
show_admin:
|
|
957
1118
|
current_registered_users: Aktuelle
|
|
1119
|
+
graph_reports: Benutzerdefinierte Diagrammberichte
|
|
958
1120
|
new_visitors: Neue Besucher
|
|
959
1121
|
past_30_days: Letzten 30 Tage
|
|
960
1122
|
registered_users: Registrierte Benutzer
|
|
@@ -968,6 +1130,8 @@ de:
|
|
|
968
1130
|
heading: Ihre Statistik
|
|
969
1131
|
joined_on: Beigetreten am
|
|
970
1132
|
works: Arbeiten erstellt
|
|
1133
|
+
tabs:
|
|
1134
|
+
admin_sets: Admin-Sets
|
|
971
1135
|
title: Mein Dashboard
|
|
972
1136
|
transfer_of_ownership: Eigentumsübertragungen
|
|
973
1137
|
transfer_works_link: Wählen Sie die zu übertragenden Arbeiten aus
|
|
@@ -976,10 +1140,27 @@ de:
|
|
|
976
1140
|
user_activity:
|
|
977
1141
|
date: Datum
|
|
978
1142
|
new_users: Neue Nutzer
|
|
1143
|
+
new_visitors: Neue Besucher
|
|
1144
|
+
registered_users: Registrierte Benutzer
|
|
1145
|
+
returning_visitors: Wiederkehrende Besucher
|
|
979
1146
|
subtitle: Neue Benutzeranmeldungen
|
|
980
1147
|
title: Benutzeraktivität
|
|
1148
|
+
total_visitors: Gesamtbesucher
|
|
1149
|
+
user_summary: Benutzerzusammenfassung
|
|
1150
|
+
user_activity_graph:
|
|
1151
|
+
date: Datum
|
|
1152
|
+
new_users: Neue Nutzer
|
|
1153
|
+
new_visits: Neue Besuche
|
|
1154
|
+
return_visits: Rückbesuche
|
|
1155
|
+
total_visits: Gesamtbesuche
|
|
981
1156
|
user_notifications: Benutzerbenachrichtigungen
|
|
982
1157
|
view_files: Dateien ansehen
|
|
1158
|
+
visibility_graph:
|
|
1159
|
+
visibility: Sichtweite
|
|
1160
|
+
work_type_graph:
|
|
1161
|
+
count: Zählen
|
|
1162
|
+
title: Arbeitstypen
|
|
1163
|
+
work_type: Arbeitstyp
|
|
983
1164
|
document_language: de
|
|
984
1165
|
edit_profile: Profil bearbeiten
|
|
985
1166
|
embargoes:
|
|
@@ -1360,6 +1541,16 @@ de:
|
|
|
1360
1541
|
contact_form: Kontakt Formular
|
|
1361
1542
|
export_to_zotero: Export nach Zotero
|
|
1362
1543
|
export_to_zotero_details: Der Export nach Zotero wird über eingebettete Metadaten unterstützt. Wenn Zotero Metadaten für hinterlegte Dateien nicht automatisch abruft, melden Sie das Problem über die
|
|
1544
|
+
stats:
|
|
1545
|
+
downloads:
|
|
1546
|
+
downloads: Downloads
|
|
1547
|
+
pageviews:
|
|
1548
|
+
pageviews: Seitenaufrufe
|
|
1549
|
+
work:
|
|
1550
|
+
and: und
|
|
1551
|
+
downloads: Downloads
|
|
1552
|
+
header: Arbeitsanalyse
|
|
1553
|
+
pageviews: Seitenaufrufe
|
|
1363
1554
|
toolbar:
|
|
1364
1555
|
dashboard:
|
|
1365
1556
|
menu: Mein Dashboard
|
|
@@ -1638,3 +1829,6 @@ de:
|
|
|
1638
1829
|
member_of_collection_ids: Wählen Sie eine Sammlung ...
|
|
1639
1830
|
required:
|
|
1640
1831
|
html: <span class="label label-info required-tag">erforderlich</span>
|
|
1832
|
+
total_view:
|
|
1833
|
+
one: Diese Arbeit hat 1 Gesamtansicht
|
|
1834
|
+
other: Dieses Werk hat insgesamt %{count} Aufrufe
|
data/config/locales/hyrax.en.yml
CHANGED
|
@@ -178,6 +178,133 @@ en:
|
|
|
178
178
|
item_list_header: Works in This Set
|
|
179
179
|
show_actions:
|
|
180
180
|
confirm_delete: Are you sure you wish to delete this Administrative Set? This action cannot be undone.
|
|
181
|
+
analytics:
|
|
182
|
+
collection_reports:
|
|
183
|
+
index:
|
|
184
|
+
title: Collections Report
|
|
185
|
+
repo_summary: The repository contains
|
|
186
|
+
repo_summary_2: which collectively have had
|
|
187
|
+
views: page views
|
|
188
|
+
and: and
|
|
189
|
+
summary: Summary
|
|
190
|
+
monthly: Monthly
|
|
191
|
+
custom_range: Custom Range
|
|
192
|
+
downloads: downloads
|
|
193
|
+
report_header: Custom Collections Report
|
|
194
|
+
report_generated_on: This report was generated on
|
|
195
|
+
enable_analytics: Enable Analytics To View Reports
|
|
196
|
+
show:
|
|
197
|
+
title: Collection Report
|
|
198
|
+
summary: Summary
|
|
199
|
+
monthly: Monthly
|
|
200
|
+
custom_range: Custom Range
|
|
201
|
+
return_to_btn: Return to Collections Report
|
|
202
|
+
view_collection_btn: View Collection
|
|
203
|
+
created_by: Created by
|
|
204
|
+
last_updated: Last updated on
|
|
205
|
+
collection_type: Collection type
|
|
206
|
+
visibility: Visibility
|
|
207
|
+
summary:
|
|
208
|
+
subtitle: Summary of user activity
|
|
209
|
+
collection_home_page_views: Collection home page views
|
|
210
|
+
work_views: Views of works
|
|
211
|
+
work_downloads: Downloads of works
|
|
212
|
+
date_range: Date range
|
|
213
|
+
today: Today
|
|
214
|
+
this_week: This week
|
|
215
|
+
this_month: This month
|
|
216
|
+
this_year: This year
|
|
217
|
+
all_time: All time
|
|
218
|
+
monthly_summary:
|
|
219
|
+
monthly_subtitle: Month-by-month status for last 12 months through
|
|
220
|
+
collection_views: Collection home page views
|
|
221
|
+
work_views: Views of works
|
|
222
|
+
work_downloads: Downloads of works
|
|
223
|
+
custom_range:
|
|
224
|
+
date_range_heading: Customize Date Range
|
|
225
|
+
summary_heading: Summary of user activity
|
|
226
|
+
collection_home_page_views: Collection home page views
|
|
227
|
+
work_views: Views of works
|
|
228
|
+
work_downloads: Downloads of works
|
|
229
|
+
top_collections:
|
|
230
|
+
top_collections: Top Collections
|
|
231
|
+
collection_title: Collection Title
|
|
232
|
+
works_in_collection_views: Works In This Collection Views
|
|
233
|
+
file_downloads_in_collection: File Set Downloads In This Collection
|
|
234
|
+
collection_page_views: Collection Page Views
|
|
235
|
+
deleted: Collection deleted
|
|
236
|
+
export: Export
|
|
237
|
+
work_reports:
|
|
238
|
+
index:
|
|
239
|
+
title: Works Report
|
|
240
|
+
subtitle: Summary of user activity
|
|
241
|
+
repo_summary: in this repository which collectively have had
|
|
242
|
+
works: works
|
|
243
|
+
views: views
|
|
244
|
+
and: and
|
|
245
|
+
access_to: You have access to
|
|
246
|
+
summary: Summary
|
|
247
|
+
monthly: Monthly
|
|
248
|
+
custom_range: Custom Range
|
|
249
|
+
downloads: downloads
|
|
250
|
+
enable_analytics: Enable Analytics To View Reports
|
|
251
|
+
report_generated_on: This report was generated on
|
|
252
|
+
show:
|
|
253
|
+
title: Work Report
|
|
254
|
+
summary: Summary
|
|
255
|
+
monthly: Monthly
|
|
256
|
+
custom_range: Custom Range
|
|
257
|
+
return_to_btn: Return to Works Report
|
|
258
|
+
view_work_btn: View Work
|
|
259
|
+
deposited_by: Deposited by
|
|
260
|
+
work_type: Work type
|
|
261
|
+
resource_type: Resource type
|
|
262
|
+
status: Status
|
|
263
|
+
visibility: Visibility
|
|
264
|
+
work_files:
|
|
265
|
+
title: Files
|
|
266
|
+
total_downloads: Total Downloads
|
|
267
|
+
work_counts:
|
|
268
|
+
total_size: total size
|
|
269
|
+
child_works: child works
|
|
270
|
+
files: files
|
|
271
|
+
summary:
|
|
272
|
+
subtitle: Summary of user activity
|
|
273
|
+
unique_visitors: Unique Visitors
|
|
274
|
+
page_views: Page Views
|
|
275
|
+
file_downloads: File Downloads
|
|
276
|
+
date_range: Date range
|
|
277
|
+
today: Today
|
|
278
|
+
this_week: This week
|
|
279
|
+
this_month: This month
|
|
280
|
+
this_year: This year
|
|
281
|
+
all_time: All time
|
|
282
|
+
monthly_summary:
|
|
283
|
+
monthly_subtitle: Month-by-month status for the last 12 months through
|
|
284
|
+
page_views: Page Views
|
|
285
|
+
file_downloads: File Downloads
|
|
286
|
+
top_works:
|
|
287
|
+
top_works: Top Works
|
|
288
|
+
work_title: Work Title
|
|
289
|
+
work_views: Work Page Views
|
|
290
|
+
file_downloads: File Downloads
|
|
291
|
+
export: Export
|
|
292
|
+
top_file_set_downloads:
|
|
293
|
+
top_downloads: Top File Downloads
|
|
294
|
+
file_name: File Name
|
|
295
|
+
file: File
|
|
296
|
+
file_downloads: File Downloads
|
|
297
|
+
custom_range:
|
|
298
|
+
summary_heading: Summary of user activity
|
|
299
|
+
unique_visitors: Unique Visitors
|
|
300
|
+
page_views: Page Views
|
|
301
|
+
file_downloads: File Downloads
|
|
302
|
+
date_range_form:
|
|
303
|
+
date_range_heading: Customize Date Range
|
|
304
|
+
start_date: Start Date
|
|
305
|
+
end_date: End Date
|
|
306
|
+
set_date_range: Set Report Date Range
|
|
307
|
+
reset_date_range: Reset Date Range
|
|
181
308
|
appearances:
|
|
182
309
|
show:
|
|
183
310
|
header: Appearance
|
|
@@ -268,13 +395,17 @@ en:
|
|
|
268
395
|
collections: Collections
|
|
269
396
|
configuration: Configuration
|
|
270
397
|
content_blocks: Content Blocks
|
|
398
|
+
dashboard: Dashboard
|
|
271
399
|
delete_all: Delete All
|
|
272
400
|
notifications: Notifications
|
|
273
401
|
pages: Pages
|
|
274
402
|
profile: Profile
|
|
275
403
|
repository_objects: Repository Contents
|
|
276
404
|
settings: Settings
|
|
277
|
-
statistics:
|
|
405
|
+
statistics: Statistics
|
|
406
|
+
analytics: Analytics
|
|
407
|
+
works_report: Works Report
|
|
408
|
+
collections_report: Collections Report
|
|
278
409
|
tasks: Tasks
|
|
279
410
|
technical: Features
|
|
280
411
|
transfers: Transfers
|
|
@@ -622,13 +753,6 @@ en:
|
|
|
622
753
|
select_heading: 'Select the collection to add your files to:'
|
|
623
754
|
title: Add to collection
|
|
624
755
|
update: Save changes
|
|
625
|
-
collection_type:
|
|
626
|
-
admin_set_title: Admin Set
|
|
627
|
-
default_title: User Collection
|
|
628
|
-
collection_types:
|
|
629
|
-
create_service:
|
|
630
|
-
admin_set_description: An aggregation of works that is intended to help with administrative control. Admin Sets provide a way of defining behaviors and policies around a set of works.
|
|
631
|
-
default_description: A User Collection can be created by any user to organize their works.
|
|
632
756
|
collections:
|
|
633
757
|
search_form:
|
|
634
758
|
button_label: Go
|
|
@@ -650,6 +774,13 @@ en:
|
|
|
650
774
|
number_of_results_to_display_per_page: Number of results to display per page
|
|
651
775
|
results_per_page: 'Results per page:'
|
|
652
776
|
sort_by_html: "<span>Sort by:</span>"
|
|
777
|
+
collection_type:
|
|
778
|
+
admin_set_title: Admin Set
|
|
779
|
+
default_title: User Collection
|
|
780
|
+
collection_types:
|
|
781
|
+
create_service:
|
|
782
|
+
admin_set_description: An aggregation of works that is intended to help with administrative control. Admin Sets provide a way of defining behaviors and policies around a set of works.
|
|
783
|
+
default_description: A User Collection can be created by any user to organize their works.
|
|
653
784
|
contact_form:
|
|
654
785
|
button_label: Send
|
|
655
786
|
email_label: Your Email
|
|
@@ -693,11 +824,18 @@ en:
|
|
|
693
824
|
authorize_proxies: Authorize Proxies
|
|
694
825
|
breadcrumbs:
|
|
695
826
|
admin: Dashboard
|
|
827
|
+
collections_report: Collections Report
|
|
828
|
+
works_report: Works Report
|
|
696
829
|
collection_type_actions:
|
|
697
830
|
close: Close
|
|
698
831
|
create_collection: Create collection
|
|
699
832
|
select_type_of_collection: Select type of collection
|
|
700
833
|
collections:
|
|
834
|
+
collection_title: Collection Title
|
|
835
|
+
title: Collections
|
|
836
|
+
last_updated: Last updated
|
|
837
|
+
works: Works
|
|
838
|
+
files: Files
|
|
701
839
|
edit:
|
|
702
840
|
header: 'Edit %{type_title}: %{title}'
|
|
703
841
|
form:
|
|
@@ -817,6 +955,8 @@ en:
|
|
|
817
955
|
creator: 'Creator:'
|
|
818
956
|
depositor: 'Depositor:'
|
|
819
957
|
edit_access: 'Edit Access:'
|
|
958
|
+
title: 'Collections'
|
|
959
|
+
recent_activity: Recent activity
|
|
820
960
|
sort_and_per_page:
|
|
821
961
|
show_par_page_html: Show %{select} per page
|
|
822
962
|
sort_by: 'Sort By:'
|
|
@@ -877,6 +1017,7 @@ en:
|
|
|
877
1017
|
view_admin_set: View collection
|
|
878
1018
|
view_collection: View collection
|
|
879
1019
|
work_confirmation: Deleting a work from %{application_name} is permanent. Click OK to delete this work from %{application_name}, or Cancel to cancel this operation
|
|
1020
|
+
collections: Collections
|
|
880
1021
|
collection_list:
|
|
881
1022
|
description: 'Description:'
|
|
882
1023
|
edit_access: 'Edit Access:'
|
|
@@ -886,7 +1027,6 @@ en:
|
|
|
886
1027
|
manage: Manage
|
|
887
1028
|
view: View
|
|
888
1029
|
users: 'Users:'
|
|
889
|
-
collections: Collections
|
|
890
1030
|
facet_label:
|
|
891
1031
|
collections: 'Filter collections:'
|
|
892
1032
|
highlighted: 'Filter highlights:'
|
|
@@ -952,13 +1092,20 @@ en:
|
|
|
952
1092
|
repository_growth:
|
|
953
1093
|
collections: Collections
|
|
954
1094
|
date: Date
|
|
955
|
-
|
|
956
|
-
subtitle: Past 90 days
|
|
1095
|
+
works: Works
|
|
957
1096
|
title: Repository Growth
|
|
958
1097
|
repository_objects:
|
|
959
1098
|
status: Current Status
|
|
960
1099
|
subtitle: Current Status
|
|
961
1100
|
title: Repository Objects
|
|
1101
|
+
resource_type_graph:
|
|
1102
|
+
resource_type: Resource Type
|
|
1103
|
+
title: Resource Types
|
|
1104
|
+
count: Count
|
|
1105
|
+
work_type_graph:
|
|
1106
|
+
work_type: Work Type
|
|
1107
|
+
title: Work Types
|
|
1108
|
+
count: Count
|
|
962
1109
|
show_admin:
|
|
963
1110
|
current_registered_users: Current
|
|
964
1111
|
new_visitors: New Visitors
|
|
@@ -966,6 +1113,7 @@ en:
|
|
|
966
1113
|
registered_users: Registered Users
|
|
967
1114
|
returning_visitors: Returning Visitors
|
|
968
1115
|
total_visitors: Total Visitors
|
|
1116
|
+
graph_reports: Customized Graph Reports
|
|
969
1117
|
stats:
|
|
970
1118
|
collections: Collections created
|
|
971
1119
|
file_downloads: Download
|
|
@@ -974,18 +1122,33 @@ en:
|
|
|
974
1122
|
heading: Your Statistics
|
|
975
1123
|
joined_on: Joined on
|
|
976
1124
|
works: Works created
|
|
1125
|
+
tabs:
|
|
1126
|
+
admin_sets: Admin Sets
|
|
977
1127
|
title: Dashboard
|
|
978
1128
|
transfer_of_ownership: Transfers of Ownership
|
|
979
1129
|
transfer_works_link: Select works to transfer
|
|
980
1130
|
transfers_received: Transfers Received
|
|
981
|
-
transfers_sent: Transfers Sent
|
|
1131
|
+
transfers_sent: Transfers Sent
|
|
982
1132
|
user_activity:
|
|
983
1133
|
date: Date
|
|
984
1134
|
new_users: New Users
|
|
1135
|
+
registered_users: Registered Users
|
|
1136
|
+
returning_visitors: Returning Visitors
|
|
1137
|
+
new_visitors: New Visitors
|
|
985
1138
|
subtitle: New user signups
|
|
986
1139
|
title: User Activity
|
|
1140
|
+
total_visitors: Total Visitors
|
|
1141
|
+
user_summary: User Summary
|
|
1142
|
+
user_activity_graph:
|
|
1143
|
+
date: Date
|
|
1144
|
+
new_users: New Users
|
|
1145
|
+
new_visits: New Visits
|
|
1146
|
+
return_visits: Return Visits
|
|
1147
|
+
total_visits: Total Visits
|
|
987
1148
|
user_notifications: User Notifications
|
|
988
1149
|
view_files: View Files
|
|
1150
|
+
visibility_graph:
|
|
1151
|
+
visibility: Visibility
|
|
989
1152
|
document_language: en
|
|
990
1153
|
edit_profile: Edit Profile
|
|
991
1154
|
embargoes:
|
|
@@ -1358,6 +1521,15 @@ en:
|
|
|
1358
1521
|
link_expired_not_found: Single Use Link Expired or Not Found
|
|
1359
1522
|
link_not_found: Single use link Not Found
|
|
1360
1523
|
sort_label: Sort the listing of items
|
|
1524
|
+
stats:
|
|
1525
|
+
work:
|
|
1526
|
+
header: Work Analytics
|
|
1527
|
+
pageviews: Pageviews
|
|
1528
|
+
downloads: Downloads
|
|
1529
|
+
pageviews:
|
|
1530
|
+
pageviews: Page Views
|
|
1531
|
+
downloads:
|
|
1532
|
+
downloads: Downloads
|
|
1361
1533
|
static:
|
|
1362
1534
|
mendeley:
|
|
1363
1535
|
contact_form: Contact Form
|
|
@@ -1645,3 +1817,9 @@ en:
|
|
|
1645
1817
|
member_of_collection_ids: Select a collection…
|
|
1646
1818
|
required:
|
|
1647
1819
|
html: <span class="label label-info required-tag">required</span>
|
|
1820
|
+
total_view:
|
|
1821
|
+
one: This work has 1 total view
|
|
1822
|
+
other: This work has %{count} total views
|
|
1823
|
+
download:
|
|
1824
|
+
one: and 1 download
|
|
1825
|
+
other: and %{count} downloads
|