Closed ryonakano closed 8 months ago
NC_ is for adding context for const strings like this:
NC_
const string FOO = NC_("context", "Foo"); warning ("Do %s", _(FOO));
So we should use C_ instead, otherwise these strings won't shown as translated.
C_
NC_
is for adding context for const strings like this:So we should use
C_
instead, otherwise these strings won't shown as translated.