Lines 1-22
Link Here
|
1 |
--- src/hamster-applet.py.orig 2010-01-29 17:37:34.000000000 +0800 |
1 |
--- src/hamster-applet.py 2010-06-22 13:59:09.000000000 +0400 |
2 |
+++ src/hamster-applet.py 2010-01-29 17:38:21.000000000 +0800 |
2 |
+++ src/hamster-applet.py 2010-09-26 01:52:33.000000000 +0400 |
3 |
@@ -95,13 +95,13 @@ if __name__ == "__main__": |
3 |
@@ -96,7 +96,7 @@ |
4 |
from hamster.configuration import runtime, dialogs |
|
|
5 |
|
4 |
|
6 |
# Setup i18n |
5 |
# Setup i18n |
7 |
- locale_dir = os.path.abspath(os.path.join(defs.DATA_DIR, "locale")) |
6 |
locale_dir = os.path.abspath(os.path.join(defs.DATA_DIR, "locale")) |
8 |
- for module in (gettext, locale): |
7 |
- for module in (gettext, locale): |
9 |
- module.bindtextdomain('hamster-applet', locale_dir) |
8 |
+ for module in (gettext,): |
10 |
- module.textdomain('hamster-applet') |
9 |
module.bindtextdomain('hamster-applet', locale_dir) |
11 |
+# locale_dir = os.path.abspath(os.path.join(defs.DATA_DIR, "locale")) |
10 |
module.textdomain('hamster-applet') |
12 |
+# for module in (gettext, locale): |
|
|
13 |
+# module.bindtextdomain('hamster-applet', locale_dir) |
14 |
+# module.textdomain('hamster-applet') |
15 |
|
16 |
- if hasattr(module, 'bind_textdomain_codeset'): |
17 |
- module.bind_textdomain_codeset('hamster-applet','UTF-8') |
18 |
+# if hasattr(module, 'bind_textdomain_codeset'): |
19 |
+# module.bind_textdomain_codeset('hamster-applet','UTF-8') |
20 |
|
21 |
gtk.window_set_default_icon_name("hamster-applet") |
22 |
|
11 |
|