commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue/forms/src/uidrivers/wx UIdriver.py


From: James Thompson
Subject: gnue/forms/src/uidrivers/wx UIdriver.py
Date: Fri, 10 May 2002 19:54:16 -0400

CVSROOT:        /cvsroot/gnue
Module name:    gnue
Changes by:     James Thompson <address@hidden> 02/05/10 19:54:16

Modified files:
        forms/src/uidrivers/wx: UIdriver.py 

Log message:
        Fixed i18n stuff in forms about box.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue/forms/src/uidrivers/wx/UIdriver.py.diff?tr1=1.172&tr2=1.173&r1=text&r2=text

Patches:
Index: gnue/forms/src/uidrivers/wx/UIdriver.py
diff -c gnue/forms/src/uidrivers/wx/UIdriver.py:1.172 
gnue/forms/src/uidrivers/wx/UIdriver.py:1.173
*** gnue/forms/src/uidrivers/wx/UIdriver.py:1.172       Fri May 10 18:40:46 2002
--- gnue/forms/src/uidrivers/wx/UIdriver.py     Fri May 10 19:54:16 2002
***************
*** 872,888 ****
  #
  class UIAbout(wxMessageDialog, UIHelper):
    def __init__(self, interface, programVersion, formName, formVersion, 
author, description):
!     wxMessageDialog.__init__(self, interface,
!                              _("GNUE Forms\n")+
!                              _("  Version : %s\n")+
!                              _("  Driver  : UIwxpython\n")+
!                              _("-= Form Info =-\n")+
!                              _("  Name   : %s\n")+
!                              _("  Version: %s\n")+
!                              _("  Author : %s\n")+
!                              _("  Description: %s\n")
!                              % (programVersion, formName 
,formVersion,author,description),
!                              "About", wxOK | wxICON_INFORMATION)
  #
  # UImessageBox
  #
--- 872,888 ----
  #
  class UIAbout(wxMessageDialog, UIHelper):
    def __init__(self, interface, programVersion, formName, formVersion, 
author, description):
!     text = _("GNUE Forms")+"\n"+      \
!     _("  Version : ")+"%s\n"+         \
!     _("  Driver  : UIwxpython")+"\n"+ \
!     _("-= Form Info =-")+"\n"+        \
!     _("  Name   : ")+"%s\n"+          \
!     _("  Version: ")+"%s\n"+          \
!     _("  Author : ")+"%s\n"+          \
!     _("  Description:")+"%s\n"                                                
                                                                                
                                              
!     wxMessageDialog.__init__(self, interface, 
!                              text % (programVersion, formName 
,formVersion,author,description),
!                              _("About"), wxOK | wxICON_INFORMATION)
  #
  # UImessageBox
  #



reply via email to

[Prev in Thread] Current Thread [Next in Thread]