Japanese localization (#2003)
* add japanese to list of languages * add japanese translations * change `jp` to `ja` * minor changes to Japanese translation * minor changes to Japanese translation * update japanese strings with feedback * Update languages.ts * Extract translations * Gitignore new compiled file * allow switching to japanese --------- Co-authored-by: Jake Gold <jake@blueskyweb.xyz> Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
parent
27561ae79f
commit
90647fe7cf
8 changed files with 2430 additions and 15 deletions
|
@ -7,6 +7,7 @@ interface Language {
|
|||
export enum AppLanguage {
|
||||
en = 'en',
|
||||
hi = 'hi',
|
||||
ja = 'ja',
|
||||
}
|
||||
|
||||
interface AppLanguageConfig {
|
||||
|
@ -17,6 +18,7 @@ interface AppLanguageConfig {
|
|||
export const APP_LANGUAGES: AppLanguageConfig[] = [
|
||||
{code2: AppLanguage.en, name: 'English'},
|
||||
{code2: AppLanguage.hi, name: 'हिंदी'},
|
||||
{code2: AppLanguage.ja, name: '日本語'},
|
||||
]
|
||||
|
||||
export const LANGUAGES: Language[] = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue