Skip to content

Commit

Permalink
Languages
Browse files Browse the repository at this point in the history
  • Loading branch information
Haxxer committed Oct 6, 2024
1 parent 2b91fb3 commit b464c25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Updated Italian, Polish, and Portuguese localization (thank you, Gregory Warn, Lioheart, and Eduadro on weblate!)
- Fixed property lookup with item filters and required item properties not handling arrays well
- Fixed editing unlinked item pile actors would not transfer the configuration to the prototype token of the item pile
- Added missing "Sort By" localization

## Version 3.1.5

Expand Down
1 change: 1 addition & 0 deletions languages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
"Minutes": "Minutes",
"MerchantClosed": "Merchant is closed, check back later.",
"Sell": "Sell",
"SortBy": "Sort by:",
"Description": "Description",
"Settings": "Settings",
"Override": "Override",
Expand Down
2 changes: 1 addition & 1 deletion src/applications/merchant-app/MerchantItemTab.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
{/if}
<select bind:value={$sortTypeStore} style="flex:0 1 auto; margin-left: 0.4rem; height: 26px;">
{#each $sortTypesStore as column, index}
<option value={index}>Sort by: {localize(column.label)}</option>
<option value={index}>{localize("ITEM-PILES.Merchant.SortBy")} {localize(column.label)}</option>
{/each}
</select>
</div>
Expand Down

0 comments on commit b464c25

Please sign in to comment.