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 "ar": // Arabic
|
||||||
case "pt": // Brazilian Portuguese
|
case "pt": // Brazilian Portuguese
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "cs": // Czech
|
case "cs": // Czech
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "fr": // French
|
case "fr": // French
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "hu": // Hungarian
|
case "hu": // Hungarian
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "in": // Indonesian
|
case "in": // Indonesian
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "it": // Italian
|
case "it": // Italian
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "ko": // Korean
|
case "ko": // Korean
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "ms": // Malay
|
case "ms": // Malay
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "pl": // Polish
|
case "pl": // Polish
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "ro": // Romanian
|
case "ro": // Romanian
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "ru": // Russian
|
case "ru": // Russian
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "sk": // Slovak
|
case "sk": // Slovak
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "es": // Spanish
|
case "es": // Spanish
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "th": // Thai
|
case "th": // Thai
|
||||||
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "vi": // Vietnamese
|
case "vi": // Vietnamese
|
||||||
return DialogType.DashBothLinesWithSpace;
|
return DialogType.DashBothLinesWithSpace;
|
||||||
case "nl": // Dutch
|
case "nl": // Dutch
|
||||||
|
return DialogType.DashSecondLineWithoutSpace;
|
||||||
case "fi": // Finnish
|
case "fi": // Finnish
|
||||||
case "he": // Hebrew
|
case "he": // Hebrew
|
||||||
|
return DialogType.DashSecondLineWithoutSpace;
|
||||||
case "sr": // Serbian
|
case "sr": // Serbian
|
||||||
return DialogType.DashSecondLineWithoutSpace;
|
return DialogType.DashSecondLineWithoutSpace;
|
||||||
case "bg": // Bulgarian
|
case "bg": // Bulgarian
|
||||||
|
@ -10,7 +10,6 @@ using System.Diagnostics;
|
|||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using static Nikse.SubtitleEdit.Forms.FixCommonErrors;
|
using static Nikse.SubtitleEdit.Forms.FixCommonErrors;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user