mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-21 18:52:36 +01:00
Simplify subtitle file type descriptions
Replace the verbose subtitle file type descriptions with shorter, more concise names. This enhances readability and consistency across the codebase by focusing on the essential part of each description. Signed-off-by: Ivandro Jao <Ivandrofly@gmail.com>
This commit is contained in:
parent
4ebe2da219
commit
1dceeb0327
@ -54,45 +54,45 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
{
|
||||
if (ext.Equals(".srt", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "SubRip subtitle file";
|
||||
return "SubRip";
|
||||
}
|
||||
|
||||
if (ext.Equals(".ass", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "Advanced Sub Station Alpha subtitle file";
|
||||
return "Advanced Sub Station Alpha";
|
||||
}
|
||||
|
||||
if (ext.Equals(".dfxp", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "Distribution Format Exchange Profile subtitle file";
|
||||
return "Distribution Format Exchange Profile";
|
||||
}
|
||||
|
||||
if (ext.Equals(".ssa", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "Sub Station Alpha subtitle file";
|
||||
return "Sub Station Alpha";
|
||||
}
|
||||
|
||||
if (ext.Equals(".sup", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "Blu-ray PGS subtitle file";
|
||||
return "Blu-ray PGS";
|
||||
}
|
||||
|
||||
if (ext.Equals(".vtt", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "Web Video Text Tracks (WebVTT) subtitle file";
|
||||
return "Web Video Text Tracks (WebVTT)";
|
||||
}
|
||||
|
||||
if (ext.Equals(".smi", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "SAMI subtitle file";
|
||||
return "SAMI";
|
||||
}
|
||||
|
||||
if (ext.Equals(".itt", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "iTunes Timed Text subtitle file";
|
||||
return "iTunes Timed Text";
|
||||
}
|
||||
|
||||
return $"{ext.TrimStart('.')} subtitle file";
|
||||
return $"{ext.TrimStart('.')}";
|
||||
}
|
||||
|
||||
internal static void DeleteFileAssociationViaRegistry(string ext, string appName)
|
||||
|
Loading…
Reference in New Issue
Block a user