diff --git a/src/Umbraco.Web.UI.Client/src/views/media/edit.html b/src/Umbraco.Web.UI.Client/src/views/media/edit.html
index be1219f052..3a72b0b40d 100644
--- a/src/Umbraco.Web.UI.Client/src/views/media/edit.html
+++ b/src/Umbraco.Web.UI.Client/src/views/media/edit.html
@@ -42,7 +42,7 @@
@@ -50,14 +50,13 @@
ng-if="page.listViewPath"
type="link"
href="#{{page.listViewPath}}"
- label="Return to list"
label-key="buttons_returnToList">
diff --git a/src/Umbraco.Web.UI.Client/src/views/media/media.edit.controller.js b/src/Umbraco.Web.UI.Client/src/views/media/media.edit.controller.js
index 19932887fd..4868bf0c6b 100644
--- a/src/Umbraco.Web.UI.Client/src/views/media/media.edit.controller.js
+++ b/src/Umbraco.Web.UI.Client/src/views/media/media.edit.controller.js
@@ -40,7 +40,7 @@ function mediaEditController($scope, $routeParams, $q, appState, mediaResource,
$scope.page.menu.currentNode = null; //the editors affiliated node
$scope.page.listViewPath = null;
$scope.page.saveButtonState = "init";
- $scope.page.submitButtonLabel = "Save";
+ $scope.page.submitButtonLabelKey = "buttons_save";
/** Syncs the content item to it's tree node - this occurs on first load and after saving */
function syncTreeNode(content, path, initialLoad) {
@@ -103,7 +103,7 @@ function mediaEditController($scope, $routeParams, $q, appState, mediaResource,
// setup infinite mode
if(infiniteMode) {
- $scope.page.submitButtonLabel = "Save and Close";
+ $scope.page.submitButtonLabelKey = "buttons_saveAndClose";
}
}