mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-21 18:52:36 +01:00
Setup up "Dual Speakers" rules correctly for Netflix - thx Looi :)
This commit is contained in:
parent
6e3f905f6d
commit
a366e20e62
@ -132,24 +132,40 @@ namespace Nikse.SubtitleEdit.Core.NetflixQualityCheck
|
||||
{
|
||||
case "ar": // Arabic
|
||||
case "pt": // Brazilian Portuguese
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "cs": // Czech
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "fr": // French
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "hu": // Hungarian
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "in": // Indonesian
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "it": // Italian
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "ko": // Korean
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "ms": // Malay
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "pl": // Polish
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "ro": // Romanian
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "ru": // Russian
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "sk": // Slovak
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "es": // Spanish
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "th": // Thai
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "vi": // Vietnamese
|
||||
return DialogType.DashBothLinesWithSpace;
|
||||
case "nl": // Dutch
|
||||
case "nl": // Dutch
|
||||
return DialogType.DashSecondLineWithoutSpace;
|
||||
case "fi": // Finnish
|
||||
case "he": // Hebrew
|
||||
return DialogType.DashSecondLineWithoutSpace;
|
||||
case "sr": // Serbian
|
||||
return DialogType.DashSecondLineWithoutSpace;
|
||||
case "bg": // Bulgarian
|
||||
|
@ -10,7 +10,6 @@ using System.Diagnostics;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using static Nikse.SubtitleEdit.Forms.FixCommonErrors;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user