mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
24 lines
720 B
TypeScript
24 lines
720 B
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
// @ts-ignore
|
|
import pkg from './../../package.json';
|
|
import { useApp } from '@nocobase/client';
|
|
|
|
export const namespace = pkg.name;
|
|
|
|
export function useT(): any {
|
|
const app = useApp();
|
|
return (str: string, options?: any) => app.i18n.t(str, { ns: [pkg.name, 'client'], ...options });
|
|
}
|
|
|
|
export function tStr(key: string) {
|
|
return `{{t(${JSON.stringify(key)}, { ns: ['${pkg.name}', 'client'], nsMode: 'fallback' })}}`;
|
|
}
|