Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo for Simplified Chinese and Traditional Chinese. #20

Merged
merged 4 commits into from
Apr 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"priceChangeInfo": "- 价格<1>每天变动两次。</1>请确保记录下它们(这些数据将保存在你的设备上)。",
"guaranteedMinInfo": "- <1>保底价格</1>是指在本周的某个时间段里,你一定能遇到此价格或更高价格",
"Changelog": "更新日志",
"changelog1.1": "1.1: 清除数据按钮! 谨慎使用!",
"changelog1.1": "1.1: 清除数据按钮!谨慎使用!",
"changelog1.2a": "1.2a: 修复模型范围",
"changelog1.3": "1.3: 动画修复。新的图标(<1>@mtaylor76</1>)。新的购买价格标记(<3>@pudquick</3>)!",
"changelog1.4": "1.4: 保底价格(<1>@capoferro & @nanoNago</1>)。本地化支持(<3>@mtaylor76</3>。法语本地化(<5>@Ekaekale</5>)。新的货币图标(<7>@alyphen</7>)。BUG反馈(<9>@FoxFireX</9>)。",
"changelog1.4": "1.4: 保底价格(<1>@capoferro & @nanoNago</1>)。本地化支持(<3>@mtaylor76</3>。法语本地化(<5>@Ekaekale</5>)。新的货币图标(<7>@alyphen</7>)。BUG反馈(<9>@FoxFireX</9>)。",
"About": "关于",
"about1": "没有<2>@_Ninji</2>的努力,这一切都不可能实现。",
"about2": "我从<2>mikebryant</2>的工作得到了灵感。",
"about3": "最后但并非不重要的一点,感谢我的兄弟帮忙设计,他是一名游戏开发者! 在Twitter上关注他:<2>@Consalv0</2>。",
"about3": "最后但并非不重要的一点,感谢我的兄弟帮忙设计,他是一名游戏开发者!在Twitter上关注他:<2>@Consalv0</2>。",
"about4": "发现一个BUG?在<2>这里</2>反馈。"
}
6 changes: 3 additions & 3 deletions locales/zh-TW/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"priceChangeInfo": "- 價格<1>每天變動兩次。</1>請確保記錄下它們(這些數據將保存在你的設備上)。",
"guaranteedMinInfo": "- <1>保證價格</1>是指在本週的某個時間段裏,你一定能遇到此價格或更高價格",
"Changelog": "更新日誌",
"changelog1.1": "1.1: 清除資料按鈕! 謹慎使用!",
"changelog1.1": "1.1: 清除資料按鈕!謹慎使用!",
"changelog1.2a": "1.2a: 修復模型範圍",
"changelog1.3": "1.3: 動畫修復。新的圖標(<1>@mtaylor76</1>)。新的購買價格標記(<3>@pudquick</3>)!",
"changelog1.4": "1.4: 保證價格(<1>@capoferro & @nanoNago</1>)。本地化支持(<3>@mtaylor76</3>。法語本地化(<5>@Ekaekale</5>)。新的貨幣圖標(<7>@alyphen</7>)。BUG反饋(<9>@FoxFireX</9>)。",
"changelog1.4": "1.4: 保證價格(<1>@capoferro & @nanoNago</1>)。本地化支持(<3>@mtaylor76</3>。法語本地化(<5>@Ekaekale</5>)。新的貨幣圖標(<7>@alyphen</7>)。BUG反饋(<9>@FoxFireX</9>)。",
"About": "關於",
"about1": "沒有<2>@_Ninji</2>的努力,這一切都不可能實現。",
"about2": "我從<2>mikebryant</2>的工作得到了靈感。",
"about3": "最後但並非不重要的一點,感謝我的兄弟幫忙設計,他是一名遊戲開發者! 在Twitter上關注他:<2>@Consalv0</2>。",
"about3": "最後但並非不重要的一點,感謝我的兄弟幫忙設計,他是一名遊戲開發者!在Twitter上關注他:<2>@Consalv0</2>。",
"about4": "發現一個BUG?在<2>這裏</2>反饋。"
}
9 changes: 6 additions & 3 deletions src/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import translationEn from "../locales/en/translation.json";
import translationEs from "../locales/es/translation.json";
import translationDe from "../locales/de/translation.json";
import translationFr from "../locales/fr/translation.json";
import translationZh from "../locales/zh/translation.json";
import translationZhCN from "../locales/zh-CN/translation.json";
import translationZhTW from "../locales/zh-TW/translation.json";

i18n
Expand Down Expand Up @@ -51,8 +51,11 @@ i18n
fr: {
translations: translationFr,
},
zh: {
translations: translationZh,
"zh": {
translations: translationZhCN,
},
"zh-CN": {
translations: translationZhCN,
},
"zh-TW": {
translations: translationZhTW,
Expand Down