feat(i18n): i18nize everything
This commit is contained in:
@@ -30,19 +30,19 @@ defineOptions({ render: () => null });
|
||||
<template>
|
||||
<NumberInput
|
||||
:model-value="now.getMonth() + 1"
|
||||
title="Month"
|
||||
:title="$t('settings.clock.date.month')"
|
||||
:x="1 * 16 - 1"
|
||||
:disabled="true"
|
||||
/>
|
||||
<NumberInput
|
||||
:model-value="now.getDate()"
|
||||
title="Day"
|
||||
:title="$t('settings.clock.date.day')"
|
||||
:x="5 * 16 - 1"
|
||||
:disabled="true"
|
||||
/>
|
||||
<NumberInput
|
||||
:model-value="now.getFullYear()"
|
||||
title="Year"
|
||||
:title="$t('settings.clock.date.year')"
|
||||
:digits="4"
|
||||
:x="9 * 16 - 1"
|
||||
:disabled="true"
|
||||
@@ -50,8 +50,8 @@ defineOptions({ render: () => null });
|
||||
|
||||
<CommonButtons
|
||||
:y-offset="0"
|
||||
b-label="Cancel"
|
||||
a-label="Confirm"
|
||||
:b-label="$t('common.cancel')"
|
||||
:a-label="$t('common.confirm')"
|
||||
@activate-b="handleCancel"
|
||||
@activate-a="handleConfirm"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user