Getting all translations in a specific namespace from angular -translate

To populate the service with data, I would like to get all translations under a specific namespace from the angular -translate $ translate service.

Basically, I'm looking for something like this (which is not supported):

$translate('SOME.NAMESPACE.*').then(...); 

Since this does not exist, I assume that my best approach at this time is to analyze the backup translation table that I provide synchronously with my application on my own?

+7
angular-translate
source share

No one has answered this question yet.

See related questions:

68
Get current language using angular translation
3
angular -translate does not consider fallback language when using static files
2
Corner translation: overriding the preferred language in the controller
one
Corner translation - when using multiple loaders, only the last
one
How to dynamically determine translation table URLs dynamically using a custom loader with angular translation?
one
Is it possible to store the translation table in localstorage using angular-translate for offline use of my application?
one
Corner Translation - Get a translation table
0
The service of transferring calls from the callback registered in the app.config section
0
angular-translate - $ translate service only works with promises
0
Corner translation (Pascalprecht) $ translate service does not return a promise

All Articles