Merge refactor/i18n into develop

This commit is contained in:
Methapon Metanipat 2024-08-26 16:24:08 +07:00
parent 3da5bf9079
commit c681b19e39
99 changed files with 2192 additions and 2987 deletions

View file

@ -1,6 +1,7 @@
<script setup lang="ts">
defineProps<{
label?: string;
i18nArgs?: Record<string, unknown>;
}>();
</script>
@ -17,7 +18,9 @@ defineProps<{
round
/>
</div>
<div class="row q-mt-sm color-text" v-if="label">{{ $t(label) }}</div>
<div class="row q-mt-sm color-text" v-if="label">
{{ $t(label, { ...i18nArgs }) }}
</div>
</div>
</template>