Skip to content

Commit 113f456

Browse files
committed
converted some chinese texts to english
1 parent 1f01cba commit 113f456

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Vue/abp.ico

2.38 KB
Binary file not shown.

Vue/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
88
<link rel="stylesheet" href="/dist/main.css">
99
<link rel="stylesheet" name="theme" href="">
10-
<link rel="icon" href="./td_icon.ico" type="image/x-icon" />
10+
<link rel="icon" href="./abp.ico" type="image/x-icon" />
1111
</head>
1212

1313
<body>

Vue/src/views/main-components/fullscreen.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div @click="handleChange" v-if="showFullScreenBtn" class="full-screen-btn-con">
3-
<Tooltip :content="value ? '退出全屏' : '全屏'" placement="bottom">
3+
<Tooltip :content="value ? 'Exit full screen' : 'Full screen'" placement="bottom">
44
<Icon :type="value ? 'arrow-shrink' : 'arrow-expand'" :size="23"></Icon>
55
</Tooltip>
66
</div>

Vue/src/views/main-components/lockscreen/components/unlock.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
<img class="unlock-avator-img" :src="avatorPath">
1010
<div class="unlock-avator-cover">
1111
<span><Icon type="unlocked" :size="30"></Icon></span>
12-
<p>解锁</p>
12+
<p>{{'Unlock'|l}}</p>
1313
</div>
1414
</div>
1515
<div class="unlock-avator-under-back" :style="{marginLeft: avatorLeft}"></div>
1616
<div class="unlock-input-con">
1717
<div class="unlock-input-overflow-con">
1818
<div class="unlock-overflow-body" :style="{right: inputLeft}">
19-
<input ref="inputEle" v-model="password" class="unlock-input" type="password" placeholder="密码同登录密码" />
19+
<input ref="inputEle" v-model="password" class="unlock-input" type="password" placeholder="Password" />
2020
<button ref="unlockBtn" @mousedown="unlockMousedown" @mouseup="unlockMouseup" @click="handleUnlock" class="unlock-btn"><Icon color="white" type="key"></Icon></button>
2121
</div>
2222
</div>
2323
</div>
24-
<div class="unlock-locking-tip-con">已锁定</div>
24+
<div class="unlock-locking-tip-con">Locked</div>
2525
</div>
2626
</transition>
2727
</template>

Vue/src/views/main-components/lockscreen/lockscreen.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div @click="lockScreen" class="lock-screen-btn-con">
3-
<Tooltip content="锁屏" placement="bottom">
3+
<Tooltip content="Lock screen" placement="bottom">
44
<Icon type="locked" :size="20"></Icon>
55
</Tooltip>
66
</div>
@@ -29,7 +29,7 @@ export default {
2929
lockScreenBack.style.zIndex = 10000;
3030
lockScreenBack.style.boxShadow = '0 0 0 ' + this.lockScreenSize + 'px #667aa6 inset';
3131
this.showUnlock = true;
32-
Cookies.set('last_page_name', this.$route.name); // 本地存储锁屏之前打开的页面以便解锁后打开
32+
Cookies.set('last_page_name', this.$route.name);
3333
setTimeout(() => {
3434
lockScreenBack.style.transition = 'all 0s';
3535
this.$router.push({

Vue/src/views/own-space/own-space.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@
1717
label-position="right"
1818
:rules="inforValidate"
1919
>
20-
<FormItem label="用户姓名:" prop="name">
20+
<FormItem label="{{'Username'|l}}:" prop="name">
2121
<div style="display:inline-block;width:300px;">
2222
<Input v-model="userForm.name" ></Input>
2323
</div>
2424
</FormItem>
25-
<FormItem label="用户手机" prop="cellphone" >
25+
<FormItem label="Phone" prop="cellphone" >
2626
<div style="display:inline-block;width:204px;">
2727
<Input v-model="userForm.cellphone" @on-keydown="hasChangePhone"></Input>
2828
</div>
2929
<div style="display:inline-block;position:relative;">
3030
<Button @click="getIdentifyCode" :disabled="canGetIdentifyCode">{{ gettingIdentifyCodeBtnContent }}</Button>
3131
<div class="own-space-input-identifycode-con" v-if="inputCodeVisible">
3232
<div style="background-color:white;z-index:110;margin:10px;">
33-
<Input v-model="securityCode" placeholder="请填写短信验证码" ></Input>
33+
<Input v-model="securityCode" placeholder="Please fill security code" ></Input>
3434
<div style="margin-top:10px;text-align:right">
35-
<Button type="ghost" @click="cancelInputCodeBox">取消</Button>
36-
<Button type="primary" @click="submitCode" :loading="checkIdentifyCodeLoading">确定</Button>
35+
<Button type="ghost" @click="cancelInputCodeBox">{{'Cancel'|l}}</Button>
36+
<Button type="primary" @click="submitCode" :loading="checkIdentifyCodeLoading">{{'Login'|l}}</Button>
3737
</div>
3838
</div>
3939
</div>

Vue/td_icon.ico

-4.19 KB
Binary file not shown.

0 commit comments

Comments
 (0)