浏览代码

wxGUI animation/timeline: add 'GRASS GIS' to the frame titles

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@59972 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 11 年之前
父节点
当前提交
dd9056986a
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      gui/wxpython/animation/frame.py
  2. 2 2
      gui/wxpython/timeline/frame.py

+ 1 - 1
gui/wxpython/animation/frame.py

@@ -49,7 +49,7 @@ gcore.set_raise_on_error(True)
 
 
 class AnimationFrame(wx.Frame):
-    def __init__(self, parent, giface, title=_("Animation tool"),
+    def __init__(self, parent, giface, title=_("GRASS GIS Animation tool"),
                  rasters=None, timeseries=None):
         wx.Frame.__init__(self, parent, title=title,
                           style=wx.DEFAULT_FRAME_STYLE, size=(800, 600))

+ 2 - 2
gui/wxpython/timeline/frame.py

@@ -8,7 +8,7 @@ Classes:
  - frame::TimelineFrame
  - frame::LookUp
 
-(C) 2012-13 by the GRASS Development Team
+(C) 2012-2014 by the GRASS Development Team
 
 This program is free software under the GNU General Public License
 (>=v2). Read the file COPYING that comes with GRASS for details.
@@ -70,7 +70,7 @@ def check_version(*version):
 class TimelineFrame(wx.Frame):
     """!The main frame of the application"""
     def __init__(self, parent):
-        wx.Frame.__init__(self, parent, id=wx.ID_ANY, title=_("Timeline Tool"))
+        wx.Frame.__init__(self, parent, id=wx.ID_ANY, title=_("GRASS GIS Timeline Tool"))
 
         tgis.init(True)
         self.datasets = []