Make applink UI bits translatable

This commit is contained in:
Johannes Zellner
2022-07-11 17:24:07 +02:00
parent 52d80cacd0
commit 5f6348799d
3 changed files with 33 additions and 15 deletions

View File

@@ -2,6 +2,7 @@
/* global angular:false */
/* global $:false */
/* global APP_TYPES */
angular.module('Application').controller('AppsController', ['$scope', '$translate', '$interval', '$location', 'Client', function ($scope, $translate, $interval, $location, Client) {
var ALL_DOMAINS_DOMAIN = { _alldomains: true, domain: 'All Domains' }; // dummy record for the single select filter
@@ -26,6 +27,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
$scope.domains = [];
$scope.appSearch = '';
$scope.groups = [ GROUP_ACCESS_UNSET ];
$scope.APP_TYPES = APP_TYPES;
$scope.allUsers = [];
$scope.allGroups = [];