Skip to content

Commit

Permalink
fix localization of Lbs to better support metric system mods
Browse files Browse the repository at this point in the history
  • Loading branch information
akrigline committed Sep 16, 2020
1 parent 4563e6f commit 8d692b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/templates/parts/actor-inventory.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
{{#unless isNPC}}
<div class="encumberance">
{{#with data.attributes.encumbrance}}
<h3><strong>Weight Carried:</strong> {{ value }} lbs.</h3>
<h3><strong>Weight Carried:</strong> {{ value }} {{localize "DND5E.AbbreviationLbs"}}</h3>
<span class="{{#if (gt value max)}}encumbered{{/if}}">
Max: {{ max }} lbs.
Max: {{ max }} {{localize "DND5E.AbbreviationLbs"}}
</span>
{{/with}}
</div>
Expand Down

0 comments on commit 8d692b3

Please sign in to comment.