mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Removed pseudo language from selection
This commit is contained in:
parent
1c36dd4366
commit
792328130e
@ -7,7 +7,7 @@ import { api } from '../App';
|
||||
import { useLocalState } from '../states/LocalState';
|
||||
|
||||
// Definitions
|
||||
export type Locales = keyof typeof languages;
|
||||
export type Locales = keyof typeof languages | 'pseudo-LOCALE';
|
||||
|
||||
export const languages: Record<string, string> = {
|
||||
cs: t`Czech`,
|
||||
@ -38,8 +38,7 @@ export const languages: Record<string, string> = {
|
||||
tr: t`Turkish`,
|
||||
vi: t`Vietnamese`,
|
||||
'zh-hans': t`Chinese (Simplified)`,
|
||||
'zh-hant': t`Chinese (Traditional)`,
|
||||
'pseudo-LOCALE': t`Pseudo Locale`
|
||||
'zh-hant': t`Chinese (Traditional)`
|
||||
};
|
||||
|
||||
export function LanguageContext({ children }: { children: JSX.Element }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user