2 fplanque Apr 15, 2004 00:51

Just in case someone else runs into the same problems as I, this is how I convert all paths in messages.po from \ to /:
sed -e '/^#:/s/\\/\//g' messages.po.with.backslashes > messages.po.with.slashes
The regular expression should be read as "If a line starts with #: replace all occurrences of \ with /".
François, b2evo's /gettext/xg.php does use forward slashes.
Of course, also xg.bat could simply be rewritten.
I just had to use robho's method myself to allow KBabel show me the source while translating.
I'll see what I can do to convert the backslashes.