feat: increase support for multiple time zones

This commit is contained in:
zhongming4762 2025-10-22 19:52:01 +08:00
parent 03ce030e7c
commit 0a8339a405
32 changed files with 577 additions and 9 deletions

View File

@ -0,0 +1,7 @@
import { eventHandler } from 'h3';
import { TIME_ZONE_OPTIONS } from '~/utils/mock-data';
import { useResponseSuccess } from '~/utils/response';
export default eventHandler(() => {
return useResponseSuccess(TIME_ZONE_OPTIONS);
});

View File

@ -0,0 +1,14 @@
import { eventHandler, readBody } from 'h3';
import { verifyAccessToken } from '~/utils/jwt-utils';
import { unAuthorizedResponse, useResponseSuccess } from '~/utils/response';
import { setTimezone } from '~/utils/timezone-utils';
export default eventHandler(async (event) => {
const userinfo = verifyAccessToken(event);
if (!userinfo) {
return unAuthorizedResponse(event);
}
const { timezone } = await readBody(event);
setTimezone(timezone);
return useResponseSuccess();
});

View File

@ -0,0 +1,12 @@
import { eventHandler } from 'h3';
import { verifyAccessToken } from '~/utils/jwt-utils';
import { unAuthorizedResponse, useResponseSuccess } from '~/utils/response';
import { getTimezone } from '~/utils/timezone-utils';
export default eventHandler((event) => {
const userinfo = verifyAccessToken(event);
if (!userinfo) {
return unAuthorizedResponse(event);
}
return useResponseSuccess(getTimezone());
});

View File

@ -7,6 +7,11 @@ export interface UserInfo {
homePath?: string; homePath?: string;
} }
export interface TimeZoneOption {
offset: number;
timeZone: string;
}
export const MOCK_USERS: UserInfo[] = [ export const MOCK_USERS: UserInfo[] = [
{ {
id: 0, id: 0,
@ -388,3 +393,29 @@ export function getMenuIds(menus: any[]) {
}); });
return ids; return ids;
} }
/**
*
*/
export const TIME_ZONE_OPTIONS: TimeZoneOption[] = [
{
offset: -5,
timezone: 'America/New_York',
},
{
offset: 0,
timezone: 'Europe/London',
},
{
offset: 8,
timezone: 'Asia/Shanghai',
},
{
offset: 9,
timezone: 'Asia/Tokyo',
},
{
offset: 9,
timezone: 'Asia/Seoul',
},
];

View File

@ -0,0 +1,10 @@
let mockTimeZone: null | string = null;
export const setTimezone = (timeZone: string) => {
mockTimeZone = timeZone;
};
export const getTimezone = () => {
console.log('mockTimeZone', mockTimeZone);
return mockTimeZone;
};

View File

@ -1,3 +1,4 @@
export * from './auth'; export * from './auth';
export * from './menu'; export * from './menu';
export * from './user'; export * from './user';
export * from './user-profile';

View File

@ -0,0 +1,23 @@
import type { TimezoneOption } from '@vben/types';
import { requestClient } from '#/api/request';
/**
*
*/
export async function getTimezoneOptionsApi() {
return requestClient.get<TimezoneOption[]>('/profile/timezone');
}
/**
*
*/
export async function getUserTimezoneApi(): Promise<null | string | undefined> {
return requestClient.get<null | string | undefined>('/user/timezone');
}
/**
*
* @param timezone
*/
export async function setUserTimezoneApi(timezone: string) {
return requestClient.post('/user/setTimezone', { timezone });
}

View File

