diff -r f7d8891fe708 -r 1ca207782dde runtime/PlcStatus.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/runtime/PlcStatus.py Tue Oct 02 16:53:14 2018 +0300 @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +# See COPYING.Runtime file for copyrights details. + + +def _(x): + """No translation""" + return x + + +Broken = _("Broken") +Started = _("Started") +Stopped = _("Stopped") +Disconnected = _("Disconnected") +Empty = _("Empty")