I'm using GNU gettext to translate asp.net web-page. For extract the string i'm using PoEdit.
In Javascript code, I convert the normal labelString 'Hour'
scaleLabel: {
display: true,
labelString: 'Hour',
},
to
scaleLabel: {
display: true,
labelString: '@Strings.T("Hour")',
},
But PoEdit can't extract this string. Is there a way to translate this type of string?