mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 11:22:30 -04:00
45 lines
1.9 KiB
Python
45 lines
1.9 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
############################################################
|
||
|
# Copyright (c) 2013, 2014 Manuel Eduardo Cortéz Vallejo <manuel@manuelcortez.net>
|
||
|
#
|
||
|
# This program is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 2 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
############################################################
|
||
|
import wx
|
||
|
import translator
|
||
|
|
||
|
class translateDialog(wx.Dialog):
|
||
|
def __init__(self):
|
||
|
wx.Dialog.__init__(self, None, -1, title=_(u"Translate message"))
|
||
|
panel = wx.Panel(self)
|
||
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
||
|
staticSource = wx.StaticText(panel, -1, _(u"Source language"))
|
||
|
self.source_lang = wx.ComboBox(panel, -1, choices=[x[1] for x in translator.available_languages()], style = wx.CB_READONLY)
|
||
|
self.source_lang.SetFocus()
|
||
|
staticDest = wx.StaticText(panel, -1, _(u"Target language"))
|
||
|
self.source_lang.SetSelection(0)
|
||
|
self.dest_lang = wx.ComboBox(panel, -1, choices=[x[1] for x in translator.available_languages()], style = wx.CB_READONLY)
|
||
|
listSizer = wx.BoxSizer(wx.HORIZONTAL)
|
||
|
listSizer.Add(staticSource)
|
||
|
listSizer.Add(self.source_lang)
|
||
|
listSizer.Add(staticDest)
|
||
|
listSizer.Add(self.dest_lang)
|
||
|
ok = wx.Button(panel, wx.ID_OK)
|
||
|
ok.SetDefault()
|
||
|
cancel = wx.Button(panel, wx.ID_CANCEL)
|
||
|
self.SetEscapeId(wx.ID_CANCEL)
|
||
|
|
||
|
def onOk(self, ev):
|
||
|
self.EndModal(wx.ID_OK)
|