[Update] Localization: Config Page: Add some japanese.
This commit is contained in:
@@ -67,6 +67,7 @@ config_page:
|
|||||||
# restart_message: Apply changes with a restart.
|
# restart_message: Apply changes with a restart.
|
||||||
# common_error_message:
|
# common_error_message:
|
||||||
# invalid_value: Invalid value.
|
# invalid_value: Invalid value.
|
||||||
|
model_download_button_label: Download
|
||||||
side_menu_labels:
|
side_menu_labels:
|
||||||
device: Device
|
device: Device
|
||||||
appearance: Appearance
|
appearance: Appearance
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ config_page:
|
|||||||
# restart_message: 再起動して変更を適用する。
|
# restart_message: 再起動して変更を適用する。
|
||||||
# common_error_message:
|
# common_error_message:
|
||||||
# invalid_value: 無効な値です。
|
# invalid_value: 無効な値です。
|
||||||
|
model_download_button_label: ダウンロード
|
||||||
side_menu_labels:
|
side_menu_labels:
|
||||||
device: デバイス
|
device: デバイス
|
||||||
appearance: デザイン
|
appearance: デザイン
|
||||||
@@ -139,6 +140,7 @@ config_page:
|
|||||||
transcription:
|
transcription:
|
||||||
section_label_mic: マイク
|
section_label_mic: マイク
|
||||||
section_label_speaker: スピーカー
|
section_label_speaker: スピーカー
|
||||||
|
section_label_transcription_engines: 音声認識エンジン
|
||||||
mic_record_timeout:
|
mic_record_timeout:
|
||||||
label: 入力が終了したとみなす無音時間
|
label: 入力が終了したとみなす無音時間
|
||||||
desc: 無音を検出し、設定された秒数経過すると、音声入力が終了したとみなします。
|
desc: 無音を検出し、設定された秒数経過すると、音声入力が終了したとみなします。
|
||||||
@@ -171,9 +173,8 @@ config_page:
|
|||||||
label: ログとして表示するまでに保持する単語数
|
label: ログとして表示するまでに保持する単語数
|
||||||
desc: 文字起こしされた単語数の下限値で、この数値を超えた場合のみ結果をログに表示します。
|
desc: 文字起こしされた単語数の下限値で、この数値を超えた場合のみ結果をログに表示します。
|
||||||
error_message: 0以上の数値を設定できます。
|
error_message: 0以上の数値を設定できます。
|
||||||
use_whisper_feature:
|
select_transcription_engine:
|
||||||
label: 音声認識にWhisperモデルを使用する
|
label: 音声認識で使用するエンジン
|
||||||
desc: 一部の言語では、音声認識の精度が向上するかもしれません。音声認識使用中、CPUの使用率が上がるので、お使いのPCスペックと相談してこの機能を使用してください。
|
|
||||||
whisper_weight_type:
|
whisper_weight_type:
|
||||||
label: Whisperモデルのタイプ
|
label: Whisperモデルのタイプ
|
||||||
desc: |-
|
desc: |-
|
||||||
@@ -181,6 +182,8 @@ config_page:
|
|||||||
※特にmediumより容量の大きいモデルは、CPUの性能によっては使用すらも困難です。
|
※特にmediumより容量の大きいモデルは、CPUの性能によっては使用すらも困難です。
|
||||||
model_template: '{{model_name}} モデル ({{capacity}})'
|
model_template: '{{model_name}} モデル ({{capacity}})'
|
||||||
recommended_model_template: '{{model_name}} モデル ({{capacity}}) (推奨)'
|
recommended_model_template: '{{model_name}} モデル ({{capacity}}) (推奨)'
|
||||||
|
whisper_compute_device:
|
||||||
|
label: Whisperで使用する処理デバイス
|
||||||
|
|
||||||
vr:
|
vr:
|
||||||
single_line: 一行
|
single_line: 一行
|
||||||
@@ -223,6 +226,9 @@ config_page:
|
|||||||
send_message_to_vrc:
|
send_message_to_vrc:
|
||||||
label: VRChatにメッセージを送信する
|
label: VRChatにメッセージを送信する
|
||||||
desc: サポート対象外ですが、VRChatにメッセージを送信せずに使う方法があります。送信したい場合、この機能を有効にする事を忘れないでください。
|
desc: サポート対象外ですが、VRChatにメッセージを送信せずに使う方法があります。送信したい場合、この機能を有効にする事を忘れないでください。
|
||||||
|
send_received_message_to_vrc:
|
||||||
|
label: 受信したメッセージをVRChatに送信する
|
||||||
|
desc: スピーカーから聞き取り、文字起こしされたメッセージをVRChatに送信します。
|
||||||
|
|
||||||
advanced_settings:
|
advanced_settings:
|
||||||
osc_ip_address:
|
osc_ip_address:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import CircularProgress from "@mui/material/CircularProgress";
|
import CircularProgress from "@mui/material/CircularProgress";
|
||||||
import styles from "./DownloadModels.module.scss";
|
import styles from "./DownloadModels.module.scss";
|
||||||
@@ -33,6 +34,7 @@ export const DownloadModels = (props) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ModelSelector = ({option, ...props}) => {
|
const ModelSelector = ({option, ...props}) => {
|
||||||
|
const { t } = useTranslation();
|
||||||
const [circular_color, setCircularColor] = useState("");
|
const [circular_color, setCircularColor] = useState("");
|
||||||
const [circular_color_2, setCircularColor2] = useState("");
|
const [circular_color_2, setCircularColor2] = useState("");
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -67,7 +69,7 @@ const ModelSelector = ({option, ...props}) => {
|
|||||||
className={styles.download_button}
|
className={styles.download_button}
|
||||||
onClick={() => props.downloadStartFunction(option.id)}
|
onClick={() => props.downloadStartFunction(option.id)}
|
||||||
>
|
>
|
||||||
<p className={styles.download_button_label}>Download</p>
|
<p className={styles.download_button_label}>{t("config_page.model_download_button_label")}</p>
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user