else fout.Open(parOutput, _T("wt"));
for (size_t i = 0; i < str.GetCount(); i++)
- fout.Write(_T("_(\"") + str[i] + _T("\")\n"));
+ fout.Write(_T("_(\"") + str[i] + _T("\");\n"));
if (!parOutput) fout.Detach();
}
case wxT('\n') : str2 << wxT("\\n"); break;
case wxT('\t') : str2 << wxT("\\t"); break;
case wxT('\r') : str2 << wxT("\\r"); break;
+ case wxT('\\') : str2 << wxT("\\\\"); break;
+ case wxT('"') : str2 << wxT("\\\""); break;
default : str2 << *dt; break;
}
}
node/*not n!*/->GetName() == _T("longhelp") ||
node/*not n!*/->GetName() == _T("tooltip") ||
node/*not n!*/->GetName() == _T("htmlcode") ||
- node/*not n!*/->GetName() == _T("title")
+ node/*not n!*/->GetName() == _T("title") ||
+ node/*not n!*/->GetName() == _T("item")
))
// ...and known to contain translatable string
{