Skip to content

Commit

Permalink
modify option text
Browse files Browse the repository at this point in the history
  • Loading branch information
mayswind committed Oct 8, 2019
1 parent 3ebee59 commit 9a3dff6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/langs/zh_Hans.txt
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ WebSocket (Security)=WebSocket (安全)
Http and WebSocket would be disabled when accessing AriaNg via Https.=使用 Https 访问 AriaNg 时,Http 和 WebSocket 将被禁用.
POST=POST
GET=GET
Enabled=启用
Disabled=禁用
BitTorrent=BitTorrent
Changes to the settings take effect after refreshing page.=设置将在页面刷新后生效.
Expand Down
1 change: 1 addition & 0 deletions src/langs/zh_Hant.txt
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ WebSocket (Security)=WebSocket (安全)
Http and WebSocket would be disabled when accessing AriaNg via Https.=使用 Https 訪問 AriaNg 時,Http 和 WebSocket 將被停用.
POST=POST
GET=GET
Enabled=啟用
Disabled=停用
BitTorrent=BitTorrent
Changes to the settings take effect after refreshing page.=設定將在頁面重新整理後生效.
Expand Down
1 change: 1 addition & 0 deletions src/scripts/config/defaultLanguage.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@
'Http and WebSocket would be disabled when accessing AriaNg via Https.': 'Http and WebSocket would be disabled when accessing AriaNg via Https.',
'POST': 'POST',
'GET': 'GET',
'Enabled': 'Enabled',
'Disabled': 'Disabled',
'BitTorrent': 'BitTorrent',
'Changes to the settings take effect after refreshing page.': 'Changes to the settings take effect after refreshing page.',
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/controllers/settings-ariang.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
languages: ariaNgLanguages,
titlePreview: getFinalTitle(),
availableTime: ariaNgCommonService.getTimeOptions([1000, 2000, 3000, 5000, 10000, 30000, 60000], true),
trueFalseOptions: [{name: 'True', value: true}, {name: 'False', value: false}],
trueFalseOptions: [{name: 'Enabled', value: true}, {name: 'Disabled', value: false}],
showRpcSecret: false,
isInsecureProtocolDisabled: ariaNgSettingService.isInsecureProtocolDisabled(),
settings: ariaNgSettingService.getAllOptions(),
Expand Down

0 comments on commit 9a3dff6

Please sign in to comment.