Skip to content
This repository has been archived by the owner on Oct 2, 2022. It is now read-only.

Commit

Permalink
change log & change feedback i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
Jirapo committed May 3, 2017
1 parent fb7abd3 commit 92a6eb5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.7.1 / 2017-05-03
==================
* 增加反馈渠道
* 修复 `nowa` 软链 bug, 增加了权限
* 修复 tray 无法与项目列表对应的bug


1.7.0 / 2017-04-27
==================
* 界面优化
Expand Down
4 changes: 2 additions & 2 deletions src/language/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ module.exports = {
'foot.set': 'Setting',
// 'foot.import': 'Import Project',
'foot.add': 'New Project',
'foot.feedback': 'Issue',
'foot.feedback': 'Feedback',
'foot.help': 'Help',
'foot.dingding': 'DingDing',
'foot.issue': 'Issue',

'msg.installSuccess': 'Installed Successfully!',
'msg.installFail': 'Installed Failed!',
Expand Down
4 changes: 2 additions & 2 deletions src/language/zh.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ module.exports = {
'foot.set': '工具设置',
// 'foot.import': '导入项目',
'foot.add': '新建项目',
'foot.feedback': 'Issue',
'foot.feedback': '反馈',
'foot.help': '帮助',
'foot.dingding': '反馈',
'foot.issue': 'Issue',

'msg.installSuccess': '安装成功!',
'msg.installFail': '安装失败!',
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/routes/MainPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ const MainPage = ({ showPage, dispatch, showSideMask }) => {
onClick={() => dispatch({ type: 'layout/showPage', payload: { toPage: 3 } })}
/>
</Tooltip>
<Tooltip placement="top" title={i18n('foot.feedback')} >
<Tooltip placement="top" title={i18n('foot.issue')} >
<Button type="default" icon="github" shape="circle"
onClick={() => shell.openExternal('https://github.com/nowa-webpack/nowa-gui/issues/new')}
/>
</Tooltip>
<Tooltip placement="top" title={i18n('foot.dingding')} >
<Tooltip placement="top" title={i18n('foot.feedback')} >
<Button type="default" icon="dingding" shape="circle"
onClick={() => dispatch({ type: 'layout/changeStatus', payload: { showFeedBackModal: true } })}
/>
Expand Down

0 comments on commit 92a6eb5

Please sign in to comment.