12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { getI18n } from '/@/setup/i18n';
- import projectSetting from '/@/settings/projectSetting';
- export function useI18n(namespace?: string) {
- function getKey(key: string) {
- if (!namespace) {
- return key;
- }
- if (key.startsWith(namespace)) {
- return key;
- }
- return `${namespace}.${key}`;
- }
- const normalFn = {
- t: (key: string) => {
- return getKey(key);
- },
- };
- if (!projectSetting.locale.show || !getI18n()) {
- return normalFn;
- }
- const { t, ...methods } = getI18n().global;
- return {
- ...methods,
- t: (key: string, ...arg: any) => {
- if (!key) return '';
- return t(getKey(key), ...(arg as Parameters<typeof t>));
- },
- };
- }
- // Why write this function?
- // Mainly to configure the vscode i18nn ally plugin. This function is only used for routing and menus. Please use useI18n for other places
- // 为什么要编写此函数?
- // 主要用于配合vscode i18nn ally插件。此功能仅用于路由和菜单。请在其他地方使用useIs18n
- export const t = (key: string) => key;
|