Pamhyr2/src/View/InitialConditions/translate.py

15 lines
482 B
Python

# -*- coding: utf-8 -*-
from PyQt5.QtCore import QCoreApplication
_translate = QCoreApplication.translate
table_headers = {
"name": _translate("LateralContribution", "Name"),
"comment": _translate("LateralContribution", "Comment"),
"kp": _translate("LateralContribution", "KP (m)"),
"flow": _translate("LateralContribution", "Flow (m³/s)"),
"cote": _translate("LateralContribution", "Cote (m)"),
"tiran": _translate("LateralContribution", "Tiran (m)")
}