mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
fix: improve i18n tStr()
(#4966)
This commit is contained in:
parent
80182dc156
commit
9adfd4cbab
@ -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…
x
Reference in New Issue
Block a user