From 57e47630c5adf4b061d50ac24dca4e88ff65d2bb Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Sun, 4 Sep 2022 14:57:16 +0200 Subject: [PATCH] l10n: Spelling unification Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> --- js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index 638803d..f6ddc39 100644 --- a/js/app.js +++ b/js/app.js @@ -205,7 +205,7 @@ app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compil $scope.cityLoadNeedsAPIKey = false; } else if (r.status == 401) { - $scope.cityLoadError = t('weather', 'Your OpenWeatherMap API key is invalid. Contact your administrator to configure a valid API key in Additional Settings of the Administration'); + $scope.cityLoadError = t('weather', 'Your OpenWeatherMap API key is invalid. Contact your administrator to configure a valid API key in Additional settings of the Administration'); $scope.cityLoadNeedsAPIKey = true; } else { @@ -240,7 +240,7 @@ app.controller('WeatherController', ['$scope', '$interval', '$timeout', '$compil }, function (r) { if (r.status == 401) { - $scope.addCityError = t('weather', 'Your OpenWeatherMap API key is invalid. Contact your administrator to configure a valid API key in Additional Settings of the Administration'); + $scope.addCityError = t('weather', 'Your OpenWeatherMap API key is invalid. Contact your administrator to configure a valid API key in Additional settings of the Administration'); } else if (r.status == 404) { $scope.addCityError = t('weather', 'No city with this name found.');