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

Hi, My collegues and I both use the same version of angular-gettext (and tools). The thing is when they extract (with gulp), it gets sorted like this: - Ab -...

Do you know any script that would refactor an application from angular-translate to angular-gettext ?

Hi, With the following use of the gettext translate filter, combined with Angular's one-time binding feature (::), the strings are not being translated. {{ ::item.description | translate }} They are...

When fetching a string, you should also check for HTML modified

Why in case of gettext context is set as comment? ``` javascript angular.module("myApp").controller("helloController", function (gettext) { /// Verb var myString = gettext("File"); }); ``` This is usually an inconvenient when...

Consider the following: ``` html Some text which refers to the clickable email address {{email}} and also points to the url {{url}}. ``` This works for the initial page load,...

If you translate strings to POSIX standard like: "en_US", "en_GB", "pl_PL" etc... Then you will never get an correct plural based on .po files. fe: singular: > {{someone}} with {{somelese}}...

I am listening on language changes. I do a setLanguage and then a loadRemote to load up a new language. However, both fire a broadcast by calling broadcastUpdated(). 1. setCurrentLanguage...

I looked through issues here and I couldn't find one that mentions this problem. Currently it's impossible to translate the following without translating strings in JS: ``` ``` ### Feature...

Hi, In my application i am using translation at many places. After doing some debugging, i found out that for each translate there is a watcher, which is destroying the...