Re: [RESEND2] Uninstaller localization

2005-02-25 Thread Dmitry Timoshkov
"Jonathan Ernst" <[EMAIL PROTECTED]> wrote: > Next I'll change the window to a dialog if I can. Thanks. > -wc.lpszClassName = appname; > +wc.lpszClassName = sAppname; > > if (!RegisterClass(&wc)) exit(1); > -hWnd = CreateWindow( appname, "Wine Application Uninstaller", > +

Re: [RESEND] Uninstaller localization

2005-02-24 Thread Dmitry Timoshkov
"Jonathan Ernst" <[EMAIL PROTECTED]> wrote: > This time I didn't translate the WINE_ERR messages and translated another > messagebox. It would be better to not touch WINE_ERR lines at all then. > Changelog: > - localization of uninstaller > +/* We load the strings */ > +LoadString( hIn

Re: Uninstaller localization

2005-02-24 Thread Dmitry Timoshkov
"Jonathan Ernst" <[EMAIL PROTECTED]> wrote: > Changelog: > - localization of uninstaller You should not localize WINE_ERR messages, encoding of strings might be incompatible in Wine and underlying system. Also, is it possible to use normal dialog for uninstaller's main window? We could use conve