Update of /cvsroot/wpdev/xmlscripts/scripts/magic
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8198/magic
Modified Files:
rune.py
Log Message:
rune translation
Index: rune.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/rune.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** rune.py 19 Jul 2004 21:07:36 -0000 1.6
--- rune.py 6 Oct 2004 01:24:04 -0000 1.7
***************
*** 10,13 ****
--- 10,14 ----
import wolfpack
from wolfpack.gumps import cGump
+ from wolfpack import tr
# This function returns 1 if the tested
***************
*** 87,93 ****
if marked:
! tooltip.add(1042971, "a recall rune for %s" % object.name)
else:
! tooltip.add(1042971, "an unmarked recall rune")
def onSingleClick( item, char ):
--- 88,94 ----
if marked:
! tooltip.add(1042971, tr("a recall rune for %s") % object.name)
else:
! tooltip.add(1042971, tr("an unmarked recall rune"))
def onSingleClick( item, char ):
|