diff --git a/src/js/main.js b/src/js/main.js index 394c567dc..c36d54c51 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -91,14 +91,13 @@ angular.module('Application').controller('MainController', ['$scope', '$route', var actionScope = $scope.$new(true); actionScope.action = '/#/backups'; - Client.notify('Backup Configuration', 'Cloudron backups are disabled. Ensure the server is backed up using alternate means.', false, 'info', actionScope); + Client.notify('Backup Configuration', 'Cloudron backups are disabled. Please ensure this server is backed up using alternate means.', false, 'info', actionScope); } else if (backupConfig.provider === 'filesystem' && !backupConfig.externalDisk) { var actionScope = $scope.$new(true); actionScope.action = '/#/backups'; Client.notify('Backup Configuration', 'Cloudron backups are currently on the same disk as the Cloudron server instance. This is dangerous and can lead to complete data loss if the disk fails.' + - 'Please setup an external backup storage (or use server snapshots) and confirm this in backup configuration', false /* persistent */, 'info', actionScope); } });