replace ui text to Chinese

This commit is contained in:
bossgeekgo
2024-02-21 01:20:53 +08:00
parent 91c2d2aa09
commit 331ae81e50
4 changed files with 13 additions and 13 deletions

View File

@@ -7,7 +7,7 @@
:show-close="false"
>
<template v-if="!copiedDependenciesStatus.puppeteerExecutableAvailable">
<div>Downloading Dedicate Browser</div>
<div>正在下载核心组件</div>
<el-progress :percentage="browserDownloadPercentage" :format="(n) => `${n.toFixed(1)}%`" />
</template>
</el-dialog>

View File

@@ -2,7 +2,7 @@
<div class="form-wrap">
<el-form ref="formRef" :model="formContent" label-position="top" :rules="formRules">
<el-form-item
label="BossZhipin cookies (copy with EditThisCookie Extension from a window which has been logined)"
label="BOSS直聘 Cookie 使用EditThisCookie扩展程序从你已登录过BOSS直聘的浏览器复制"
prop="bossZhipinCookies"
>
<el-input
@@ -11,10 +11,10 @@
type="textarea"
/>
</el-form-item>
<el-form-item label="Dingtalk robot access token" prop="dingtalkRobotAccessToken">
<el-form-item label="钉钉机器人 AccessToken" prop="dingtalkRobotAccessToken">
<el-input v-model="formContent.dingtalkRobotAccessToken" />
</el-form-item>
<el-form-item label="Your Expect Companies (separate with comma)" prop="expectCompanies">
<el-form-item label="期望公司(以逗号分隔)" prop="expectCompanies">
<el-input
v-model="formContent.expectCompanies"
:autosize="{ minRows: 4 }"
@@ -23,8 +23,8 @@
/>
</el-form-item>
<el-form-item class="last-form-item">
<el-button @click="handleSave">Just save the configuration</el-button>
<el-button type="primary" @click="handleSubmit"> I'm ready, geekgeekgo! </el-button>
<el-button @click="handleSave">仅保存配置</el-button>
<el-button type="primary" @click="handleSubmit"> 保存配置并开始求职 </el-button>
</el-form-item>
</el-form>
</div>

View File

@@ -1,12 +1,12 @@
<template>
<div class="geek-auto-start-chat-with-boss__running-status">
<article>
<h1>Hi buddy!</h1>
<p>I'm finding your expected job and will start a chat with recruiter.</p>
<p>You can view the positions you've chatted with in BossZhipin App on your cellphone.</p>
<p>Good luck to you!</p>
<h1>👋 BOSS炸弹正在运行</h1>
<p>💬 正在为你开聊BOSS请静候佳音</p>
<p>📱 你可以在<b>手机</b> / <b>平板电脑</b>使用BOSS直聘App与为你开聊的BOSS聊天</p>
<p>🍀 祝你求职顺利</p>
</article>
<el-button :disabled="isStopping" @click="handleStop">Stop</el-button>
<el-button :disabled="isStopping" @click="handleStop">停止开聊</el-button>
</div>
</template>

View File

@@ -17,7 +17,7 @@ const routes: Array<RouteRecordRaw> = [
path: 'GeekAutoStartChatWithBoss',
component: () => import('@renderer/page/Configuration/GeekAutoStartChatWithBoss.vue'),
meta: {
title: '"geek auto start chat with boss" configuration'
title: '"BOSS炸弹" 设置'
}
}
]
@@ -30,7 +30,7 @@ const routes: Array<RouteRecordRaw> = [
path: 'runningStatus',
component: () => import('@renderer/page/GeekAutoStartChatWithBoss/RunningStatus.vue'),
meta: {
title: 'geek auto start chat with boss is running!'
title: 'BOSS炸弹 正在为你开聊BOSS'
}
}
]