Merge branch 'main' into next
Some checks are pending
Build Docker Image / build-and-push (push) Waiting to run
Build Pro Image / build-and-push (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase FrontEnd Test / frontend-test (18) (push) Waiting to run

This commit is contained in:
GitHub Actions Bot 2024-07-29 09:51:43 +00:00
commit 04fe973609
2 changed files with 7 additions and 7 deletions

View File

@ -1,12 +1,12 @@
import { useTranslation } from 'react-i18next';
// @ts-ignore
import pkg from './../../package.json';
import { useApp } from '@nocobase/client';
export function usePluginTranslation() {
return useTranslation([pkg.name, 'client'], { nsMode: 'fallback' });
export function useT() {
const app = useApp();
return (str: string) => app.i18n.t(str, { ns: pkg.name });
}
export function generatePluginTranslationTemplate(key: string) {
return `{{t('${key}', { ns: ['${pkg.name}', 'client'], nsMode: 'fallback' })}}`;
export function tStr(key: string) {
return `{{t('${key}', { ns: '${pkg.name}', nsMode: 'fallback' })}}`;
}

View File

@ -37,7 +37,7 @@ i18n
lng: 'en-US',
// debug: true,
defaultNS: 'client',
// fallbackNS: 'client',
fallbackNS: 'client',
// backend: {
// // for all available options read the backend's repository readme file
// loadPath: '/api/locales/{{lng}}/{{ns}}.json',