1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

New: Parse VIE as Vietnamese language

This commit is contained in:
Bogdan
2023-11-08 20:00:51 +02:00
parent 50f48277e5
commit 54d447d55f
2 changed files with 8 additions and 1 deletions
+7 -1
View File
@@ -31,7 +31,8 @@ namespace NzbDrone.Core.Parser
(?<ukrainian>(?:(?:\dx)?UKR))|
(?<spanish>\b(?:español|castellano)\b)|
(?<latvian>\bLV\b)|
(?<telugu>\btel\b)",
(?<telugu>\btel\b)|
(?<vietnamese>\bVIE\b)",
RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace);
private static readonly Regex CaseSensitiveLanguageRegex = new Regex(@"(?:(?i)(?<!SUB[\W|_|^]))(?:(?<lithuanian>\bLT\b)|
@@ -347,6 +348,11 @@ namespace NzbDrone.Core.Parser
{
languages.Add(Language.Telugu);
}
if (match.Groups["vietnamese"].Success)
{
languages.Add(Language.Vietnamese);
}
}
if (!languages.Any())