Bennett Helm <[EMAIL PROTECTED]> writes: > > On Sep 19, 2005, at 9:53 AM, Jean-Marc Lasgouttes wrote:
> > The problem seems to be with the new locale code that has been written > > in Paris. What messages do you get on console when starting up? > > > > Andreas, are you reading this? Reading lyx-devel quite unregularely these days. Please send (additional) PM when you need me! :-) > Language code:C > Setting new locale for Qt:C > Menu warning: menu entry "Plain Text as Lines..." does not contain > shortcut `A'. What about this patch: Index: src/frontends/qt2/QLyXKeySym.C ========================== RCS file: /var/cvs/lyx/lyx-devel/src/frontends/qt2/QLyXKeySym.C,v retrieving revision 1.34 diff -u -p -r1.34 QLyXKeySym.C --- src/frontends/qt2/QLyXKeySym.C 17 Jul 2005 11:58:54 -0000 1.34 +++ src/frontends/qt2/QLyXKeySym.C 20 Sep 2005 10:13:45 -0000 @@ -93,6 +93,7 @@ void initEncodings() string::size_type i = s.find("."); s = s.substr(0, i); + encoding_map["C"] = QTextCodec::codecForName("Latin-1"); encoding_map["iso8859-1"] = QTextCodec::codecForName("ISO 8859-1"); encoding_map["iso8859-2"] = QTextCodec::codecForName("ISO 8859-2"); encoding_map["iso8859-3"] = QTextCodec::codecForName("ISO 8859-3");