Is it possible to define a constant that utilizes the $locale
service? Since constants are objects, injecting them as parameters like in controllers is not an option. How can this be achieved?
angular.module('app').constant('SOME_CONSTANT', {
'LOCALE': $locale.id.slice(0, 2)
})