Skip to content

Commit

Permalink
translate
Browse files Browse the repository at this point in the history
  • Loading branch information
gyteng committed Aug 19, 2019
1 parent 03865f4 commit 1dd621a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shadowsocks-manager",
"version": "0.33.5",
"version": "0.33.6",
"description": "A shadowsocks manager tool for multi user and traffic control.",
"main": "server.js",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions plugins/webgui/public/translate/ko-KR.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ module.exports = {
'重复新密码': '새 비밀번호 확인',
'确认': '확인',
'我的订单': '나의 결제내역',
'请选择订阅链接类型:': '배포 링크 유형을 선택하십시오: ',
'将域名转换为IP地址': '도메인 이름을 IP 주소로 변환',
'显示流量信息': '트래픽 정보 표시',
'复制链接': '링크복사',
'更换链接': '링크변경',

// /home/login
'找回密码': '비밀번호 재설정',
Expand Down
6 changes: 3 additions & 3 deletions plugins/webgui/public/views/dialog/subscribe.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<md-dialog-content>
<div class="md-dialog-content">
<div style="word-wrap: break-word; color: #666; font-size: 0.8em; max-width: 480px; height: 55px;">{{ publicInfo.subscribeLink }}</div>
<div style="margin-top: 15px; margin-bottom: 15px;">请选择订阅链接类型:</div>
<div style="margin-top: 15px; margin-bottom: 15px;" translate>请选择订阅链接类型:</div>
<md-radio-group ng-model="publicInfo.linkType" layout="row" layout-wrap layout-align="start center" ng-change="{{ changeLinkType() }}">
<md-radio-button ng-repeat="type in publicInfo.types" value="{{ type }}">
<div style="margin: 3px;">{{ type }}</div>
</md-radio-button>
</md-radio-group>
<md-checkbox style="margin-top: 15px;" ng-model="publicInfo.ip" ng-change="changeLinkType()" ng-true-value="1" ng-false-value="0">将域名转换为IP地址</md-checkbox>
<md-checkbox ng-model="publicInfo.flow" ng-change="changeLinkType()" ng-true-value="1" ng-false-value="0">显示流量信息</md-checkbox>
<md-checkbox style="margin-top: 15px;" ng-model="publicInfo.ip" ng-change="changeLinkType()" ng-true-value="1" ng-false-value="0">{{ '将域名转换为IP地址' | translate }}</md-checkbox>
<md-checkbox ng-model="publicInfo.flow" ng-change="changeLinkType()" ng-true-value="1" ng-false-value="0">{{ '显示流量信息' | translate }}</md-checkbox>
<div layout="row" layout-align="start center" style="margin-top: 25px;">
<div>
<md-button class="md-primary" ngclipboard data-clipboard-text="{{ publicInfo.subscribeLink }}" ngclipboard-success="toast(e);">
Expand Down
2 changes: 1 addition & 1 deletion plugins/webgui/views/serviceworker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const ONLINE_CACHE_NAME = '2019-08-16 22:20:11 <%= serviceWorkerTime%>';
const ONLINE_CACHE_NAME = '2019-08-19 21:15:36 <%= serviceWorkerTime%>';
const isSWOpen = JSON.parse('<%= serviceWorker%>');

const emptyCacheUrl = [];
Expand Down

0 comments on commit 1dd621a

Please sign in to comment.