Skip to content

Commit

Permalink
エラーメッセージを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed May 24, 2024
1 parent 3bfac98 commit 7ed81a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/voicevox_core/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ impl<'de> Deserialize<'de> for FormatVersionV1 {
match v {
"1" => Ok(FormatVersionV1),
v => Err(E::custom(format!(
"`vvm_format_version={v}`とありますが、これは未知のフォーマットです。\
新しいバージョンのVOICEVOX COREであれば対応しているかもしれません"
"未知の形式です(`vvm_format_version={v}`)。新しいバージョンのVOICEVOX \
COREであれば対応しているかもしれません",
))),
}
}
Expand Down Expand Up @@ -110,8 +110,8 @@ mod tests {
#[case(
"{\"vvm_format_version\":\"2\"}",
Err(
"`vvm_format_version=2`とありますが、これは未知のフォーマットです。新しいバージョンの\
VOICEVOX COREであれば対応しているかもしれません at line 1 column 25"
"未知の形式です(`vvm_format_version=2`)。新しいバージョンのVOICEVOX COREであれば対応\
しているかもしれません at line 1 column 25",
)
)]
fn vvm_format_version_works(
Expand Down

0 comments on commit 7ed81a0

Please sign in to comment.