1 |
--- Thuban/__init__.py.orig 2004-02-27 20:00:44.000000000 +0100 |
2 |
+++ Thuban/__init__.py 2004-02-27 20:00:47.000000000 +0100 |
3 |
@@ -41,8 +41,12 @@ |
4 |
|
5 |
# Thedirectory holding the translation files (actually they're in |
6 |
# language specific subdirectories of _message_dir) |
7 |
-_message_dir = os.path.join(os.path.dirname(__file__), os.pardir, "Resources", |
8 |
- "Locale") |
9 |
+ |
10 |
+# The directory where the default projections are stored has to be changed |
11 |
+# for the debian package to be conformant with the FHS |
12 |
+#_message_dir = os.path.join(os.path.dirname(__file__), os.pardir, "Resources", |
13 |
+# "Locale") |
14 |
+_message_dir = "/usr/share/thuban/Resources/Locale" |
15 |
|
16 |
def _(s): |
17 |
"""Return a localized version of the the string s |