feat: internationalize various components and views with i18n translations
This commit is contained in:
@@ -5,6 +5,8 @@ const emit = defineEmits<{
|
||||
select: [code: string];
|
||||
}>();
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const walletStore = useWalletStore();
|
||||
const { fundingBalances } = storeToRefs(walletStore);
|
||||
|
||||
@@ -21,7 +23,7 @@ onMounted(() => {
|
||||
<template>
|
||||
<ion-header class="ion-no-border">
|
||||
<ion-toolbar class="ion-toolbar">
|
||||
<ion-title>选择货币</ion-title>
|
||||
<ion-title>{{ t("wallet.selectCurrency.title") }}</ion-title>
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user