From 6fa9e700c873d53363256feca03c0c4f3cf7de05 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 20 Jan 2021 23:20:06 -0800 Subject: [PATCH] chore: Flip chinese label in language select --- shared/i18n/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/i18n/index.js b/shared/i18n/index.js index f3fa744db..03fad40e9 100644 --- a/shared/i18n/index.js +++ b/shared/i18n/index.js @@ -36,7 +36,7 @@ export const initI18n = () => { export const languageOptions = [ { label: "English (US)", value: "en_US" }, - { label: "Chinese, Simplified (简体中文)", value: "zh_CN" }, + { label: "简体中文 (Chinese, Simplified)", value: "zh_CN" }, { label: "Deutsch (Deutschland)", value: "de_DE" }, { label: "Español (España)", value: "es_ES" }, { label: "Français (France)", value: "fr_FR" },