1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00

New: Expose subtitle title and disposition in UI

This commit is contained in:
Jendrik Weise
2024-07-22 15:50:30 +00:00
committed by Bogdan
parent ac4669dfc1
commit b062a46cbd
5 changed files with 73 additions and 6 deletions

View File

@@ -376,6 +376,7 @@
"DiscordUrlInSlackNotification": "You have a Discord notification setup as a Slack notification. Set this up as a Discord notification for better functionality. The effected notifications are: {0}",
"Discover": "Discover",
"DiskSpace": "Disk Space",
"Disposition": "Disposition",
"DoNotBlocklist": "Do not Blocklist",
"DoNotBlocklistHint": "Remove without blocklisting",
"DoNotPrefer": "Do Not Prefer",

View File

@@ -14,6 +14,8 @@ namespace Radarr.Api.V3.ExtraFiles
public int? MovieFileId { get; set; }
public string RelativePath { get; set; }
public string Extension { get; set; }
public List<string> LanguageTags { get; set; }
public string Title { get; set; }
public ExtraFileType Type { get; set; }
}
@@ -51,6 +53,8 @@ namespace Radarr.Api.V3.ExtraFiles
MovieFileId = model.MovieFileId,
RelativePath = model.RelativePath,
Extension = model.Extension,
LanguageTags = model.LanguageTags,
Title = model.Title,
Type = ExtraFileType.Subtitle
};
}