We have an old application based on Lotus Notes R5. We're systematically eleminating Windows from the office, but the application still has to be available. Thus I've turned to
Wine for help. The Lotus Notes 5.0.5 client installed just fine under Wine, no problem so far. The application started and worked just like in Windows. I had only two issues: a few characters were not displayed properly (obviously a font issue) and the Lotus Notes client used wrong currency symbol for displaying formatted numbers.
The font problem turned out to be as easy to solve as to enable an option in the Lotus Notes client: in the menu enable "File" / "Preferences" / "User Preferences" / "Additional Options" / "Enable Unicode display". That's all.
The other problem was a bit trickier. The currency symbol was "$" in Wine, but the Hungarian "Ft" was used in Windows. Since we were printing invoices in the application, a "$" symbol was not an option. The solution: setting the
LANG
variable (and/or the
LC_*
variables) and adding the proper locale support in Ubuntu.
Here're the main steps:
Now I have proper regional settings in my Wine configuration (eg. the currency sign is properly set to "Ft") and Hungarian keys work too.
Of course all this is useful for running any app in Wine, but the problems first emerged with the Lotus application.
Comments
thanks
Thanks for this! Helped me