diff --git a/index.html b/index.html
index 75dd06d39..c08288641 100644
--- a/index.html
+++ b/index.html
@@ -806,7 +806,7 @@
-
Delete this wallet from this computer
+
Delete this wallet from this computer
diff --git a/js/controllers/backup.js b/js/controllers/backup.js
index 7981abb42..c7fa10421 100644
--- a/js/controllers/backup.js
+++ b/js/controllers/backup.js
@@ -2,7 +2,7 @@
angular.module('copayApp.controllers').controller('BackupController',
function($scope, $rootScope, $location, $window, $timeout, $modal, backupService, walletFactory, controllerUtils) {
- $scope.title = 'Backup';
+ $scope.title = 'Settings';
$scope.download = function() {
backupService.download($rootScope.wallet);
diff --git a/js/controllers/header.js b/js/controllers/header.js
index 841e9ac9b..e3493d9ae 100644
--- a/js/controllers/header.js
+++ b/js/controllers/header.js
@@ -15,8 +15,8 @@ angular.module('copayApp.controllers').controller('HeaderController',
'icon': 'fi-arrow-right',
'link': '#/send'
}, {
- 'title': 'Backup',
- 'icon': 'fi-archive',
+ 'title': 'Settings',
+ 'icon': 'fi-wrench',
'link': '#/backup'
}];
diff --git a/test/unit/controllers/controllersSpec.js b/test/unit/controllers/controllersSpec.js
index 046ea0704..4ee1d4302 100644
--- a/test/unit/controllers/controllersSpec.js
+++ b/test/unit/controllers/controllersSpec.js
@@ -42,7 +42,7 @@ describe("Unit: Controllers", function() {
}));
it('Should have a Backup controller', function() {
- expect(scope.title).equal('Backup');
+ expect(scope.title).equal('Settings');
});
it('Backup controller #download', function() {