There is NG-module $translate.
There is method $translate.use(locale), but it changes locale at all, of course.
I need to get a word from other locales without locale switching. Is it possible?
UPD. Resolved with adding provider:
.provider('vocabularies', function($translateProvider) {
this.$get = () => $translateProvider.translations();
})
So, in controller I can just add:
function(vocabularies) {
console.log(vocabularies['en-US']['key.of.needed.words']);
}
Thanks everyone!