hyrax 3.0.0.pre.rc3 → 3.0.0.pre.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dassie/config/locales/hyrax.es.yml +3 -1
- data/.dassie/config/tinymce.yml +3 -2
- data/.regen +1 -1
- data/CONTAINERS.md +12 -0
- data/Dockerfile +10 -8
- data/README.md +5 -0
- data/app/assets/javascripts/hyrax.js +1 -0
- data/app/assets/javascripts/hyrax/app.js.erb +0 -10
- data/app/assets/stylesheets/hyrax/_catalog.scss +1 -0
- data/app/assets/stylesheets/hyrax/_representative-media.scss +2 -2
- data/app/controllers/hyrax/file_sets_controller.rb +55 -4
- data/app/controllers/hyrax/my_controller.rb +1 -1
- data/app/forms/hyrax/forms/file_manager_form.rb +9 -2
- data/app/helpers/hyrax/ability_helper.rb +2 -1
- data/app/helpers/hyrax/contact_form_helper.rb +1 -2
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +16 -1
- data/app/helpers/hyrax/workflows_helper.rb +42 -0
- data/app/models/concerns/hyrax/ability.rb +2 -2
- data/app/models/hyrax/contact_form.rb +1 -7
- data/app/models/hyrax/permission_template.rb +14 -0
- data/app/models/proxy_deposit_request.rb +8 -4
- data/app/presenters/hyrax/file_set_presenter.rb +10 -0
- data/app/presenters/hyrax/google_scholar_presenter.rb +86 -0
- data/app/presenters/hyrax/work_show_presenter.rb +1 -1
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +0 -24
- data/app/services/hyrax/admin_set_member_service.rb +1 -1
- data/app/services/hyrax/change_content_depositor_service.rb +29 -7
- data/app/services/hyrax/collections/permissions_service.rb +5 -6
- data/app/services/hyrax/custom_queries/find_ids_by_model.rb +37 -0
- data/app/services/hyrax/edit_permissions_service.rb +201 -0
- data/app/services/hyrax/identifier/dispatcher.rb +1 -1
- data/app/services/hyrax/listeners/active_fedora_acl_index_listener.rb +26 -0
- data/app/services/hyrax/listeners/metadata_index_listener.rb +5 -1
- data/app/views/catalog/_index_header_list_collection.html.erb +1 -1
- data/app/views/catalog/_index_header_list_default.html.erb +1 -1
- data/app/views/catalog/_index_list_default.html.erb +1 -1
- data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/base/_currently_shared.html.erb +46 -0
- data/app/views/hyrax/base/_form_share.html.erb +5 -33
- data/app/views/hyrax/base/_show_actions.html.erb +16 -14
- data/app/views/hyrax/base/unavailable.html.erb +1 -1
- data/app/views/hyrax/batch_edits/_currently_shared.html.erb +8 -0
- data/app/views/hyrax/collections/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/collections/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/contact_form/new.html.erb +3 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/file_sets/_actions.html.erb +1 -2
- data/app/views/hyrax/file_sets/_permission_form.html.erb +2 -31
- data/app/views/hyrax/file_sets/_show_actions.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_default.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_image.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +1 -1
- data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
- data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
- data/app/views/layouts/_head_tag_content.html.erb +1 -1
- data/app/views/shared/_citations.html.erb +16 -12
- data/bin/hyrax-entrypoint.sh +9 -2
- data/chart/hyrax/Chart.yaml +2 -2
- data/config/initializers/listeners.rb +1 -0
- data/config/locales/hyrax.de.yml +71 -13
- data/config/locales/hyrax.en.yml +31 -19
- data/config/locales/hyrax.es.yml +60 -2
- data/config/locales/hyrax.fr.yml +60 -2
- data/config/locales/hyrax.it.yml +60 -2
- data/config/locales/hyrax.pt-BR.yml +60 -2
- data/config/locales/hyrax.zh.yml +60 -2
- data/documentation/developing-your-hyrax-based-app.md +2 -2
- data/hyrax.gemspec +2 -2
- data/lib/generators/hyrax/templates/catalog_controller.rb +4 -0
- data/lib/generators/hyrax/templates/config/tinymce.yml +3 -2
- data/lib/generators/hyrax/work_resource/work_resource_generator.rb +11 -0
- data/lib/hyrax/configuration.rb +14 -0
- data/lib/hyrax/engine.rb +1 -0
- data/lib/hyrax/version.rb +1 -1
- data/lib/wings.rb +1 -0
- data/lib/wings/services/custom_queries/find_ids_by_model.rb +46 -0
- data/lib/wings/setup.rb +1 -0
- data/template.rb +1 -1
- metadata +21 -7
data/config/locales/hyrax.fr.yml
CHANGED
@@ -362,6 +362,10 @@ fr:
|
|
362
362
|
header: 'Citations:'
|
363
363
|
mendeley: Mendeley
|
364
364
|
zotero: Zotero
|
365
|
+
currently_shared:
|
366
|
+
currently_sharing: Actuellement partagé avec
|
367
|
+
table_title_access: Niveau d'accès
|
368
|
+
table_title_user: Personne / Groupe
|
365
369
|
file_manager:
|
366
370
|
back_to: Revenir à
|
367
371
|
toolbar: Outils
|
@@ -423,6 +427,7 @@ fr:
|
|
423
427
|
legend_html: Visibilité <small>Qui devrait pouvoir afficher ou télécharger ce contenu?</small>
|
424
428
|
management_page: Page de gestion du bail
|
425
429
|
form_progress:
|
430
|
+
proxy_depositors: Proxy Depositors - Sélectionnez l'utilisateur au nom duquel vous déposez
|
426
431
|
required_agreement: Contrôler l'accord de dépôt
|
427
432
|
required_descriptions: Décrivez votre travail
|
428
433
|
required_files: Ajouter des fichiers
|
@@ -498,9 +503,13 @@ fr:
|
|
498
503
|
unfeature: Ne plus mettre à la une
|
499
504
|
social_media:
|
500
505
|
facebook: Facebook
|
506
|
+
facebook_share: Partager sur Facebook
|
501
507
|
google: Google+
|
508
|
+
google_share: Partager sur Google+
|
502
509
|
tumblr: Tumblr
|
510
|
+
tumblr_share: Partager sur Tumblr
|
503
511
|
twitter: Gazouillement
|
512
|
+
twitter_share: Partager sur Twitter
|
504
513
|
unauthorized:
|
505
514
|
id: 'ID: %{id}'
|
506
515
|
is_private: Le %{type} auquel vous avez essayé d'accéder est privé
|
@@ -529,6 +538,10 @@ fr:
|
|
529
538
|
batch_edits:
|
530
539
|
check_all:
|
531
540
|
select_to_access_selection_options: Sélectionner pour accéder à l'option de sélection
|
541
|
+
currently_shared:
|
542
|
+
share_batch_with: Partager le lot avec
|
543
|
+
table_title_access: Niveau d'accès
|
544
|
+
table_title_user: Personne / Groupe
|
532
545
|
delete_selected:
|
533
546
|
button_label: Supprimer la sélection
|
534
547
|
deleting_file_from: La suppression d'un fichier de %{application_name} est permanente. Cliquez sur OK pour supprimer ce fichier de %{application_name} ou sur Annuler pour annuler cette opération.
|
@@ -596,6 +609,7 @@ fr:
|
|
596
609
|
no_visible_works: La collection est vide ou ne contient pas d'éléments auxquels vous avez accès.
|
597
610
|
edit:
|
598
611
|
manage_items: Gérer les articles dans cette collection
|
612
|
+
edit_view: Modifier vue
|
599
613
|
form:
|
600
614
|
additional_fields: Champs supplémentaires
|
601
615
|
description: Descriptions
|
@@ -624,6 +638,7 @@ fr:
|
|
624
638
|
buttons:
|
625
639
|
remove_from_collection: Retirer
|
626
640
|
remove_this_sub_collection: Retirer
|
641
|
+
item_count: Article
|
627
642
|
no_visible_parent_collections: Il n'y a pas de collections parent visibles.
|
628
643
|
no_visible_subcollections: Il n'y a pas de sous-collections visibles.
|
629
644
|
parent_collection_header: Collections de parents
|
@@ -650,6 +665,7 @@ fr:
|
|
650
665
|
notice: Veuillez utiliser le formulaire de contact pour envoyer des questions sur ce système; Signaler un problème que vous rencontrez avec le système; Demander de l'aide en utilisant le système; Ou pour fournir des commentaires généraux. Consultez la page d'aide pour plus d'informations sur ce système.
|
651
666
|
select_type: Sélectionnez un type de problème
|
652
667
|
subject_label: Assujettir
|
668
|
+
title: Nous contacter
|
653
669
|
type_label: type de probleme
|
654
670
|
content_blocks:
|
655
671
|
cancel: Annuler
|
@@ -880,6 +896,8 @@ fr:
|
|
880
896
|
access: Accès
|
881
897
|
action: Actes
|
882
898
|
caption: Liste des articles de cette collection
|
899
|
+
collection:
|
900
|
+
visibility: Visibilité de la collection
|
883
901
|
collection_type: Type de collection
|
884
902
|
date_modified: Dernière modification
|
885
903
|
date_uploaded: Date Ajoutée
|
@@ -889,6 +907,8 @@ fr:
|
|
889
907
|
title: Titre
|
890
908
|
type: Type
|
891
909
|
visibility: Visibilité
|
910
|
+
work:
|
911
|
+
visibility: Visibilité du travail
|
892
912
|
highlighted: Mes faits saillants
|
893
913
|
shared: Travaux partagés avec moi
|
894
914
|
sr:
|
@@ -900,6 +920,7 @@ fr:
|
|
900
920
|
press_to: Appuyez sur pour
|
901
921
|
results_per_page: Nombre de résultats à afficher par page
|
902
922
|
show_label: Afficher tous les détails de
|
923
|
+
thumbnail: la vignette
|
903
924
|
works: Vos travaux
|
904
925
|
your_collections: Vos collections
|
905
926
|
your_works: Vos œuvres
|
@@ -1076,8 +1097,6 @@ fr:
|
|
1076
1097
|
save_note_html: Les autorisations <strong>ne</strong> sont <strong>pas</strong> enregistrées tant que le bouton "Enregistrer" n'est pas enfoncé en bas de la page.
|
1077
1098
|
select_group: Sélectionnez un groupe
|
1078
1099
|
share_with: Partager avec
|
1079
|
-
table_title_access: Niveau d'accès
|
1080
|
-
table_title_user: Personne / groupe
|
1081
1100
|
user_search: Rechercher un utilisateur
|
1082
1101
|
proxy:
|
1083
1102
|
message: "%{sending_user} a déposé le fichier %{title} en votre nom."
|
@@ -1095,8 +1114,13 @@ fr:
|
|
1095
1114
|
fixity_check: Vérification de la fixité
|
1096
1115
|
not_yet_characterized: Pas encore caractérisé
|
1097
1116
|
versioning:
|
1117
|
+
choose_file: Choisissez un nouveau fichier de version
|
1098
1118
|
current: Version actuelle
|
1099
1119
|
header: Des versions
|
1120
|
+
previous: Précédent
|
1121
|
+
remove: Supprimer
|
1122
|
+
remove_current_files: Supprimer les fichiers actuels
|
1123
|
+
remove_new_version: Supprimer le nouveau fichier de version
|
1100
1124
|
restore: Restaurer la version précédente
|
1101
1125
|
restore_from: Restauration à partir de
|
1102
1126
|
save: Enregistrer la révision
|
@@ -1109,6 +1133,7 @@ fr:
|
|
1109
1133
|
admin_sets:
|
1110
1134
|
link: Voir toutes les collections
|
1111
1135
|
tab_label: Explorer les collections
|
1136
|
+
thumbnail: la vignette
|
1112
1137
|
title: Explorer les collections
|
1113
1138
|
featured_researcher:
|
1114
1139
|
missing: Aucun chercheur n'a été présenté.
|
@@ -1195,6 +1220,10 @@ fr:
|
|
1195
1220
|
single: a été enregistré.
|
1196
1221
|
subject: Téléchargement par lots complet
|
1197
1222
|
title: Fichiers téléchargés avec succès
|
1223
|
+
models:
|
1224
|
+
hyrax/file_set: Ensemble de fichiers
|
1225
|
+
hyrax/pcdm_collection: Collection
|
1226
|
+
hyrax/work: Travailler
|
1198
1227
|
my:
|
1199
1228
|
count:
|
1200
1229
|
collections:
|
@@ -1232,6 +1261,10 @@ fr:
|
|
1232
1261
|
comments: 'Commentaires: %{receiver_comment}'
|
1233
1262
|
message: Votre demande de transfert était %{status}.
|
1234
1263
|
subject: Changement de propriété %{status}
|
1264
|
+
validation:
|
1265
|
+
open_transfer: Veuillez fermer le transfert en cours sur le travail avant d'en créer un nouveau
|
1266
|
+
sender_is_not_receiver: Spécifiez un autre utilisateur pour recevoir le travail
|
1267
|
+
valid_username: Sélectionnez un utilisateur existant
|
1235
1268
|
proxy_depositor_added:
|
1236
1269
|
grantee_message: "%{grantor} vous a assigné comme déposant par procuration"
|
1237
1270
|
grantor_message: Vous avez affecté %{grantee} en tant que déposant par procuration.
|
@@ -1263,6 +1296,15 @@ fr:
|
|
1263
1296
|
terms_page: Conditions d'utilisation
|
1264
1297
|
updated: Pages mises à jour.
|
1265
1298
|
passive_consent_to_agreement: En enregistrant ce travail, j'accepte le
|
1299
|
+
permission_levels:
|
1300
|
+
edit: Modifier l'accès
|
1301
|
+
options:
|
1302
|
+
edit: Éditer
|
1303
|
+
none: Choisissez l'accès
|
1304
|
+
read: Voir le téléchargement
|
1305
|
+
owner:
|
1306
|
+
edit: Modifier l'accès
|
1307
|
+
read: Voir le téléchargement
|
1266
1308
|
search:
|
1267
1309
|
button:
|
1268
1310
|
html: <span class="glyphicon glyphicon-search"></span> Aller
|
@@ -1407,6 +1449,20 @@ fr:
|
|
1407
1449
|
remove: Retirer
|
1408
1450
|
remove_new_banner: Supprimer la nouvelle bannière
|
1409
1451
|
remove_new_logo: Supprimer le nouveau logo
|
1452
|
+
js_templates_versioning:
|
1453
|
+
display_label: Afficher l'étiquette
|
1454
|
+
error: Erreur
|
1455
|
+
options:
|
1456
|
+
messages:
|
1457
|
+
accept_file_types: Type de fichier non autorisé
|
1458
|
+
max_file_size: Le fichier est trop grand
|
1459
|
+
max_number_of_files: Nombre maximum de fichiers dépassé
|
1460
|
+
min_file_size: Le fichier est trop petit
|
1461
|
+
previous: précédent
|
1462
|
+
remove: Supprimer
|
1463
|
+
remove_new_version: Supprimer le nouveau fichier de version
|
1464
|
+
set_all_to_this_resource_type: Définir tout sur ce type de ressource
|
1465
|
+
start: Début
|
1410
1466
|
user_profile:
|
1411
1467
|
orcid:
|
1412
1468
|
alt: Icône ORCID
|
@@ -1464,6 +1520,7 @@ fr:
|
|
1464
1520
|
load:
|
1465
1521
|
state_error: 'Le flux de travail: %{workflow_name} n''a pas été mis à jour. Vous supprimez un état: %{state_name} avec %{entity_count} entity / s. Un état peut ne pas être supprimé s''il possède des entités actives!'
|
1466
1522
|
unauthorized: Le travail n'est actuellement pas disponible car il n'a pas encore terminé le processus d'approbation
|
1523
|
+
unauthorized_parent: Le fichier n'est actuellement pas disponible car son travail parent n'a pas encore terminé le processus d'approbation
|
1467
1524
|
works:
|
1468
1525
|
create:
|
1469
1526
|
after_create_html: Vos fichiers sont en cours de traitement par %{application_name} en arrière-plan. Les contrôles de métadonnées et d'accès que vous avez spécifiés sont appliqués. Vous devrez peut-être actualiser cette page pour voir ces mises à jour.
|
@@ -1482,6 +1539,7 @@ fr:
|
|
1482
1539
|
relationships: Des relations
|
1483
1540
|
share: Partager
|
1484
1541
|
visibility_until: jusqu'à
|
1542
|
+
missing_title: Pas de titre
|
1485
1543
|
progress:
|
1486
1544
|
header: Enregistrer le travail
|
1487
1545
|
show:
|
data/config/locales/hyrax.it.yml
CHANGED
@@ -362,6 +362,10 @@ it:
|
|
362
362
|
header: 'citazioni:'
|
363
363
|
mendeley: Mendeley
|
364
364
|
zotero: Zotero
|
365
|
+
currently_shared:
|
366
|
+
currently_sharing: Attualmente condiviso con
|
367
|
+
table_title_access: Livello di accesso
|
368
|
+
table_title_user: Persona / Gruppo
|
365
369
|
file_manager:
|
366
370
|
back_to: Torna alla
|
367
371
|
toolbar: Barra degli strumenti
|
@@ -422,6 +426,7 @@ it:
|
|
422
426
|
legend_html: Visibilità <small>Chi dovrebbe essere in grado di visualizzare o scaricare questo contenuto?</small>
|
423
427
|
management_page: Gestione delle locazioni
|
424
428
|
form_progress:
|
429
|
+
proxy_depositors: Depositanti proxy - Seleziona l'utente per conto del quale stai depositando
|
425
430
|
required_agreement: Controllare l'accordo di deposito
|
426
431
|
required_descriptions: Descrivi il tuo lavoro
|
427
432
|
required_files: Aggiungere i file
|
@@ -497,9 +502,13 @@ it:
|
|
497
502
|
unfeature: Unfeature
|
498
503
|
social_media:
|
499
504
|
facebook: Facebook
|
505
|
+
facebook_share: Condividi su Facebook
|
500
506
|
google: Google+
|
507
|
+
google_share: Condividi su Google+
|
501
508
|
tumblr: Tumblr
|
509
|
+
tumblr_share: Condividi su Tumblr
|
502
510
|
twitter: cinguettio
|
511
|
+
twitter_share: Condividi su Twitter
|
503
512
|
unauthorized:
|
504
513
|
id: 'ID: %{id}'
|
505
514
|
is_private: Lo %{type} a cui hai provato ad accedere è privato
|
@@ -528,6 +537,10 @@ it:
|
|
528
537
|
batch_edits:
|
529
538
|
check_all:
|
530
539
|
select_to_access_selection_options: Selezionare per accedere all'opzione di selezione
|
540
|
+
currently_shared:
|
541
|
+
share_batch_with: Condividi batch con
|
542
|
+
table_title_access: Livello di accesso
|
543
|
+
table_title_user: Persona / Gruppo
|
531
544
|
delete_selected:
|
532
545
|
button_label: Elimina Selezionato
|
533
546
|
deleting_file_from: L'eliminazione di un file da %{application_name} è permanente. Fare clic su OK per eliminare questo file da %{application_name} o Annulla per annullare questa operazione
|
@@ -595,6 +608,7 @@ it:
|
|
595
608
|
no_visible_works: La raccolta è vuota o non contiene elementi a cui è possibile accedere.
|
596
609
|
edit:
|
597
610
|
manage_items: Gestisci elementi in questa raccolta
|
611
|
+
edit_view: Modifica visualizzazione
|
598
612
|
form:
|
599
613
|
additional_fields: Campi aggiuntivi
|
600
614
|
description: descrizioni
|
@@ -623,6 +637,7 @@ it:
|
|
623
637
|
buttons:
|
624
638
|
remove_from_collection: Rimuovere
|
625
639
|
remove_this_sub_collection: Rimuovere
|
640
|
+
item_count: Articolo
|
626
641
|
no_visible_parent_collections: Non ci sono raccolte genitori visibili.
|
627
642
|
no_visible_subcollections: Non ci sono sottoraccolte visibili.
|
628
643
|
parent_collection_header: Collezioni principali
|
@@ -649,6 +664,7 @@ it:
|
|
649
664
|
notice: Utilizza il modulo di contatto per inviare domande su questo sistema; Per segnalare un problema che si sta verificando con il sistema; Richiedere l'assistenza tramite il sistema; O per fornire risposte generali. Consultare la pagina della Guida per ulteriori informazioni su questo sistema.
|
650
665
|
select_type: Selezionare un tipo di problema
|
651
666
|
subject_label: Soggetto
|
667
|
+
title: Contattaci
|
652
668
|
type_label: tipo di problema
|
653
669
|
content_blocks:
|
654
670
|
cancel: Annulla
|
@@ -879,6 +895,8 @@ it:
|
|
879
895
|
access: Accesso
|
880
896
|
action: Azioni
|
881
897
|
caption: Elenco di articoli in questa raccolta
|
898
|
+
collection:
|
899
|
+
visibility: Visibilità della raccolta
|
882
900
|
collection_type: Tipo di raccolta
|
883
901
|
date_modified: Ultima modifica
|
884
902
|
date_uploaded: Data aggiunta
|
@@ -888,6 +906,8 @@ it:
|
|
888
906
|
title: Titolo
|
889
907
|
type: genere
|
890
908
|
visibility: Visibilità
|
909
|
+
work:
|
910
|
+
visibility: Visibilità del lavoro
|
891
911
|
highlighted: I miei punti salienti
|
892
912
|
shared: Opere condivise con me
|
893
913
|
sr:
|
@@ -899,6 +919,7 @@ it:
|
|
899
919
|
press_to: Premere per
|
900
920
|
results_per_page: Numero di risultati da visualizzare per pagina
|
901
921
|
show_label: Visualizza tutti i dettagli di
|
922
|
+
thumbnail: miniatura
|
902
923
|
works: Le tue opere
|
903
924
|
your_collections: Le tue collezioni
|
904
925
|
your_works: I tuoi lavori
|
@@ -1075,8 +1096,6 @@ it:
|
|
1075
1096
|
save_note_html: Le autorizzazioni <strong>non</strong> vengono salvate finché <strong>non</strong> viene premuto il pulsante "Salva" nella parte inferiore della pagina.
|
1076
1097
|
select_group: Seleziona un gruppo
|
1077
1098
|
share_with: Condividi con
|
1078
|
-
table_title_access: Livello di accesso
|
1079
|
-
table_title_user: Persona / Gruppo
|
1080
1099
|
user_search: Cerca un utente
|
1081
1100
|
proxy:
|
1082
1101
|
message: "%{sending_user} ha depositato il file %{title} per tuo conto."
|
@@ -1094,8 +1113,13 @@ it:
|
|
1094
1113
|
fixity_check: Fissità Di Controllo
|
1095
1114
|
not_yet_characterized: Non Ancora Caratterizzati
|
1096
1115
|
versioning:
|
1116
|
+
choose_file: Scegli New Version File
|
1097
1117
|
current: Versione attuale
|
1098
1118
|
header: versioni
|
1119
|
+
previous: Precedente
|
1120
|
+
remove: Rimuovere
|
1121
|
+
remove_current_files: Rimuovi file correnti
|
1122
|
+
remove_new_version: Rimuovi nuovo file versione
|
1099
1123
|
restore: Ripristina la versione precedente
|
1100
1124
|
restore_from: Ripristina da
|
1101
1125
|
save: Salva revisione
|
@@ -1108,6 +1132,7 @@ it:
|
|
1108
1132
|
admin_sets:
|
1109
1133
|
link: Visualizza tutte le collezioni
|
1110
1134
|
tab_label: Esplora collezioni
|
1135
|
+
thumbnail: miniatura
|
1111
1136
|
title: Esplora collezioni
|
1112
1137
|
featured_researcher:
|
1113
1138
|
missing: Nessun ricercatore è stato presentato.
|
@@ -1194,6 +1219,10 @@ it:
|
|
1194
1219
|
single: È stato salvato.
|
1195
1220
|
subject: Caricamento batch completato
|
1196
1221
|
title: I file sono stati caricati correttamente
|
1222
|
+
models:
|
1223
|
+
hyrax/file_set: Set di file
|
1224
|
+
hyrax/pcdm_collection: Collezione
|
1225
|
+
hyrax/work: Opera
|
1197
1226
|
my:
|
1198
1227
|
count:
|
1199
1228
|
collections:
|
@@ -1231,6 +1260,10 @@ it:
|
|
1231
1260
|
comments: 'Commenti: %{receiver_comment}'
|
1232
1261
|
message: La tua richiesta di trasferimento era %{status}.
|
1233
1262
|
subject: Modifica proprietà %{status}
|
1263
|
+
validation:
|
1264
|
+
open_transfer: È necessario chiudere il trasferimento aperto sull'opera prima di crearne uno nuovo
|
1265
|
+
sender_is_not_receiver: Specifica un altro utente per ricevere il lavoro
|
1266
|
+
valid_username: Deve essere un utente esistente
|
1234
1267
|
proxy_depositor_added:
|
1235
1268
|
grantee_message: "%{grantor} ti ha assegnato come depositante proxy"
|
1236
1269
|
grantor_message: Hai assegnato %{grantee} come depositante proxy
|
@@ -1262,6 +1295,15 @@ it:
|
|
1262
1295
|
terms_page: Condizioni d'uso
|
1263
1296
|
updated: Pagine aggiornate.
|
1264
1297
|
passive_consent_to_agreement: Salvo questo lavoro accetto il
|
1298
|
+
permission_levels:
|
1299
|
+
edit: Accesso in modifica
|
1300
|
+
options:
|
1301
|
+
edit: modificare
|
1302
|
+
none: Scegli Accesso
|
1303
|
+
read: Visualizza / Scarica
|
1304
|
+
owner:
|
1305
|
+
edit: Accesso in modifica
|
1306
|
+
read: Visualizza / Scarica
|
1265
1307
|
search:
|
1266
1308
|
button:
|
1267
1309
|
html: <span class="glyphicon glyphicon-search"></span> Partire
|
@@ -1406,6 +1448,20 @@ it:
|
|
1406
1448
|
remove: Rimuovere
|
1407
1449
|
remove_new_banner: Rimuovi nuovo banner
|
1408
1450
|
remove_new_logo: Rimuovi nuovo logo
|
1451
|
+
js_templates_versioning:
|
1452
|
+
display_label: Etichetta display
|
1453
|
+
error: Errore
|
1454
|
+
options:
|
1455
|
+
messages:
|
1456
|
+
accept_file_types: Tipo di file non consentito
|
1457
|
+
max_file_size: Il file è troppo grande
|
1458
|
+
max_number_of_files: Numero massimo di file superato
|
1459
|
+
min_file_size: Il file è troppo piccolo
|
1460
|
+
previous: precedente
|
1461
|
+
remove: Rimuovere
|
1462
|
+
remove_new_version: Rimuovi nuovo file versione
|
1463
|
+
set_all_to_this_resource_type: Imposta tutto su questo tipo di risorsa
|
1464
|
+
start: Inizio
|
1409
1465
|
user_profile:
|
1410
1466
|
orcid:
|
1411
1467
|
alt: Icona ORCID
|
@@ -1463,6 +1519,7 @@ it:
|
|
1463
1519
|
load:
|
1464
1520
|
state_error: 'Il flusso di lavoro: %{workflow_name} non è stato aggiornato. Stai rimuovendo uno stato: %{state_name} con entità / i %{entity_count}. Uno stato non può essere rimosso mentre ha entità attive!'
|
1465
1521
|
unauthorized: Il lavoro non è attualmente disponibile perché non ha ancora completato il processo di approvazione
|
1522
|
+
unauthorized_parent: Il file non è attualmente disponibile perché il suo lavoro principale non ha ancora completato il processo di approvazione
|
1466
1523
|
works:
|
1467
1524
|
create:
|
1468
1525
|
after_create_html: I file vengono elaborati da %{application_name} in background. I metadati e i controlli di accesso specificati vengono applicati. Potrebbe essere necessario aggiornare questa pagina per visualizzare questi aggiornamenti.
|
@@ -1481,6 +1538,7 @@ it:
|
|
1481
1538
|
relationships: Le relazioni
|
1482
1539
|
share: Condividere
|
1483
1540
|
visibility_until: fino a
|
1541
|
+
missing_title: Senza titolo
|
1484
1542
|
progress:
|
1485
1543
|
header: Salva lavoro
|
1486
1544
|
show:
|
@@ -362,6 +362,10 @@ pt-BR:
|
|
362
362
|
header: 'Citações:'
|
363
363
|
mendeley: Mendeley
|
364
364
|
zotero: Zotero
|
365
|
+
currently_shared:
|
366
|
+
currently_sharing: Atualmente compartilhado com
|
367
|
+
table_title_access: Nível de acesso
|
368
|
+
table_title_user: Pessoa / Grupo
|
365
369
|
file_manager:
|
366
370
|
back_to: De volta para
|
367
371
|
toolbar: Barra de ferramentas
|
@@ -417,6 +421,7 @@ pt-BR:
|
|
417
421
|
legend_html: Acesso <small>Quem pode acessar ou fazer o download desse conteúdo?</small>
|
418
422
|
management_page: Página de Gerenciamento de Empréstimo
|
419
423
|
form_progress:
|
424
|
+
proxy_depositors: Depositantes proxy - Selecione o usuário em cujo nome você está depositando
|
420
425
|
required_agreement: Verifique o acordo de depósito
|
421
426
|
required_descriptions: Descreva sua obra
|
422
427
|
required_files: Acrescente arquivos
|
@@ -492,9 +497,13 @@ pt-BR:
|
|
492
497
|
unfeature: Unfeature
|
493
498
|
social_media:
|
494
499
|
facebook: Facebook
|
500
|
+
facebook_share: Compartilhar no Facebook
|
495
501
|
google: Google+
|
502
|
+
google_share: Compartilhe no Google+
|
496
503
|
tumblr: Tumblr
|
504
|
+
tumblr_share: Compartilhe no Tumblr
|
497
505
|
twitter: Twitter
|
506
|
+
twitter_share: Compartilhar no Twitter
|
498
507
|
unauthorized:
|
499
508
|
id: 'ID: %{id}'
|
500
509
|
is_private: O %{type} que você tentou acessar é privado
|
@@ -523,6 +532,10 @@ pt-BR:
|
|
523
532
|
batch_edits:
|
524
533
|
check_all:
|
525
534
|
select_to_access_selection_options: Selecione para acessar a opção de seleção
|
535
|
+
currently_shared:
|
536
|
+
share_batch_with: Compartilhar lote com
|
537
|
+
table_title_access: Nível de acesso
|
538
|
+
table_title_user: Pessoa / Grupo
|
526
539
|
delete_selected:
|
527
540
|
button_label: Excluir Selecionado
|
528
541
|
deleting_file_from: A exclusão de um arquivo de %{application_name} é permanente. Clique em OK para excluir este arquivo de %{application_name} ou em Cancelar para cancelar esta operação
|
@@ -590,6 +603,7 @@ pt-BR:
|
|
590
603
|
no_visible_works: A coleção está vazia ou não contém itens aos quais você tenha acesso.
|
591
604
|
edit:
|
592
605
|
manage_items: Curatelar itens nesta coleção
|
606
|
+
edit_view: Editar visualização
|
593
607
|
form:
|
594
608
|
additional_fields: Campos adicionais
|
595
609
|
description: Descrições
|
@@ -618,6 +632,7 @@ pt-BR:
|
|
618
632
|
buttons:
|
619
633
|
remove_from_collection: Remover
|
620
634
|
remove_this_sub_collection: Remover
|
635
|
+
item_count: Item
|
621
636
|
no_visible_parent_collections: Não há coleção mãe acessível.
|
622
637
|
no_visible_subcollections: Não há sub-coleções acessíveis.
|
623
638
|
parent_collection_header: Coleções mães
|
@@ -644,6 +659,7 @@ pt-BR:
|
|
644
659
|
notice: Use o formulário de contato para fazer perguntas sobre este sistema; para registrar um problema no sistema; para solicitar assistência quanto ao uso do sistema; ou para fazer comentários ou sugestões. Consulte a página de Ajuda para mais informações sobre este sistema.
|
645
660
|
select_type: Selecione um Tipo de Problema
|
646
661
|
subject_label: Assunto
|
662
|
+
title: Entre em contato conosco
|
647
663
|
type_label: Tipo de problema
|
648
664
|
content_blocks:
|
649
665
|
cancel: Cancelar
|
@@ -874,6 +890,8 @@ pt-BR:
|
|
874
890
|
access: Acesso
|
875
891
|
action: Ações
|
876
892
|
caption: Lista de itens nesta coleção
|
893
|
+
collection:
|
894
|
+
visibility: Visibilidade da coleção
|
877
895
|
collection_type: Tipo de Coleção
|
878
896
|
date_modified: Última modificação
|
879
897
|
date_uploaded: Data de carga
|
@@ -883,6 +901,8 @@ pt-BR:
|
|
883
901
|
title: Título
|
884
902
|
type: Tipo
|
885
903
|
visibility: Acesso
|
904
|
+
work:
|
905
|
+
visibility: Visibilidade do Trabalho
|
886
906
|
highlighted: Meus Destaques
|
887
907
|
shared: Obras compartilhadas comigo
|
888
908
|
sr:
|
@@ -894,6 +914,7 @@ pt-BR:
|
|
894
914
|
press_to: Pressione para
|
895
915
|
results_per_page: Número de resultados a serem exibidos por página
|
896
916
|
show_label: Exibir todos os detalhes de
|
917
|
+
thumbnail: miniatura
|
897
918
|
works: Obras
|
898
919
|
your_collections: Suas coleções
|
899
920
|
your_works: Suas obras
|
@@ -1070,8 +1091,6 @@ pt-BR:
|
|
1070
1091
|
save_note_html: As permissões <strong>não</strong> são salvas até que o botão de "Salvar" abaixo seja pressionado.
|
1071
1092
|
select_group: Selecionar um grupo
|
1072
1093
|
share_with: Compartilhar com
|
1073
|
-
table_title_access: Nível de acesso
|
1074
|
-
table_title_user: Pessoa/Grupo
|
1075
1094
|
user_search: Procurar um usuário
|
1076
1095
|
proxy:
|
1077
1096
|
message: "%{sending_user} depositou o arquivo %{title} em seu nome."
|
@@ -1089,8 +1108,13 @@ pt-BR:
|
|
1089
1108
|
fixity_check: Fixidez De Seleção
|
1090
1109
|
not_yet_characterized: Ainda Não Caracterizados
|
1091
1110
|
versioning:
|
1111
|
+
choose_file: Escolha o arquivo da nova versão
|
1092
1112
|
current: Versão corrente
|
1093
1113
|
header: Versões
|
1114
|
+
previous: Anterior
|
1115
|
+
remove: Retirar
|
1116
|
+
remove_current_files: Remover arquivos atuais
|
1117
|
+
remove_new_version: Remover arquivo de nova versão
|
1094
1118
|
restore: Restaurar a Versão Anterior
|
1095
1119
|
restore_from: Restaurar a partir de
|
1096
1120
|
save: Salvar Revisão
|
@@ -1103,6 +1127,7 @@ pt-BR:
|
|
1103
1127
|
admin_sets:
|
1104
1128
|
link: Acessar todas as coleções
|
1105
1129
|
tab_label: Explorar coleções
|
1130
|
+
thumbnail: miniatura
|
1106
1131
|
title: Explorar coleções
|
1107
1132
|
featured_researcher:
|
1108
1133
|
missing: Nenhum pesquisador foi destacado.
|
@@ -1189,6 +1214,10 @@ pt-BR:
|
|
1189
1214
|
single: Foi salvo.
|
1190
1215
|
subject: Carga em lote completo
|
1191
1216
|
title: Arquivos carregados com sucesso
|
1217
|
+
models:
|
1218
|
+
hyrax/file_set: Conjunto de arquivos
|
1219
|
+
hyrax/pcdm_collection: Coleção
|
1220
|
+
hyrax/work: Trabalhar
|
1192
1221
|
my:
|
1193
1222
|
count:
|
1194
1223
|
collections:
|
@@ -1226,6 +1255,10 @@ pt-BR:
|
|
1226
1255
|
comments: 'Comentários: %{receiver_comment}'
|
1227
1256
|
message: Seu pedido de transferência foi %{status}.
|
1228
1257
|
subject: Alteração de Propriedade %{status}
|
1258
|
+
validation:
|
1259
|
+
open_transfer: Deve fechar a transferência aberta na obra antes de criar uma nova
|
1260
|
+
sender_is_not_receiver: Especifique um usuário diferente para receber o trabalho
|
1261
|
+
valid_username: Deve ser um usuário existente
|
1229
1262
|
proxy_depositor_added:
|
1230
1263
|
grantee_message: "%{grantor} atribuiu você como depositante proxy"
|
1231
1264
|
grantor_message: Você atribuiu %{grantee} como um depositante proxy
|
@@ -1257,6 +1290,15 @@ pt-BR:
|
|
1257
1290
|
terms_page: Termos de uso
|
1258
1291
|
updated: Páginas atualizadas.
|
1259
1292
|
passive_consent_to_agreement: Ao salvar esta obra, aceito o
|
1293
|
+
permission_levels:
|
1294
|
+
edit: Editar acesso
|
1295
|
+
options:
|
1296
|
+
edit: Editar
|
1297
|
+
none: Escolha o acesso
|
1298
|
+
read: Visualizar download
|
1299
|
+
owner:
|
1300
|
+
edit: Editar acesso
|
1301
|
+
read: Visualizar download
|
1260
1302
|
search:
|
1261
1303
|
button:
|
1262
1304
|
html: <span class="glyphicon glyphicon-search"></span> Ir
|
@@ -1401,6 +1443,20 @@ pt-BR:
|
|
1401
1443
|
remove: Remover
|
1402
1444
|
remove_new_banner: Remover novo banner
|
1403
1445
|
remove_new_logo: Remover novo logotipo
|
1446
|
+
js_templates_versioning:
|
1447
|
+
display_label: Etiqueta de exibição
|
1448
|
+
error: Erro
|
1449
|
+
options:
|
1450
|
+
messages:
|
1451
|
+
accept_file_types: Tipo de arquivo não permitido
|
1452
|
+
max_file_size: O arquivo é muito grande
|
1453
|
+
max_number_of_files: Número máximo de arquivos excedido
|
1454
|
+
min_file_size: Arquivo muito pequeno
|
1455
|
+
previous: anterior
|
1456
|
+
remove: Retirar
|
1457
|
+
remove_new_version: Remover arquivo de nova versão
|
1458
|
+
set_all_to_this_resource_type: Definir tudo para este tipo de recurso
|
1459
|
+
start: Começar
|
1404
1460
|
user_profile:
|
1405
1461
|
orcid:
|
1406
1462
|
alt: Ícone ORCID
|
@@ -1458,6 +1514,7 @@ pt-BR:
|
|
1458
1514
|
load:
|
1459
1515
|
state_error: 'O fluxo de trabalho: %{workflow_name} não foi atualizado. Você está tentando remover um estado: %{state_name} com %{entity_count} entidade(s). Um estado não pode ser removido enquanto ele possui entidades ativas!'
|
1460
1516
|
unauthorized: A obra não está disponível no momento porque ainda não completou o processo de aprovação
|
1517
|
+
unauthorized_parent: O arquivo não está disponível no momento porque seu trabalho principal ainda não concluiu o processo de aprovação
|
1461
1518
|
works:
|
1462
1519
|
create:
|
1463
1520
|
after_create_html: Seus arquivos estão sendo processados pelo %{application_name} em segundo plano. Os metadados e os controles de acesso que você especificou estão sendo aplicados. Talvez seja necessário recarregar esta página para ver essas atualizações.
|
@@ -1476,6 +1533,7 @@ pt-BR:
|
|
1476
1533
|
relationships: Relações
|
1477
1534
|
share: Compartilhamento
|
1478
1535
|
visibility_until: até
|
1536
|
+
missing_title: Sem Título
|
1479
1537
|
progress:
|
1480
1538
|
header: Salvar obra
|
1481
1539
|
show:
|