diff --git a/resources/i18n/en.json b/resources/i18n/en.json
index 3cdf0bc180..cf87e423a7 100644
--- a/resources/i18n/en.json
+++ b/resources/i18n/en.json
@@ -113,7 +113,9 @@
"checkbox": "Inherit policies"
},
"move": "Move",
- "cancel": "Cancel"
+ "cancel": "Cancel",
+ "success": "The item has been moved succesfully",
+ "error": "An error occured when attempting to move the item"
}
}
},
diff --git a/src/app/+item-page/edit-item-page/item-move/item-move.component.html b/src/app/+item-page/edit-item-page/item-move/item-move.component.html
index b3627e65bb..063028c719 100644
--- a/src/app/+item-page/edit-item-page/item-move/item-move.component.html
+++ b/src/app/+item-page/edit-item-page/item-move/item-move.component.html
@@ -1,7 +1,7 @@
-
{{'item.edit.move.head' | translate: { id: (itemRD$ | async)?.payload?.id} }}
+
{{'item.edit.move.head' | translate: { id: (itemRD$ | async)?.payload?.handle} }}
{{'item.edit.move.description' | translate}}
@@ -33,7 +33,7 @@
-
diff --git a/src/app/+item-page/edit-item-page/item-move/item-move.component.ts b/src/app/+item-page/edit-item-page/item-move/item-move.component.ts
index 359c04c8e7..07894c4504 100644
--- a/src/app/+item-page/edit-item-page/item-move/item-move.component.ts
+++ b/src/app/+item-page/edit-item-page/item-move/item-move.component.ts
@@ -104,9 +104,9 @@ export class ItemMoveComponent implements OnInit {
(response: RestResponse) => {
this.router.navigate([getItemEditPath(this.itemId)]);
if (response.isSuccessful) {
- this.notificationsService.success(this.translateService.get('item.move.success'));
+ this.notificationsService.success(this.translateService.get('item.edit.move.success'));
} else {
- this.notificationsService.error(this.translateService.get('item.move.error'));
+ this.notificationsService.error(this.translateService.get('item.edit.move.error'));
}
}
);