Skip to content

Commit

Permalink
[#1401] Fix a few unlocalized strings
Browse files Browse the repository at this point in the history
  • Loading branch information
arbron committed Dec 29, 2022
1 parent ed76307 commit 0a08f7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion templates/advancement/item-choice-config.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@
<li class="item flexrow" data-item-uuid="{{this}}">
<div class="item-name">{{{dnd5e-linkForUuid this}}}</div>
<div class="item-controls flexrow">
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
<a class="item-control item-delete" title="{{localize 'DND5E.ItemDelete'}}">
<i class="fas fa-trash"></i>
</a>
</div>
</li>
{{/each}}
Expand Down
2 changes: 1 addition & 1 deletion templates/advancement/item-choice-flow.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{/if}}

{{#each previousLevels}}
<h4 class="form-header">Level {{@key}}</h4>
<h4 class="form-header">{{localize "DND5E.AdvancementLevelHeader" level=@key}}</h4>
{{#each this}}
<div class="item-name flexrow">
<div class="item-image" style="background-image: url({{this.img}});"></div>
Expand Down

0 comments on commit 0a08f7b

Please sign in to comment.