Skip to content

Commit

Permalink
Translate the Korean comments into English.
Browse files Browse the repository at this point in the history
  • Loading branch information
2xxbin committed Oct 18, 2024
1 parent 538d91c commit 2a1b2b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions OpenUtau.Core/KoreanPhonemizerUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static bool IsHangeul(string? character) {
}

/// <summary>
///
/// It checks if the input string is valid Korean Romanization.
/// <br/> 입력된 문자열이 유효한 표기의 한국어 로마자인지 확인합니다.
/// </summary>
/// <param name="lyric">
Expand All @@ -213,7 +213,7 @@ public static bool IsKoreanRomaji(string lyric) {
}

/// <summary>
///
/// It checks if the input string is valid Korean Romanization, converts it to Korean if valid, and returns null if not.
/// <br/> 입력된 문자열이 유효한 표기의 한국어 로마자인지 확인하고, 유효할 경우 한국어로 변환합니다. 아닐 경우 null을 반환합니다.
/// </summary>
/// <param name="romaji">
Expand Down Expand Up @@ -320,7 +320,8 @@ public static Hashtable Separate(string character) {
}

/// <summary>
///
/// It separates the input Korean Romanized string into initial consonant, medial vowel, and final consonant.
/// <br/> If the Romanized string contains incorrect notation, it returns a list of length 3 filled with empty strings.
/// <br/> 입력된 한국어 로마자의 문자열을 로마자 표기 초성, 중성, 종성으로 분리합니다.
/// <br/> 올바르지 않은 표기법의 로마자가 들어오면 빈 문자열이 담긴 Length 3의 리스트를 반환합니다.
/// </summary>
Expand Down
4 changes: 2 additions & 2 deletions OpenUtau.Plugin.Builtin/BaseKoreanPhonemizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public class ProcessResult {
}

// <summary>
///
/// The Romanized lyrics will be completely converted to Hangul.
/// 로마자 가사들을 전부 한글로 바꿔줍니다.
/// </summary>
/// <param name="notes"></param>
Expand Down Expand Up @@ -234,7 +234,7 @@ public class ProcessResult {
}

// <summary>
///
/// It analyzes the phonetic hint and returns the result.
/// 발음 힌트를 분석하여 Result를 반환합니다.
/// </summary>
/// <param name="singer"></param>
Expand Down

0 comments on commit 2a1b2b9

Please sign in to comment.