The xgettext
command extracted this .pot
from my .c file:
#: src/callbacks.c:171
msgid ""
"A new NEC2 input file may not be opened\n"
"while the Frequency Loop is running"
msgstr ""
from here:
if( !Nec2_Save_Warn(
_("A new NEC2 input file may not be opened\n"
"while the Frequency Loop is running")) )
return;
Questions:
- Is it a problem that the first line of msgid is an empty string?
- Will it affect the ability for
dgettext
to find the translation when the lines are translated? - Other considerations?