Skip to content

Commit

Permalink
feat : 제공언어를 한국어, 영어로 제한
Browse files Browse the repository at this point in the history
- 총 4종류 언어중, 관리가 되고있는 2종류 언어만 제공하도록 수정
  • Loading branch information
Tnks2U committed Jun 28, 2022
1 parent 75fc491 commit f191f79
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/renderer/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,13 @@ class Header extends Component<IProps, IState> {
];
}

// noti : 가지고 있는 다국어 종류는 4종류이지만, 운영빌드에서는 관리중인 2종류만 제공
get languageList(): DropDownItemPair[] {
return [
[RendererUtils.getLang('ko'), 'ko'],
[RendererUtils.getLang('en'), 'en'],
[RendererUtils.getLang('jp'), 'jp'],
[RendererUtils.getLang('vn'), 'vn'],
// [RendererUtils.getLang('jp'), 'jp'],
// [RendererUtils.getLang('vn'), 'vn'],
];
}

Expand Down

0 comments on commit f191f79

Please sign in to comment.