diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2018-11-24 10:32:35 -0500 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2018-11-24 10:32:35 -0500 |
| commit | aed448120b79f19faa8f28343bcc80c819f9139c (patch) | |
| tree | 3758cc3181add851a740ac97cdf2f5ef34e87bf3 /www | |
| parent | 6482192816bba172d2a9c506a7e82d1a4ef3a4fa (diff) | |
#745 show active profile name during switch
Diffstat (limited to 'www')
| -rw-r--r-- | www/js/MenuController.js | 3 | ||||
| -rw-r--r-- | www/lang/locale-en.json | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/www/js/MenuController.js b/www/js/MenuController.js index 2920f61f..db446386 100644 --- a/www/js/MenuController.js +++ b/www/js/MenuController.js @@ -300,9 +300,10 @@ angular.module('zmApp.controllers').controller('MenuController', ['$scope', '$io $rootScope.zmPopup = $ionicPopup.show({ scope: $scope, - template: '<ion-radio-fix ng-if="item" ng-repeat="item in avs" ng-value="item" ng-model="newServer.val"> {{item}} </ion-radio-fix>', + template: '<ion-radio-fix ng-if="item" ng-repeat="item in avs" ng-value="item" ng-model="newServer.val" > {{item}} </ion-radio-fix>', title: $translate.instant('kSelect'), + subTitle: $translate.instant('kActive') + ': '+ NVRDataModel.getLogin().serverName, buttons: [{ text: $translate.instant('kButtonCancel'), diff --git a/www/lang/locale-en.json b/www/lang/locale-en.json index ef73e534..6fa72e72 100644 --- a/www/lang/locale-en.json +++ b/www/lang/locale-en.json @@ -3,6 +3,7 @@ "k1HourSummary" :"1 hour summary", "k1MonthSummary" :"1 month summary", "k1WeekSummary" :"1 week summary", + "kActive" : "active", "kAlarmAPIError" :"error - please make sure your API supports this feature", "kAlarmFrameCount" :"Alarm Frame Count", "kAlarmMaxFPS" :"Alarm Max FPS", |
