mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 10:50:14 +01:00
feat(localization): add Korean language support (#1005)
* feat(localization): add Korean language support * feat(Nav): add Korean language option to General Settings (#20) * feat(localization): add Korean language support * refactor(localization): remove unused translations in Korean language file * feat(localization): update Korean translations * refactor(localization): update Korean translations in Ko.tsx
This commit is contained in:
parent
7abc5bc670
commit
6c16e910e7
4 changed files with 244 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ import French from './languages/Fr';
|
|||
import Russian from './languages/Ru';
|
||||
import Japanese from './languages/Jp';
|
||||
import Swedish from './languages/Sv';
|
||||
import Korean from './languages/Ko';
|
||||
// === import additional language files here === //
|
||||
|
||||
const languageMap: { [key: string]: unknown } = {
|
||||
|
|
@ -23,6 +24,7 @@ const languageMap: { [key: string]: unknown } = {
|
|||
'ru-RU': Russian,
|
||||
'ja-JP': Japanese,
|
||||
'sv-SE': Swedish,
|
||||
'ko-KR': Korean,
|
||||
// Add additional language mappings here
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue