Skip to content

Commit

Permalink
"列" → "配列"
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Jul 8, 2023
1 parent 887b31c commit f9a1869
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions crates/voicevox_core/src/engine/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub struct MoraModel {
/// AccentPhrase (アクセント句ごとの情報)。
#[derive(Clone, Debug, new, Getters, Deserialize, Serialize)]
pub struct AccentPhraseModel {
/// モーラの列
/// モーラの配列
moras: Vec<MoraModel>,
/// アクセント箇所。
accent: usize,
Expand All @@ -49,7 +49,7 @@ impl AccentPhraseModel {
#[allow(clippy::too_many_arguments)]
#[derive(Clone, new, Getters, Deserialize, Serialize)]
pub struct AudioQueryModel {
/// アクセント句の列
/// アクセント句の配列
accent_phrases: Vec<AccentPhraseModel>,
/// 全体の話速。
speed_scale: f32,
Expand Down
8 changes: 4 additions & 4 deletions crates/voicevox_core/src/voice_synthesizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ impl Synthesizer {
.await
}

/// AccentPhrase (アクセント句)の列を生成する
/// AccentPhrase (アクセント句)の配列を生成する
///
/// `text`は[`options.kana`]が有効化されているときにはAquesTalk形式のkanaとして、そうでないと
/// きには日本語のテキストとして解釈される。
Expand Down Expand Up @@ -409,7 +409,7 @@ impl Synthesizer {
}
}

/// AccentPhraseの列の音高・音素長を、特定の声で生成しなおす。
/// AccentPhraseの配列の音高・音素長を、特定の声で生成しなおす。
pub async fn replace_mora_data(
&self,
accent_phrases: &[AccentPhraseModel],
Expand All @@ -420,7 +420,7 @@ impl Synthesizer {
.await
}

/// AccentPhraseの列の音素長を、特定の声で生成しなおす。
/// AccentPhraseの配列の音素長を、特定の声で生成しなおす。
pub async fn replace_phoneme_length(
&self,
accent_phrases: &[AccentPhraseModel],
Expand All @@ -431,7 +431,7 @@ impl Synthesizer {
.await
}

/// AccentPhraseの列の音高を、特定の声で生成しなおす。
/// AccentPhraseの配列の音高を、特定の声で生成しなおす。
pub async fn replace_mora_pitch(
&self,
accent_phrases: &[AccentPhraseModel],
Expand Down
14 changes: 7 additions & 7 deletions crates/voicevox_core_c_api/include/voicevox_core.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions crates/voicevox_core_c_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ pub struct VoicevoxAccentPhrasesOptions {
pub static voicevox_default_accent_phrases_options: VoicevoxAccentPhrasesOptions =
ConstDefault::DEFAULT;

/// AccentPhrase (アクセント句)の列をJSON形式で生成する
/// AccentPhrase (アクセント句)の配列をJSON形式で生成する
///
/// 生成したJSON文字列を解放するには ::voicevox_json_free を使う。
///
Expand Down Expand Up @@ -609,12 +609,12 @@ pub unsafe extern "C" fn voicevox_synthesizer_create_accent_phrases(
})())
}

/// AccentPhraseの列の音高・音素長を、特定の声で生成しなおす。
/// AccentPhraseの配列の音高・音素長を、特定の声で生成しなおす。
///
/// 生成したJSON文字列を解放するには ::voicevox_json_free を使う。
///
/// @param [in] synthesizer 音声シンセサイザ
/// @param [in] accent_phrases_json AccentPhraseの列のJSON文字列
/// @param [in] accent_phrases_json AccentPhraseの配列のJSON文字列
/// @param [in] style_id スタイルID
/// @param [out] output_accent_phrases_json 生成先
///
Expand Down Expand Up @@ -650,12 +650,12 @@ pub unsafe extern "C" fn voicevox_synthesizer_replace_mora_data(
})())
}

/// AccentPhraseの列の音素長を、特定の声で生成しなおす。
/// AccentPhraseの配列の音素長を、特定の声で生成しなおす。
///
/// 生成したJSON文字列を解放するには ::voicevox_json_free を使う。
///
/// @param [in] synthesizer 音声シンセサイザ
/// @param [in] accent_phrases_json AccentPhraseの列のJSON文字列
/// @param [in] accent_phrases_json AccentPhraseの配列のJSON文字列
/// @param [in] style_id スタイルID
/// @param [out] output_accent_phrases_json 生成先
///
Expand Down Expand Up @@ -691,12 +691,12 @@ pub unsafe extern "C" fn voicevox_synthesizer_replace_phoneme_length(
})())
}

/// AccentPhraseの列の音高を、特定の声で生成しなおす。
/// AccentPhraseの配列の音高を、特定の声で生成しなおす。
///
/// 生成したJSON文字列を解放するには ::voicevox_json_free を使う。
///
/// @param [in] synthesizer 音声シンセサイザ
/// @param [in] accent_phrases_json AccentPhraseの列のJSON文字列
/// @param [in] accent_phrases_json AccentPhraseの配列のJSON文字列
/// @param [in] style_id スタイルID
/// @param [out] output_accent_phrases_json 生成先
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class AccentPhrase:
"""AccentPhrase (アクセント句ごとの情報)。"""

moras: List[Mora]
"""モーラの列。"""
"""モーラの配列。"""

accent: int
"""アクセント箇所。"""
Expand All @@ -123,7 +123,7 @@ class AudioQuery:
"""AudioQuery (音声合成用のクエリ)。"""

accent_phrases: List[AccentPhrase]
"""アクセント句の列。"""
"""アクセント句の配列。"""

speed_scale: float
"""全体の話速。"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ class Synthesizer:
kana: bool = False,
) -> List[AccentPhrase]:
"""
AccentPhrase (アクセント句)の列を生成する
AccentPhrase (アクセント句)の配列を生成する
:param text: UTF-8の日本語テキストまたはAquesTalk形式のkana。
:param style_id: スタイルID。
:param kana: ``text`` をAquesTalk形式のkanaとして解釈する。
:returns: :class:`AccentPhrase` の列
:returns: :class:`AccentPhrase` の配列
"""
...
async def replace_mora_data(
Expand Down

0 comments on commit f9a1869

Please sign in to comment.