mirror of https://gitlab.com/pamhyr/pamhyr2
98 lines
3.8 KiB
Python
98 lines
3.8 KiB
Python
# translate.py -- Pamhyr
|
|
# Copyright (C) 2023-2024 INRAE
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from PyQt5.QtCore import QCoreApplication
|
|
|
|
from View.Translate import MainTranslate
|
|
|
|
_translate = QCoreApplication.translate
|
|
|
|
|
|
class ResultsTranslate(MainTranslate):
|
|
def __init__(self):
|
|
super(ResultsTranslate, self).__init__()
|
|
|
|
self._dict["Results"] = _translate("Results", "Results")
|
|
self._dict["Reading results"] = _translate(
|
|
"Results", "Reading results"
|
|
)
|
|
|
|
self._dict['day'] = _translate("Results", "day")
|
|
self._dict['days'] = _translate("Results", "days")
|
|
|
|
self._dict['x'] = _translate("Results", "X (m)")
|
|
|
|
self._dict['label_bottom'] = _translate("Results", "Bottom")
|
|
self._dict['label_water'] = _translate("Results", "Water elevation")
|
|
self._dict['label_water_max'] = _translate(
|
|
"Results",
|
|
"Max water elevation"
|
|
)
|
|
|
|
self._sub_dict["table_headers_reach"] = {
|
|
"name": _translate("Results", "Reach name"),
|
|
}
|
|
|
|
self._sub_dict["table_headers_profile"] = {
|
|
"name": self._dict["name"],
|
|
"rk": self._dict["unit_rk"],
|
|
}
|
|
|
|
self._sub_dict["table_headers_raw_data"] = {
|
|
"name": _translate("Results", "Profile"),
|
|
"water_elevation": self._dict["unit_water_elevation"],
|
|
"discharge": self._dict["unit_discharge"],
|
|
"velocity": self._dict["unit_velocity"],
|
|
"width": self._dict["unit_width"],
|
|
"depth": self._dict["unit_depth"],
|
|
"mean_depth": self._dict["unit_mean_depth"],
|
|
"wet_area": self._dict["unit_wet_area"],
|
|
"wet_perimeter": self._dict["unit_wet_perimeter"],
|
|
"hydraulic_radius": self._dict["unit_hydraulic_radius"],
|
|
"froude": self._dict["unit_froude"],
|
|
}
|
|
|
|
self._sub_dict["values_x"] = {
|
|
"rk": self._dict["unit_rk"],
|
|
"time": self._dict["unit_time_s"],
|
|
}
|
|
|
|
self._sub_dict["values_y"] = {
|
|
"bed_elevation": self._dict["unit_bed_elevation"],
|
|
"water_elevation": self._dict["unit_water_elevation"],
|
|
"discharge": self._dict["unit_discharge"],
|
|
"velocity": self._dict["unit_velocity"],
|
|
"depth": self._dict["unit_depth"],
|
|
"mean_depth": self._dict["unit_mean_depth"],
|
|
"froude": self._dict["unit_froude"],
|
|
"wet_area": self._dict["unit_wet_area"],
|
|
}
|
|
|
|
self._sub_dict["values_y_envelop"] = {
|
|
"min_bed_elevation": self._dict["unit_min_bed_elevation"],
|
|
"max_bed_elevation": self._dict["unit_max_bed_elevation"],
|
|
"min_water_elevation": self._dict["unit_min_water_elevation"],
|
|
"max_water_elevation": self._dict["unit_max_water_elevation"],
|
|
"min_discharge": self._dict["unit_min_discharge"],
|
|
"max_discharge": self._dict["unit_max_discharge"],
|
|
"min_velocity": self._dict["unit_min_velocity"],
|
|
"max_velocity": self._dict["unit_max_velocity"],
|
|
"min_depth": self._dict["unit_min_depth"],
|
|
"max_depth": self._dict["unit_max_depth"],
|
|
}
|