From d6aff05ebf56c8bb4519eb5f944f8b995b91616d Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Thu, 26 Dec 2024 08:10:06 +0900 Subject: [PATCH 1/3] [Update] Config Page: Transcription, Whisper models. Add desc. --- locales/en.yml | 4 +++- locales/ja.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/locales/en.yml b/locales/en.yml index ec3b38de..bf408334 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -188,7 +188,9 @@ config_page: label: Transcription Engine whisper_weight_type: label: Whisper Model - desc: Models with larger capacities tend to have higher accuracy, but they also consume more CPU and GPU resources. + desc: |- + Larger models tend to have higher accuracy, but they also consume more CPU or GPU resources. + Especially for models larger than medium, it may be difficult or even impossible to use them depending on the performance of your CPU/GPU. model_template: '{{model_name}} model ({{capacity}})' recommended_model_template: '{{model_name}} model ({{capacity}}) (Recommended)' whisper_compute_device: diff --git a/locales/ja.yml b/locales/ja.yml index 8518da44..00b7c547 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -186,7 +186,9 @@ config_page: label: 音声認識で使用するエンジン whisper_weight_type: label: Whisperモデルのタイプ - desc: 容量が大きいモデルほど精度は高いですが、その分CPUやGPUを占有します。 + desc: |- + 容量が大きいモデルほど精度は高いですが、その分CPUやGPUを占有します。 + ※特にmediumより容量の大きいモデルは、CPU/GPUの性能によっては使用すらも困難です。 model_template: '{{model_name}} モデル ({{capacity}})' recommended_model_template: '{{model_name}} モデル ({{capacity}}) (推奨)' whisper_compute_device: From 7202b86e789532b425935209465acc0dee7e3832 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Thu, 26 Dec 2024 11:52:38 +0900 Subject: [PATCH 2/3] [Update] Update/Switch Compute Device Modal: Add description. --- locales/en.yml | 7 ++++--- locales/ja.yml | 1 + src-ui/app/modal_controller/update_modal/UpdateModal.jsx | 1 + 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/locales/en.yml b/locales/en.yml index bf408334..a23be510 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -59,9 +59,10 @@ main_page: updating: Now updating... update_modal: - cpu_desc: Use CPU only as the compute device - cuda_desc: Selectable between CPU and NVIDIA GPUs as compute devices - cuda_disk_space_desc: Requires approximately {{size}} of disk space + cpu_desc: Use CPU only as the compute device. + cuda_desc: Selectable between CPU and NVIDIA GPUs as compute devices. + cuda_compare_cpu_desc: With GPU selection, processing is faster compared to a CPU. + cuda_disk_space_desc: Requires approximately {{size}} of disk space. close_modal: Close download_latest_and_restart: |- The latest version will be downloaded, diff --git a/locales/ja.yml b/locales/ja.yml index 00b7c547..65604ff1 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -60,6 +60,7 @@ main_page: update_modal: cpu_desc: 処理デバイスとしてCPUのみを使用 cuda_desc: 処理デバイスとしてCPUとNVIDIA製のGPUを選択可能 + cuda_compare_cpu_desc: GPU選択時、CPUと比べて処理が高速 cuda_disk_space_desc: 約{{size}}のディスク容量が必要 close_modal: 閉じる download_latest_and_restart: |- diff --git a/src-ui/app/modal_controller/update_modal/UpdateModal.jsx b/src-ui/app/modal_controller/update_modal/UpdateModal.jsx index 746d83e4..94335cd2 100644 --- a/src-ui/app/modal_controller/update_modal/UpdateModal.jsx +++ b/src-ui/app/modal_controller/update_modal/UpdateModal.jsx @@ -54,6 +54,7 @@ export const UpdateModal = () => {
+
From 3991747dad9e5131f673850804b3be75c5b53ae0 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Thu, 26 Dec 2024 13:40:47 +0900 Subject: [PATCH 3/3] [Update] Localization: Add the comments. --- locales/en.yml | 5 +++++ locales/ja.yml | 5 +++++ locales/ko.yml | 5 +++++ locales/readme_first.txt | 4 +--- locales/zh-Hans.yml | 5 +++++ locales/zh-Hant.yml | 5 +++++ 6 files changed, 26 insertions(+), 3 deletions(-) diff --git a/locales/en.yml b/locales/en.yml index a23be510..8726c0b3 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -1,3 +1,8 @@ +# ================================= +# IMPORTANT: +# Please read 'readme_first.txt' before making any changes. +# ================================= + common: go_back_button_label: Go Back diff --git a/locales/ja.yml b/locales/ja.yml index 65604ff1..9e9da6ef 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -1,3 +1,8 @@ +# ================================= +# IMPORTANT: +# Please read 'readme_first.txt' before making any changes. +# ================================= + common: go_back_button_label: 戻る diff --git a/locales/ko.yml b/locales/ko.yml index 951f94fb..873746b1 100644 --- a/locales/ko.yml +++ b/locales/ko.yml @@ -1,3 +1,8 @@ +# ================================= +# IMPORTANT: +# Please read 'readme_first.txt' before making any changes. +# ================================= + common: go_back_button_label: 돌아가기 diff --git a/locales/readme_first.txt b/locales/readme_first.txt index 9d3bc1e8..7c62a102 100644 --- a/locales/readme_first.txt +++ b/locales/readme_first.txt @@ -1,3 +1 @@ -Thank you for considering translating VRCT's UI. -For your information, we are planning to transition VRCT's UI from Python's tkinter to a web-based platform using HTML, CSS, and JavaScript. -This means there might be structural changes to the UI. We apologize if any of the sentences you translated are removed due to these changes. \ No newline at end of file +Thank you for considering translating VRCT's UI. However, please refrain from making any changes at this time. I am currently organizing the files, including reordering, adding, and removing elements, and some parts may change frequently until the UI becomes stable. (Note: This message was updated in December 2024.) \ No newline at end of file diff --git a/locales/zh-Hans.yml b/locales/zh-Hans.yml index 21598828..29dc2c22 100644 --- a/locales/zh-Hans.yml +++ b/locales/zh-Hans.yml @@ -1,3 +1,8 @@ +# ================================= +# IMPORTANT: +# Please read 'readme_first.txt' before making any changes. +# ================================= + common: go_back_button_label: 返回 diff --git a/locales/zh-Hant.yml b/locales/zh-Hant.yml index 6416b053..ddeee4a3 100644 --- a/locales/zh-Hant.yml +++ b/locales/zh-Hant.yml @@ -1,3 +1,8 @@ +# ================================= +# IMPORTANT: +# Please read 'readme_first.txt' before making any changes. +# ================================= + common: go_back_button_label: 返回