'use strict' angular.module('COMPANY').factory('GETLANG',['$mdDialog', '$resource' ,function($mdDialog, $resource){ return { getString: function(obj){ let str = '' if (obj != undefined){ str = obj[getLang()] } return str }, getAlert: function(alertcode){ return $mdDialog.show($mdDialog.alert().clickOutsideToClose(true).textContent(MyCode[alertcode]).ok('close')) } } }])