angular-gettext icon indicating copy to clipboard operation
angular-gettext copied to clipboard

Gettext support for Angular.js

Results 104 angular-gettext issues
Sort by recently updated
recently updated
newest added

Hello; I'm using bootstrap tabs in my view. $scope.tabData = [{ heading: gettextCatalog.getString("General"), route: 'shops.detail.general' }, { heading: gettextCatalog.getString('Credentials'), route: 'shops.detail.credentials' }]; Page opens normally with true translation. But if...

If I'd like to translate string in the Angular routes file (in the specific case breadcrumb labels), how can I do? Gettext gets the strings but does not set them,...

Implement most functionality of `gettextCatalog` as a provider. This allows clients to inject `gettextCatalogProvider` into the `config` phase of Angular's lifecycle.

I am dynamically build a form from a *json file via key value. Is it possible to use angular-gettext to scan this *json? Or can I only use this with...

When using the lazy-loading functionality, it is possible that the language file arrives after the rendering of the page has been completed (due to a slow connection, for example). This...

Do you keep a changelog somewhere? I can't seem to find it on this repo. It would be helpful to know what changes happen in which version. This way we...

It would be nice if `prefixDebug()` behavior could be customized. For example, I'd like to write warnings to console in production and crash in development. Such customization can be achieved...

Guys, I found a plural bug when I was developing with your library. In your original code there is a line: ``` prefixDebug(n === 1 ? string : stringPlural); ```...

needs test

Currently the fallback language is determined form the language code using the underscore ("_") as a delimiter. At least Chrome is using a dash ("-") for me, so `gettextFallbackLanguage()` is...