Skip to content

Commit

Permalink
Delete annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
LokerL committed Oct 12, 2024
1 parent 96cabf4 commit 1e4f7d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
1 change: 0 additions & 1 deletion src/components/configpage/BiliBtn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const bilibili = () => {
</script>

<style scoped>
/* From uiverse.io by @adamgiebl */
button {
font-family: inherit;
font-size: 20px;
Expand Down
13 changes: 2 additions & 11 deletions src/components/configpage/ConfigPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,7 @@
placement="top"
width="auto"
>
<template #default>
<!-- <div>语言: {{ scope.row.content.languageSelect }}</div>
<div>语音: {{ scope.row.content.voiceSelect }}</div>
<div>风格: {{ scope.row.content.voiceStyleSelect }}</div>
<div>角色: {{ scope.row.content.role }}</div>
<div>语速: {{ scope.row.content.speed }}</div>
<div>音调: {{ scope.row.content.pitch }}</div> -->
<template #default>-->
<div>{{ t('configPage.language') }}: {{ scope.row.content.languageSelect }}</div>
<div>{{ t('configPage.voice') }}: {{ scope.row.content.voiceSelect }}</div>
<div>{{ t('configPage.style') }}: {{ scope.row.content.voiceStyleSelect }}</div>
Expand Down Expand Up @@ -202,7 +196,7 @@ import { storeToRefs } from "pinia";
import Donate from "./Donate.vue";
import { useI18n } from 'vue-i18n';
import i18n from "@/assets/i18n/i18n";
const { t } = useI18n();
const { t } = useI18n();
const { ipcRenderer, shell } = require("electron");
Expand All @@ -214,8 +208,6 @@ const { config } = storeToRefs(ttsStore);
const languages = [
// Agrega más idiomas según sea necesario
{ label: 'English', value: 'en' },
{ label: 'Español', value: 'es' },
{ label: '中文', value: 'zh' },
Expand All @@ -227,7 +219,6 @@ const gptModels = [
{ label: 'GPT-3.5 Turbo Instruct', value: 'gpt-3.5-turbo-instruct'},
{ label: 'GPT 4 8k', value: 'gpt-4'},
{ label: 'GPT 4 32k', value: 'gpt-4-32k'},
// Agrega más modelos según sea necesario
];
const saveLanguageConfig = () => {
Expand Down

0 comments on commit 1e4f7d5

Please sign in to comment.