You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set ['_', 'N_'] to markerNames and attributes in Gruntfile.js file
angular-gettext works but grunt nggettext_extract cannot extract "%s user", "Disable" and "Enable".
If I could move those strings on html to JavaScript files, they would work with grunt nggettext_extract but there are a lot of translatable strings.
sprintf() is used to get rid of non-translatable strings likes codes, html tags,
The text was updated successfully, but these errors were encountered:
Currently
translate
attribute works with grunt-angular-gettext but it's not useful for printf format.E.g. I'd like to use gettext for the following text on html files:
to
I set
['_', 'N_']
tomarkerNames
andattributes
in Gruntfile.js fileangular-gettext works but grunt nggettext_extract cannot extract "%s user", "Disable" and "Enable".
The following JavaScript file is used:
If I could move those strings on html to JavaScript files, they would work with
grunt nggettext_extract
but there are a lot of translatable strings.sprintf() is used to get rid of non-translatable strings likes codes, html tags,
The text was updated successfully, but these errors were encountered: