runtime/PlcStatus.py
author Edouard Tisserant <edouard.tisserant@gmail.com>
Mon, 02 Nov 2020 10:56:09 +0100
changeset 2693 7ab2b5a18e65
parent 2416 1ca207782dde
permissions -rw-r--r--
Allow customization of generated py_ext OnChange calls, by adding a static method to PythonFileCTNMixin that can the be later hot patched.
# -*- 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")