[alacarte] Fix initialization of i18n. Fixes bug #596098
- From: Gabor Keleman <kelemeng src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [alacarte] Fix initialization of i18n. Fixes bug #596098
- Date: Wed, 23 Sep 2009 18:39:53 +0000 (UTC)
commit b319a224cf5b9cd35f144736a703cd9240ef35a0
Author: Gabor Kelemen <kelemeng gnome hu>
Date: Wed Sep 23 20:37:36 2009 +0200
Fix initialization of i18n. Fixes bug #596098
Alacarte/MainWindow.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Alacarte/MainWindow.py b/Alacarte/MainWindow.py
index 7b7cd35..e43ea9a 100644
--- a/Alacarte/MainWindow.py
+++ b/Alacarte/MainWindow.py
@@ -23,8 +23,8 @@ import subprocess
import urllib
try:
from Alacarte import config
- gettext.bindtextdomain(GETTEXT_PACKAGE,config.localedir)
- gettext.textdomain(GETTEXT_PACKAGE)
+ gettext.bindtextdomain(config.GETTEXT_PACKAGE,config.localedir)
+ gettext.textdomain(config.GETTEXT_PACKAGE)
except:
pass
_ = gettext.gettext
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]