Skip to content

Commit

Permalink
[foundryvtt#1401] Fix a few unlocalized strings
Browse files Browse the repository at this point in the history
  • Loading branch information
arbron committed Aug 22, 2022
1 parent 8620798 commit 5c47c97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion templates/advancement/item-choice-config.html
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.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h3>{{{title}}}</h3>
{{/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
4 changes: 3 additions & 1 deletion templates/advancement/item-grant-config.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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

0 comments on commit 5c47c97

Please sign in to comment.