summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2016-12-06 15:57:04 -0500
committerPliable Pixels <pliablepixels@gmail.com>2016-12-06 15:57:04 -0500
commitae491ab2d29738a1da7f046e520cc2e61e9d4206 (patch)
treeff084f51b4b12ed3560ae15eb46b5843fc0a454c
parent5d5c56fb66825f0b2ab8f57fd890118e453435fa (diff)
added subtitle text to popups #390
-rw-r--r--www/js/MontageCtrl.js5
-rw-r--r--www/lang/locale-en.json2
2 files changed, 6 insertions, 1 deletions
diff --git a/www/js/MontageCtrl.js b/www/js/MontageCtrl.js
index a2207946..f5389934 100644
--- a/www/js/MontageCtrl.js
+++ b/www/js/MontageCtrl.js
@@ -979,6 +979,7 @@ angular.module('zmApp.controllers')
'</ion-list> ',
title: $translate.instant('kSelect'),
+ subTitle:$translate.instant('kSelectDelete'),
scope: $scope,
}).then(function(res)
@@ -1027,7 +1028,8 @@ angular.module('zmApp.controllers')
$rootScope.zmPopup = $ionicPopup.alert(
{
title: $translate.instant('kError'),
- template: $translate.instant('kMontageNoSavedProfiles')
+ template: $translate.instant('kMontageNoSavedProfiles'),
+
});
return;
}
@@ -1045,6 +1047,7 @@ angular.module('zmApp.controllers')
'</ion-list> ',
title: $translate.instant('kSelect'),
+ subTitle:$translate.instant('kSelectSwitch'),
scope: $scope,
}).then(function(res)
diff --git a/www/lang/locale-en.json b/www/lang/locale-en.json
index 33ecc8a8..769631ba 100644
--- a/www/lang/locale-en.json
+++ b/www/lang/locale-en.json
@@ -288,6 +288,8 @@
"kSearchCancelled" :"search cancelled",
"kSec" :"sec",
"kSelect" :"Please Select",
+ "kSelectDelete" :"Selected profile will be deleted",
+ "kSelectSwitch" :"Selected profile will be loaded",
"kSelectFallback" :"Select fallback",
"kSelectLanguage" :"Select Language",
"kSelectRunState" :"Select run state",