Skip to content

Commit 9fcb6e4

Browse files
committed
L10n
1 parent 240da7f commit 9fcb6e4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

frontend/src/components/CoinView.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ onUnmounted(async () => {
113113

114114
<template v-if="coinData[infoFieldIndex('issuedate')]">
115115
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['issuedate'] }}</dt>
116-
<dd class="v-col-sm-9 font-weight-bold">{{ coinData[infoFieldIndex('issuedate')] }}</dd>
116+
<dd class="v-col-sm-9 font-weight-bold">{{ i18n.global.d(coinData[infoFieldIndex('issuedate')]) }}</dd>
117117
</template>
118118
<template v-else-if="coinData[infoFieldIndex('year')]">
119119
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['year'] }}</dt>
@@ -122,7 +122,7 @@ onUnmounted(async () => {
122122

123123
<template v-if="coinData[infoFieldIndex('mintage')]">
124124
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['mintage'] }}</dt>
125-
<dd class="v-col-sm-9 font-weight-bold">{{ coinData[infoFieldIndex('mintage')] }}</dd>
125+
<dd class="v-col-sm-9 font-weight-bold">{{ i18n.global.n(coinData[infoFieldIndex('mintage')]) }}</dd>
126126
</template>
127127
<template v-if="coinData[infoFieldIndex('material')]">
128128
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['material'] }}</dt>
@@ -152,11 +152,11 @@ onUnmounted(async () => {
152152
</template>
153153
<template v-if="coinData[infoFieldIndex('paydate')]">
154154
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['paydate'] }}</dt>
155-
<dd class="v-col-sm-9 font-weight-bold">{{ coinData[infoFieldIndex('paydate')] }}</dd>
155+
<dd class="v-col-sm-9 font-weight-bold">{{ i18n.global.d(coinData[infoFieldIndex('paydate')]) }}</dd>
156156
</template>
157157
<template v-if="coinData[infoFieldIndex('payprice')]">
158158
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['payprice'] }}</dt>
159-
<dd class="v-col-sm-9 font-weight-bold">{{ coinData[infoFieldIndex('payprice')] }}</dd>
159+
<dd class="v-col-sm-9 font-weight-bold">{{ i18n.global.n(coinData[infoFieldIndex('payprice')]) }}</dd>
160160
</template>
161161
<template v-if="coinData[infoFieldIndex('storage')]">
162162
<dt class="v-col-sm-3 text-medium-emphasis">{{ settings.fields['storage'] }}</dt>

0 commit comments

Comments
 (0)