emby-toolbox/EmbyToolbox/Models/ConversionQueueStatus.cs
Emby Toolbox 6264b487fe Initial commit: Emby Toolbox (conversion scroll fix, bulk Del for tracks).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-12 21:33:47 +05:00

16 lines
594 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace EmbyToolbox.Models;
public static class ConversionQueueStatus
{
public const string Pending = "В очереди";
public const string Analyzing = "Анализ";
public const string Ready = "Готов";
public const string Running = "В работе";
public const string Copying = "Копирование";
public const string Replacing = "Замена";
public const string Done = "Готово";
public const string Skipped = "Пропуск";
public const string Error = "Ошибка";
public const string Cancelled = "Отмена";
}