Changes in / [505:3444589a54b4:509:77b730a1b092]
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
locale/en/mlx.po
r502 r509 793 793 794 794 msgid "takeoff_derate_boeing" 795 msgstr "Der_ate :"795 msgstr "Der_ated thrust:" 796 796 797 797 msgid "takeoff_derate_tupolev" -
locale/hu/mlx.po
r502 r509 794 794 795 795 msgid "takeoff_derate_boeing" 796 msgstr " Teljesítménycsökkentés:"796 msgstr "Csökkentett teljesítmény:" 797 797 798 798 msgid "takeoff_derate_tupolev" -
src/mlx/const.py
r498 r509 11 11 12 12 ## The version of the program 13 VERSION="0.1 8xpl"13 VERSION="0.19xpl" 14 14 15 15 #------------------------------------------------------------------------------- -
src/mlx/fsuipc.py
r476 r507 1264 1264 flapsNotches is a list of degrees of flaps that are available on the aircraft.""" 1265 1265 self._flapsNotches = flapsNotches 1266 self._xpdrReliable = False 1266 1267 1267 1268 @property … … 1408 1409 state.cog = data[self._monidx_cog] 1409 1410 1410 state.xpdrC = data[self._monidx_xpdrC]!=1 1411 if not self._xpdrReliable: 1412 self._xpdrReliable = data[self._monidx_xpdrC]!=0 1413 1414 state.xpdrC = data[self._monidx_xpdrC]!=1 \ 1415 if self._xpdrReliable else None 1411 1416 state.autoXPDR = False 1412 1417
Note:
See TracChangeset
for help on using the changeset viewer.