feat: internationalize various components and views with i18n translations

This commit is contained in:
2026-01-14 04:24:44 +07:00
parent 0308c56555
commit 8b70c6a3e9
42 changed files with 251 additions and 210 deletions

View File

@@ -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>