Mike Mabey wrote: > I was wondering if anyone has ever used the py2exe module with Dabo.
Yes. > I just > tried to use it and it failed. Below is the log: > > Traceback (most recent call last): > File "DecisionEntry.pyw", line 3, in <module> > File "dabo\__init__.pyc", line 129, in <module> > File "dabo\dLocalize.pyc", line 53, in install > File "dabo\dLocalize.pyc", line 73, in setLanguage > File "gettext.pyc", line 469, in translation > IOError: [Errno 2] No translation file found for domain: 'dabo' > > > I'm guessing that fixing this would be fairly simple, but it is beyond me. The localization files need to be findable from your compiled application's home directory. You'll run into a similar situation with dabo's icons. Run the app wizard, and see the setup.py generated for you. Note the locale stuff in there. Pull what you need and put into your setup.py file. You'll get a dabo.locale which dabo knows how to look for. HTH Paul _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
