Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2004-05-17 03:47:14 +0400
committerYann Leboulanger <asterix@lagaule.org>2004-05-17 03:47:14 +0400
commit6e84e5746bcec639c6c6a82578dca48a110695ef (patch)
tree6fb704880fd55fb2f2ff1d01109b8ef39accda8b /runCore.py
parent87363cc2474d5be60893aba1fa632a69c63829cd (diff)
i18n support for internationalisation
Diffstat (limited to 'runCore.py')
-rwxr-xr-xrunCore.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/runCore.py b/runCore.py
index 05673954b..b2cd17135 100755
--- a/runCore.py
+++ b/runCore.py
@@ -26,5 +26,9 @@ sys.path.append("..")
import common
import core
+from common import i18n
+i18n.init()
+_ = i18n._
+
core.core.start()
-print "Core Stopped"
+print _("Core Stopped")