runtime/PlcStatus.py
author Edouard Tisserant
Fri, 19 Jun 2020 11:07:25 +0200
changeset 2682 4d3320fdab19
parent 2416 1ca207782dde
permissions -rw-r--r--
Runtime: Fix typo in PLCObject leading to exception when reporting failure.
# -*- 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")