mirror of https://gitlab.com/pamhyr/pamhyr2
15 lines
482 B
Python
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)")
|
|
}
|