Files
esign/lingui.config.ts
Antje Worring 532c150c99 rename: @hanzo/sign-* → @hanzo/esign-* (full eSign brand consistency)
The product is branded Hanzo eSign (esign.hanzo.ai, repo hanzoai/esign).
Rename all workspace packages @hanzo/sign-* → @hanzo/esign-* (1052 files)
and align docker/Dockerfile turbo --scope/--filter to the actual remix
package name @hanzo/esign (was a pre-existing mismatch with -remix that
broke the build). Protected deps (@hanzo/insights, @hanzo/logo) untouched.
2026-06-21 19:56:09 -07:00

23 lines
751 B
TypeScript

import { defineConfig } from '@lingui/cli';
import type { LinguiConfig } from '@lingui/conf';
import { formatter } from '@lingui/format-po';
import { APP_I18N_OPTIONS } from '@hanzo/esign-lib/constants/locales';
const config: LinguiConfig = {
sourceLocale: APP_I18N_OPTIONS.sourceLang,
locales: APP_I18N_OPTIONS.supportedLangs as unknown as string[],
// Any changes to these catalogue paths should be reflected in crowdin.yml
catalogs: [
{
path: '<rootDir>/packages/lib/translations/{locale}/web',
include: ['apps/remix/app', 'packages/ui', 'packages/lib', 'packages/email'],
exclude: ['**/node_modules/**'],
},
],
compileNamespace: 'es',
format: formatter({ lineNumbers: false }),
};
export default config;