1 robho Apr 14, 2004 23:57
3 robho Jul 01, 2004 00:23
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 /".
4 blueyed Nov 24, 2005 02:11
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.