@ -1,7 +1,8 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { ExtendedModalApi } from '@vben/common-ui';
import type { NotificationItem } from '@vben/layouts'; import type { NotificationItem } from '@vben/layouts';
import { computed, ref, watch } from 'vue'; import { computed, onMounted, ref, watch } from 'vue';
import { AuthenticationLoginExpiredModal } from '@vben/common-ui'; import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants'; import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants';
@ -11,14 +12,18 @@ import {
BasicLayout, BasicLayout,
LockScreen, LockScreen,
Notification, Notification,
TimezoneButton,
UserDropdown, UserDropdown,
} from '@vben/layouts'; } from '@vben/layouts';
import { preferences } from '@vben/preferences'; import { preferences } from '@vben/preferences';
import { useAccessStore, useUserStore } from '@vben/stores'; import { useAccessStore, useUserStore } from '@vben/stores';
import { openWindow } from '@vben/utils'; import { openWindow } from '@vben/utils';
import { message } from 'ant-design-vue';
import { getTimezoneOptionsApi } from '#/api';
import { $t } from '#/locales'; import { $t } from '#/locales';
import { useAuthStore } from '#/store'; import { useAuthStore, useUserProfileStore } from '#/store';
import LoginForm from '#/views/_core/authentication/login.vue'; import LoginForm from '#/views/_core/authentication/login.vue';
const notifications = ref<NotificationItem[]>([ const notifications = ref<NotificationItem[]>([
@ -60,6 +65,29 @@ const showDot = computed(() =>
notifications.value.some((item) => !item.isRead), notifications.value.some((item) => !item.isRead),
); );
const userProfileStore = useUserProfileStore();
const computedTimezone = computed(() => userProfileStore.timezone);
const timezoneOptions = ref<string[]>([]);
onMounted(async () => {
timezoneOptions.value = ((await getTimezoneOptionsApi()) || []).map(
(item) => item.timezone,
);
});
const handleSetTimezone = async (
timezone: string,
modalApi: ExtendedModalApi,
) => {
try {
modalApi.setState({ confirmLoading: true });
await userProfileStore.setTimezone(timezone);
message.success($t('ui.widgets.timezone.setSuccess'));
modalApi.close();
} finally {
modalApi.setState({ confirmLoading: false });
}
};
const menus = computed(() => [ const menus = computed(() => [
{ {
handler: () => { handler: () => {
@ -147,6 +175,14 @@ watch(
@make-all="handleMakeAll" @make-all="handleMakeAll"
/> />
</template> </template>
<template #timezone>
<TimezoneButton
:ok-handler="handleSetTimezone"
:timezone="computedTimezone"
:timezone-options="timezoneOptions"
name="out"
/>
</template>
<template #extra> <template #extra>
<AuthenticationLoginExpiredModal <AuthenticationLoginExpiredModal
v-model:open="accessStore.loginExpired" v-model:open="accessStore.loginExpired"

View File

@ -1 +1,2 @@
export * from './auth'; export * from './auth';
export * from './user-profile';

View File

@ -0,0 +1,56 @@
import { ref } from 'vue';
import { getTimezone, setDefaultTimezone } from '@vben/utils';
import { acceptHMRUpdate, defineStore } from 'pinia';
import { getUserTimezoneApi, setUserTimezoneApi } from '#/api';
const useUserProfileStore = defineStore('user-profile', () => {
const timezoneRef = ref(
getTimezone() || new Intl.DateTimeFormat().resolvedOptions().timeZone,
);
/**
*
* Set the user's timezone
* @param timezone
*/
async function setTimezone(timezone: string) {
timezoneRef.value = timezone;
// 设置dayjs默认时区
setDefaultTimezone(timezone);
// 保存用户的时区设置
await setUserTimezoneApi(timezone);
}
/**
*
* Initialize the user's timezone
*/
async function initTimezone() {
// 从服务器获取用户时区
const timezone = await getUserTimezoneApi();
if (timezone) {
timezoneRef.value = timezone;
// 设置dayjs默认时区
setDefaultTimezone(timezone);
}
}
initTimezone();
return {
timezone: timezoneRef,
setTimezone,
initTimezone,
};
});
export { useUserProfileStore };
// 解决热更新问题
const hot = import.meta.hot;
if (hot) {
hot.accept(acceptHMRUpdate(useUserProfileStore, hot));
}

View File

@ -1,3 +1,4 @@
export * from './auth'; export * from './auth';
export * from './menu'; export * from './menu';
export * from './user'; export * from './user';
export * from './user-profile';

View File

@ -0,0 +1,23 @@
import type { TimezoneOption } from '@vben/types';
import { requestClient } from '#/api/request';
/**
*
*/
export async function getTimezoneOptionsApi() {
return requestClient.get<TimezoneOption[]>('/profile/timezone');
}
/**
*
*/
export async function getUserTimezoneApi(): Promise<null | string | undefined> {
return requestClient.get<null | string | undefined>('/user/timezone');
}
/**
*
* @param timezone
*/
export async function setUserTimezoneApi(timezone: string) {
return requestClient.post('/user/setTimezone', { timezone });
}

View File

@ -1,7 +1,8 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { ExtendedModalApi } from '@vben/common-ui';
import type { NotificationItem } from '@vben/layouts'; import type { NotificationItem } from '@vben/layouts';
import { computed, ref, watch } from 'vue'; import { computed, onMounted, ref, watch } from 'vue';
import { AuthenticationLoginExpiredModal } from '@vben/common-ui'; import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants'; import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants';
@ -11,14 +12,18 @@ import {
BasicLayout, BasicLayout,
LockScreen, LockScreen,
Notification, Notification,
TimezoneButton,
UserDropdown, UserDropdown,
} from '@vben/layouts'; } from '@vben/layouts';
import { preferences } from '@vben/preferences'; import { preferences } from '@vben/preferences';
import { useAccessStore, useUserStore } from '@vben/stores'; import { useAccessStore, useUserStore } from '@vben/stores';
import { openWindow } from '@vben/utils'; import { openWindow } from '@vben/utils';
import { ElMessage } from 'element-plus';
import { getTimezoneOptionsApi } from '#/api';
import { $t } from '#/locales'; import { $t } from '#/locales';
import { useAuthStore } from '#/store'; import { useAuthStore, useUserProfileStore } from '#/store';
import LoginForm from '#/views/_core/authentication/login.vue'; import LoginForm from '#/views/_core/authentication/login.vue';
const notifications = ref<NotificationItem[]>([ const notifications = ref<NotificationItem[]>([
@ -60,6 +65,29 @@ const showDot = computed(() =>
notifications.value.some((item) => !item.isRead), notifications.value.some((item) => !item.isRead),
); );
const userProfileStore = useUserProfileStore();
const computedTimezone = computed(() => userProfileStore.timezone);
const timezoneOptions = ref<string[]>([]);
onMounted(async () => {
timezoneOptions.value = ((await getTimezoneOptionsApi()) || []).map(
(item) => item.timezone,
);
});
const handleSetTimezone = async (
timezone: string,
modalApi: ExtendedModalApi,
) => {
try {
modalApi.setState({ confirmLoading: true });
await userProfileStore.setTimezone(timezone);
ElMessage.success($t('ui.widgets.timezone.setSuccess'));
modalApi.close();
} finally {
modalApi.setState({ confirmLoading: false });
}
};
const menus = computed(() => [ const menus = computed(() => [
{ {
handler: () => { handler: () => {
@ -147,6 +175,14 @@ watch(
@make-all="handleMakeAll" @make-all="handleMakeAll"
/> />
</template> </template>
<template #timezone>
<TimezoneButton
:ok-handler="handleSetTimezone"
:timezone="computedTimezone"
:timezone-options="timezoneOptions"
name="out"
/>
</template>
<template #extra> <template #extra>
<AuthenticationLoginExpiredModal <AuthenticationLoginExpiredModal
v-model:open="accessStore.loginExpired" v-model:open="accessStore.loginExpired"

View File

@ -1 +1,2 @@
export * from './auth'; export * from './auth';
export * from './user-profile';

View File

@ -0,0 +1,56 @@
import { ref } from 'vue';
import { getTimezone, setDefaultTimezone } from '@vben/utils';
import { acceptHMRUpdate, defineStore } from 'pinia';
import { getUserTimezoneApi, setUserTimezoneApi } from '#/api';
const useUserProfileStore = defineStore('user-profile', () => {
const timezoneRef = ref(
getTimezone() || new Intl.DateTimeFormat().resolvedOptions().timeZone,
);
/**
*
* Set the user's timezone
* @param timezone
*/
async function setTimezone(timezone: string) {
timezoneRef.value = timezone;
// 设置dayjs默认时区
setDefaultTimezone(timezone);
// 保存用户的时区设置
await setUserTimezoneApi(timezone);
}
/**
*
* Initialize the user's timezone
*/
async function initTimezone() {
// 从服务器获取用户时区
const timezone = await getUserTimezoneApi();
if (timezone) {
timezoneRef.value = timezone;
// 设置dayjs默认时区
setDefaultTimezone(timezone);
}
}
initTimezone();
return {
timezone: timezoneRef,
setTimezone,
initTimezone,
};
});
export { useUserProfileStore };
// 解决热更新问题
const hot = import.meta.hot;
if (hot) {
hot.accept(acceptHMRUpdate(useUserProfileStore, hot));
}

View File

@ -1,3 +1,4 @@
export * from './auth'; export * from './auth';
export * from './menu'; export * from './menu';
export * from './user'; export * from './user';
export * from './user-profile';

View File

@ -0,0 +1,23 @@
import type { TimezoneOption } from '@vben/types';
import { requestClient } from '#/api/request';
/**
*
*/
export async function getTimezoneOptionsApi() {
return requestClient.get<TimezoneOption[]>('/profile/timezone');
}
/**
*
*/
export async function getUserTimezoneApi(): Promise<null | string | undefined> {
return requestClient.get<null | string | undefined>('/user/timezone');
}
/**
*
* @param timezone
*/
export async function setUserTimezoneApi(timezone: string) {
return requestClient.post('/user/setTimezone', { timezone });
}

View File

@ -1,7 +1,8 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { ExtendedModalApi } from '@vben/common-ui';
import type { NotificationItem } from '@vben/layouts'; import type { NotificationItem } from '@vben/layouts';
import { computed, ref, watch } from 'vue'; import { computed, onMounted, ref, watch } from 'vue';
import { AuthenticationLoginExpiredModal } from '@vben/common-ui'; import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants'; import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '@vben/constants';
@ -11,16 +12,21 @@ import {
BasicLayout, BasicLayout,
LockScreen, LockScreen,
Notification, Notification,
TimezoneButton,
UserDropdown, UserDropdown,
} from '@vben/layouts'; } from '@vben/layouts';
import { preferences } from '@vben/preferences'; import { preferences } from '@vben/preferences';
import { useAccessStore, useUserStore } from '@vben/stores'; import { useAccessStore, useUserStore } from '@vben/stores';
import { openWindow } from '@vben/utils'; import { openWindow } from '@vben/utils';
import { useMessage } from 'naive-ui';
import { getTimezoneOptionsApi } from '#/api';
import { $t } from '#/locales'; import { $t } from '#/locales';
import { useAuthStore } from '#/store'; import { useAuthStore, useUserProfileStore } from '#/store';
import LoginForm from '#/views/_core/authentication/login.vue'; import LoginForm from '#/views/_core/authentication/login.vue';
const message = useMessage();
const notifications = ref<NotificationItem[]>([ const notifications = ref<NotificationItem[]>([
{ {
avatar: 'https://avatar.vercel.sh/vercel.svg?text=VB', avatar: 'https://avatar.vercel.sh/vercel.svg?text=VB',
@ -60,6 +66,29 @@ const showDot = computed(() =>
notifications.value.some((item) => !item.isRead), notifications.value.some((item) => !item.isRead),
); );
const userProfileStore = useUserProfileStore();
const computedTimezone = computed(() => userProfileStore.timezone);
const timezoneOptions = ref<string[]>([]);
onMounted(async () => {
timezoneOptions.value = ((await getTimezoneOptionsApi()) || []).map(
(item) => item.timezone,
);
});
const handleSetTimezone = async (
timezone: string,
modalApi: ExtendedModalApi,
) => {
try {
modalApi.setState({ confirmLoading: true });
await userProfileStore.setTimezone(timezone);
message.success($t('ui.widgets.timezone.setSuccess'));
modalApi.close();
} finally {
modalApi.setState({ confirmLoading: false });
}
};
const menus = computed(() => [ const menus = computed(() => [
{ {
handler: () => { handler: () => {
@ -148,6 +177,14 @@ watch(
@make-all="handleMakeAll" @make-all="handleMakeAll"
/> />
</template> </template>
<template #timezone>
<TimezoneButton
:ok-handler="handleSetTimezone"
:timezone="computedTimezone"
:timezone-options="timezoneOptions"
name="out"
/>
</template>
<template #extra> <template #extra>
<AuthenticationLoginExpiredModal <AuthenticationLoginExpiredModal
v-model:open="accessStore.loginExpired" v-model:open="accessStore.loginExpired"

View File

@ -1 +1,2 @@
export * from './auth'; export * from './auth';
export * from './user-profile';

View File

@ -0,0 +1,56 @@
import { ref } from 'vue';
import { getTimezone, setDefaultTimezone } from '@vben/utils';
import { acceptHMRUpdate, defineStore } from 'pinia';
import { getUserTimezoneApi, setUserTimezoneApi } from '#/api';
const useUserProfileStore = defineStore('user-profile', () => {
const timezoneRef = ref(
getTimezone() || new Intl.DateTimeFormat().resolvedOptions().timeZone,
);
/**
*
* Set the user's timezone
* @param timezone
*/
async function setTimezone(timezone: string) {
timezoneRef.value = timezone;
// 设置dayjs默认时区
setDefaultTimezone(timezone);
// 保存用户的时区设置
await setUserTimezoneApi(timezone);
}
/**
*
* Initialize the user's timezone
*/
async function initTimezone() {
// 从服务器获取用户时区
const timezone = await getUserTimezoneApi();
if (timezone) {
timezoneRef.value = timezone;
// 设置dayjs默认时区
setDefaultTimezone(timezone);
}
}
initTimezone();
return {
timezone: timezoneRef,
setTimezone,
initTimezone,
};
});
export { useUserProfileStore };
// 解决热更新问题
const hot = import.meta.hot;
if (hot) {
hot.accept(acceptHMRUpdate(useUserProfileStore, hot));
}

View File

@ -1,4 +1,9 @@
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import timezone from 'dayjs/plugin/timezone';
import utc from 'dayjs/plugin/utc';
dayjs.extend(utc);
dayjs.extend(timezone);
export function formatDate(time: number | string, format = 'YYYY-MM-DD') { export function formatDate(time: number | string, format = 'YYYY-MM-DD') {
try { try {
@ -6,7 +11,7 @@ export function formatDate(time: number | string, format = 'YYYY-MM-DD') {
if (!date.isValid()) { if (!date.isValid()) {
throw new Error('Invalid date'); throw new Error('Invalid date');
} }
return date.format(format); return date.tz().format(format);
} catch (error) { } catch (error) {
console.error(`Error formatting date: ${error}`); console.error(`Error formatting date: ${error}`);
return time; return time;
@ -24,3 +29,19 @@ export function isDate(value: any): value is Date {
export function isDayjsObject(value: any): value is dayjs.Dayjs { export function isDayjsObject(value: any): value is dayjs.Dayjs {
return dayjs.isDayjs(value); return dayjs.isDayjs(value);
} }
/**
*
* @param timezone
*/
export const setDefaultTimezone = (timezone?: string) => {
timezone ? dayjs.tz.setDefault(timezone) : dayjs.tz.setDefault();
};
/**
*
* @returns
*/
export const getTimezone = () => {
return dayjs.tz.guess();
};

View File

@ -3,4 +3,5 @@ export type * from './basic';
export type * from './helper'; export type * from './helper';
export type * from './menu-record'; export type * from './menu-record';
export type * from './tabs'; export type * from './tabs';
export type * from './user-profile';
export type * from './vue-router'; export type * from './vue-router';

View File

@ -0,0 +1,9 @@
/**
*
*/
interface TimezoneOption {
offset: number;
timezone: string;
}
export type { TimezoneOption };

View File

@ -134,6 +134,7 @@ const defaultPreferences: Preferences = {
refresh: true, refresh: true,
sidebarToggle: true, sidebarToggle: true,
themeToggle: true, themeToggle: true,
timezone: true,
}, },
}; };

View File

@ -275,6 +275,8 @@ interface WidgetPreferences {
sidebarToggle: boolean; sidebarToggle: boolean;
/** 是否显示主题切换部件 */ /** 是否显示主题切换部件 */
themeToggle: boolean; themeToggle: boolean;
/** 是否显示时区部件 */
timezone: boolean;
} }
interface Preferences { interface Preferences {

View File

@ -66,15 +66,21 @@ const rightSlots = computed(() => {
name: 'language-toggle', name: 'language-toggle',
}); });
} }
if (preferences.widget.fullscreen) { if (preferences.widget.timezone) {
list.push({ list.push({
index: REFERENCE_VALUE + 40, index: REFERENCE_VALUE + 40,
name: 'timezone',
});
}
if (preferences.widget.fullscreen) {
list.push({
index: REFERENCE_VALUE + 50,
name: 'fullscreen', name: 'fullscreen',
}); });
} }
if (preferences.widget.notification) { if (preferences.widget.notification) {
list.push({ list.push({
index: REFERENCE_VALUE + 50, index: REFERENCE_VALUE + 60,
name: 'notification', name: 'notification',
}); });
} }

View File

@ -302,6 +302,9 @@ const headerSlots = computed(() => {
<template #notification> <template #notification>
<slot name="notification"></slot> <slot name="notification"></slot>
</template> </template>
<template #timezone>
<slot name="timezone"></slot>
</template>
<template v-for="item in headerSlots" #[item]> <template v-for="item in headerSlots" #[item]>
<slot :name="item"></slot> <slot :name="item"></slot>
</template> </template>

View File

@ -8,4 +8,5 @@ export * from './lock-screen';
export * from './notification'; export * from './notification';
export * from './preferences'; export * from './preferences';
export * from './theme-toggle'; export * from './theme-toggle';
export * from './timezone';
export * from './user-dropdown'; export * from './user-dropdown';

View File

@ -0,0 +1 @@
export { default as TimezoneButton } from './timezone-button.vue';

View File

@ -0,0 +1,89 @@
<script setup lang="ts">
import type { ExtendedModalApi } from '@vben-core/popup-ui';
import { ref, unref, watch } from 'vue';
import { createIconifyIcon } from '@vben/icons';
import { $t } from '@vben/locales';
import { useVbenModal } from '@vben-core/popup-ui';
import {
RadioGroup,
RadioGroupItem,
VbenIconButton,
} from '@vben-core/shadcn-ui';
interface Props {
timezoneOptions: string[];
okHandler?: (
timezone: string,
modalApi: ExtendedModalApi,
) => Promise<void> | void;
timezone?: string;
}
interface Listener {
change: (timezone: string) => void;
}
const props = defineProps<Props>();
const emit = defineEmits<Listener>();
const TimezoneIcon = createIconifyIcon('fluent-mdl2:world-clock');
const [Modal, modalApi] = useVbenModal({
fullscreenButton: false,
onConfirm: () => {
props.okHandler?.(unref(timezoneValue), modalApi);
},
});
const handleClick = () => {
modalApi.open();
};
const timezoneValue = ref(props.timezone);
watch(
() => props.timezone,
(newTimezone) => {
timezoneValue.value = newTimezone;
},
);
const handleClickItem = (timezone: string) => {
timezoneValue.value = timezone;
emit('change', timezone);
};
</script>
<template>
<div>
<VbenIconButton
:tooltip="$t('ui.widgets.timezone.setTimezone')"
class="hover:animate-[shrink_0.3s_ease-in-out]"
@click="handleClick"
>
<TimezoneIcon class="text-foreground size-4" />
</VbenIconButton>
<Modal :title="$t('ui.widgets.timezone.setTimezone')">
<div class="timezone-container">
<RadioGroup v-model="timezoneValue" class="flex flex-col gap-2">
<div
class="flex cursor-pointer items-center gap-2"
v-for="item in props.timezoneOptions"
:key="`container${item}`"
@click="handleClickItem(item)"
>
<RadioGroupItem :id="item" :value="item" />
<label class="cursor-pointer">{{ item }}</label>
</div>
</RadioGroup>
</div>
</Modal>
</div>
</template>
<style scoped>
.container {
padding-left: 20px;
}
</style>

View File

@ -102,6 +102,10 @@
"errorPasswordTip": "Password error, please re-enter", "errorPasswordTip": "Password error, please re-enter",
"backToLogin": "Back to login", "backToLogin": "Back to login",
"entry": "Enter the system" "entry": "Enter the system"
},
"timezone": {
"setTimezone": "Set Timezone",
"setSuccess": "Timezone set successfully"
} }
} }
} }

View File

@ -102,6 +102,10 @@
"errorPasswordTip": "密码错误,请重新输入", "errorPasswordTip": "密码错误,请重新输入",
"backToLogin": "返回登录", "backToLogin": "返回登录",
"entry": "进入系统" "entry": "进入系统"
},
"timezone": {
"setTimezone": "设置时区",
"setSuccess": "时区设置成功"
} }
} }
} }