dialogs/PouActionDialog.py
changeset 1749 d73b64672238
parent 1745 f9d32913bad4
child 1762 fcc406143e5b
equal deleted inserted replaced
1748:ba5f64fe0e00 1749:d73b64672238
    29 
    29 
    30 
    30 
    31 def GetActionLanguages():
    31 def GetActionLanguages():
    32     _ = lambda x: x
    32     _ = lambda x: x
    33     return [_("IL"), _("ST"), _("LD"), _("FBD")]
    33     return [_("IL"), _("ST"), _("LD"), _("FBD")]
       
    34 
       
    35 
    34 ACTION_LANGUAGES_DICT = dict([(_(language), language) for language in GetActionLanguages()])
    36 ACTION_LANGUAGES_DICT = dict([(_(language), language) for language in GetActionLanguages()])
    35 
    37 
    36 
    38 
    37 class PouActionDialog(wx.Dialog):
    39 class PouActionDialog(wx.Dialog):
    38 
    40