Changeset 3289
- Timestamp:
- 07/27/07 16:53:43 (1 year ago)
- Files:
-
- trunk/dabo/dLocalize.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/dabo/dLocalize.py
r3288 r3289 66 66 _appInitialized = True 67 67 # If appShortName not changed in user app, defaults to "daboapplication" 68 shortName = app.getAppInfo("appShortName")69 if shortName is not None:70 _appHasLocale = setLanguage(domain= shortName.lower(),68 appName = app.getAppInfo("appShortName") 69 if appName is not None: 70 _appHasLocale = setLanguage(domain=appName.lower().replace(" ", "_"), 71 71 localedir=os.path.join(app.HomeDirectory, _localeDir)) 72 72
