mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 08:26:21 +00: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…
Reference in New Issue
Block a user