Skip to content

Commit

Permalink
Merge pull request kodadot#8925 from Jarsen136/issue-8924
Browse files Browse the repository at this point in the history
fix: offer translation leftover
  • Loading branch information
roiLeo authored Jan 9, 2024
2 parents 005be95 + 7475273 commit 87775e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
min="0.001"
pattern="[0-9]+([\.,][0-9]+)?"
class="indent-2.5 border-none outline-none w-20 theme-background-color has-text-color"
:placeholder="$t('offer.price')" />
:placeholder="$t('price')" />
<div class="px-3 flex items-center">{{ chainSymbol }}</div>
</div>
<NeoButton
Expand Down
2 changes: 1 addition & 1 deletion components/search/SearchSuggestion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<div class="flex flex-row justify-between pr-2">
<span class="name">{{ item.collection?.name }}</span>
<span v-if="item.price && parseFloat(item.price) > 0">
{{ $t('offer.price') }}:
{{ $t('price') }}:
<Money :value="item.price" :prefix="item.chain" inline />
</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/shared/filters/modules/AdvancedFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
$t('advancedFilters')
}}</span>
<span v-if="artView" class="ml-2 has-text-primary"
>({{ $t('offer.active') }})</span
>({{ $t('active') }})</span
>
</p>
<a class="card-header-icon mr-1 has-text-grey">
Expand Down
1 change: 1 addition & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
"theatre": "theatre",
"view": "view",
"price": "Price",
"active": "Active",
"lowestPrice": "Lowest Price",
"royalty": "royalty",
"Instance_tooltip": "Instance is like the identifier of an NFT, like a marketplace ticker. It's a \"short computer-friendly name\"",
Expand Down

0 comments on commit 87775e1

Please sign in to comment.