mirror of https://gitlab.com/pamhyr/pamhyr2
15 lines
442 B
Python
15 lines
442 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from PyQt5.QtCore import QCoreApplication
|
|
|
|
_translate = QCoreApplication.translate
|
|
|
|
table_headers = {
|
|
"x": _translate("BoundaryCondition", "X"),
|
|
"y": _translate("BoundaryCondition", "Y"),
|
|
"time": _translate("BoundaryCondition", "Time"),
|
|
"date": _translate("BoundaryCondition", "Date"),
|
|
"debit": _translate("BoundaryCondition", "Debit (m^3/s)"),
|
|
"z": _translate("BoundaryCondition", "Z (m)")
|
|
}
|