cadencii.DivideNote.getDescription C# (CSharp) Method

getDescription() public method

public getDescription ( string language ) : string
language string
return string
        public string getDescription( string language ) {
            if ( language.ToLower() == "ja" ) {
                return "音符を「母音-母音」または「子音-母音」のペアに分割します";
            } else {
                return "devides note into a phoneme pair, 'vowel-vowel' or 'consonant-vowel'";
            }
        }