parent
f7892d7f2f
commit
7030e784e9
2
frontend/.gitignore
vendored
2
frontend/.gitignore
vendored
@ -24,7 +24,7 @@
|
||||
.env.*.local
|
||||
|
||||
# translation files
|
||||
src/__generated__/**/*.ts
|
||||
src/__generated__/locales/*.ts
|
||||
xliff/*.xlf
|
||||
|
||||
storybook-static
|
||||
|
23
frontend/src/__generated__/locale-codes.ts
generated
Normal file
23
frontend/src/__generated__/locale-codes.ts
generated
Normal file
@ -0,0 +1,23 @@
|
||||
// Do not modify this file by hand!
|
||||
// Re-generate this file by running lit-localize.
|
||||
|
||||
/**
|
||||
* The locale code that templates in this source code are written in.
|
||||
*/
|
||||
export const sourceLocale = `en`;
|
||||
|
||||
/**
|
||||
* The other locale codes that this application is localized into. Sorted
|
||||
* lexicographically.
|
||||
*/
|
||||
export const targetLocales = [
|
||||
`en-US`,
|
||||
] as const;
|
||||
|
||||
/**
|
||||
* All valid project locale codes. Sorted lexicographically.
|
||||
*/
|
||||
export const allLocales = [
|
||||
`en`,
|
||||
`en-US`,
|
||||
] as const;
|
Loading…
Reference in New Issue
Block a user