样式生成器添加字体选择提示

This commit is contained in:
John Smith 2023-10-15 19:29:03 +08:00
parent bb23e2e5dc
commit fafb3bf107
5 changed files with 13 additions and 9 deletions

View File

@ -42,7 +42,6 @@
**注意事项:** **注意事项:**
* 本地使用时不要关闭blivechat.exe那个黑框否则不能继续获取弹幕 * 本地使用时不要关闭blivechat.exe那个黑框否则不能继续获取弹幕
* 样式生成器没有列出所有本地字体,但是可以手动输入本地字体
* 如果需要使用翻译功能,建议看[配置官方翻译接口教程](https://github.com/xfgryujk/blivechat/wiki/%E9%85%8D%E7%BD%AE%E5%AE%98%E6%96%B9%E7%BF%BB%E8%AF%91%E6%8E%A5%E5%8F%A3) * 如果需要使用翻译功能,建议看[配置官方翻译接口教程](https://github.com/xfgryujk/blivechat/wiki/%E9%85%8D%E7%BD%AE%E5%AE%98%E6%96%B9%E7%BF%BB%E8%AF%91%E6%8E%A5%E5%8F%A3)
### 二、公共服务器 ### 二、公共服务器

View File

@ -87,6 +87,7 @@ export default {
userNames: 'User Names', userNames: 'User Names',
showUserNames: 'Show user names', showUserNames: 'Show user names',
font: 'Font', font: 'Font',
fontSelectTip: 'You can also input local font name',
fontSize: 'Font size', fontSize: 'Font size',
lineHeight: 'Line height (0 for default)', lineHeight: 'Line height (0 for default)',
normalColor: 'Normal color', normalColor: 'Normal color',

View File

@ -87,6 +87,7 @@ export default {
userNames: 'ユーザー名', userNames: 'ユーザー名',
showUserNames: 'ユーザー名を表示する', showUserNames: 'ユーザー名を表示する',
font: 'フォント', font: 'フォント',
fontSelectTip: 'ローカルフォント名も入力することができます',
fontSize: 'フォントサイズ', fontSize: 'フォントサイズ',
lineHeight: '行の高さ0はデフォルト', lineHeight: '行の高さ0はデフォルト',
normalColor: 'ノーマルの色', normalColor: 'ノーマルの色',

View File

@ -87,6 +87,7 @@ export default {
userNames: '用户名', userNames: '用户名',
showUserNames: '显示用户名', showUserNames: '显示用户名',
font: '字体', font: '字体',
fontSelectTip: '你也可以输入本地字体名',
fontSize: '字体尺寸', fontSize: '字体尺寸',
lineHeight: '行高0为默认', lineHeight: '行高0为默认',
normalColor: '普通颜色', normalColor: '普通颜色',

View File

@ -1,12 +1,14 @@
<template> <template>
<el-select :value="value" @input="val => $emit('input', val)" filterable allow-create default-first-option> <el-tooltip :content="$t('stylegen.fontSelectTip')">
<el-option-group> <el-select :value="value" @input="val => $emit('input', val)" filterable allow-create default-first-option>
<el-option v-for="font in LOCAL_FONTS" :key="font" :value="font"></el-option> <el-option-group>
</el-option-group> <el-option v-for="font in LOCAL_FONTS" :key="font" :value="font"></el-option>
<el-option-group> </el-option-group>
<el-option v-for="font in NETWORK_FONTS" :key="font" :value="font"></el-option> <el-option-group>
</el-option-group> <el-option v-for="font in NETWORK_FONTS" :key="font" :value="font"></el-option>
</el-select> </el-option-group>
</el-select>
</el-tooltip>
</template> </template>
<script> <script>