• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

wxPythonで作った簡易XMLエディタ


Commit MetaInfo

Revisãoa6a7bd93d57cbaa9e9d68ac391bb0bede01647e7 (tree)
Hora2014-04-14 01:23:12
Autortamanegi <tamanegi@user...>
Commitertamanegi

Mensagem de Log

minor fix

Mudança Sumário

Diff

--- a/wmxmled.py
+++ b/wmxmled.py
@@ -31,15 +31,15 @@ import copy
3131 import xml.etree.ElementTree as ET
3232 from wmutils import *
3333
34-LOCALEDIR = os.path.join(os.path.dirname(__file__), 'translations')
35-_ = gettext.translation( domain='wmxmled',
36- localedir=LOCALEDIR,
37- fallback=True ).ugettext
38-
3934 DIR_FILE = os.path.dirname( os.path.abspath( __file__ ) )
4035 CONFIG_FILE = os.path.join( DIR_FILE, "wmxmled.conf" )
4136 XRC_FILE = os.path.join( DIR_FILE, "wmxmled.xrc" )
4237
38+LOCALEDIR = os.path.join( DIR_FILE, 'translations' )
39+_ = gettext.translation( domain='wmxmled',
40+ localedir=LOCALEDIR,
41+ fallback=True ).ugettext
42+
4343 """container for main class of WMXmlEditor, a small XML editor by wxPython."""
4444
4545 class WMXmlEditor( wx.App ):