Skip to content

Commit

Permalink
Inventory - Fix non-localized sort mode strings (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
mharis001 authored Apr 20, 2021
1 parent 3b360af commit 9964e07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions addons/common/stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,9 @@
<Japanese>高さ (m)</Japanese>
<Korean>고도 (m)</Korean>
</Key>
<Key ID="STR_ZEN_Common_Amount">
<English>Amount</English>
</Key>
<Key ID="STR_ZEN_Common_Teleport">
<English>Teleport</English>
<French>Téléportation</French>
Expand Down
5 changes: 3 additions & 2 deletions addons/inventory/gui.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,16 @@ class GVAR(display): EGVAR(common,RscDisplay) {
y = POS_H(13/3);
w = POS_W(26);
h = POS_H(1);
sizeEx = POS_H(0.85);
disableOverflow = 1;
columns[] = {0, 0.8};
class Items {
class Name {
text = "Name";
text = "$STR_A3_RscAttributeName_Title";
value = 1;
};
class Amount {
text = "Amount";
text = ECSTRING(common,Amount);
data = "value";
};
};
Expand Down

0 comments on commit 9964e07

Please sign in to comment.