Change the name of the dir where the message catalogs are installed on

MSW back to 'locale' and also change back to the full directory
structure including the LC_MESSAGES dir.  The reasons these changes
were orginally made no longer apply


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-10-02 20:03:01 +00:00
parent f30589a9ea
commit 7cae647a44
5 changed files with 11 additions and 10 deletions

View File

@@ -33,7 +33,7 @@ ISS_Template = r'''
AppName = wxPython%(SHORTVER)s-%(CHARTYPE)s-%(PYVER)s
AppVerName = wxPython %(VERSION)s (%(CHARTYPE)s) for Python %(PYTHONVER)s
OutputBaseFilename = wxPython%(SHORTVER)s-win32-%(CHARTYPE)s-%(VERSION)s-%(PYVER)s
AppCopyright = Copyright <20> 2004 Total Control Software
AppCopyright = Copyright <20> 2006 Total Control Software
DefaultDirName = {code:GetInstallDir|c:\DoNotInstallHere}
DefaultGroupName = wxPython %(VERSION)s (%(CHARTYPE)s) for Python %(PYTHONVER)s
AlwaysCreateUninstallIcon = no
@@ -336,7 +336,7 @@ ISS_DocDemo_Template = r'''
AppName = wxPython%(SHORTVER)s-docs-demos
AppVerName = wxPython Docs and Demos %(VERSION)s
OutputBaseFilename = wxPython%(SHORTVER)s-win32-docs-demos-%(VERSION)s
AppCopyright = Copyright <20> 2004 Total Control Software
AppCopyright = Copyright <20> 2006 Total Control Software
DefaultDirName = {pf}\wxPython%(SHORTVER)s Docs and Demos
DefaultGroupName = wxPython%(SHORTVER)s Docs Demos and Tools
AlwaysCreateUninstallIcon = yes
@@ -579,7 +579,7 @@ def build_locale_string(pkgdir):
if not os.path.isdir(filename):
lst.append( locale_template % (filename, pkgdir, dirname) )
os.path.walk('wx\\i18n', walk_helper, stringlst)
os.path.walk('wx\\locale', walk_helper, stringlst)
return '\n'.join(stringlst)