Skip to content

Commit

Permalink
fix: refine set processes and login button text
Browse files Browse the repository at this point in the history
  • Loading branch information
Beadd committed Dec 26, 2024
1 parent 0ec1213 commit 3aff571
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/downloader/process.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="flex justify-center items-center gap-2 cursor-pointer">
{{ $t("downloader.set_maximum_number_of_processes") }}
{{ $t("downloader.set_the_limit_on_the_number_of_download_processes") }}
<!-- Process Selection -->
<div class="join">
<button
Expand Down
2 changes: 1 addition & 1 deletion src/components/loginer/index.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="flex gap-2" v-show="loginStore.show">
<div @click="click" class="btn btn-error">
{{ $t("loginer.login_to_netease_to_download_vip") }}
{{ $t("loginer.login_to_netease_to_download_vip_and_lossless") }}
</div>
<div class="btn" :class="btnClass" @click="clickCheck">
<text v-if="status === 0">{{
Expand Down
4 changes: 2 additions & 2 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"downloader": {
"all": "Downloade All",
"set_maximum_number_of_processes": "Set Maximum Number of Processes",
"set_the_limit_on_the_number_of_download_processes": "Set the Limit on the Number of Download Processes",
"no_limit": "No Limit",
"save_the_lyrics_file_separately": "Save the Lyrics File Separately",
"lossless": "Lossless",
Expand All @@ -32,7 +32,7 @@
"more": "Load More"
},
"loginer": {
"login_to_netease_to_download_vip": "Login to Netease to Download VIP Songs",
"login_to_netease_to_download_vip_and_lossless": "Login to Netease to Download VIP and lossless Songs",
"after_login_or_logout_please_click_me_before_closing_login_window": "After login or logout, please click me before closing login window",
"cookie_set_successfully": "Cookie set successfully",
"sorry_please_try_again_or_open_window_again": "Sorry, please try again or open the window again"
Expand Down
4 changes: 2 additions & 2 deletions src/locales/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"downloader": {
"all": "下载全部",
"set_maximum_number_of_processes": "设置最大进程数",
"set_the_limit_on_the_number_of_download_processes": "设置下载进程的数量限制",
"no_limit": "无限制",
"save_the_lyrics_file_separately": "单独保存歌词文件",
"lossless": "无损",
Expand All @@ -32,7 +32,7 @@
"more": "加载更多"
},
"loginer": {
"login_to_netease_to_download_vip": "登录网易云以下载VIP歌曲",
"login_to_netease_to_download_vip_and_lossless": "登录网易云以下载VIP及无损歌曲",
"after_login_or_logout_please_click_me_before_closing_login_window": "登录或登出完成后请点一下我再关闭窗口",
"cookie_set_successfully": "Cookie设置成功",
"sorry_please_try_again_or_open_window_again": "抱歉请再试一遍或再次打开窗口"
Expand Down
2 changes: 1 addition & 1 deletion src/stores/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { electron } from "../api/download";
export const useDownloadStore = defineStore("download", () => {
const show = ref(false);
const saveLyric = ref(false);
const quality = ref(0); // lossless
const quality = ref(320000); // lossless
const process = ref(2);
const anonymous = ref(true); // Use anonymous downloading of non-lossless songs

Expand Down

0 comments on commit 3aff571

Please sign in to comment.