24 lines
487 B
TypeScript
24 lines
487 B
TypeScript
// 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;
|