diff --git a/dashboard/src/js/client.js b/dashboard/src/js/client.js index 3945dc68b..aea850b68 100644 --- a/dashboard/src/js/client.js +++ b/dashboard/src/js/client.js @@ -829,7 +829,6 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout Client.prototype.hasCloudronBackground = function (callback) { get('/api/v1/branding/cloudron_background', null, function (error, data, status) { - console.log('hasCloudronBackground...') if (error && error.statusCode !== 404) callback(error); else if (error) callback(null, false); else callback(null, status === 200); diff --git a/dashboard/src/translation/en.json b/dashboard/src/translation/en.json index 9517d6347..293cc3c89 100644 --- a/dashboard/src/translation/en.json +++ b/dashboard/src/translation/en.json @@ -657,7 +657,8 @@ "changeLogo": { "title": "Choose Cloudron Avatar" }, - "backgroundImage": "Login page background image" + "backgroundImage": "Login page background image", + "clearBackgroundImage": "Clear" }, "emails": { "title": "Email", diff --git a/dashboard/src/translation/nl.json b/dashboard/src/translation/nl.json index 36a816257..a70f15e0d 100644 --- a/dashboard/src/translation/nl.json +++ b/dashboard/src/translation/nl.json @@ -656,7 +656,8 @@ }, "changeLogo": { "title": "Kies een Cloudron-afbeelding" - } + }, + "backgroundImage": "Inlogpagina achtergrond afbeelding" }, "emails": { "title": "E-mail", diff --git a/dashboard/src/views/branding.html b/dashboard/src/views/branding.html index 835b702c4..a9431cc32 100644 --- a/dashboard/src/views/branding.html +++ b/dashboard/src/views/branding.html @@ -55,12 +55,12 @@