Show
Ignore:
Timestamp:
10/11/04 14:49:06 (20 years ago)
Author:
jalet
Message:

Renders help translatable

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/autopykota

    r1780 r1796  
    2424# 
    2525# $Log$ 
     26# Revision 1.4  2004/10/11 12:49:05  jalet 
     27# Renders help translatable 
     28# 
    2629# Revision 1.3  2004/10/06 07:51:07  jalet 
    2730# Now autopykota uses 0.0 as the default value for initial account balance 
     
    4245 
    4346from pykota import version 
    44 from pykota.tool import PyKotaTool, PyKotaToolError, crashed 
     47from pykota.tool import PyKotaTool, PyKotaToolError, crashed, N_ 
    4548 
    46 __doc__ = """autopykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 
     49__doc__ = N_("""autopykota v%s (c) 2003-2004 C@LL - Conseil Internet & Logiciels Libres 
    4750A tool to automate user account creation and initial balance setting. 
    4851 
     
    7982Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 
    8083 
    81 Please e-mail bugs to: %s""" % (version.__version__, version.__author__) 
     84Please e-mail bugs to: %s""") % (version.__version__, version.__author__) 
    8285 
    8386class AutoPyKota(PyKotaTool) :