[Lohnrechner-commits] r51 - /

scm-commit at wald.intevation.org scm-commit at wald.intevation.org
Mon Jan 23 18:07:57 CET 2006


Author: wilde
Date: 2006-01-23 18:07:57 +0100 (Mon, 23 Jan 2006)
New Revision: 51

Modified:
   lohnrechner.py
Log:
F?\195?\188r 2006 umgestellt.


Modified: lohnrechner.py
===================================================================
--- lohnrechner.py	2006-01-23 15:08:28 UTC (rev 50)
+++ lohnrechner.py	2006-01-23 17:07:57 UTC (rev 51)
@@ -5,27 +5,27 @@
 # $Id$
 # --------------------------------------------------------------------
 #
-# Copyright (c) 2005 by Intevation GmbH
+# Copyright (c) 2005,2006 by Intevation GmbH
 # Authors:
 # Sascha Wilde <wilde at intevation.de>
 #
 # This program is free software under the GPL (>=v2)
 # Read the file COPYING coming with this package for details.
 
-"""Lohn/Gehaltsrechner für das Jahr 2005"""
+"""Lohn/Gehaltsrechner für das Jahr 2006"""
 
 __version__ = "$Revision$"
 # $Source$
         
 _release_version = "0.%s beta" % __version__[11:-2]
 
-import LST2005
+import LST2006
 from Tkinter import *
 
-class Lohnrechner(LST2005.LStRechner2005):
+class Lohnrechner(LST2006.LStRechner2006):
 
     def __init__(self, root):
-        LST2005.LStRechner2005.__init__(self)
+        LST2006.LStRechner2006.__init__(self)
 
         # Land, Kirchensteuersatz, Pflegeversicherung AG-Anteil
         self.laender = [("Baden-Württemberg", 8, 0.0085),
@@ -48,7 +48,7 @@
         
         self.root = root
 
-        self.root.title("Lohnrechner 2005 - v%s" % _release_version)
+        self.root.title("Lohnrechner 2006 - v%s" % _release_version)
 
         self.SetupUI()
         self.UpdateLand()
@@ -256,15 +256,15 @@
     def Info(self):
         infowin = Toplevel(self.root)
         infowin.title("Info")
-        Label(infowin, text="Lohnrechner 2005 v%s" % _release_version, 
+        Label(infowin, text="Lohnrechner 2006 v%s" % _release_version, 
               font=("Times", 14, "bold italic")).grid(row=0, pady=20)
         Label(infowin, text=
-              "Copyright (C) 2005 Intevation GmbH \n\n\
-Lohnrechner 2005 comes with ABSOLUTELY NO WARRANTY.\n\
+              "Copyright (C) 2005,2006 Intevation GmbH \n\n\
+Lohnrechner 2006 comes with ABSOLUTELY NO WARRANTY.\n\
 This is free software, and you are welcome to redistribute it\n\
 under the terms of the GNU General Public License.\n\
 For more information about these matters, see the file named COPYING.\n\n\
-Dieses Programm verwendet LST2005 %s" % LST2005._ModulVersion()).grid(row=1, padx=10)
+Dieses Programm verwendet LST2006 %s" % LST2006._ModulVersion()).grid(row=1, padx=10)
         Button(infowin, text="Ok", command=infowin.destroy).grid(row=2, pady=10)
 
     #



More information about the Lohnrechner-commits mailing list