Abdelrazak Younes wrote:
Georg Baum wrote:
Am Samstag, 9. September 2006 13:16 schrieb
[EMAIL PROTECTED]:
Author: larsbj
Date: Sat Sep 9 13:16:28 2006
New Revision: 14951
URL: http://www.lyx.org/trac/changeset/14951
Log:
Make the l10n machinery work with ucs4. Update (as wip) callers to do
manua=
l conversion and a FIXME comment. Lots of work to do.
Do you plan to change _() as well? If not I'd like to run some script
that replaces all occurences of _() with lyx::to_utf8(_()) now,
because that fits nicely with my ongoing plaintext work.
But is this going to stay like this? Couldn't you change the _()
function instead?
I see that this is what Lars has done:
string const _(string const & str)
39 40 {
40 return getLyXMessages().get(str);
41 return lyx::to_utf8(getLyXMessages().get(str));
41 42 }
Of course the rules with the patches and commits do not apply to Lars...
Abdel.