Fixed envelope main section empty error

This commit is contained in:
Takeshi Yokemura
2022-02-12 17:01:11 +09:00
parent 68253130fa
commit 1d3c91d6e1
4 changed files with 9 additions and 9 deletions

View File

@ -14,10 +14,6 @@ String getParseErrorString (ParseError err, int minValue, int maxValue)
{
switch (err)
{
case kParseWarningPreRepeatSegmentEmpty:
return TRANS ("Main body of the sequence is empty");
break;
case kParseWarningRepeatSegmentEmpty:
return TRANS ("Repeat section is empty");
break;
@ -26,6 +22,10 @@ String getParseErrorString (ParseError err, int minValue, int maxValue)
return TRANS ("Release section is empty");
break;
case kParseErrorPreReleaseSegmentEmpty:
return TRANS ("Main body of the sequence is empty");
break;
case kParseErrorDuplicatedReleaseDelimiter:
return TRANS ("You cannot use \"|\" more than once");
break;