Skip to content

Commit

Permalink
Pharma - Fix CoagSense displaying wrong message with changed default …
Browse files Browse the repository at this point in the history
…value (#565)

**When merged this pull request will:**
- Last minute fix for coagsense
- fix a few typos
### IMPORTANT

- [Development Guidelines](https://ace3.acemod.org/wiki/development/)
are read, understood and applied.
- Title of this PR uses our standard template `Component -
Add|Fix|Improve|Change|Make|Remove {changes}`.
  • Loading branch information
Cplhardcore authored Jul 30, 2024
1 parent c2828c1 commit b37bec0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
params ["_medic", "_patient"];

private _coagFactors = _patient getVariable [QGVAR(coagulationFactor), 15];
private _missionCoagFactors = missionNamespace getVariable [QGVAR(coagulationFactor), 15];
private _missionCoagFactors = missionNamespace getVariable [QGVAR(coagulation_factor_count), 15];
private _slowINR = (_missionCoagFactors / 100) * 75;
private _shighINR = (_missionCoagFactors / 100) * 125;
private _hlowINR = (_missionCoagFactors / 100) * 50;
Expand Down
8 changes: 4 additions & 4 deletions addons/pharma/stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3498,7 +3498,7 @@
<Japanese>Coag-Senseは血液凝固の効率を測定できる PT/INR モニタリングシステムです。</Japanese>
</Key>
<Key ID="STR_KAT_Pharma_Coag_Sense_Log">
<English>Coag-Sense conclutes: %1</English>
<English>Coag-Sense concludes: %1</English>
<Japanese>Coag-Senseの結果: %1</Japanese>
</Key>
<Key ID="STR_KAT_Pharma_CheckCoag_DisplayName">
Expand All @@ -3518,15 +3518,15 @@
<Japanese>正常INRより少し高い</Japanese>
</Key>
<Key ID="STR_KAT_Pharma_CheckCoag_highly_lowINR">
<English>highly below normal INR</English>
<English>Very Low INR</English>
<Japanese>正常INRよりかなり低い</Japanese>
</Key>
<Key ID="STR_KAT_Pharma_CheckCoag_highly_aboveINR">
<English>highly above normal INR</English>
<English>Very high INR</English>
<Japanese>正常INRよりかなり高い</Japanese>
</Key>
<Key ID="STR_KAT_Pharma_CheckCoag_normalINR">
<English>normal INR</English>
<English>Normal INR</English>
<Japanese>正常INR</Japanese>
</Key>
<Key ID="STR_KAT_Pharma_SubCategory_Coag_Sense">
Expand Down

0 comments on commit b37bec0

Please sign in to comment.