commit-gnue
[Top][All Lists]
Advanced

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

gnue/designer/src Designer.py


From: Arturas Kriukovas
Subject: gnue/designer/src Designer.py
Date: Tue, 02 Jul 2002 10:12:21 -0400

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Arturas Kriukovas <address@hidden>      02/07/02 10:12:21

Modified files:
        designer/src   : Designer.py 

Log message:
        Modified strings for i18n.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/designer/src/Designer.py.diff?cvsroot=OldCVS&tr1=1.42&tr2=1.43&r1=text&r2=text

Patches:
Index: gnue/designer/src/Designer.py
diff -c gnue/designer/src/Designer.py:1.42 gnue/designer/src/Designer.py:1.43
*** gnue/designer/src/Designer.py:1.42  Fri Jun 28 00:03:37 2002
--- gnue/designer/src/Designer.py       Tue Jul  2 10:12:21 2002
***************
*** 76,82 ****
    NAME = PACKAGE
    VERSION = VERSION
    COMMAND = "gnue-designer"
!   SUMMARY = "A graphical tool for the rapid deployment of GNU Enterprise 
forms and reports."
    USAGE = GClientApp.USAGE + " [file] [file] ..."
  
    def __init__(self):
--- 76,82 ----
    NAME = PACKAGE
    VERSION = VERSION
    COMMAND = "gnue-designer"
!   SUMMARY = _("A graphical tool for the rapid deployment of GNU Enterprise 
forms and reports.")
    USAGE = GClientApp.USAGE + " [file] [file] ..."
  
    def __init__(self):
***************
*** 164,170 ****
  
    def OnOpen(self, event):
  
!     dlg = wxFileDialog(NULL, "Open GNUe File...", defaultDir=os.getcwd(),
                             wildcard = self.supportedOpenWildcard,
                             style=wxOPEN)
  
--- 164,170 ----
  
    def OnOpen(self, event):
  
!     dlg = wxFileDialog(NULL, _("Open GNUe File..."), defaultDir=os.getcwd(),
                             wildcard = self.supportedOpenWildcard,
                             style=wxOPEN)
  
***************
*** 188,196 ****
    def OnExit(self, event):
      if self.isDirty():
        dlg = wxMessageDialog(NULL,
!               "There are open documents with unsaved changes.\n"
!               "Exit anyway?",
!               "Unsaved Changes", style=wxYES_NO|wxICON_WARNING)
        save = dlg.ShowModal()
        dlg.Destroy()
        if save == wxID_NO:
--- 188,196 ----
    def OnExit(self, event):
      if self.isDirty():
        dlg = wxMessageDialog(NULL,
!               _("There are open documents with unsaved changes.\n")+
!               _("Exit anyway?"),
!               _("Unsaved Changes"), style=wxYES_NO|wxICON_WARNING)
        save = dlg.ShowModal()
        dlg.Destroy()
        if save == wxID_NO:
***************
*** 206,217 ****
          instance.OnSave(event)
  
    def OnAbout(self, event):
!     dlg = wxMessageDialog(NULL, self.NAME + "\n"
!                                 "GNUe Rapid Application Development.\n\n"
!                                 "Version  " + self.VERSION + "\n\n"
!                                 "Copyright 2001-2002 Free Software 
Foundation\n\n "
!                                 "For help, email address@hidden",
!                                 "About " + self.NAME, 
style=wxOK|wxICON_INFORMATION)
      dlg.ShowModal()
      dlg.Destroy()
  
--- 206,217 ----
          instance.OnSave(event)
  
    def OnAbout(self, event):
!     dlg = wxMessageDialog(NULL, self.NAME + "\n" +
!                                 _("GNUe Rapid Application Development.\n\n") +
!                                 _("Version  ") + self.VERSION + "\n\n" +
!                                 "Copyright 2001-2002 Free Software 
Foundation\n\n " +
!                                 _("For help, email address@hidden"),
!                                 _("About ") + self.NAME, 
style=wxOK|wxICON_INFORMATION)
      dlg.ShowModal()
      dlg.Destroy()
  



reply via email to

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