It would be nice to be able to detect strings to translate base on a special comment placed before instead of requiring to wrap into a gettext() function call.
e.g.
const myTranslatagleString = /* @ngTranslate */ "My String"
return gettextCatalog.getString(myTranslatagleString)
It would be nice to be able to detect strings to translate base on a special comment placed before instead of requiring to wrap into a
gettext()
function call.e.g.