mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-17 15:53:42 +01:00
Allow KeyframeExtractor to be localized
This commit is contained in:
@@ -39,13 +39,13 @@ public class KeyframeExtractionScheduledTask : IScheduledTask
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Name => "Keyframe Extractor";
|
||||
public string Name => _localizationManager.GetLocalizedString("TaskKeyframeExtractor");
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Key => "KeyframeExtraction";
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Description => "Extracts keyframes from video files to create more precise HLS playlists. This task may run for a long time.";
|
||||
public string Description => _localizationManager.GetLocalizedString("TaskKeyframeExtractorDescription");
|
||||
|
||||
/// <inheritdoc />
|
||||
public string Category => _localizationManager.GetLocalizedString("TasksLibraryCategory");
|
||||
|
||||
Reference in New Issue
Block a user