feat: Provide the 'isOnlyOutputTranslation option to output only translated lyrics.

This commit is contained in:
real-zony
2022-09-22 15:48:20 +08:00
parent be4380c744
commit 8385f6f118
4 changed files with 29 additions and 5 deletions

View File

@@ -43,6 +43,11 @@ namespace ZonyLrcTools.Cli.Infrastructure.Lyric
if (_options.Provider.Lyric.Config.IsEnableTranslation && !string.IsNullOrEmpty(translationLyric))
{
var translatedLyric = InternalBuildLyricObject(new LyricItemCollection(_options.Provider.Lyric.Config), translationLyric);
if (_options.Provider.Lyric.Config.IsOnlyOutputTranslation)
{
return translatedLyric;
}
return lyric + translatedLyric;
}