mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 06:46:38 +00:00
Merge branch 'main' into next
This commit is contained in:
commit
f1cbd10ca8
@ -4,9 +4,9 @@ import { useApp } from '@nocobase/client';
|
||||
|
||||
export function useT() {
|
||||
const app = useApp();
|
||||
return (str: string) => app.i18n.t(str, { ns: pkg.name });
|
||||
return (str: string) => app.i18n.t(str, { ns: [pkg.name, 'client'] });
|
||||
}
|
||||
|
||||
export function tStr(key: string) {
|
||||
return `{{t('${key}', { ns: '${pkg.name}', nsMode: 'fallback' })}}`;
|
||||
return `{{t(${JSON.stringify(key)}, { ns: ['${pkg.name}', 'client'], nsMode: 'fallback' })}}`;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user