()
| 141 | |
| 142 | // Only for first install page |
| 143 | const getInitLanguage = (): string => { |
| 144 | const curLang = String(i18n.global.locale).toLowerCase(); |
| 145 | const lang = searchSupportLanguage(curLang); |
| 146 | if (lang !== "zh_cn" && lang !== "zh_tw") { |
| 147 | return "en_us"; |
| 148 | } |
| 149 | return lang; |
| 150 | }; |
| 151 | |
| 152 | const isCN = () => { |
| 153 | return ( |
nothing calls this directly
no test coverage detected