diff --git a/src/app/+admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.ts b/src/app/+admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.ts index 13158204c5..1ab8fee8c2 100644 --- a/src/app/+admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.ts +++ b/src/app/+admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.ts @@ -61,7 +61,7 @@ export class ItemAdminSearchResultGridElementComponent extends SearchResultGridE } /** - * Fetch the component depending on the item's relationship type, view mode and context + * Fetch the component depending on the item's entity type, view mode and context * @returns {GenericConstructor} */ private getComponent(): GenericConstructor { diff --git a/src/app/+admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.ts b/src/app/+admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.ts index cf5746391c..68f10916d5 100644 --- a/src/app/+admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.ts +++ b/src/app/+admin/admin-workflow-page/admin-workflow-search-results/admin-workflow-search-result-grid-element/workflow-item/workflow-item-search-result-admin-workflow-grid-element.component.ts @@ -96,7 +96,7 @@ export class WorkflowItemSearchResultAdminWorkflowGridElementComponent extends S } /** - * Fetch the component depending on the item's relationship type, view mode and context + * Fetch the component depending on the item's entity type, view mode and context * @returns {GenericConstructor} */ private getComponent(item: Item): GenericConstructor { diff --git a/src/app/+item-page/edit-item-page/item-delete/item-delete.component.ts b/src/app/+item-page/edit-item-page/item-delete/item-delete.component.ts index a05ffec4f5..0249422c8e 100644 --- a/src/app/+item-page/edit-item-page/item-delete/item-delete.component.ts +++ b/src/app/+item-page/edit-item-page/item-delete/item-delete.component.ts @@ -112,7 +112,7 @@ export class ItemDeleteComponent super.ngOnInit(); this.url = this.router.url; - const label = this.item.firstMetadataValue('relationship.type'); + const label = this.item.firstMetadataValue('dspace.entity.type'); if (label !== undefined) { this.types$ = this.entityTypeService.getEntityTypeByLabel(label).pipe( getFirstSucceededRemoteData(), diff --git a/src/app/+item-page/edit-item-page/item-relationships/item-relationships.component.ts b/src/app/+item-page/edit-item-page/item-relationships/item-relationships.component.ts index 785d548860..1c5ed3c02b 100644 --- a/src/app/+item-page/edit-item-page/item-relationships/item-relationships.component.ts +++ b/src/app/+item-page/edit-item-page/item-relationships/item-relationships.component.ts @@ -75,7 +75,7 @@ export class ItemRelationshipsComponent extends AbstractItemUpdateComponent { */ public initializeUpdates(): void { - const label = this.item.firstMetadataValue('relationship.type'); + const label = this.item.firstMetadataValue('dspace.entity.type'); if (label !== undefined) { this.entityType$ = this.entityTypeService.getEntityTypeByLabel(label).pipe( diff --git a/src/app/+item-page/item-page-routing-paths.ts b/src/app/+item-page/item-page-routing-paths.ts index 8ad5583269..43b37f954a 100644 --- a/src/app/+item-page/item-page-routing-paths.ts +++ b/src/app/+item-page/item-page-routing-paths.ts @@ -10,11 +10,11 @@ export function getItemModuleRoute() { /** * Get the route to an item's page - * Depending on the item's relationship type, the route will either start with /items or /entities + * Depending on the item's entity type, the route will either start with /items or /entities * @param item The item to retrieve the route for */ export function getItemPageRoute(item: Item) { - const type = item.firstMetadataValue('relationship.type'); + const type = item.firstMetadataValue('dspace.entity.type'); return getEntityPageRoute(type, item.uuid); } diff --git a/src/app/+item-page/simple/field-components/specific-field/title/item-page-title-field.component.html b/src/app/+item-page/simple/field-components/specific-field/title/item-page-title-field.component.html index 43bd20d0f6..12987dc6d3 100644 --- a/src/app/+item-page/simple/field-components/specific-field/title/item-page-title-field.component.html +++ b/src/app/+item-page/simple/field-components/specific-field/title/item-page-title-field.component.html @@ -1,5 +1,5 @@

-
+
{{ type.toLowerCase() + '.page.titleprefix' | translate }}
diff --git a/src/app/core/data/dso-redirect-data.service.spec.ts b/src/app/core/data/dso-redirect-data.service.spec.ts index 43489fbf6d..d64f37ad78 100644 --- a/src/app/core/data/dso-redirect-data.service.spec.ts +++ b/src/app/core/data/dso-redirect-data.service.spec.ts @@ -120,7 +120,7 @@ describe('DsoRedirectDataService', () => { it('should navigate to entities route with the corresponding entity type', () => { remoteData.payload.type = 'item'; remoteData.payload.metadata = { - 'relationship.type': [ + 'dspace.entity.type': [ { language: 'en_US', value: 'Publication' diff --git a/src/app/core/shared/item.model.ts b/src/app/core/shared/item.model.ts index 10b723c202..53eb5e3ce2 100644 --- a/src/app/core/shared/item.model.ts +++ b/src/app/core/shared/item.model.ts @@ -104,7 +104,7 @@ export class Item extends DSpaceObject implements ChildHALResource { * Method that returns as which type of object this object should be rendered */ getRenderTypes(): (string | GenericConstructor)[] { - const entityType = this.firstMetadataValue('relationship.type'); + const entityType = this.firstMetadataValue('dspace.entity.type'); if (isEmpty(entityType)) { return super.getRenderTypes(); } diff --git a/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.spec.ts b/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.spec.ts index 791fc43fbe..b46dab7180 100644 --- a/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.spec.ts +++ b/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.spec.ts @@ -24,7 +24,7 @@ describe('ItemMetadataRepresentation', () => { for (const metadataField of Object.keys(item.metadata)) { describe(`when creating an ItemMetadataRepresentation`, () => { beforeEach(() => { - item.metadata['relationship.type'] = [ + item.metadata['dspace.entity.type'] = [ Object.assign(new MetadataValue(), { value: itemType }) @@ -41,7 +41,7 @@ describe('ItemMetadataRepresentation', () => { }); it('should return the correct item type', () => { - expect(itemMetadataRepresentation.itemType).toEqual(item.firstMetadataValue('relationship.type')); + expect(itemMetadataRepresentation.itemType).toEqual(item.firstMetadataValue('dspace.entity.type')); }); }); } diff --git a/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.ts b/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.ts index b688673b65..8c50e0b597 100644 --- a/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.ts +++ b/src/app/core/shared/metadata-representation/item/item-metadata-representation.model.ts @@ -21,7 +21,7 @@ export class ItemMetadataRepresentation extends Item implements MetadataRepresen * The type of item this item can be represented as */ get itemType(): string { - return this.firstMetadataValue('relationship.type'); + return this.firstMetadataValue('dspace.entity.type'); } /** diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.spec.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.spec.ts index 432ac44859..5e2ffd30fb 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.spec.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.spec.ts @@ -66,12 +66,12 @@ describe('RelationshipEffects', () => { leftItem = Object.assign(new Item(), { uuid: testUUID1, - metadata: { 'relationship.type': [leftTypeMD] } + metadata: { 'dspace.entity.type': [leftTypeMD] } }); rightItem = Object.assign(new Item(), { uuid: testUUID2, - metadata: { 'relationship.type': [rightTypeMD] } + metadata: { 'dspace.entity.type': [rightTypeMD] } }); relationshipType = Object.assign(new RelationshipType(), { diff --git a/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.ts b/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.ts index e68152f74d..5a20ed8b51 100644 --- a/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.ts +++ b/src/app/shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/relationship.effects.ts @@ -167,8 +167,8 @@ export class RelationshipEffects { } private addRelationship(item1: Item, item2: Item, relationshipType: string, submissionId: string, nameVariant?: string) { - const type1: string = item1.firstMetadataValue('relationship.type'); - const type2: string = item2.firstMetadataValue('relationship.type'); + const type1: string = item1.firstMetadataValue('dspace.entity.type'); + const type2: string = item2.firstMetadataValue('dspace.entity.type'); return this.relationshipTypeService.getRelationshipTypeByLabelAndTypes(relationshipType, type1, type2) .pipe( mergeMap((type: RelationshipType) => { diff --git a/src/app/shared/metadata-representation/metadata-representation-loader.component.ts b/src/app/shared/metadata-representation/metadata-representation-loader.component.ts index 40fae2e5a6..976dfdbda8 100644 --- a/src/app/shared/metadata-representation/metadata-representation-loader.component.ts +++ b/src/app/shared/metadata-representation/metadata-representation-loader.component.ts @@ -14,7 +14,7 @@ import { ThemeService } from '../theme-support/theme.service'; templateUrl: './metadata-representation-loader.component.html' }) /** - * Component for determining what component to use depending on the item's relationship type (relationship.type), its metadata representation and, optionally, its context + * Component for determining what component to use depending on the item's entity type (dspace.entity.type), its metadata representation and, optionally, its context */ export class MetadataRepresentationLoaderComponent implements OnInit { private componentRefInstance: MetadataRepresentationListElementComponent; @@ -64,7 +64,7 @@ export class MetadataRepresentationLoaderComponent implements OnInit { } /** - * Fetch the component depending on the item's relationship type, metadata representation type and context + * Fetch the component depending on the item's entity type, metadata representation type and context * @returns {string} */ private getComponent(): GenericConstructor { diff --git a/src/app/shared/mocks/dspace-rest/mocks/mock-publication-response.json b/src/app/shared/mocks/dspace-rest/mocks/mock-publication-response.json index d298812e5d..cc4cb5fa46 100644 --- a/src/app/shared/mocks/dspace-rest/mocks/mock-publication-response.json +++ b/src/app/shared/mocks/dspace-rest/mocks/mock-publication-response.json @@ -157,7 +157,7 @@ "place": 0 } ], - "relationship.type": [ + "dspace.entity.type": [ { "value": "Publication", "language": null, diff --git a/src/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component.ts b/src/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component.ts index b02ab3cfeb..30ad91c1e2 100644 --- a/src/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component.ts +++ b/src/app/shared/object-collection/shared/listable-object/listable-object-component-loader.component.ts @@ -27,7 +27,7 @@ import { ThemeService } from '../../../theme-support/theme.service'; templateUrl: './listable-object-component-loader.component.html' }) /** - * Component for determining what component to use depending on the item's relationship type (relationship.type) + * Component for determining what component to use depending on the item's entity type (dspace.entity.type) */ export class ListableObjectComponentLoaderComponent implements OnInit, OnDestroy { /** @@ -179,7 +179,7 @@ export class ListableObjectComponentLoaderComponent implements OnInit, OnDestroy } /** - * Fetch the component depending on the item's relationship type, view mode and context + * Fetch the component depending on the item's entity type, view mode and context * @returns {GenericConstructor} */ getComponent(renderTypes: (string | GenericConstructor)[], diff --git a/src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.spec.ts b/src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.spec.ts index 9aec785f08..023b51a8dd 100644 --- a/src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.spec.ts +++ b/src/app/shared/object-list/my-dspace-result-list-element/item-list-preview/item-list-preview.component.spec.ts @@ -57,7 +57,7 @@ const mockItemWithEntityType: Item = Object.assign(new Item(), { value: 'This is just another title' } ], - 'relationship.type': [ + 'dspace.entity.type': [ { language: null, value: 'Publication' diff --git a/src/app/shared/object-list/type-badge/type-badge.component.spec.ts b/src/app/shared/object-list/type-badge/type-badge.component.spec.ts index a8659e28ac..9a7e22c551 100644 --- a/src/app/shared/object-list/type-badge/type-badge.component.spec.ts +++ b/src/app/shared/object-list/type-badge/type-badge.component.spec.ts @@ -12,10 +12,10 @@ let fixture: ComponentFixture; const type = 'authorOfPublication'; -const mockItemWithRelationshipType = Object.assign(new Item(), { +const mockItemWithEntityType = Object.assign(new Item(), { bundles: observableOf({}), metadata: { - 'relationship.type': [ + 'dspace.entity.type': [ { language: 'en_US', value: type @@ -24,7 +24,7 @@ const mockItemWithRelationshipType = Object.assign(new Item(), { } }); -const mockItemWithoutRelationshipType = Object.assign(new Item(), { +const mockItemWithoutEntityType = Object.assign(new Item(), { bundles: observableOf({}), metadata: { 'dc.title': [ @@ -52,21 +52,21 @@ describe('ItemTypeBadgeComponent', () => { comp = fixture.componentInstance; })); - describe('When the item has a relationship type', () => { + describe('When the item has an entity type', () => { beforeEach(() => { - comp.object = mockItemWithRelationshipType; + comp.object = mockItemWithEntityType; fixture.detectChanges(); }); - it('should show the relationship type badge', () => { + it('should show the entity type badge', () => { const badge = fixture.debugElement.query(By.css('span.badge')); expect(badge.nativeElement.textContent).toContain(type.toLowerCase()); }); }); - describe('When the item has no relationship type', () => { + describe('When the item has no entity type', () => { beforeEach(() => { - comp.object = mockItemWithoutRelationshipType; + comp.object = mockItemWithoutEntityType; fixture.detectChanges(); }); diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5 index c4ea2a0d9e..8383c440cd 100644 --- a/src/assets/i18n/ar.json5 +++ b/src/assets/i18n/ar.json5 @@ -3180,9 +3180,9 @@ // TODO New key - Add a translation "item.edit.relationships.save-button": "Save", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/cs.json5 b/src/assets/i18n/cs.json5 index 9bc6ea36ed..2c7ca09930 100644 --- a/src/assets/i18n/cs.json5 +++ b/src/assets/i18n/cs.json5 @@ -3120,9 +3120,9 @@ // TODO New key - Add a translation "item.edit.relationships.save-button": "Save", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/de.json5 b/src/assets/i18n/de.json5 index 4a5b799c29..306f1fcc51 100644 --- a/src/assets/i18n/de.json5 +++ b/src/assets/i18n/de.json5 @@ -2789,9 +2789,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Speichern", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5 index e41e3794ce..2924a3a47e 100644 --- a/src/assets/i18n/en.json5 +++ b/src/assets/i18n/en.json5 @@ -1711,7 +1711,7 @@ "item.edit.relationships.save-button": "Save", - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", "item.edit.return": "Back", diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5 index dedf74d32d..5edaaf0cf1 100644 --- a/src/assets/i18n/es.json5 +++ b/src/assets/i18n/es.json5 @@ -2861,9 +2861,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Guardar", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5 index 4932e49bbc..89d5955725 100644 --- a/src/assets/i18n/fi.json5 +++ b/src/assets/i18n/fi.json5 @@ -2625,9 +2625,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Tallenna", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5 index 42fad7c682..7b43330e10 100644 --- a/src/assets/i18n/fr.json5 +++ b/src/assets/i18n/fr.json5 @@ -2864,9 +2864,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Sauvegarder", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/hu.json5 b/src/assets/i18n/hu.json5 index 6fec12cf21..15b05c93e8 100644 --- a/src/assets/i18n/hu.json5 +++ b/src/assets/i18n/hu.json5 @@ -2430,8 +2430,8 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Mentés", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", - "item.edit.relationships.no-entity-type": "Adja hozzá a 'relationship.type' metaadatot ezen elem hivatkozásánek engedélyezéséhez", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Adja hozzá a 'dspace.entity.type' metaadatot ezen elem hivatkozásánek engedélyezéséhez", diff --git a/src/assets/i18n/ja.json5 b/src/assets/i18n/ja.json5 index c4ea2a0d9e..8383c440cd 100644 --- a/src/assets/i18n/ja.json5 +++ b/src/assets/i18n/ja.json5 @@ -3180,9 +3180,9 @@ // TODO New key - Add a translation "item.edit.relationships.save-button": "Save", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/lv.json5 b/src/assets/i18n/lv.json5 index 898b8db31a..ff998ab774 100644 --- a/src/assets/i18n/lv.json5 +++ b/src/assets/i18n/lv.json5 @@ -2620,9 +2620,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Saglabāt", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5 index b831dbb3ad..8acbe901f0 100644 --- a/src/assets/i18n/nl.json5 +++ b/src/assets/i18n/nl.json5 @@ -2860,9 +2860,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Opslaan", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5 index c4ea2a0d9e..8383c440cd 100644 --- a/src/assets/i18n/pl.json5 +++ b/src/assets/i18n/pl.json5 @@ -3180,9 +3180,9 @@ // TODO New key - Add a translation "item.edit.relationships.save-button": "Save", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5 index 3b152196bd..4c7d75e11a 100644 --- a/src/assets/i18n/pt-BR.json5 +++ b/src/assets/i18n/pt-BR.json5 @@ -2818,9 +2818,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Salvar", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5 index 3b152196bd..4c7d75e11a 100644 --- a/src/assets/i18n/pt-PT.json5 +++ b/src/assets/i18n/pt-PT.json5 @@ -2818,9 +2818,9 @@ // "item.edit.relationships.save-button": "Save", "item.edit.relationships.save-button": "Salvar", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/sw.json5 b/src/assets/i18n/sw.json5 index c4ea2a0d9e..8383c440cd 100644 --- a/src/assets/i18n/sw.json5 +++ b/src/assets/i18n/sw.json5 @@ -3180,9 +3180,9 @@ // TODO New key - Add a translation "item.edit.relationships.save-button": "Save", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", diff --git a/src/assets/i18n/tr.json5 b/src/assets/i18n/tr.json5 index c4ea2a0d9e..8383c440cd 100644 --- a/src/assets/i18n/tr.json5 +++ b/src/assets/i18n/tr.json5 @@ -3180,9 +3180,9 @@ // TODO New key - Add a translation "item.edit.relationships.save-button": "Save", - // "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item", // TODO New key - Add a translation - "item.edit.relationships.no-entity-type": "Add 'relationship.type' metadata to enable relationships for this item", + "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item",