Paul McNett wrote:
> Mike Mabey wrote:
>> Nate:
>> http://www.ece.usu.edu/files/setup.py
>
> A *quick* glance at that seems to check out.
Actually, you've commented out the line that appends the localedir to
the locales list. Here's mine:
42 # locales:
43 localeDir = "%s%slocale" % (daboDir, os.sep)
44 #locales = [("dabo.locale", (os.path.join(daboDir, "locale",
"dabo.pot"),))]
45 locales = []
46 def getLocales(arg, dirname, fnames):
47 if ".svn" not in dirname and dirname[-1] != "\\":
48 #po_files = tuple(glob.glob(os.path.join(dirname, "*.po")))
49 mo_files = tuple(glob.glob(os.path.join(dirname, "*.mo")))
50 if mo_files:
51 subdir = os.path.join("dabo.locale", dirname[len(arg)+1:])
52 locales.append((subdir, mo_files))
53 os.path.walk(localeDir, getLocales, localeDir)
In the file you posted, you've commented out line 52.
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]