# HG changeset patch
# User Andrey Skvortsov <andrej.skvortzov@gmail.com>
# Date 1490719731 -10800
# Node ID cd03b8432541da9df59c691d97a441063df94820
# Parent  54da2cfe0180c6248e4a229efca37c447e472e47
enable to write SFC transition in IL

This commit reverts previous commit 3f3d97be9a9f.
Because the fix for the matiec problem is already upstream
(https://bitbucket.org/mjsousa/matiec/commits/ce026aee03e00c0790948a18bd7b35805457da81)

diff -r 54da2cfe0180 -r cd03b8432541 dialogs/PouTransitionDialog.py
--- a/dialogs/PouTransitionDialog.py	Tue Mar 28 17:09:31 2017 +0300
+++ b/dialogs/PouTransitionDialog.py	Tue Mar 28 19:48:51 2017 +0300
@@ -32,12 +32,7 @@
 
 def GetTransitionLanguages():
     _ = lambda x : x
-    #
-    # IL language is temporary disabled because
-    # matiec freezes if transition is written in IL
-    #
-    # return [_("IL"), _("ST"), _("LD"), _("FBD")]
-    return [ _("ST"), _("LD"), _("FBD")]
+    return [_("IL"), _("ST"), _("LD"), _("FBD")]
 TRANSITION_LANGUAGES_DICT = dict([(_(language), language) for language in GetTransitionLanguages()])
 
 class PouTransitionDialog(wx.Dialog):