Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta 1 dev #1262

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
=lang: fix Ilanguage
  • Loading branch information
lemagnifick committed Jul 16, 2020
commit 5e596f0f52cd51828865325e9712345d1335a15f
12 changes: 3 additions & 9 deletions packages/common/src/interfaces/ILanguage.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
// TODO: add other locales
type ILanguage = 'he-IL' | 'en-US' | 'ru-RU' | 'bg-BG' | 'es-ES';
type ILanguage = 'en-US' | 'fr-FR';

export default ILanguage;

export enum LanguageCodesEnum {
ENGLISH = 'en-US',
HEBREW = 'he-IL',
RUSSIAN = 'ru-RU',
BULGARIAN = 'bg-BG',
SPANISH = 'es-ES',
FRENCH = 'fr-FR',
}

export enum LanguagesEnum {
ENGLISH = 'ENGLISH',
HEBREW = 'HEBREW',
RUSSIAN = 'RUSSIAN',
BULGARIAN = 'BULGARIAN',
SPANISH = 'SPANISH',
FRENCH = 'FRANCAIS',
}