| 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Lang; |
| 4 | |
| 5 | /// <summary>Строки UI. Файлы: <c>Lang/Resources.resx</c>, <c>Resources.ru-RU.resx</c>, <c>Resources.en-US.resx</c> (как IncomeCascade).</summary> |
| 6 | public static class Resources |
| 7 | { |
| 8 | static System.Resources.ResourceManager? _resourceManager; |
| 9 | static System.Globalization.CultureInfo? _culture; |
| 10 | |
| 11 | [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)] |
| 12 | public static System.Globalization.CultureInfo? Culture |
| 13 | { |
| 14 | get => _culture; |
| 15 | set => _culture = value; |
| 16 | } |
| 17 | |
| 18 | static System.Resources.ResourceManager ResourceManager => |
| 19 | _resourceManager ??= new System.Resources.ResourceManager( |
| 20 | "CascadeIDE.Lang.Resources", |
| 21 | typeof(Resources).Assembly); |
| 22 | |
| 23 | static string GetString(string name) => ResourceManager.GetString(name, _culture) ?? name; |
| 24 | |
| 25 | public static string ChatPanel_PlanHeader => GetString(nameof(ChatPanel_PlanHeader)); |
| 26 | public static string ChatPanel_PlanEmptyHint => GetString(nameof(ChatPanel_PlanEmptyHint)); |
| 27 | public static string ChatPanel_NextActionHeader => GetString(nameof(ChatPanel_NextActionHeader)); |
| 28 | public static string ChatPanel_AgentOpsHeader => GetString(nameof(ChatPanel_AgentOpsHeader)); |
| 29 | public static string ChatPanel_AgentOpsEmptyHint => GetString(nameof(ChatPanel_AgentOpsEmptyHint)); |
| 30 | public static string ChatPanel_ConfirmHeader => GetString(nameof(ChatPanel_ConfirmHeader)); |
| 31 | public static string ChatPanel_ConfirmHint => GetString(nameof(ChatPanel_ConfirmHint)); |
| 32 | public static string ChatPanel_ConfirmButton => GetString(nameof(ChatPanel_ConfirmButton)); |
| 33 | public static string ChatPanel_CancelButton => GetString(nameof(ChatPanel_CancelButton)); |
| 34 | public static string ChatPanel_ExplainStep => GetString(nameof(ChatPanel_ExplainStep)); |
| 35 | public static string ChatPanel_EmergencyStop => GetString(nameof(ChatPanel_EmergencyStop)); |
| 36 | public static string ChatPanel_TraceHeader => GetString(nameof(ChatPanel_TraceHeader)); |
| 37 | public static string ChatPanel_TraceEmptyHint => GetString(nameof(ChatPanel_TraceEmptyHint)); |
| 38 | public static string ChatPanel_TraceRollback => GetString(nameof(ChatPanel_TraceRollback)); |
| 39 | public static string ChatPanel_SafetyDockTitlePower => GetString(nameof(ChatPanel_SafetyDockTitlePower)); |
| 40 | public static string ChatPanel_SafetyTierObserve => GetString(nameof(ChatPanel_SafetyTierObserve)); |
| 41 | public static string ChatPanel_SafetyTierConfirm => GetString(nameof(ChatPanel_SafetyTierConfirm)); |
| 42 | public static string ChatPanel_SafetyTierAutonomous => GetString(nameof(ChatPanel_SafetyTierAutonomous)); |
| 43 | public static string ChatPanel_SafetyTierObserveSubtitle => GetString(nameof(ChatPanel_SafetyTierObserveSubtitle)); |
| 44 | public static string ChatPanel_SafetyTierConfirmSubtitle => GetString(nameof(ChatPanel_SafetyTierConfirmSubtitle)); |
| 45 | public static string ChatPanel_SafetyTierAutonomousSubtitle => GetString(nameof(ChatPanel_SafetyTierAutonomousSubtitle)); |
| 46 | public static string ChatPanel_SafetyCompactHeader => GetString(nameof(ChatPanel_SafetyCompactHeader)); |
| 47 | public static string ChatPanel_EmergencyStopCompact => GetString(nameof(ChatPanel_EmergencyStopCompact)); |
| 48 | public static string ChatPanel_ChatExpandButton => GetString(nameof(ChatPanel_ChatExpandButton)); |
| 49 | public static string ChatPanel_ChatExpandTooltip => GetString(nameof(ChatPanel_ChatExpandTooltip)); |
| 50 | public static string ChatPanel_ChatCollapseTooltip => GetString(nameof(ChatPanel_ChatCollapseTooltip)); |
| 51 | public static string ChatPanel_AgentTyping => GetString(nameof(ChatPanel_AgentTyping)); |
| 52 | public static string ChatPanel_NoMessagesYet => GetString(nameof(ChatPanel_NoMessagesYet)); |
| 53 | public static string ChatPanel_MessageWatermark => GetString(nameof(ChatPanel_MessageWatermark)); |
| 54 | public static string ChatPanel_SendButton => GetString(nameof(ChatPanel_SendButton)); |
| 55 | public static string PanelChrome_EmergencyStopCaps => GetString(nameof(PanelChrome_EmergencyStopCaps)); |
| 56 | public static string PanelChrome_OverflowActionsPlaceholder => GetString(nameof(PanelChrome_OverflowActionsPlaceholder)); |
| 57 | public static string PanelChrome_CopyTitle => GetString(nameof(PanelChrome_CopyTitle)); |
| 58 | public static string Lang_Menu_UiLanguage => GetString(nameof(Lang_Menu_UiLanguage)); |
| 59 | public static string Lang_Menu_Russian => GetString(nameof(Lang_Menu_Russian)); |
| 60 | public static string Lang_Menu_English => GetString(nameof(Lang_Menu_English)); |
| 61 | public static string Lang_Menu_FollowSystem => GetString(nameof(Lang_Menu_FollowSystem)); |
| 62 | public static string Safety_Description_Observe => GetString(nameof(Safety_Description_Observe)); |
| 63 | public static string Safety_Description_Confirm => GetString(nameof(Safety_Description_Confirm)); |
| 64 | public static string Safety_Description_Autonomous => GetString(nameof(Safety_Description_Autonomous)); |
| 65 | } |
| 66 | |