angular-gettext
                                
                                 angular-gettext copied to clipboard
                                
                                    angular-gettext copied to clipboard
                            
                            
                            
                        Getting different context in javascript call
This might be just a missing feature in the documentation, or a missing feature, I am not sure
I want to use different context with gettext directly in code. Such as this
angular.module("myApp").controller("helloController", function (gettextCatalog) {
    var myString = gettextCatalog.getString("Hello");
});
I want to use Hello in the context greeting (for example). How do I do that? I want something like, for example
var myString = gettextCatalog.getStringContext("Hello", "greeting");
or
var myString = gettextCatalog.getString("Hello", {context: "greeting"});
Something like that. Can angular-gettext do that?
Oh, it's in the code already, it's just missing in the docs.
So it's the doc issue, not code issue. Which is good.