diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..9ce13d8c9 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* chris.lancaster@cloud.com danilo.delbusso@cloud.com konstantina.chremmou@cloud.com diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..4d679c233 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,41 @@ +name: Run checks +on: [push, pull_request] + +jobs: + job-checks: + name: Run checks + runs-on: windows-latest + steps: + - name: Checkout repo + uses: actions/checkout@v2 + + - name: Run copyright check + shell: powershell + run: ./scripts/check_copyright.ps1 -NOISY + + - name: Run I18n check + shell: powershell + run: ./scripts/check_i18n.ps1 -NOISY + + - name: Run spell check + shell: powershell + run: | + # package support for windows is not great; this is ugly, but will do for now + choco install cyg-get --no-progress + cyg-get.bat aspell aspell-en + $env:Path += ";C:\tools\cygwin\bin;" + ./scripts/check_spelling.ps1 -NOISY + + - name: Run string sort check + shell: powershell + run: ./scripts/check_strings_sorting.ps1 ` + -CHECK_LOCALIZED ` + -NOISY ` + -PATHS ./XenModel/Messages.resx, ./XenModel/FriendlyNames.resx, ` + ./XenModel/InvisibleMessages.resx, ./XenModel/UnitStrings.resx, ` + ./XenOvfApi/Content.resx, ./XenOvfApi/Messages.resx; ` + if($lastexitcode -eq 0){ ` + ./scripts/check_strings_sorting.ps1 ` + -NOISY ` + -PATHS ./Branding/Branding.resx ` + } diff --git a/Branding/Images/DlgBmp.bmp b/Branding/Images/DlgBmp.bmp deleted file mode 100644 index 6329358ea..000000000 Binary files a/Branding/Images/DlgBmp.bmp and /dev/null differ diff --git a/Branding/Images/wizard_background.png b/Branding/Images/wizard_background.png deleted file mode 100644 index 2a58e55f8..000000000 Binary files a/Branding/Images/wizard_background.png and /dev/null differ diff --git a/XenAdmin.sln b/XenAdmin.sln index 0f8b0ac49..34a060bff 100644 --- a/XenAdmin.sln +++ b/XenAdmin.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27703.2018 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XenAdmin", "XenAdmin\XenAdmin.csproj", "{70BDA4BC-F062-4302-8ACD-A15D8BF31D65}" ProjectSection(ProjectDependencies) = postProject @@ -10,20 +10,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XenAdmin", "XenAdmin\XenAdm EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLib", "CommandLib\CommandLib.csproj", "{6CE6A8FF-CF49-46B6-BEA4-6464A2F0A4D7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xva_verify", "xva_verify\xva_verify.csproj", "{2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XenCenterLib", "XenCenterLib\XenCenterLib.csproj", "{9861DFA1-B41F-432D-A43F-226257DEBBB9}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XenModel", "XenModel\XenModel.csproj", "{B306FC59-4441-4A5F-9F54-D3F68D4EE38D}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XenOvfApi", "XenOvfApi\XenOvfApi.csproj", "{2D78AC6C-B867-484A-A447-3C6FC8B8EAF7}" EndProject -Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "installer-xcp-ng", "installer-xcp-ng\installer-xcp-ng.wixproj", "{E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xe", "xe\Xe.csproj", "{727E885D-14BE-40F0-9D0B-3853D44D3984}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "splash-xcp-ng", "splash-xcp-ng\splash-xcp-ng.csproj", "{CD563857-6159-4415-B7B2-A21991F572E3}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -68,21 +60,6 @@ Global {6CE6A8FF-CF49-46B6-BEA4-6464A2F0A4D7}.Release|Win32.Build.0 = Release|Any CPU {6CE6A8FF-CF49-46B6-BEA4-6464A2F0A4D7}.Release|x64.ActiveCfg = Release|Any CPU {6CE6A8FF-CF49-46B6-BEA4-6464A2F0A4D7}.Release|x64.Build.0 = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|Win32.ActiveCfg = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|x64.ActiveCfg = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Debug|x64.Build.0 = Debug|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|Any CPU.Build.0 = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|Win32.ActiveCfg = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|Win32.Build.0 = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|x64.ActiveCfg = Release|Any CPU - {2A70D7E7-EAB2-4C36-B3F4-85B79D2384B5}.Release|x64.Build.0 = Release|Any CPU {9861DFA1-B41F-432D-A43F-226257DEBBB9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9861DFA1-B41F-432D-A43F-226257DEBBB9}.Debug|Any CPU.Build.0 = Debug|Any CPU {9861DFA1-B41F-432D-A43F-226257DEBBB9}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU @@ -97,20 +74,6 @@ Global {9861DFA1-B41F-432D-A43F-226257DEBBB9}.Release|Win32.ActiveCfg = Release|Any CPU {9861DFA1-B41F-432D-A43F-226257DEBBB9}.Release|x64.ActiveCfg = Release|Any CPU {9861DFA1-B41F-432D-A43F-226257DEBBB9}.Release|x64.Build.0 = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|Any CPU.Build.0 = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|Win32.ActiveCfg = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|x64.ActiveCfg = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Debug|x64.Build.0 = Debug|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|Any CPU.ActiveCfg = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|Any CPU.Build.0 = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|Win32.ActiveCfg = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|x64.ActiveCfg = Release|Any CPU - {BD345C89-E8F4-4767-9BE0-1F0EAB7FA927}.Release|x64.Build.0 = Release|Any CPU {B306FC59-4441-4A5F-9F54-D3F68D4EE38D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B306FC59-4441-4A5F-9F54-D3F68D4EE38D}.Debug|Any CPU.Build.0 = Debug|Any CPU {B306FC59-4441-4A5F-9F54-D3F68D4EE38D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU @@ -139,94 +102,6 @@ Global {2D78AC6C-B867-484A-A447-3C6FC8B8EAF7}.Release|Win32.ActiveCfg = Release|Any CPU {2D78AC6C-B867-484A-A447-3C6FC8B8EAF7}.Release|x64.ActiveCfg = Release|Any CPU {2D78AC6C-B867-484A-A447-3C6FC8B8EAF7}.Release|x64.Build.0 = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|Win32.ActiveCfg = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|x64.ActiveCfg = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Debug|x64.Build.0 = Debug|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|Any CPU.Build.0 = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|Win32.ActiveCfg = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|x64.ActiveCfg = Release|Any CPU - {9F7E6285-5CBF-41B4-8CB9-AB06DFF90DC0}.Release|x64.Build.0 = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|Win32.ActiveCfg = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|x64.ActiveCfg = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Debug|x64.Build.0 = Debug|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|Any CPU.Build.0 = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|Win32.ActiveCfg = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|x64.ActiveCfg = Release|Any CPU - {39308480-78C3-40B4-924D-06914F343ACD}.Release|x64.Build.0 = Release|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|Win32.ActiveCfg = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|x64.ActiveCfg = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Debug|x64.Build.0 = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|Any CPU.Build.0 = Debug|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|Win32.ActiveCfg = Release|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|x64.ActiveCfg = Release|Any CPU - {DEB3208D-1153-407C-8C99-0D8899BE25A5}.Release|x64.Build.0 = Release|Any CPU - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|Any CPU.ActiveCfg = Debug|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|Mixed Platforms.Build.0 = Debug|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|Win32.ActiveCfg = Debug|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|Win32.Build.0 = Debug|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|x64.ActiveCfg = Debug|x64 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Debug|x64.Build.0 = Debug|x64 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|Any CPU.ActiveCfg = Release|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|Mixed Platforms.ActiveCfg = Release|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|Mixed Platforms.Build.0 = Release|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|Win32.ActiveCfg = Release|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|Win32.Build.0 = Release|x86 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|x64.ActiveCfg = Release|x64 - {E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|x64.Build.0 = Release|x64 - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Any CPU.Build.0 = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Win32.ActiveCfg = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Win32.Build.0 = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|x64.ActiveCfg = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|x64.Build.0 = Debug|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Any CPU.ActiveCfg = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Any CPU.Build.0 = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Win32.ActiveCfg = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Win32.Build.0 = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|x64.ActiveCfg = Release|Any CPU - {727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|x64.Build.0 = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|Win32.ActiveCfg = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|Win32.Build.0 = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|x64.ActiveCfg = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Debug|x64.Build.0 = Debug|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|Any CPU.Build.0 = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|Win32.ActiveCfg = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|Win32.Build.0 = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|x64.ActiveCfg = Release|Any CPU - {CD563857-6159-4415-B7B2-A21991F572E3}.Release|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/XenAdmin/Commands/Controls/VMOperationToolStripMenuItem.cs b/XenAdmin/Commands/Controls/VMOperationToolStripMenuItem.cs index d03d5b8ba..311694d83 100644 --- a/XenAdmin/Commands/Controls/VMOperationToolStripMenuItem.cs +++ b/XenAdmin/Commands/Controls/VMOperationToolStripMenuItem.cs @@ -299,8 +299,8 @@ namespace XenAdmin.Commands else { var cpmCmd = isHomeServer - ? new CrossPoolMigrateToHomeCommand(menu.Command.MainWindowCommandInterface, selection, host, false) - : new CrossPoolMigrateCommand(menu.Command.MainWindowCommandInterface, selection, host, false, menu._resumeAfter); + ? new CrossPoolMigrateToHomeCommand(menu.Command.MainWindowCommandInterface, selection, host) + : new CrossPoolMigrateCommand(menu.Command.MainWindowCommandInterface, selection, host, menu._resumeAfter); var crossPoolMigrateCmdCanRun = cpmCmd.CanRun(); if (Stopped) diff --git a/XenAdmin/Commands/CrossPoolMigrateToHomeCommand.cs b/XenAdmin/Commands/CrossPoolMigrateToHomeCommand.cs index a533399d3..4b14f8737 100644 --- a/XenAdmin/Commands/CrossPoolMigrateToHomeCommand.cs +++ b/XenAdmin/Commands/CrossPoolMigrateToHomeCommand.cs @@ -40,8 +40,8 @@ namespace XenAdmin.Commands /// internal class CrossPoolMigrateToHomeCommand : CrossPoolMigrateCommand { - public CrossPoolMigrateToHomeCommand(IMainWindow mainWindow, IEnumerable selection, Host preSelectedHost, bool force) - : base(mainWindow, selection, preSelectedHost, force) + public CrossPoolMigrateToHomeCommand(IMainWindow mainWindow, IEnumerable selection, Host preSelectedHost) + : base(mainWindow, selection, preSelectedHost) { } diff --git a/XenAdmin/Commands/PauseVMCommand.cs b/XenAdmin/Commands/PauseVMCommand.cs index 7370094cb..14bdce848 100644 --- a/XenAdmin/Commands/PauseVMCommand.cs +++ b/XenAdmin/Commands/PauseVMCommand.cs @@ -70,12 +70,12 @@ namespace XenAdmin.Commands { } - protected override bool CanExecute(VM vm) + protected override bool CanRun(VM vm) { return vm != null && vm.allowed_operations != null && vm.allowed_operations.Contains(vm_operations.pause); } - protected override void Execute(List vms) + protected override void Run(List vms) { RunAction(vms, Messages.ACTION_VM_PAUSING, Messages.ACTION_VM_PAUSING, Messages.ACTION_VM_PAUSED, null); } @@ -89,7 +89,7 @@ namespace XenAdmin.Commands } } - protected override string EnabledToolTipText + public override string EnabledToolTipText { get { @@ -173,11 +173,11 @@ namespace XenAdmin.Commands get { return "WarningVmLifeCyclePause"; } } - protected override string GetCantExecuteReasonCore(IXenObject item) + protected override string GetCantRunReasonCore(IXenObject item) { VM vm = item as VM; if (vm == null) - return base.GetCantExecuteReasonCore(item); + return base.GetCantRunReasonCore(item); switch (vm.power_state) { @@ -188,17 +188,17 @@ namespace XenAdmin.Commands case vm_power_state.Suspended: return Messages.VM_SUSPENDED; case vm_power_state.unknown: - return base.GetCantExecuteReasonCore(item); + return base.GetCantRunReasonCore(item); } - return GetCantExecuteNoToolsOrDriversReasonCore(item) ?? base.GetCantExecuteReasonCore(item); + return GetCantRunNoToolsOrDriversReasonCore(item) ?? base.GetCantRunReasonCore(item); } protected override CommandErrorDialog GetErrorDialogCore(IDictionary cantExecuteReasons) { foreach (VM vm in GetSelection().AsXenObjects()) { - if (!CanExecute(vm) && vm.power_state != vm_power_state.Halted) + if (!CanRun(vm) && vm.power_state != vm_power_state.Halted) { return new CommandErrorDialog(Messages.ERROR_DIALOG_SHUTDOWN_VM_TITLE, Messages.ERROR_DIALOG_SHUTDOWN_VMS_TITLE, cantExecuteReasons); } diff --git a/XenAdmin/Commands/UnPauseVMCommand.cs b/XenAdmin/Commands/UnPauseVMCommand.cs index c0e14b92a..9d37c5e68 100644 --- a/XenAdmin/Commands/UnPauseVMCommand.cs +++ b/XenAdmin/Commands/UnPauseVMCommand.cs @@ -70,12 +70,12 @@ namespace XenAdmin.Commands { } - protected override bool CanExecute(VM vm) + protected override bool CanRun(VM vm) { return vm != null && vm.allowed_operations != null && vm.allowed_operations.Contains(vm_operations.unpause); } - protected override void Execute(List vms) + protected override void Run(List vms) { //fixme: add new message to Messages //RunAction(vms, Messages.ACTION_VM_UNPAUSING, Messages.ACTION_VM_UNPAUSING, Messages.ACTION_VM_UNPAUSED, null); @@ -92,7 +92,7 @@ namespace XenAdmin.Commands } } - protected override string EnabledToolTipText + public override string EnabledToolTipText { get { @@ -182,11 +182,11 @@ namespace XenAdmin.Commands get { return "WarningVmLifeCyclePause"; } } - protected override string GetCantExecuteReasonCore(IXenObject item) + protected override string GetCantRunReasonCore(IXenObject item) { VM vm = item as VM; if (vm == null) - return base.GetCantExecuteReasonCore(item); + return base.GetCantRunReasonCore(item); switch (vm.power_state) { @@ -197,17 +197,17 @@ namespace XenAdmin.Commands case vm_power_state.Suspended: return Messages.VM_SUSPENDED; case vm_power_state.unknown: - return base.GetCantExecuteReasonCore(item); + return base.GetCantRunReasonCore(item); } - return GetCantExecuteNoToolsOrDriversReasonCore(item) ?? base.GetCantExecuteReasonCore(item); + return GetCantRunNoToolsOrDriversReasonCore(item) ?? base.GetCantRunReasonCore(item); } protected override CommandErrorDialog GetErrorDialogCore(IDictionary cantExecuteReasons) { foreach (VM vm in GetSelection().AsXenObjects()) { - if (!CanExecute(vm) && vm.power_state != vm_power_state.Paused) + if (!CanRun(vm) && vm.power_state != vm_power_state.Paused) { return new CommandErrorDialog(Messages.ERROR_DIALOG_SHUTDOWN_VM_TITLE, Messages.ERROR_DIALOG_SHUTDOWN_VMS_TITLE, cantExecuteReasons); } diff --git a/XenAdmin/Controls/DeprecationBanner.cs b/XenAdmin/Controls/DeprecationBanner.cs index cb97930dd..837a84514 100644 --- a/XenAdmin/Controls/DeprecationBanner.cs +++ b/XenAdmin/Controls/DeprecationBanner.cs @@ -56,7 +56,7 @@ namespace XenAdmin.Controls { InitializeComponent(); HelperLinkVisible = !Core.HiddenFeatures.LinkLabelHidden; - LinkUri = new Uri(InvisibleMessages.DEPRECATION_URL); + //LinkUri = new Uri(InvisibleMessages.DEPRECATION_URL); Visible = false; } diff --git a/XenAdmin/Images.cs b/XenAdmin/Images.cs index 9eaa66f37..653ef401c 100644 --- a/XenAdmin/Images.cs +++ b/XenAdmin/Images.cs @@ -631,343 +631,347 @@ namespace XenAdmin public static class StaticImages { - // the followings are generated from Resources using: - // cat Resources.Designer.cs | grep 'internal static System.Drawing.Bitmap' | sed "s/ {//g" | awk -F"Bitmap " '{print"public static Image " $2 " = Properties.Resources." $2 ";"}' - public static Image _000_Abort_h32bit_16 = Properties.Resources._000_Abort_h32bit_16; - public static Image _000_AddApplicationServer_h32bit_16 = Properties.Resources._000_AddApplicationServer_h32bit_16; - public static Image _000_AddApplicationServer_h32bit_24 = Properties.Resources._000_AddApplicationServer_h32bit_24; - public static Image _000_AddIPAddress_h32bit_16 = Properties.Resources._000_AddIPAddress_h32bit_16; - public static Image _000_AddSite_h32bit_16 = Properties.Resources._000_AddSite_h32bit_16; - public static Image _000_Alert2_h32bit_16 = Properties.Resources._000_Alert2_h32bit_16; - public static Image _000_BackupMetadata_h32bit_16 = Properties.Resources._000_BackupMetadata_h32bit_16; - public static Image _000_BackupMetadata_h32bit_32 = Properties.Resources._000_BackupMetadata_h32bit_32; - public static Image _000_ConfigureIPAddresses_h32bit_16 = Properties.Resources._000_ConfigureIPAddresses_h32bit_16; - public static Image _000_CPU_h32bit_16 = Properties.Resources._000_CPU_h32bit_16; - public static Image _000_CreateVirtualStorage_h32bit_32 = Properties.Resources._000_CreateVirtualStorage_h32bit_32; - public static Image _000_CreateVM_h32bit_24 = Properties.Resources._000_CreateVM_h32bit_24; - public static Image _000_CreateVM_h32bit_32 = Properties.Resources._000_CreateVM_h32bit_32; - public static Image _000_defaultSpyglass_h32bit_16 = Properties.Resources._000_defaultSpyglass_h32bit_16; - public static Image _000_DeleteAllMessages_h32bit_16 = Properties.Resources._000_DeleteAllMessages_h32bit_16; - public static Image _000_DeleteMessage_h32bit_16 = Properties.Resources._000_DeleteMessage_h32bit_16; - public static Image _000_DeleteVirtualAppliance_h32bit_16 = Properties.Resources._000_DeleteVirtualAppliance_h32bit_16; - public static Image _000_DisasterRecovery_h32bit_32 = Properties.Resources._000_DisasterRecovery_h32bit_32; - public static Image _000_Email_h32bit_16 = Properties.Resources._000_Email_h32bit_16; - public static Image _000_EnablePowerControl_h32bit_16 = Properties.Resources._000_EnablePowerControl_h32bit_16; - public static Image _000_error_h32bit_16 = Properties.Resources._000_error_h32bit_16; - public static Image _000_error_h32bit_32 = Properties.Resources._000_error_h32bit_32; - public static Image _000_ExcludeHost_h32bit_16 = Properties.Resources._000_ExcludeHost_h32bit_16; - public static Image _000_ExportMessages_h32bit_16 = Properties.Resources._000_ExportMessages_h32bit_16; - public static Image _000_ExportVirtualAppliance_h32bit_16 = Properties.Resources._000_ExportVirtualAppliance_h32bit_16; - public static Image _000_ExportVirtualAppliance_h32bit_32 = Properties.Resources._000_ExportVirtualAppliance_h32bit_32; - public static Image _000_Failback_h32bit_32 = Properties.Resources._000_Failback_h32bit_32; - public static Image _000_Failover_h32bit_32 = Properties.Resources._000_Failover_h32bit_32; - public static Image _000_Fields_h32bit_16 = Properties.Resources._000_Fields_h32bit_16; - public static Image _000_FilterDates_h32bit_16 = Properties.Resources._000_FilterDates_h32bit_16; - public static Image _000_FilterServer_h32bit_16 = Properties.Resources._000_FilterServer_h32bit_16; - public static Image _000_FilterSeverity_h32bit_16 = Properties.Resources._000_FilterSeverity_h32bit_16; - public static Image _000_Folder_open_h32bit_16 = Properties.Resources._000_Folder_open_h32bit_16; - public static Image _000_GetMemoryInfo_h32bit_16 = Properties.Resources._000_GetMemoryInfo_h32bit_16; - public static Image _000_GetMemoryInfo_h32bit_32 = Properties.Resources._000_GetMemoryInfo_h32bit_32; - public static Image _000_GetServerReport_h32bit_16 = Properties.Resources._000_GetServerReport_h32bit_16; - public static Image _000_GetServerReport_h32bit_32 = Properties.Resources._000_GetServerReport_h32bit_32; - public static Image _000_HAServer_h32bit_32 = Properties.Resources._000_HAServer_h32bit_32; - public static Image _000_HelpIM_h32bit_16 = Properties.Resources._000_HelpIM_h32bit_16; - public static Image _000_HelpIM_h32bit_32 = Properties.Resources._000_HelpIM_h32bit_32; - public static Image _000_HighlightVM_h32bit_24 = Properties.Resources._000_HighlightVM_h32bit_24; - public static Image _000_HighLightVM_h32bit_32 = Properties.Resources._000_HighLightVM_h32bit_32; - public static Image _000_host_0_star = Properties.Resources._000_host_0_star; - public static Image _000_host_1_star = Properties.Resources._000_host_1_star; - public static Image _000_host_10_star = Properties.Resources._000_host_10_star; - public static Image _000_host_2_star = Properties.Resources._000_host_2_star; - public static Image _000_host_3_star = Properties.Resources._000_host_3_star; - public static Image _000_host_4_star = Properties.Resources._000_host_4_star; - public static Image _000_host_5_star = Properties.Resources._000_host_5_star; - public static Image _000_host_6_star = Properties.Resources._000_host_6_star; - public static Image _000_host_7_star = Properties.Resources._000_host_7_star; - public static Image _000_host_8_star = Properties.Resources._000_host_8_star; - public static Image _000_host_9_star = Properties.Resources._000_host_9_star; - public static Image _000_HostUnpatched_h32bit_16 = Properties.Resources._000_HostUnpatched_h32bit_16; - public static Image _000_ImportVirtualAppliance_h32bit_16 = Properties.Resources._000_ImportVirtualAppliance_h32bit_16; - public static Image _000_ImportVirtualAppliance_h32bit_32 = Properties.Resources._000_ImportVirtualAppliance_h32bit_32; - public static Image _000_ImportVM_h32bit_32 = Properties.Resources._000_ImportVM_h32bit_32; - public static Image _000_Info3_h32bit_16 = Properties.Resources._000_Info3_h32bit_16; - public static Image _000_ManagementInterface_h32bit_16 = Properties.Resources._000_ManagementInterface_h32bit_16; - public static Image _000_MigrateStoppedVM_h32bit_16 = Properties.Resources._000_MigrateStoppedVM_h32bit_16; - public static Image _000_MigrateSuspendedVM_h32bit_16 = Properties.Resources._000_MigrateSuspendedVM_h32bit_16; - public static Image _000_MigrateVM_h32bit_16 = Properties.Resources._000_MigrateVM_h32bit_16; - public static Image _000_MigrateVM_h32bit_32 = Properties.Resources._000_MigrateVM_h32bit_32; - public static Image _000_Module_h32bit_16 = Properties.Resources._000_Module_h32bit_16; - public static Image _000_Network_h32bit_16 = Properties.Resources._000_Network_h32bit_16; - public static Image _000_NewNetwork_h32bit_32 = Properties.Resources._000_NewNetwork_h32bit_32; - public static Image _000_NewStorage_h32bit_16 = Properties.Resources._000_NewStorage_h32bit_16; - public static Image _000_NewStorage_h32bit_24 = Properties.Resources._000_NewStorage_h32bit_24; - public static Image _000_NewStorage_h32bit_32 = Properties.Resources._000_NewStorage_h32bit_32; - public static Image _000_NewVirtualAppliance_h32bit_16 = Properties.Resources._000_NewVirtualAppliance_h32bit_16; - public static Image _000_NewVirtualAppliance_h32bit_32 = Properties.Resources._000_NewVirtualAppliance_h32bit_32; - public static Image _000_Optimize_h32bit_16 = Properties.Resources._000_Optimize_h32bit_16; - public static Image _000_Patch_h32bit_16 = Properties.Resources._000_Patch_h32bit_16; - public static Image _000_Patch_h32bit_32 = Properties.Resources._000_Patch_h32bit_32; - public static Image _000_paused_h32bit_16 = Properties.Resources._000_paused_h32bit_16; - public static Image _000_paused_h32bit_16_green = Properties.Resources._000_paused_h32bit_16_green; - public static Image _000_Paused_h32bit_24 = Properties.Resources._000_Paused_h32bit_24; - public static Image _000_Paused_h32bit_24_green = Properties.Resources._000_Paused_h32bit_24_green; - public static Image _000_Pool_h32bit_16 = Properties.Resources._000_Pool_h32bit_16; - public static Image _000_Pool_h32bit_16_w_alert = Properties.Resources._000_Pool_h32bit_16_w_alert; - public static Image _000_PoolConnected_h32bit_16 = Properties.Resources._000_PoolConnected_h32bit_16; - public static Image _000_PoolNew_h32bit_16 = Properties.Resources._000_PoolNew_h32bit_16; - public static Image _000_PoolNew_h32bit_24 = Properties.Resources._000_PoolNew_h32bit_24; - public static Image _000_RebootVM_h32bit_16 = Properties.Resources._000_RebootVM_h32bit_16; - public static Image _000_RemoveIPAddress_h32bit_16 = Properties.Resources._000_RemoveIPAddress_h32bit_16; - public static Image _000_RemoveSite_h32bit_16 = Properties.Resources._000_RemoveSite_h32bit_16; - public static Image _000_Resumed_h32bit_16 = Properties.Resources._000_Resumed_h32bit_16; - public static Image _000_Resumed_h32bit_16_green = Properties.Resources._000_Resumed_h32bit_16_green; - public static Image _000_Resumed_h32bit_24 = Properties.Resources._000_Resumed_h32bit_24; - public static Image _000_Resumed_h32bit_24_green = Properties.Resources._000_Resumed_h32bit_24_green; - public static Image _000_ScheduledVMsnapshotDiskMemory_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskMemory_h32bit_16; - public static Image _000_ScheduledVMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_ScheduledVMSnapshotDiskMemory_h32bit_32; - public static Image _000_ScheduledVMsnapshotDiskOnly_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_16; - public static Image _000_ScheduledVMsnapshotDiskOnly_h32bit_32 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_32; - public static Image _000_Search_h32bit_16 = Properties.Resources._000_Search_h32bit_16; - public static Image _000_Server_h32bit_16 = Properties.Resources._000_Server_h32bit_16; - public static Image _000_Server_h32bit_16_w_alert = Properties.Resources._000_Server_h32bit_16_w_alert; - public static Image _000_ServerDisconnected_h32bit_16 = Properties.Resources._000_ServerDisconnected_h32bit_16; - public static Image _000_ServerErrorFile_h32bit_16 = Properties.Resources._000_ServerErrorFile_h32bit_16; - public static Image _000_ServerHome_h32bit_16 = Properties.Resources._000_ServerHome_h32bit_16; - public static Image _000_ServerInProgress_h32bit_16 = Properties.Resources._000_ServerInProgress_h32bit_16; - public static Image _000_ServerMaintenance_h32bit_16 = Properties.Resources._000_ServerMaintenance_h32bit_16; - public static Image _000_ServerMaintenance_h32bit_32 = Properties.Resources._000_ServerMaintenance_h32bit_32; - public static Image _000_ServerWlb_h32bit_16 = Properties.Resources._000_ServerWlb_h32bit_16; - public static Image _000_Sites_h32bit_16 = Properties.Resources._000_Sites_h32bit_16; - public static Image _000_SliderTexture = Properties.Resources._000_SliderTexture; - public static Image _000_StartVM_h32bit_16 = Properties.Resources._000_StartVM_h32bit_16; - public static Image _000_StoppedVM_h32bit_16 = Properties.Resources._000_StoppedVM_h32bit_16; - public static Image _000_Storage_h32bit_16 = Properties.Resources._000_Storage_h32bit_16; - public static Image _000_StorageBroken_h32bit_16 = Properties.Resources._000_StorageBroken_h32bit_16; - public static Image _000_StorageDefault_h32bit_16 = Properties.Resources._000_StorageDefault_h32bit_16; - public static Image _000_StorageDisabled_h32bit_16 = Properties.Resources._000_StorageDisabled_h32bit_16; - public static Image _000_SuspendVM_h32bit_16 = Properties.Resources._000_SuspendVM_h32bit_16; - public static Image _000_SwitcherBackground = Properties.Resources._000_SwitcherBackground; - public static Image _000_Tag_h32bit_16 = Properties.Resources._000_Tag_h32bit_16; - public static Image _000_TCP_IPGroup_h32bit_16 = Properties.Resources._000_TCP_IPGroup_h32bit_16; - public static Image _000_TemplateDisabled_h32bit_16 = Properties.Resources._000_TemplateDisabled_h32bit_16; - public static Image _000_TestFailover_h32bit_32 = Properties.Resources._000_TestFailover_h32bit_32; - public static Image _000_Tick_h32bit_16 = Properties.Resources._000_Tick_h32bit_16; - public static Image _000_ToolBar_Pref_Icon_dis = Properties.Resources._000_ToolBar_Pref_Icon_dis; - public static Image _000_ToolBar_Pref_Icon_ovr = Properties.Resources._000_ToolBar_Pref_Icon_ovr; - public static Image _000_ToolBar_Pref_Icon_up = Properties.Resources._000_ToolBar_Pref_Icon_up; - public static Image _000_ToolBar_USB_Icon_dis = Properties.Resources._000_ToolBar_USB_Icon_dis; - public static Image _000_ToolBar_USB_Icon_ovr = Properties.Resources._000_ToolBar_USB_Icon_ovr; - public static Image _000_ToolBar_USB_Icon_up = Properties.Resources._000_ToolBar_USB_Icon_up; - public static Image _000_TreeConnected_h32bit_16 = Properties.Resources._000_TreeConnected_h32bit_16; - public static Image _000_UpgradePool_h32bit_32 = Properties.Resources._000_UpgradePool_h32bit_32; - public static Image _000_User_h32bit_16 = Properties.Resources._000_User_h32bit_16; - public static Image _000_UserAndGroup_h32bit_16 = Properties.Resources._000_UserAndGroup_h32bit_16; - public static Image _000_UserAndGroup_h32bit_32 = Properties.Resources._000_UserAndGroup_h32bit_32; - public static Image _000_UserTemplate_h32bit_16 = Properties.Resources._000_UserTemplate_h32bit_16; - public static Image _000_ViewModeList_h32bit_16 = Properties.Resources._000_ViewModeList_h32bit_16; - public static Image _000_ViewModeTree_h32bit_16 = Properties.Resources._000_ViewModeTree_h32bit_16; - public static Image _000_VirtualAppliance_h32bit_16 = Properties.Resources._000_VirtualAppliance_h32bit_16; - public static Image _000_VirtualStorage_h32bit_16 = Properties.Resources._000_VirtualStorage_h32bit_16; - public static Image _000_VM_h32bit_16 = Properties.Resources._000_VM_h32bit_16; - public static Image _000_VM_h32bit_24 = Properties.Resources._000_VM_h32bit_24; - public static Image _000_VMDisabled_h32bit_16 = Properties.Resources._000_VMDisabled_h32bit_16; - public static Image _000_VMPausedDisabled_h32bit_16 = Properties.Resources._000_VMPausedDisabled_h32bit_16; - public static Image _000_VMSession_h32bit_16 = Properties.Resources._000_VMSession_h32bit_16; - public static Image _000_VMSnapshotDiskMemory_h32bit_16 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_16; - public static Image _000_VMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_32; - public static Image _000_VMSnapShotDiskOnly_h32bit_16 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_16; - public static Image _000_VMSnapShotDiskOnly_h32bit_32 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_32; - public static Image _000_VMStarting_h32bit_16 = Properties.Resources._000_VMStarting_h32bit_16; - public static Image _000_VMStartingDisabled_h32bit_16 = Properties.Resources._000_VMStartingDisabled_h32bit_16; - public static Image _000_VMStoppedDisabled_h32bit_16 = Properties.Resources._000_VMStoppedDisabled_h32bit_16; - public static Image _000_VMTemplate_h32bit_16 = Properties.Resources._000_VMTemplate_h32bit_16; - public static Image _000_WarningAlert_h32bit_32 = Properties.Resources._000_WarningAlert_h32bit_32; - public static Image _000_weighting_h32bit_16 = Properties.Resources._000_weighting_h32bit_16; - public static Image _000_XenCenterAlerts_h32bit_24 = Properties.Resources._000_XenCenterAlerts_h32bit_24; - public static Image _001_Back_h32bit_24 = Properties.Resources._001_Back_h32bit_24; - public static Image _001_CreateVM_h32bit_16 = Properties.Resources._001_CreateVM_h32bit_16; - public static Image _001_ForceReboot_h32bit_16 = Properties.Resources._001_ForceReboot_h32bit_16; - public static Image _001_ForceReboot_h32bit_24 = Properties.Resources._001_ForceReboot_h32bit_24; - public static Image _001_ForceShutDown_h32bit_16 = Properties.Resources._001_ForceShutDown_h32bit_16; - public static Image _001_ForceShutDown_h32bit_24 = Properties.Resources._001_ForceShutDown_h32bit_24; - public static Image _001_Forward_h32bit_24 = Properties.Resources._001_Forward_h32bit_24; - public static Image _001_LifeCycle_h32bit_24 = Properties.Resources._001_LifeCycle_h32bit_24; - public static Image _001_PerformanceGraph_h32bit_16 = Properties.Resources._001_PerformanceGraph_h32bit_16; - public static Image _001_Pin_h32bit_16 = Properties.Resources._001_Pin_h32bit_16; - public static Image _001_PowerOn_h32bit_16 = Properties.Resources._001_PowerOn_h32bit_16; - public static Image _001_PowerOn_h32bit_24 = Properties.Resources._001_PowerOn_h32bit_24; - public static Image _001_Reboot_h32bit_16 = Properties.Resources._001_Reboot_h32bit_16; - public static Image _001_Reboot_h32bit_24 = Properties.Resources._001_Reboot_h32bit_24; - public static Image _001_ShutDown_h32bit_16 = Properties.Resources._001_ShutDown_h32bit_16; - public static Image _001_ShutDown_h32bit_24 = Properties.Resources._001_ShutDown_h32bit_24; - public static Image _001_Tools_h32bit_16 = Properties.Resources._001_Tools_h32bit_16; - public static Image _001_WindowView_h32bit_16 = Properties.Resources._001_WindowView_h32bit_16; - public static Image _002_Configure_h32bit_16 = Properties.Resources._002_Configure_h32bit_16; - public static Image _015_Download_h32bit_32 = Properties.Resources._015_Download_h32bit_32; - public static Image _075_TickRound_h32bit_16 = Properties.Resources._075_TickRound_h32bit_16; - public static Image _075_WarningRound_h32bit_16 = Properties.Resources._075_WarningRound_h32bit_16; - public static Image _112_LeftArrowLong_Blue_24x24_72 = Properties.Resources._112_LeftArrowLong_Blue_24x24_72; - public static Image _112_RightArrowLong_Blue_24x24_72 = Properties.Resources._112_RightArrowLong_Blue_24x24_72; - public static Image about_box_graphic_423x79 = Properties.Resources.about_box_graphic_423x79; - public static Image ajax_loader = Properties.Resources.ajax_loader; - public static Image alert1_16 = Properties.Resources.alert1_16; - public static Image alert2_16 = Properties.Resources.alert2_16; - public static Image alert3_16 = Properties.Resources.alert3_16; - public static Image alert4_16 = Properties.Resources.alert4_16; - public static Image alert5_16 = Properties.Resources.alert5_16; - public static Image alert6_16 = Properties.Resources.alert6_16; - public static Image alerts_32 = Properties.Resources.alerts_32; - public static Image ascending_triangle = Properties.Resources.ascending_triangle; - public static Image asterisk = Properties.Resources.asterisk; - public static Image attach_24 = Properties.Resources.attach_24; - public static Image attach_virtualstorage_32 = Properties.Resources.attach_virtualstorage_32; - public static Image backup_restore_32 = Properties.Resources.backup_restore_32; - public static Image cancelled_action_16 = Properties.Resources.cancelled_action_16; - public static Image centos_16x = Properties.Resources.centos_16x; - public static Image change_password_16 = Properties.Resources.change_password_16; - public static Image change_password_32 = Properties.Resources.change_password_32; - public static Image clonevm_16 = Properties.Resources.clonevm_16; - public static Image close_16 = Properties.Resources.close_16; - public static Image commands_16 = Properties.Resources.commands_16; - public static Image console_16 = Properties.Resources.console_16; - public static Image contracted_triangle = Properties.Resources.contracted_triangle; - public static Image copy_16 = Properties.Resources.copy_16; - public static Image coreos_16 = Properties.Resources.coreos_16; - public static Image coreos_globe_icon = Properties.Resources.coreos_globe_icon; - public static Image cross = Properties.Resources.cross; - public static Image DateTime16 = Properties.Resources.DateTime16; - public static Image DC_16 = Properties.Resources.DC_16; - public static Image debian_16x = Properties.Resources.debian_16x; - public static Image descending_triangle = Properties.Resources.descending_triangle; - public static Image desktop = Properties.Resources.desktop; - public static Image detach_24 = Properties.Resources.detach_24; - public static Image edit_16 = Properties.Resources.edit_16; - public static Image expanded_triangle = Properties.Resources.expanded_triangle; - public static Image export_32 = Properties.Resources.export_32; - public static Image folder_grey = Properties.Resources.folder_grey; - public static Image folder_separator = Properties.Resources.folder_separator; - public static Image grab = Properties.Resources.grab; - public static Image grapharea = Properties.Resources.grapharea; - public static Image graphline = Properties.Resources.graphline; - public static Image gripper = Properties.Resources.gripper; - public static Image ha_16 = Properties.Resources.ha_16; - public static Image help_16_hover = Properties.Resources.help_16_hover; - public static Image help_24 = Properties.Resources.help_24; - public static Image help_24_hover = Properties.Resources.help_24_hover; - public static Image help_32_hover = Properties.Resources.help_32_hover; - public static Image homepage_bullet = Properties.Resources.homepage_bullet; - public static Image import_32 = Properties.Resources.import_32; - public static Image infra_view_16 = Properties.Resources.infra_view_16; - public static Image infra_view_16_textured = Properties.Resources.infra_view_16_textured; - public static Image infra_view_24 = Properties.Resources.infra_view_24; - public static Image licensekey_32 = Properties.Resources.licensekey_32; - public static Image lifecycle_hot = Properties.Resources.lifecycle_hot; - public static Image lifecycle_pressed = Properties.Resources.lifecycle_pressed; - public static Image log_destination_16 = Properties.Resources.log_destination_16; - public static Image Logo = Properties.Resources.Logo; - public static Image memory_dynmax_slider = Properties.Resources.memory_dynmax_slider; - public static Image memory_dynmax_slider_dark = Properties.Resources.memory_dynmax_slider_dark; - public static Image memory_dynmax_slider_light = Properties.Resources.memory_dynmax_slider_light; - public static Image memory_dynmax_slider_noedit = Properties.Resources.memory_dynmax_slider_noedit; - public static Image memory_dynmax_slider_noedit_small = Properties.Resources.memory_dynmax_slider_noedit_small; - public static Image memory_dynmax_slider_small = Properties.Resources.memory_dynmax_slider_small; - public static Image memory_dynmin_slider = Properties.Resources.memory_dynmin_slider; - public static Image memory_dynmin_slider_dark = Properties.Resources.memory_dynmin_slider_dark; - public static Image memory_dynmin_slider_light = Properties.Resources.memory_dynmin_slider_light; - public static Image memory_dynmin_slider_noedit = Properties.Resources.memory_dynmin_slider_noedit; - public static Image memory_dynmin_slider_noedit_small = Properties.Resources.memory_dynmin_slider_noedit_small; - public static Image memory_dynmin_slider_small = Properties.Resources.memory_dynmin_slider_small; - public static Image minus = Properties.Resources.minus; - public static Image more_16 = Properties.Resources.more_16; - public static Image neokylin_16x = Properties.Resources.neokylin_16x; - public static Image notif_alerts_16 = Properties.Resources.notif_alerts_16; - public static Image notif_events_16 = Properties.Resources.notif_events_16; - public static Image notif_events_errors_16 = Properties.Resources.notif_events_errors_16; - public static Image notif_none_16 = Properties.Resources.notif_none_16; - public static Image notif_none_24 = Properties.Resources.notif_none_24; - public static Image notif_updates_16 = Properties.Resources.notif_updates_16; - public static Image objects_16 = Properties.Resources.objects_16; - public static Image objects_16_textured = Properties.Resources.objects_16_textured; - public static Image objects_24 = Properties.Resources.objects_24; - public static Image oracle_16x = Properties.Resources.oracle_16x; - public static Image org_view_16 = Properties.Resources.org_view_16; - public static Image org_view_24 = Properties.Resources.org_view_24; - public static Image padlock = Properties.Resources.padlock; - public static Image paste_16 = Properties.Resources.paste_16; - public static Image PausedDC_16 = Properties.Resources.PausedDC_16; - public static Image PDChevronDown = Properties.Resources.PDChevronDown; - public static Image PDChevronDownOver = Properties.Resources.PDChevronDownOver; - public static Image PDChevronLeft = Properties.Resources.PDChevronLeft; - public static Image PDChevronRight = Properties.Resources.PDChevronRight; - public static Image PDChevronUp = Properties.Resources.PDChevronUp; - public static Image PDChevronUpOver = Properties.Resources.PDChevronUpOver; - public static Image pool_up_16 = Properties.Resources.pool_up_16; - public static Image redhat_16x = Properties.Resources.redhat_16x; - public static Image Refresh16 = Properties.Resources.Refresh16; - public static Image RunningDC_16 = Properties.Resources.RunningDC_16; - public static Image saved_searches_16 = Properties.Resources.saved_searches_16; - public static Image saved_searches_24 = Properties.Resources.saved_searches_24; - public static Image scilinux_16x = Properties.Resources.scilinux_16x; - public static Image server_up_16 = Properties.Resources.server_up_16; - public static Image sl_16 = Properties.Resources.sl_16; - public static Image sl_add_storage_system_16 = Properties.Resources.sl_add_storage_system_16; - public static Image sl_add_storage_system_32 = Properties.Resources.sl_add_storage_system_32; - public static Image sl_add_storage_system_small_16 = Properties.Resources.sl_add_storage_system_small_16; - public static Image sl_connected_16 = Properties.Resources.sl_connected_16; - public static Image sl_connecting_16 = Properties.Resources.sl_connecting_16; - public static Image sl_disconnected_16 = Properties.Resources.sl_disconnected_16; - public static Image sl_lun_16 = Properties.Resources.sl_lun_16; - public static Image sl_luns_16 = Properties.Resources.sl_luns_16; - public static Image sl_pool_16 = Properties.Resources.sl_pool_16; - public static Image sl_pools_16 = Properties.Resources.sl_pools_16; - public static Image sl_system_16 = Properties.Resources.sl_system_16; - public static Image SpinningFrame0 = Properties.Resources.SpinningFrame0; - public static Image SpinningFrame1 = Properties.Resources.SpinningFrame1; - public static Image SpinningFrame2 = Properties.Resources.SpinningFrame2; - public static Image SpinningFrame3 = Properties.Resources.SpinningFrame3; - public static Image SpinningFrame4 = Properties.Resources.SpinningFrame4; - public static Image SpinningFrame5 = Properties.Resources.SpinningFrame5; - public static Image SpinningFrame6 = Properties.Resources.SpinningFrame6; - public static Image SpinningFrame7 = Properties.Resources.SpinningFrame7; - public static Image StoppedDC_16 = Properties.Resources.StoppedDC_16; - public static Image subscribe = Properties.Resources.subscribe; - public static Image suse_16x = Properties.Resources.suse_16x; - public static Image tools_notinstalled_16x = Properties.Resources.tools_notinstalled_16x; - public static Image tools_outofdate_16x = Properties.Resources.tools_outofdate_16x; - public static Image tools_uptodate_16x = Properties.Resources.tools_uptodate_16x; - public static Image tree_minus = Properties.Resources.tree_minus; - public static Image tree_plus = Properties.Resources.tree_plus; - public static Image tshadowdown = Properties.Resources.tshadowdown; - public static Image tshadowdownleft = Properties.Resources.tshadowdownleft; - public static Image tshadowdownright = Properties.Resources.tshadowdownright; - public static Image tshadowright = Properties.Resources.tshadowright; - public static Image tshadowtopright = Properties.Resources.tshadowtopright; - public static Image ubuntu_16x = Properties.Resources.ubuntu_16x; - public static Image upsell_16 = Properties.Resources.upsell_16; - public static Image usagebar_0 = Properties.Resources.usagebar_0; - public static Image usagebar_1 = Properties.Resources.usagebar_1; - public static Image usagebar_10 = Properties.Resources.usagebar_10; - public static Image usagebar_2 = Properties.Resources.usagebar_2; - public static Image usagebar_3 = Properties.Resources.usagebar_3; - public static Image usagebar_4 = Properties.Resources.usagebar_4; - public static Image usagebar_5 = Properties.Resources.usagebar_5; - public static Image usagebar_6 = Properties.Resources.usagebar_6; - public static Image usagebar_7 = Properties.Resources.usagebar_7; - public static Image usagebar_8 = Properties.Resources.usagebar_8; - public static Image usagebar_9 = Properties.Resources.usagebar_9; - public static Image virtualstorage_snapshot_16 = Properties.Resources.virtualstorage_snapshot_16; - public static Image vmBackground = Properties.Resources.vmBackground; - public static Image vmBackgroundCurrent = Properties.Resources.vmBackgroundCurrent; - public static Image VMTemplate_h32bit_32 = Properties.Resources.VMTemplate_h32bit_32; - public static Image vnc_local_cursor = Properties.Resources.vnc_local_cursor; - public static Image windows_h32bit_16 = Properties.Resources.windows_h32bit_16; - public static Image wizard_background = Properties.Resources.wizard_background; - public static Image WLB = Properties.Resources.WLB; - public static Image XS = Properties.Resources.XS; - public static Image ConversionManager = Properties.Resources.xcm; - public static Image ConversionManager_32 = Properties.Resources.xcm_32x32; - public static Image queued = Properties.Resources.queued; -public public static Bitmap asianux_16x = Properties.Resources.asianux_16x; + // the following are generated from Resources using: + // cat Resources.Designer.cs | grep 'internal static System.Drawing.Bitmap' | sed "s/ {//g" | awk -F"Bitmap " '{print"public static Bitmap " $2 " = Properties.Resources." $2 ";"}' + public static Bitmap _000_Abort_h32bit_16 = Properties.Resources._000_Abort_h32bit_16; + public static Bitmap _000_Abort_gray_h32bit_16 = Properties.Resources._000_Abort_gray_h32bit_16; + public static Bitmap _000_AddApplicationServer_h32bit_16 = Properties.Resources._000_AddApplicationServer_h32bit_16; + public static Bitmap _000_AddApplicationServer_h32bit_24 = Properties.Resources._000_AddApplicationServer_h32bit_24; + public static Bitmap _000_AddIPAddress_h32bit_16 = Properties.Resources._000_AddIPAddress_h32bit_16; + public static Bitmap _000_AddSite_h32bit_16 = Properties.Resources._000_AddSite_h32bit_16; + public static Bitmap _000_Alert2_h32bit_16 = Properties.Resources._000_Alert2_h32bit_16; + public static Bitmap _000_BackupMetadata_h32bit_16 = Properties.Resources._000_BackupMetadata_h32bit_16; + public static Bitmap _000_BackupMetadata_h32bit_32 = Properties.Resources._000_BackupMetadata_h32bit_32; + public static Bitmap _000_ConfigureIPAddresses_h32bit_16 = Properties.Resources._000_ConfigureIPAddresses_h32bit_16; + public static Bitmap _000_CPU_h32bit_16 = Properties.Resources._000_CPU_h32bit_16; + public static Bitmap _000_CreateVirtualStorage_h32bit_32 = Properties.Resources._000_CreateVirtualStorage_h32bit_32; + public static Bitmap _000_CreateVM_h32bit_24 = Properties.Resources._000_CreateVM_h32bit_24; + public static Bitmap _000_CreateVM_h32bit_32 = Properties.Resources._000_CreateVM_h32bit_32; + public static Bitmap _000_defaultSpyglass_h32bit_16 = Properties.Resources._000_defaultSpyglass_h32bit_16; + public static Bitmap _000_DeleteAllMessages_h32bit_16 = Properties.Resources._000_DeleteAllMessages_h32bit_16; + public static Bitmap _000_DeleteMessage_h32bit_16 = Properties.Resources._000_DeleteMessage_h32bit_16; + public static Bitmap _000_DeleteVirtualAppliance_h32bit_16 = Properties.Resources._000_DeleteVirtualAppliance_h32bit_16; + public static Bitmap _000_DisasterRecovery_h32bit_32 = Properties.Resources._000_DisasterRecovery_h32bit_32; + public static Bitmap _000_Email_h32bit_16 = Properties.Resources._000_Email_h32bit_16; + public static Bitmap _000_EnablePowerControl_h32bit_16 = Properties.Resources._000_EnablePowerControl_h32bit_16; + public static Bitmap _000_error_h32bit_16 = Properties.Resources._000_error_h32bit_16; + public static Bitmap _000_error_h32bit_32 = Properties.Resources._000_error_h32bit_32; + public static Bitmap _000_ExcludeHost_h32bit_16 = Properties.Resources._000_ExcludeHost_h32bit_16; + public static Bitmap _000_ExportMessages_h32bit_16 = Properties.Resources._000_ExportMessages_h32bit_16; + public static Bitmap _000_ExportVirtualAppliance_h32bit_16 = Properties.Resources._000_ExportVirtualAppliance_h32bit_16; + public static Bitmap _000_ExportVirtualAppliance_h32bit_32 = Properties.Resources._000_ExportVirtualAppliance_h32bit_32; + public static Bitmap _000_Failback_h32bit_32 = Properties.Resources._000_Failback_h32bit_32; + public static Bitmap _000_Failover_h32bit_32 = Properties.Resources._000_Failover_h32bit_32; + public static Bitmap _000_Fields_h32bit_16 = Properties.Resources._000_Fields_h32bit_16; + public static Bitmap _000_FilterDates_h32bit_16 = Properties.Resources._000_FilterDates_h32bit_16; + public static Bitmap _000_FilterServer_h32bit_16 = Properties.Resources._000_FilterServer_h32bit_16; + public static Bitmap _000_FilterSeverity_h32bit_16 = Properties.Resources._000_FilterSeverity_h32bit_16; + public static Bitmap _000_Folder_open_h32bit_16 = Properties.Resources._000_Folder_open_h32bit_16; + public static Bitmap _000_GetMemoryInfo_h32bit_16 = Properties.Resources._000_GetMemoryInfo_h32bit_16; + public static Bitmap _000_GetMemoryInfo_h32bit_32 = Properties.Resources._000_GetMemoryInfo_h32bit_32; + public static Bitmap _000_GetServerReport_h32bit_16 = Properties.Resources._000_GetServerReport_h32bit_16; + public static Bitmap _000_GetServerReport_h32bit_32 = Properties.Resources._000_GetServerReport_h32bit_32; + public static Bitmap _000_HAServer_h32bit_32 = Properties.Resources._000_HAServer_h32bit_32; + public static Bitmap _000_HelpIM_h32bit_16 = Properties.Resources._000_HelpIM_h32bit_16; + public static Bitmap _000_HelpIM_h32bit_32 = Properties.Resources._000_HelpIM_h32bit_32; + public static Bitmap _000_HighlightVM_h32bit_24 = Properties.Resources._000_HighlightVM_h32bit_24; + public static Bitmap _000_HighLightVM_h32bit_32 = Properties.Resources._000_HighLightVM_h32bit_32; + public static Bitmap _000_host_0_star = Properties.Resources._000_host_0_star; + public static Bitmap _000_host_1_star = Properties.Resources._000_host_1_star; + public static Bitmap _000_host_10_star = Properties.Resources._000_host_10_star; + public static Bitmap _000_host_2_star = Properties.Resources._000_host_2_star; + public static Bitmap _000_host_3_star = Properties.Resources._000_host_3_star; + public static Bitmap _000_host_4_star = Properties.Resources._000_host_4_star; + public static Bitmap _000_host_5_star = Properties.Resources._000_host_5_star; + public static Bitmap _000_host_6_star = Properties.Resources._000_host_6_star; + public static Bitmap _000_host_7_star = Properties.Resources._000_host_7_star; + public static Bitmap _000_host_8_star = Properties.Resources._000_host_8_star; + public static Bitmap _000_host_9_star = Properties.Resources._000_host_9_star; + public static Bitmap _000_HostUnpatched_h32bit_16 = Properties.Resources._000_HostUnpatched_h32bit_16; + public static Bitmap _000_ImportVirtualAppliance_h32bit_16 = Properties.Resources._000_ImportVirtualAppliance_h32bit_16; + public static Bitmap _000_ImportVirtualAppliance_h32bit_32 = Properties.Resources._000_ImportVirtualAppliance_h32bit_32; + public static Bitmap _000_ImportVM_h32bit_32 = Properties.Resources._000_ImportVM_h32bit_32; + public static Bitmap _000_Info3_h32bit_16 = Properties.Resources._000_Info3_h32bit_16; + public static Bitmap _000_ManagementInterface_h32bit_16 = Properties.Resources._000_ManagementInterface_h32bit_16; + public static Bitmap _000_MigrateStoppedVM_h32bit_16 = Properties.Resources._000_MigrateStoppedVM_h32bit_16; + public static Bitmap _000_MigrateSuspendedVM_h32bit_16 = Properties.Resources._000_MigrateSuspendedVM_h32bit_16; + public static Bitmap _000_MigrateVM_h32bit_16 = Properties.Resources._000_MigrateVM_h32bit_16; + public static Bitmap _000_MigrateVM_h32bit_32 = Properties.Resources._000_MigrateVM_h32bit_32; + public static Bitmap _000_Module_h32bit_16 = Properties.Resources._000_Module_h32bit_16; + public static Bitmap _000_Network_h32bit_16 = Properties.Resources._000_Network_h32bit_16; + public static Bitmap _000_NewNetwork_h32bit_32 = Properties.Resources._000_NewNetwork_h32bit_32; + public static Bitmap _000_NewStorage_h32bit_16 = Properties.Resources._000_NewStorage_h32bit_16; + public static Bitmap _000_NewStorage_h32bit_24 = Properties.Resources._000_NewStorage_h32bit_24; + public static Bitmap _000_NewStorage_h32bit_32 = Properties.Resources._000_NewStorage_h32bit_32; + public static Bitmap _000_NewVirtualAppliance_h32bit_16 = Properties.Resources._000_NewVirtualAppliance_h32bit_16; + public static Bitmap _000_NewVirtualAppliance_h32bit_32 = Properties.Resources._000_NewVirtualAppliance_h32bit_32; + public static Bitmap _000_Optimize_h32bit_16 = Properties.Resources._000_Optimize_h32bit_16; + public static Bitmap _000_Patch_h32bit_16 = Properties.Resources._000_Patch_h32bit_16; + public static Bitmap _000_Patch_h32bit_32 = Properties.Resources._000_Patch_h32bit_32; + public static Bitmap _000_paused_h32bit_16 = Properties.Resources._000_paused_h32bit_16; + public static Bitmap _000_Paused_h32bit_24 = Properties.Resources._000_Paused_h32bit_24; + public static Bitmap _000_paused_h32bit_16_green = Properties.Resources._000_paused_h32bit_16_green; + public static Bitmap _000_Paused_h32bit_24_green = Properties.Resources._000_Paused_h32bit_24_green; + public static Bitmap _000_Pool_h32bit_16 = Properties.Resources._000_Pool_h32bit_16; + public static Bitmap _000_Pool_h32bit_16_w_alert = Properties.Resources._000_Pool_h32bit_16_w_alert; + public static Bitmap _000_PoolConnected_h32bit_16 = Properties.Resources._000_PoolConnected_h32bit_16; + public static Bitmap _000_PoolNew_h32bit_16 = Properties.Resources._000_PoolNew_h32bit_16; + public static Bitmap _000_PoolNew_h32bit_24 = Properties.Resources._000_PoolNew_h32bit_24; + public static Bitmap _000_RebootVM_h32bit_16 = Properties.Resources._000_RebootVM_h32bit_16; + public static Bitmap _000_RemoveIPAddress_h32bit_16 = Properties.Resources._000_RemoveIPAddress_h32bit_16; + public static Bitmap _000_RemoveSite_h32bit_16 = Properties.Resources._000_RemoveSite_h32bit_16; + public static Bitmap _000_Resumed_h32bit_16 = Properties.Resources._000_Resumed_h32bit_16; + public static Bitmap _000_Resumed_h32bit_16_green = Properties.Resources._000_Resumed_h32bit_16_green; + public static Bitmap _000_Resumed_h32bit_24 = Properties.Resources._000_Resumed_h32bit_24; + public static Bitmap _000_Resumed_h32bit_24_green = Properties.Resources._000_Resumed_h32bit_24_green; + public static Bitmap _000_ScheduledVMsnapshotDiskMemory_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskMemory_h32bit_16; + public static Bitmap _000_ScheduledVMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_ScheduledVMSnapshotDiskMemory_h32bit_32; + public static Bitmap _000_ScheduledVMsnapshotDiskOnly_h32bit_16 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_16; + public static Bitmap _000_ScheduledVMsnapshotDiskOnly_h32bit_32 = Properties.Resources._000_ScheduledVMsnapshotDiskOnly_h32bit_32; + public static Bitmap _000_Search_h32bit_16 = Properties.Resources._000_Search_h32bit_16; + public static Bitmap _000_Server_h32bit_16 = Properties.Resources._000_Server_h32bit_16; + public static Bitmap _000_Server_h32bit_16_w_alert = Properties.Resources._000_Server_h32bit_16_w_alert; + public static Bitmap _000_ServerDisconnected_h32bit_16 = Properties.Resources._000_ServerDisconnected_h32bit_16; + public static Bitmap _000_ServerErrorFile_h32bit_16 = Properties.Resources._000_ServerErrorFile_h32bit_16; + public static Bitmap _000_ServerHome_h32bit_16 = Properties.Resources._000_ServerHome_h32bit_16; + public static Bitmap _000_ServerInProgress_h32bit_16 = Properties.Resources._000_ServerInProgress_h32bit_16; + public static Bitmap _000_ServerMaintenance_h32bit_16 = Properties.Resources._000_ServerMaintenance_h32bit_16; + public static Bitmap _000_ServerMaintenance_h32bit_32 = Properties.Resources._000_ServerMaintenance_h32bit_32; + public static Bitmap _000_ServerWlb_h32bit_16 = Properties.Resources._000_ServerWlb_h32bit_16; + public static Bitmap _000_Sites_h32bit_16 = Properties.Resources._000_Sites_h32bit_16; + public static Bitmap _000_SliderTexture = Properties.Resources._000_SliderTexture; + public static Bitmap _000_StartVM_h32bit_16 = Properties.Resources._000_StartVM_h32bit_16; + public static Bitmap _000_StoppedVM_h32bit_16 = Properties.Resources._000_StoppedVM_h32bit_16; + public static Bitmap _000_Storage_h32bit_16 = Properties.Resources._000_Storage_h32bit_16; + public static Bitmap _000_StorageBroken_h32bit_16 = Properties.Resources._000_StorageBroken_h32bit_16; + public static Bitmap _000_StorageDefault_h32bit_16 = Properties.Resources._000_StorageDefault_h32bit_16; + public static Bitmap _000_StorageDisabled_h32bit_16 = Properties.Resources._000_StorageDisabled_h32bit_16; + public static Bitmap _000_SuspendVM_h32bit_16 = Properties.Resources._000_SuspendVM_h32bit_16; + public static Bitmap _000_SwitcherBackground = Properties.Resources._000_SwitcherBackground; + public static Bitmap _000_Tag_h32bit_16 = Properties.Resources._000_Tag_h32bit_16; + public static Bitmap _000_TCP_IPGroup_h32bit_16 = Properties.Resources._000_TCP_IPGroup_h32bit_16; + public static Bitmap _000_TemplateDisabled_h32bit_16 = Properties.Resources._000_TemplateDisabled_h32bit_16; + public static Bitmap _000_TestFailover_h32bit_32 = Properties.Resources._000_TestFailover_h32bit_32; + public static Bitmap _000_Tick_h32bit_16 = Properties.Resources._000_Tick_h32bit_16; + public static Bitmap _000_Tick_yellow_h32bit_16 = Properties.Resources._000_Tick_yellow_h32bit_16; + public static Bitmap _000_ToolBar_Pref_Icon_dis = Properties.Resources._000_ToolBar_Pref_Icon_dis; + public static Bitmap _000_ToolBar_Pref_Icon_ovr = Properties.Resources._000_ToolBar_Pref_Icon_ovr; + public static Bitmap _000_ToolBar_Pref_Icon_up = Properties.Resources._000_ToolBar_Pref_Icon_up; + public static Bitmap _000_ToolBar_USB_Icon_dis = Properties.Resources._000_ToolBar_USB_Icon_dis; + public static Bitmap _000_ToolBar_USB_Icon_ovr = Properties.Resources._000_ToolBar_USB_Icon_ovr; + public static Bitmap _000_ToolBar_USB_Icon_up = Properties.Resources._000_ToolBar_USB_Icon_up; + public static Bitmap _000_TreeConnected_h32bit_16 = Properties.Resources._000_TreeConnected_h32bit_16; + public static Bitmap _000_UpgradePool_h32bit_32 = Properties.Resources._000_UpgradePool_h32bit_32; + public static Bitmap _000_User_h32bit_16 = Properties.Resources._000_User_h32bit_16; + public static Bitmap _000_UserAndGroup_h32bit_16 = Properties.Resources._000_UserAndGroup_h32bit_16; + public static Bitmap _000_UserAndGroup_h32bit_32 = Properties.Resources._000_UserAndGroup_h32bit_32; + public static Bitmap _000_UserTemplate_h32bit_16 = Properties.Resources._000_UserTemplate_h32bit_16; + public static Bitmap _000_ViewModeList_h32bit_16 = Properties.Resources._000_ViewModeList_h32bit_16; + public static Bitmap _000_ViewModeTree_h32bit_16 = Properties.Resources._000_ViewModeTree_h32bit_16; + public static Bitmap _000_VirtualAppliance_h32bit_16 = Properties.Resources._000_VirtualAppliance_h32bit_16; + public static Bitmap _000_VirtualStorage_h32bit_16 = Properties.Resources._000_VirtualStorage_h32bit_16; + public static Bitmap _000_VM_h32bit_16 = Properties.Resources._000_VM_h32bit_16; + public static Bitmap _000_VM_h32bit_24 = Properties.Resources._000_VM_h32bit_24; + public static Bitmap _000_VMDisabled_h32bit_16 = Properties.Resources._000_VMDisabled_h32bit_16; + public static Bitmap _000_VMPausedDisabled_h32bit_16 = Properties.Resources._000_VMPausedDisabled_h32bit_16; + public static Bitmap _000_VMSession_h32bit_16 = Properties.Resources._000_VMSession_h32bit_16; + public static Bitmap _000_VMSnapshotDiskMemory_h32bit_16 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_16; + public static Bitmap _000_VMSnapshotDiskMemory_h32bit_32 = Properties.Resources._000_VMSnapshotDiskMemory_h32bit_32; + public static Bitmap _000_VMSnapShotDiskOnly_h32bit_16 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_16; + public static Bitmap _000_VMSnapShotDiskOnly_h32bit_32 = Properties.Resources._000_VMSnapShotDiskOnly_h32bit_32; + public static Bitmap _000_VMStarting_h32bit_16 = Properties.Resources._000_VMStarting_h32bit_16; + public static Bitmap _000_VMStartingDisabled_h32bit_16 = Properties.Resources._000_VMStartingDisabled_h32bit_16; + public static Bitmap _000_VMStoppedDisabled_h32bit_16 = Properties.Resources._000_VMStoppedDisabled_h32bit_16; + public static Bitmap _000_VMTemplate_h32bit_16 = Properties.Resources._000_VMTemplate_h32bit_16; + public static Bitmap _000_WarningAlert_h32bit_32 = Properties.Resources._000_WarningAlert_h32bit_32; + public static Bitmap _000_weighting_h32bit_16 = Properties.Resources._000_weighting_h32bit_16; + public static Bitmap _001_Back_h32bit_24 = Properties.Resources._001_Back_h32bit_24; + public static Bitmap _001_CreateVM_h32bit_16 = Properties.Resources._001_CreateVM_h32bit_16; + public static Bitmap _001_ForceReboot_h32bit_16 = Properties.Resources._001_ForceReboot_h32bit_16; + public static Bitmap _001_ForceReboot_h32bit_24 = Properties.Resources._001_ForceReboot_h32bit_24; + public static Bitmap _001_ForceShutDown_h32bit_16 = Properties.Resources._001_ForceShutDown_h32bit_16; + public static Bitmap _001_ForceShutDown_h32bit_24 = Properties.Resources._001_ForceShutDown_h32bit_24; + public static Bitmap _001_Forward_h32bit_24 = Properties.Resources._001_Forward_h32bit_24; + public static Bitmap _001_LifeCycle_h32bit_24 = Properties.Resources._001_LifeCycle_h32bit_24; + public static Bitmap _001_PerformanceGraph_h32bit_16 = Properties.Resources._001_PerformanceGraph_h32bit_16; + public static Bitmap _001_Pin_h32bit_16 = Properties.Resources._001_Pin_h32bit_16; + public static Bitmap _001_PowerOn_h32bit_16 = Properties.Resources._001_PowerOn_h32bit_16; + public static Bitmap _001_PowerOn_h32bit_24 = Properties.Resources._001_PowerOn_h32bit_24; + public static Bitmap _001_Reboot_h32bit_16 = Properties.Resources._001_Reboot_h32bit_16; + public static Bitmap _001_Reboot_h32bit_24 = Properties.Resources._001_Reboot_h32bit_24; + public static Bitmap _001_ShutDown_h32bit_16 = Properties.Resources._001_ShutDown_h32bit_16; + public static Bitmap _001_ShutDown_h32bit_24 = Properties.Resources._001_ShutDown_h32bit_24; + public static Bitmap _001_Tools_h32bit_16 = Properties.Resources._001_Tools_h32bit_16; + public static Bitmap _001_WindowView_h32bit_16 = Properties.Resources._001_WindowView_h32bit_16; + public static Bitmap _002_Configure_h32bit_16 = Properties.Resources._002_Configure_h32bit_16; + public static Bitmap _015_Download_h32bit_32 = Properties.Resources._015_Download_h32bit_32; + public static Bitmap _015_Download_h32bit_16 = Properties.Resources._015_Download_h32bit_16; + public static Bitmap _075_TickRound_h32bit_16 = Properties.Resources._075_TickRound_h32bit_16; + public static Bitmap _075_WarningRound_h32bit_16 = Properties.Resources._075_WarningRound_h32bit_16; + public static Bitmap _112_LeftArrowLong_Blue_24x24_72 = Properties.Resources._112_LeftArrowLong_Blue_24x24_72; + public static Bitmap _112_RightArrowLong_Blue_24x24_72 = Properties.Resources._112_RightArrowLong_Blue_24x24_72; + public static Bitmap about_box_graphic = Properties.Resources.about_box_graphic; + public static Bitmap ajax_loader = Properties.Resources.ajax_loader; + public static Bitmap alert1_16 = Properties.Resources.alert1_16; + public static Bitmap alert2_16 = Properties.Resources.alert2_16; + public static Bitmap alert3_16 = Properties.Resources.alert3_16; + public static Bitmap alert4_16 = Properties.Resources.alert4_16; + public static Bitmap alert5_16 = Properties.Resources.alert5_16; + public static Bitmap alert6_16 = Properties.Resources.alert6_16; + public static Bitmap ascending_triangle = Properties.Resources.ascending_triangle; + public static Bitmap asterisk = Properties.Resources.asterisk; + public static Bitmap attach_24 = Properties.Resources.attach_24; + public static Bitmap attach_virtualstorage_32 = Properties.Resources.attach_virtualstorage_32; + public static Bitmap backup_restore_32 = Properties.Resources.backup_restore_32; + public static Bitmap cancelled_action_16 = Properties.Resources.cancelled_action_16; + public static Bitmap centos_16x = Properties.Resources.centos_16x; + public static Bitmap change_password_16 = Properties.Resources.change_password_16; + public static Bitmap change_password_32 = Properties.Resources.change_password_32; + public static Bitmap clonevm_16 = Properties.Resources.clonevm_16; + public static Bitmap close_16 = Properties.Resources.close_16; + public static Bitmap commands_16 = Properties.Resources.commands_16; + public static Bitmap console_16 = Properties.Resources.console_16; + public static Bitmap contracted_triangle = Properties.Resources.contracted_triangle; + public static Bitmap copy_16 = Properties.Resources.copy_16; + public static Bitmap coreos_16 = Properties.Resources.coreos_16; + public static Bitmap coreos_globe_icon = Properties.Resources.coreos_globe_icon; + public static Bitmap cross = Properties.Resources.cross; + public static Bitmap DateTime16 = Properties.Resources.DateTime16; + public static Bitmap DC_16 = Properties.Resources.DC_16; + public static Bitmap debian_16x = Properties.Resources.debian_16x; + public static Bitmap descending_triangle = Properties.Resources.descending_triangle; + public static Bitmap desktop = Properties.Resources.desktop; + public static Bitmap detach_24 = Properties.Resources.detach_24; + public static Bitmap edit_16 = Properties.Resources.edit_16; + public static Bitmap expanded_triangle = Properties.Resources.expanded_triangle; + public static Bitmap export_32 = Properties.Resources.export_32; + public static Bitmap folder_grey = Properties.Resources.folder_grey; + public static Bitmap folder_separator = Properties.Resources.folder_separator; + public static Bitmap grab = Properties.Resources.grab; + public static Bitmap grapharea = Properties.Resources.grapharea; + public static Bitmap graphline = Properties.Resources.graphline; + public static Bitmap gripper = Properties.Resources.gripper; + public static Bitmap ha_16 = Properties.Resources.ha_16; + public static Bitmap help_16_hover = Properties.Resources.help_16_hover; + public static Bitmap help_24 = Properties.Resources.help_24; + public static Bitmap help_24_hover = Properties.Resources.help_24_hover; + public static Bitmap help_32_hover = Properties.Resources.help_32_hover; + public static Bitmap homepage_bullet = Properties.Resources.homepage_bullet; + public static Bitmap import_32 = Properties.Resources.import_32; + public static Bitmap infra_view_16 = Properties.Resources.infra_view_16; + public static Bitmap infra_view_16_textured = Properties.Resources.infra_view_16_textured; + public static Bitmap infra_view_24 = Properties.Resources.infra_view_24; + public static Bitmap licensekey_32 = Properties.Resources.licensekey_32; + public static Bitmap lifecycle_hot = Properties.Resources.lifecycle_hot; + public static Bitmap lifecycle_pressed = Properties.Resources.lifecycle_pressed; + public static Bitmap livepatch_16 = Properties.Resources.livepatch_16; + public static Bitmap log_destination_16 = Properties.Resources.log_destination_16; + public static Bitmap Logo = Properties.Resources.Logo; + public static Bitmap memory_dynmax_slider = Properties.Resources.memory_dynmax_slider; + public static Bitmap memory_dynmax_slider_dark = Properties.Resources.memory_dynmax_slider_dark; + public static Bitmap memory_dynmax_slider_light = Properties.Resources.memory_dynmax_slider_light; + public static Bitmap memory_dynmax_slider_noedit = Properties.Resources.memory_dynmax_slider_noedit; + public static Bitmap memory_dynmax_slider_noedit_small = Properties.Resources.memory_dynmax_slider_noedit_small; + public static Bitmap memory_dynmax_slider_small = Properties.Resources.memory_dynmax_slider_small; + public static Bitmap memory_dynmin_slider = Properties.Resources.memory_dynmin_slider; + public static Bitmap memory_dynmin_slider_dark = Properties.Resources.memory_dynmin_slider_dark; + public static Bitmap memory_dynmin_slider_light = Properties.Resources.memory_dynmin_slider_light; + public static Bitmap memory_dynmin_slider_noedit = Properties.Resources.memory_dynmin_slider_noedit; + public static Bitmap memory_dynmin_slider_noedit_small = Properties.Resources.memory_dynmin_slider_noedit_small; + public static Bitmap memory_dynmin_slider_small = Properties.Resources.memory_dynmin_slider_small; + public static Bitmap minus = Properties.Resources.minus; + public static Bitmap more_16 = Properties.Resources.more_16; + public static Bitmap neokylin_16x = Properties.Resources.neokylin_16x; + public static Bitmap notif_alerts_16 = Properties.Resources.notif_alerts_16; + public static Bitmap notif_events_16 = Properties.Resources.notif_events_16; + public static Bitmap notif_events_errors_16 = Properties.Resources.notif_events_errors_16; + public static Bitmap notif_none_16 = Properties.Resources.notif_none_16; + public static Bitmap notif_none_24 = Properties.Resources.notif_none_24; + public static Bitmap notif_updates_16 = Properties.Resources.notif_updates_16; + public static Bitmap objects_16 = Properties.Resources.objects_16; + public static Bitmap objects_16_textured = Properties.Resources.objects_16_textured; + public static Bitmap objects_24 = Properties.Resources.objects_24; + public static Bitmap oracle_16x = Properties.Resources.oracle_16x; + public static Bitmap org_view_16 = Properties.Resources.org_view_16; + public static Bitmap org_view_24 = Properties.Resources.org_view_24; + public static Bitmap padlock = Properties.Resources.padlock; + public static Bitmap paste_16 = Properties.Resources.paste_16; + public static Bitmap PausedDC_16 = Properties.Resources.PausedDC_16; + public static Bitmap PDChevronDown = Properties.Resources.PDChevronDown; + public static Bitmap PDChevronDownOver = Properties.Resources.PDChevronDownOver; + public static Bitmap PDChevronLeft = Properties.Resources.PDChevronLeft; + public static Bitmap PDChevronRight = Properties.Resources.PDChevronRight; + public static Bitmap PDChevronUp = Properties.Resources.PDChevronUp; + public static Bitmap PDChevronUpOver = Properties.Resources.PDChevronUpOver; + public static Bitmap pool_unpatched = Properties.Resources.pool_unpatched; + public static Bitmap pool_up_16 = Properties.Resources.pool_up_16; + public static Bitmap redhat_16x = Properties.Resources.redhat_16x; + public static Bitmap Refresh16 = Properties.Resources.Refresh16; + public static Bitmap RunningDC_16 = Properties.Resources.RunningDC_16; + public static Bitmap save_to_disk = Properties.Resources.save_to_disk; + public static Bitmap saved_searches_16 = Properties.Resources.saved_searches_16; + public static Bitmap saved_searches_24 = Properties.Resources.saved_searches_24; + public static Bitmap scilinux_16x = Properties.Resources.scilinux_16x; + public static Bitmap server_up_16 = Properties.Resources.server_up_16; + public static Bitmap sl_16 = Properties.Resources.sl_16; + public static Bitmap sl_add_storage_system_16 = Properties.Resources.sl_add_storage_system_16; + public static Bitmap sl_add_storage_system_32 = Properties.Resources.sl_add_storage_system_32; + public static Bitmap sl_add_storage_system_small_16 = Properties.Resources.sl_add_storage_system_small_16; + public static Bitmap sl_connected_16 = Properties.Resources.sl_connected_16; + public static Bitmap sl_connecting_16 = Properties.Resources.sl_connecting_16; + public static Bitmap sl_disconnected_16 = Properties.Resources.sl_disconnected_16; + public static Bitmap sl_lun_16 = Properties.Resources.sl_lun_16; + public static Bitmap sl_luns_16 = Properties.Resources.sl_luns_16; + public static Bitmap sl_pool_16 = Properties.Resources.sl_pool_16; + public static Bitmap sl_pools_16 = Properties.Resources.sl_pools_16; + public static Bitmap sl_system_16 = Properties.Resources.sl_system_16; + public static Bitmap SpinningFrame0 = Properties.Resources.SpinningFrame0; + public static Bitmap SpinningFrame1 = Properties.Resources.SpinningFrame1; + public static Bitmap SpinningFrame2 = Properties.Resources.SpinningFrame2; + public static Bitmap SpinningFrame3 = Properties.Resources.SpinningFrame3; + public static Bitmap SpinningFrame4 = Properties.Resources.SpinningFrame4; + public static Bitmap SpinningFrame5 = Properties.Resources.SpinningFrame5; + public static Bitmap SpinningFrame6 = Properties.Resources.SpinningFrame6; + public static Bitmap SpinningFrame7 = Properties.Resources.SpinningFrame7; + public static Bitmap splash = Properties.Resources.splash; + public static Bitmap StoppedDC_16 = Properties.Resources.StoppedDC_16; + public static Bitmap subscribe = Properties.Resources.subscribe; + public static Bitmap suse_16x = Properties.Resources.suse_16x; + public static Bitmap tools_notinstalled_16x = Properties.Resources.tools_notinstalled_16x; + public static Bitmap tools_outofdate_16x = Properties.Resources.tools_outofdate_16x; + public static Bitmap tools_uptodate_16x = Properties.Resources.tools_uptodate_16x; + public static Bitmap tpm = Properties.Resources.tpm; + public static Bitmap tree_minus = Properties.Resources.tree_minus; + public static Bitmap tree_plus = Properties.Resources.tree_plus; + public static Bitmap tshadowdown = Properties.Resources.tshadowdown; + public static Bitmap tshadowdownleft = Properties.Resources.tshadowdownleft; + public static Bitmap tshadowdownright = Properties.Resources.tshadowdownright; + public static Bitmap tshadowright = Properties.Resources.tshadowright; + public static Bitmap tshadowtopright = Properties.Resources.tshadowtopright; + public static Bitmap ubuntu_16x = Properties.Resources.ubuntu_16x; + public static Bitmap usagebar_0 = Properties.Resources.usagebar_0; + public static Bitmap usagebar_1 = Properties.Resources.usagebar_1; + public static Bitmap usagebar_10 = Properties.Resources.usagebar_10; + public static Bitmap usagebar_2 = Properties.Resources.usagebar_2; + public static Bitmap usagebar_3 = Properties.Resources.usagebar_3; + public static Bitmap usagebar_4 = Properties.Resources.usagebar_4; + public static Bitmap usagebar_5 = Properties.Resources.usagebar_5; + public static Bitmap usagebar_6 = Properties.Resources.usagebar_6; + public static Bitmap usagebar_7 = Properties.Resources.usagebar_7; + public static Bitmap usagebar_8 = Properties.Resources.usagebar_8; + public static Bitmap usagebar_9 = Properties.Resources.usagebar_9; + public static Bitmap virtualstorage_snapshot_16 = Properties.Resources.virtualstorage_snapshot_16; + public static Bitmap vmBackground = Properties.Resources.vmBackground; + public static Bitmap vmBackgroundCurrent = Properties.Resources.vmBackgroundCurrent; + public static Bitmap VMTemplate_h32bit_32 = Properties.Resources.VMTemplate_h32bit_32; + public static Bitmap vnc_local_cursor = Properties.Resources.vnc_local_cursor; + public static Bitmap windows_h32bit_16 = Properties.Resources.windows_h32bit_16; + public static Bitmap wizard_background = Properties.Resources.wizard_background; + public static Bitmap xcm = Properties.Resources.xcm; + public static Bitmap xcm_32x32 = Properties.Resources.xcm_32x32; + public static Bitmap queued = Properties.Resources.queued; + public static Bitmap _000_User_h32bit_32 = Properties.Resources._000_User_h32bit_32; + public static Bitmap asianux_16x = Properties.Resources.asianux_16x; public static Bitmap gooroom_16x = Properties.Resources.gooroom_16x; public static Bitmap rocky_16x = Properties.Resources.rocky_16x; public static Bitmap linx_16x = Properties.Resources.linx_16x; @@ -975,6 +979,7 @@ public public static Bitmap asianux_16x = Properties.Resources.asianux_16x; public static Bitmap usb_16 = Properties.Resources.usb_16; public static Bitmap yinhekylin_16x = Properties.Resources.yinhekylin_16x; public static Bitmap rightArrowLong_Blue_16 = Properties.Resources.rightArrowLong_Blue_16; - public static Bitmap rpm_package = Properties.Resources.rpm_package; } + public static Bitmap rpm_package = Properties.Resources.rpm_package; + } } } \ No newline at end of file diff --git a/XenAdmin/MainWindow.Designer.cs b/XenAdmin/MainWindow.Designer.cs index 6b2f4fa52..847ac7ce8 100644 --- a/XenAdmin/MainWindow.Designer.cs +++ b/XenAdmin/MainWindow.Designer.cs @@ -260,12 +260,6 @@ namespace XenAdmin this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.bugToolToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem(); this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator(); - this.LicenseManagerMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator(); - this.configureUpdatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.installNewUpdateToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem(); - this.rollingUpgradeToolStripMenuItem = new XenAdmin.Commands.CommandToolStripMenuItem(); - this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); this.pluginItemsPlaceHolderToolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); this.preferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -1796,12 +1790,6 @@ namespace XenAdmin this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.bugToolToolStripMenuItem, this.toolStripSeparator14, - this.LicenseManagerMenuItem, - this.toolStripSeparator13, - this.configureUpdatesToolStripMenuItem, - this.installNewUpdateToolStripMenuItem, - this.rollingUpgradeToolStripMenuItem, - this.toolStripSeparator6, this.pluginItemsPlaceHolderToolStripMenuItem7, this.preferencesToolStripMenuItem}); this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; @@ -1829,12 +1817,6 @@ namespace XenAdmin //this.toolStripSeparator13.Name = "toolStripSeparator13"; //resources.ApplyResources(this.toolStripSeparator13, "toolStripSeparator13"); // - // configureUpdatesToolStripMenuItem - // - this.configureUpdatesToolStripMenuItem.Name = "configureUpdatesToolStripMenuItem"; - resources.ApplyResources(this.configureUpdatesToolStripMenuItem, "configureUpdatesToolStripMenuItem"); - this.configureUpdatesToolStripMenuItem.Click += new System.EventHandler(this.configureUpdatesToolStripMenuItem_Click); - // // installNewUpdateToolStripMenuItem // //this.installNewUpdateToolStripMenuItem.Command = new XenAdmin.Commands.InstallNewUpdateCommand(); @@ -2384,7 +2366,6 @@ namespace XenAdmin private System.Windows.Forms.ToolStripMenuItem downloadSourceToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem downloadLatestSourceToolStripMenuItem; private System.Windows.Forms.Label labelFiltersOnOff; - private System.Windows.Forms.ToolStripMenuItem configureUpdatesToolStripMenuItem; private TabPages.ManageCdnUpdatesPage cdnUpdatesPage; private System.Windows.Forms.ToolStripSplitButton statusButtonErrors; private System.Windows.Forms.ToolStripSplitButton statusButtonCdnUpdates; diff --git a/XenAdmin/MainWindow.cs b/XenAdmin/MainWindow.cs index 2525600d5..ad5e26831 100644 --- a/XenAdmin/MainWindow.cs +++ b/XenAdmin/MainWindow.cs @@ -235,7 +235,7 @@ namespace XenAdmin PluginManager.PluginsChanged += pluginManager_PluginsChanged; PluginManager.LoadPlugins(); contextMenuBuilder = new ContextMenuBuilder(PluginManager, this); - ((WinformsXenAdminConfigProvider) XenAdminConfigManager.Provider).PluginManager = PluginManager; + ((WinformsXenAdminConfigProvider)XenAdminConfigManager.Provider).PluginManager = PluginManager; FormFontFixer.Fix(this); @@ -307,15 +307,15 @@ namespace XenAdmin private void Default_SettingChanging(object sender, SettingChangingEventArgs e) { - if (e == null) - return; + if (e == null) + return; if (e.SettingName == "AutoSwitchToRDP" || e.SettingName == "EnableRDPPolling") { ConsolePanel.ResetAllViews(); - if (SelectionManager.Selection.FirstIsRealVM) - ConsolePanel.SetCurrentSource((VM)SelectionManager.Selection.First); + if (SelectionManager.Selection.FirstIsRealVM) + ConsolePanel.SetCurrentSource((VM)SelectionManager.Selection.First); else if (SelectionManager.Selection.FirstIs()) ConsolePanel.SetCurrentSource((Host)SelectionManager.Selection.First); @@ -378,17 +378,12 @@ namespace XenAdmin Point savedLocation = Properties.Settings.Default.WindowLocation; Size savedSize = Properties.Settings.Default.WindowSize; - FormWindowState savedState = Properties.Settings.Default.WindowState; - if (savedState == FormWindowState.Normal && HelpersGUI.WindowIsOnScreen(savedLocation, savedSize)) + if (HelpersGUI.WindowIsOnScreen(savedLocation, savedSize)) { this.Location = savedLocation; this.Size = savedSize; } - else - { - this.WindowState = FormWindowState.Maximized; - } } catch { @@ -604,7 +599,7 @@ namespace XenAdmin RequestRefreshTreeView(); ConnectionsManager.XenConnections.CollectionChanged += XenConnection_CollectionChanged; - + //no need to catch ConfigurationErrorsException as the settings have already been loaded Settings.RestoreSession(); @@ -705,7 +700,7 @@ namespace XenAdmin // show the About dialog if this was the last connection in progress and the connection failed if (!c.IsConnected) ShowAboutDialogOnStartup(); - }); + }); } /// @@ -915,11 +910,11 @@ namespace XenAdmin new DummyAction(title, "", string.Format(Messages.INCOMPATIBLE_PRODUCTS, BrandManager.BrandConsole)).Run(); using (var dlog = new ErrorDialog(string.Format(Messages.INCOMPATIBLE_PRODUCTS, BrandManager.BrandConsole)) - {WindowTitle = title}) + { WindowTitle = title }) dlog.ShowDialog(this); }); return; - } + } //check the pool has no supporters earlier than the lowest supported version //(could happen if trying to connect to a partially upgraded pool where @@ -941,7 +936,7 @@ namespace XenAdmin new DummyAction(title, "", msg).Run(); using (var dlg = new ErrorDialog(msg, ThreeButtonDialog.ButtonOK) - {WindowTitle = Messages.CONNECT_TO_SERVER}) + { WindowTitle = Messages.CONNECT_TO_SERVER }) { dlg.ShowDialog(this); } @@ -1018,7 +1013,7 @@ namespace XenAdmin }); return; } - + if (serverMax > currentVersion) Alert.AddAlert(new GuiOldAlert()); @@ -1034,7 +1029,7 @@ namespace XenAdmin if (HelpersGUI.iSCSIisUsed()) HelpersGUI.PerformIQNCheck(); - if(licenseTimer != null) + if (licenseTimer != null) licenseTimer.CheckActiveServerLicense(connection, false); if (BrandManager.BrandConsole == "[XenCenter]" || BrandManager.BrandConsole == "XenCenter") @@ -1062,18 +1057,18 @@ namespace XenAdmin { if (Properties.Settings.Default.SeenAllowCfuUpdatesDialog) return; - + Properties.Settings.Default.SeenAllowCfuUpdatesDialog = true; Settings.TrySaveSettings(); bool launch; using (var dlg = new NoIconDialog(string.Format(Messages.ALLOWED_UPDATES_DIALOG_MESSAGE_CFU, BrandManager.BrandConsole, BrandManager.ProductVersion821), ThreeButtonDialog.ButtonYes, ThreeButtonDialog.ButtonNo) - { - HelpButton = true, - HelpNameSetter = "AllowUpdatesDialog", - ShowCheckbox = false - }) + { + HelpButton = true, + HelpNameSetter = "AllowUpdatesDialog", + ShowCheckbox = false + }) { launch = dlg.ShowDialog(this) == DialogResult.Yes; } @@ -1280,7 +1275,7 @@ namespace XenAdmin case "name_label": //check whether it's a standalone host - if(Helpers.GetPool(host.Connection) == null) + if (Helpers.GetPool(host.Connection) == null) host.Connection.FriendlyName = Helpers.GetName(host); break; @@ -1333,7 +1328,7 @@ namespace XenAdmin case "enabled": case "other_config": UpdateToolbars(); //other_config may contain HideFromXenCenter - break; + break; } } @@ -1379,7 +1374,7 @@ namespace XenAdmin if (Program.Exiting) return; - IXenConnection connection = (IXenConnection) sender; + IXenConnection connection = (IXenConnection)sender; if (hostsInInvalidState.Count > 0) { @@ -1431,14 +1426,14 @@ namespace XenAdmin try { - ToolStrip.SuspendLayout(); - UpdateToolbarsCore(); - MainMenuBar_MenuActivate(null, null); + ToolStrip.SuspendLayout(); + UpdateToolbarsCore(); + MainMenuBar_MenuActivate(null, null); } finally { - ToolStrip.ResumeLayout(); - } + ToolStrip.ResumeLayout(); + } // Save and restore focus on treeView, since selecting tabs in ChangeToNewTabs() has the // unavoidable side-effect of giving them focus - this is irritating if trying to navigate @@ -1461,7 +1456,7 @@ namespace XenAdmin ToolStrip.Enabled = Properties.Settings.Default.ToolbarsEnabled; ShowToolbarMenuItem.Checked = toolbarToolStripMenuItem.Checked = Properties.Settings.Default.ToolbarsEnabled; - bool containerButtonsAvailable = startContainerToolStripButton.Enabled || stopContainerToolStripButton.Enabled || + bool containerButtonsAvailable = startContainerToolStripButton.Enabled || stopContainerToolStripButton.Enabled || resumeContainerToolStripButton.Enabled || pauseContainerToolStripButton.Enabled || restartContainerToolStripButton.Enabled; startContainerToolStripButton.Available = containerButtonsAvailable && startContainerToolStripButton.Enabled; @@ -1479,7 +1474,7 @@ namespace XenAdmin SuspendToolbarButton.Available = SuspendToolbarButton.Enabled || (!resumeToolStripButton.Available && !containerButtonsAvailable); UnpauseVmToolbarButton.Available = UnpauseVmToolbarButton.Enabled; - PauseVmToolbarButton.Available = PauseVmToolbarButton.Enabled || (!UnpauseVmToolbarButton.Available); + PauseVmToolbarButton.Available = PauseVmToolbarButton.Enabled || (!UnpauseVmToolbarButton.Available); ForceRebootToolbarButton.Available = ((ForceVMRebootCommand)ForceRebootToolbarButton.Command).ShowOnMainToolBar; ForceShutdownToolbarButton.Available = ((ForceVMShutDownCommand)ForceShutdownToolbarButton.Command).ShowOnMainToolBar; @@ -1579,8 +1574,8 @@ namespace XenAdmin if (!multi && !SearchMode && isPoolSelected) newTabs.Add(ha_upsell ? TabPageHAUpsell : TabPageHA); - - if(!multi && !SearchMode && isRealVMSelected) + + if (!multi && !SearchMode && isRealVMSelected) newTabs.Add(TabPageSnapshots); if (!multi && !SearchMode && isPoolSelected) @@ -1627,14 +1622,14 @@ namespace XenAdmin f.SetUrl(); if (!f.IsError) consoleFeatures.Add(f); - } + } else { var page = GetLastSelectedPage(xenObject); if (page != null && page.Tag == f) f.SetUrl(); otherFeatures.Add(f); - } + } } } } @@ -1656,25 +1651,25 @@ namespace XenAdmin { if (!newTabs.Contains(page)) TheTabControl.TabPages.Remove(page); - } + } int m = 0; // Index into TheTabControl.TabPages foreach (var newTab in newTabs) - { + { var index = TheTabControl.TabPages.IndexOf(newTab); if (index < 0) TheTabControl.TabPages.Insert(m, newTab); - m++; + m++; if (newTab == pageToSelect) TheTabControl.SelectedTab = newTab; - } + } if (pageToSelect == null) TheTabControl.SelectedTab = TheTabControl.TabPages[0]; - } + } finally { IgnoreTabChanges = false; @@ -1717,7 +1712,7 @@ namespace XenAdmin { CommandToolStripMenuItem commandMenuItem = menu.DropDownItems[i] as CommandToolStripMenuItem; - if (commandMenuItem != null && (commandMenuItem.Command is MenuItemFeatureCommand + if (commandMenuItem != null && (commandMenuItem.Command is MenuItemFeatureCommand || commandMenuItem.Command is ParentMenuItemFeatureCommand)) { menu.DropDownItems.RemoveAt(i); @@ -1794,7 +1789,7 @@ namespace XenAdmin sendCtrlAltDelToolStripMenuItem.Enabled = (TheTabControl.SelectedTab == TabPageConsole) && vm && ((VM)SelectionManager.Selection.First).power_state == vm_power_state.Running; IXenConnection conn = SelectionManager.Selection.GetConnectionOfAllItems(); - + bool vmssOn = conn != null && Helpers.FalconOrGreater(conn); assignSnapshotScheduleToolStripMenuItem.Available = vmssOn; VMSnapshotScheduleToolStripMenuItem.Available = vmssOn; @@ -1807,11 +1802,11 @@ namespace XenAdmin conversionToolStripMenuItem.Available = conn != null && conn.Cache.VMs.Any(v => v.IsConversionVM()); installToolsToolStripMenuItem.Available = SelectionManager.Selection.Any(v => !Helpers.StockholmOrGreater(v.Connection)); toolStripMenuItemInstallCertificate.Available = Helpers.StockholmOrGreater(conn); - + toolStripMenuItemRotateSecret.Available = SelectionManager.Selection.Any(s => s.Connection != null && Helpers.StockholmOrGreater(s.Connection) && !s.Connection.Cache.Hosts.Any(Host.RestrictPoolSecretRotation)); - + toolStripMenuItemEnableTls.Available = SelectionManager.Selection.Any(s => s.Connection != null && Helpers.CloudOrGreater(s.Connection) && Helpers.XapiEqualOrGreater_1_290_0(s.Connection) && !s.Connection.Cache.Hosts.Any(Host.RestrictCertificateVerification) && @@ -1969,7 +1964,7 @@ namespace XenAdmin } else { - ConsolePanel.PauseAllDockedViews(); + ConsolePanel.PauseAllDockedViews(); CvmConsolePanel.PauseAllDockedViews(); if (t == TabPageGeneral) @@ -2320,7 +2315,7 @@ namespace XenAdmin foreach (ActionBase a in ConnectionsManager.History) { - if(!Program.RunInAutomatedTestMode) + if (!Program.RunInAutomatedTestMode) { if (a is AsyncAction asyncAction) asyncAction.PrepareForEventReloadAfterRestart(); @@ -2363,15 +2358,15 @@ namespace XenAdmin XenDialogBase.CloseAll(connection.Cache.VMs.Cast().ToArray()); if (activePoolWizards.TryGetValue(connection, out IList
wizards)) - { - foreach (var wizard in wizards) { - if (!wizard.IsDisposed) - wizard.Close(); + foreach (var wizard in wizards) + { + if (!wizard.IsDisposed) + wizard.Close(); } - activePoolWizards.Remove(connection); - } + activePoolWizards.Remove(connection); + } }); } @@ -2607,7 +2602,7 @@ namespace XenAdmin { if (connection != null) { - TrySelectNewNode(delegate(object o) + TrySelectNewNode(delegate (object o) { if (o == null) { @@ -2718,7 +2713,7 @@ namespace XenAdmin { toolStripMenuItemCfu.Enabled = true; SetClientUpdateAlert(); - }); + }); } private void SetClientUpdateAlert() @@ -2826,7 +2821,7 @@ namespace XenAdmin List searches = Search.LoadFile(filename); if (searches != null && searches.Count > 0) { - Program.Invoke(Program.MainWindow, delegate() + Program.Invoke(Program.MainWindow, delegate () { DoSearch(searches[0]); }); @@ -2913,26 +2908,14 @@ namespace XenAdmin foreColor = VerticalGradientPanel.TextColor; if (xenObject is Pool pool && pool.Connection != null && pool.Connection.IsConnected && pool.Connection.CacheIsPopulated) - { - if (pool.IsFreeLicenseOrExpired() && !Helpers.NileOrGreater(xenObject.Connection)) - { - foreColor = Color.Red; - return Messages.MAINWINDOW_HEADER_UNLICENSED; - } - + { return string.Format(Messages.MAINWINDOW_HEADER_LICENSED_WITH, Helpers.GetFriendlyLicenseName(pool)); - } + } if (xenObject is Host host && host.Connection != null && host.Connection.IsConnected && host.Connection.CacheIsPopulated) { - if (host.IsFreeLicenseOrExpired() && !Helpers.NileOrGreater(xenObject.Connection)) - { - foreColor = Color.Red; - return Messages.MAINWINDOW_HEADER_UNLICENSED; - } - return string.Format(Messages.MAINWINDOW_HEADER_LICENSED_WITH, Helpers.GetFriendlyLicenseName(host)); - } + } return string.Empty; } @@ -2945,7 +2928,7 @@ namespace XenAdmin private void UpdateViewMenu(NavigationPane.NavigationMode mode) { //the order is the reverse from the order in which we want them to appear - var items = new ToolStripItem [] + var items = new ToolStripItem[] { toolStripSeparator24, ShowHiddenObjectsToolStripMenuItem, @@ -2964,7 +2947,7 @@ namespace XenAdmin } else if (mode == NavigationPane.NavigationMode.Notifications) { - foreach (var item in items) + foreach (var item in items) viewToolStripMenuItem.DropDownItems.Remove(item); } else @@ -3065,7 +3048,7 @@ namespace XenAdmin private void navigationPane_TreeNodeRightClicked() { - MainMenuBar_MenuActivate(MainMenuBar, new EventArgs()); + MainMenuBar_MenuActivate(MainMenuBar, new EventArgs()); } private void navigationPane_TreeViewRefreshed() @@ -3077,7 +3060,7 @@ namespace XenAdmin SearchPage.BuildList(); UpdateHeader(); - UpdateToolbars(); + UpdateToolbars(); } #endregion @@ -3218,7 +3201,7 @@ namespace XenAdmin XmlDocument xmlDocument = new XmlDocument(); using (var stream = dialog.OpenFile()) xmlDocument.Load(stream); - + foreach (XmlNode itemConnection in xmlDocument.GetElementsByTagName("XenConnection")) { var conn = new XenConnection(); @@ -3341,11 +3324,11 @@ namespace XenAdmin else if (splitContainer1.SplitterDistance > max) splitContainer1.SplitterDistance = max; } - + private void MainWindow_ResizeEnd(object sender, EventArgs e) { TabPage t = TheTabControl.SelectedTab; - if (t == TabPageConsole) + if (t == TabPageConsole) { if (mainWindowResized) ConsolePanel.UpdateRDPResolution(); @@ -3378,7 +3361,7 @@ namespace XenAdmin } private void statusButtonErrors_Click(object sender, EventArgs e) - { + { navigationPane.SwitchToNotificationsView(NotificationsSubMode.Events); } diff --git a/XenAdmin/Properties/Resources.ja.resx b/XenAdmin/Properties/Resources.ja.resx deleted file mode 100644 index 51a03b2ee..000000000 --- a/XenAdmin/Properties/Resources.ja.resx +++ /dev/null @@ -1,1135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - ..\Images\000_Search_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapShotDiskOnly_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_add_storage_system_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Alert2_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_7.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Reboot_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_10.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_0_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\edit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\desktop.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Forward_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_8.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Tick_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowdownleft.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CreateVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_9.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_UserAndGroup_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_9_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_paused_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapshotDiskMemory_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HAServer_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetServerReport_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\import_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronDownOver.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\vmBackgroundCurrent.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_BackupMetadata_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\oracle_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_weighting_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMsnapshotDiskOnly_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\075_WarningRound_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_USB_Icon_ovr.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HostUnpatched_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_32_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\folder_separator.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\console_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_connecting_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DeleteMessage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMsnapshotDiskOnly_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_system_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_PoolNew_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Patch_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_lun_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_PoolConnected_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\debian_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_5_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\112_LeftArrowLong_Blue_24x24_72.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_error_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddApplicationServer_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_4.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ubuntu_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HelpIM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\Logo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerMaintenance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerInProgress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_connected_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_5.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_3_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronLeft.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HighlightVM_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Email_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\attach_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_LifeCycle_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Back_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Fields_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_User_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VirtualStorage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\folder_grey.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceShutDown_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Failback_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_6.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\gripper.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerWlb_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceReboot_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapShotDiskOnly_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TemplateDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_light.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_pool_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddApplicationServer_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMSnapshotDiskMemory_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DisasterRecovery_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\contracted_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CreateVM_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\002_Configure_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HelpIM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_add_storage_system_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerErrorFile_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_PerformanceGraph_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tools_outofdate_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_BackupMetadata_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CreateVirtualStorage_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMStartingDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\075_TickRound_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowright.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMStoppedDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowtopright.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\copy_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExportMessages_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\lifecycle_hot.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowdownright.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Paused_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Paused_h32bit_24_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_paused_h32bit_16_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_16_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_24_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_4_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_PoolNew_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tools_uptodate_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_UserTemplate_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_24_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewStorage_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_0.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\change_password_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\licensekey_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetServerReport_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_disconnected_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame6.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_noedit_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\about_box_graphic.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ShutDown_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_CreateVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Tag_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tree_minus.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_add_storage_system_small_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceShutDown_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ascending_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\detach_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Optimize_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\VMTemplate_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_3.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame7.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\attach_virtualstorage_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Pool_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Pool_h32bit_16-w-alert.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Server_h32bit_16-w-alert.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StorageDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_defaultSpyglass_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\backup_restore_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\windows_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewStorage_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\suse_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_WarningAlert_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_noedit_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_8_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronRight.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\vmBackground.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StorageBroken_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Folder_open_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMPausedDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_dark.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_6_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_WindowView_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ShutDown_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ViewModeList_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\minus.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewVirtualAppliance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\graphline.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ImportVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Storage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Reboot_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Tools_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Pin_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VM_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_SliderTexture.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\redhat_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetMemoryInfo_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DeleteVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_Pref_Icon_up.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_USB_Icon_up.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExportVirtualAppliance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tools_notinstalled_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\clonevm_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\grapharea.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_dark.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ha_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerHome_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_luns_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_noedit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TreeConnected_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tree_plus.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\centos_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StartVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Network_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewStorage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Failover_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_pools_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExportVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSession_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_PowerOn_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\paste_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExcludeHost_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\expanded_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_1_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\DateTime16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\Refresh16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame4.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_2_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_noedit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceReboot_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\change_password_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame5.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CPU_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ImportVirtualAppliance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\vnc_local_cursor.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewNetwork_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowdown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapshotDiskMemory_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_SuspendVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\commands_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DeleteAllMessages_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\AppIcon.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\log_destination_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TestFailover_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StoppedVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_RebootVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Abort_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\grab.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\virtualstorage_snapshot_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Info3_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Module_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_SwitcherBackground.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMsnapshotDiskMemory_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_PowerOn_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StorageDefault_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\asterisk.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_FilterServer_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_FilterDates_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_Pref_Icon_ovr.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_USB_Icon_dis.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\wizard_background.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_16_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\subscribe.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_Pref_Icon_dis.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame0.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ajax-loader.gif;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_light.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Patch_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_7_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ImportVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_10_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMStarting_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMTemplate_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\descending_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetMemoryInfo_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerDisconnected_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_EnablePowerControl_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\lifecycle_pressed.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronUpOver.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\112_RightArrowLong_Blue_24x24_72.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\cross.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HighLightVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\export_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame3.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerMaintenance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Server_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ViewModeTree_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\015_Download_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_error_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TCP-IPGroup_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddIPAddress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ConfigureIPAddresses_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\000_ManagementInterface_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_RemoveIPAddress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_FilterSeverity_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert1_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert2_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert3_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert4_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert5_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert6_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\cancelled_action_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\close_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\infra_view_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\more_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_alerts_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_events_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_events_errors_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_none_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_none_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_updates_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\objects_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\objects_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\org_view_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\org_view_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\pool_up_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\saved_searches_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\server_up_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\infra_view_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\infra_view_16_textured.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\saved_searches_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_UpgradePool_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\objects_16_textured.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\coreos-globe-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\RunningDC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PausedDC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\StoppedDC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\DC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\coreos-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\scilinux_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateStoppedVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateSuspendedVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\padlock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\homepage_bullet.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Sites_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddSite_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_RemoveSite_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\neokylin_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\asianux_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\turbo_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\linx_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\yinhekylin_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usb_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\images\000_userandgroup_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\images\000_user_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\xcm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\xcm_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\images\queued.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\gooroom_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\rocky_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - \ No newline at end of file diff --git a/XenAdmin/Properties/Resources.resx b/XenAdmin/Properties/Resources.resx index 287fafe90..4b073d19c 100755 --- a/XenAdmin/Properties/Resources.resx +++ b/XenAdmin/Properties/Resources.resx @@ -287,7 +287,7 @@ ..\Images\usagebar_2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\..\Branding\Images\Logo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\..\branding-xcp-ng\Images\Logo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Images\000_ServerMaintenance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -497,7 +497,7 @@ ..\Images\memory_dynmax_slider_noedit_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\..\Branding\Images\about_box_graphic.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\..\branding-xcp-ng\Images\about_box_graphic_423x79.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Images\001_ShutDown_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -785,7 +785,7 @@ ..\Images\000_DeleteAllMessages_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\..\Branding\Images\AppIcon.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\..\branding-xcp-ng\Images\AppIcon.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Images\log_destination_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -851,7 +851,7 @@ ..\Images\000_ToolBar_USB_Icon_dis.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\..\Branding\Images\wizard_background.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\..\branding-xcp-ng\Images\wizard_background.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Images\help_16_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -959,7 +959,7 @@ ..\Images\000_ConfigureIPAddresses_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\..\Branding\Images\000_ManagementInterface_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\..\branding-xcp-ng\Images\000_ManagementInterface_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Images\000_RemoveIPAddress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1123,12 +1123,6 @@ ..\images\000_user_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\..\Branding\Images\xcm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\xcm_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\images\queued.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -1147,17 +1141,8 @@ ..\Images\rightArrowLong_Blue_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\..\Branding\Images\splash.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\..\Branding\HomePage.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 - - - ..\..\Branding\HomePage.ja.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 - - - ..\..\Branding\HomePage.zh-CN.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 + ..\..\branding-xcp-ng\HomePage\index.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 ..\Images\save_to_disk.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a diff --git a/XenAdmin/Properties/Resources.zh-CN.resx b/XenAdmin/Properties/Resources.zh-CN.resx deleted file mode 100644 index 51a03b2ee..000000000 --- a/XenAdmin/Properties/Resources.zh-CN.resx +++ /dev/null @@ -1,1135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - ..\Images\000_Search_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapShotDiskOnly_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_add_storage_system_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Alert2_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_7.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Reboot_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_10.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_0_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\edit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\desktop.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Forward_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_8.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Tick_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowdownleft.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CreateVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_9.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_UserAndGroup_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_9_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_paused_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapshotDiskMemory_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HAServer_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetServerReport_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\import_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronDownOver.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\vmBackgroundCurrent.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_BackupMetadata_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\oracle_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_weighting_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMsnapshotDiskOnly_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\075_WarningRound_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_USB_Icon_ovr.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HostUnpatched_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_32_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\folder_separator.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\console_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_connecting_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DeleteMessage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMsnapshotDiskOnly_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_system_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_PoolNew_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Patch_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_lun_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_PoolConnected_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\debian_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_5_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\112_LeftArrowLong_Blue_24x24_72.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_error_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddApplicationServer_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_4.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ubuntu_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HelpIM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_2.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\Logo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerMaintenance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerInProgress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_connected_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_5.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_3_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronLeft.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HighlightVM_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Email_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\attach_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_LifeCycle_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Back_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Fields_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_User_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VirtualStorage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\folder_grey.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceShutDown_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Failback_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_6.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\gripper.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerWlb_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceReboot_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapShotDiskOnly_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TemplateDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_light.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_pool_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddApplicationServer_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMSnapshotDiskMemory_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DisasterRecovery_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\contracted_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CreateVM_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\002_Configure_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HelpIM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_add_storage_system_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerErrorFile_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_PerformanceGraph_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tools_outofdate_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_BackupMetadata_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CreateVirtualStorage_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMStartingDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\075_TickRound_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowright.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMStoppedDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowtopright.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\copy_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExportMessages_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\lifecycle_hot.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowdownright.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Paused_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Paused_h32bit_24_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_paused_h32bit_16_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_16_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_24_green.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_4_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_PoolNew_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tools_uptodate_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_UserTemplate_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_24_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewStorage_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_0.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\change_password_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\licensekey_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetServerReport_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_disconnected_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame6.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_noedit_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\about_box_graphic.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ShutDown_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_CreateVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Tag_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tree_minus.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_add_storage_system_small_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceShutDown_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ascending_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\detach_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Optimize_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\VMTemplate_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_3.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame7.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\attach_virtualstorage_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Pool_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Pool_h32bit_16-w-alert.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Server_h32bit_16-w-alert.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StorageDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_defaultSpyglass_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\backup_restore_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\windows_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewStorage_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\suse_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_WarningAlert_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_noedit_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_8_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronRight.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\vmBackground.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StorageBroken_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Folder_open_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMPausedDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_dark.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_6_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_WindowView_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ShutDown_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ViewModeList_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\minus.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewVirtualAppliance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\graphline.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ImportVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Storage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Reboot_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Tools_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_Pin_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VM_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_SliderTexture.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\redhat_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetMemoryInfo_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DeleteVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_Pref_Icon_up.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_USB_Icon_up.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Resumed_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExportVirtualAppliance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tools_notinstalled_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\clonevm_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\grapharea.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_dark.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ha_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerHome_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_small.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_luns_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_noedit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TreeConnected_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tree_plus.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\centos_16x.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StartVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Network_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewStorage_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Failover_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\sl_pools_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExportVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSession_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_PowerOn_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\paste_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ExcludeHost_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\expanded_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_1_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\DateTime16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\Refresh16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame4.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_2_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmax_slider_noedit.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_ForceReboot_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\change_password_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame5.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usagebar_1.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_CPU_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ImportVirtualAppliance_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\vnc_local_cursor.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewNetwork_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\tshadowdown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMSnapshotDiskMemory_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_SuspendVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\commands_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_DeleteAllMessages_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\AppIcon.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\log_destination_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TestFailover_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StoppedVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_RebootVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Abort_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\grab.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\virtualstorage_snapshot_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Info3_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Module_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_SwitcherBackground.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ScheduledVMsnapshotDiskMemory_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\001_PowerOn_h32bit_24.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_StorageDefault_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\asterisk.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_FilterServer_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_NewVirtualAppliance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_FilterDates_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_Pref_Icon_ovr.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_USB_Icon_dis.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\wizard_background.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\help_16_hover.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\subscribe.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ToolBar_Pref_Icon_dis.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame0.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\ajax-loader.gif;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider_light.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Patch_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_7_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ImportVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_host_10_star.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMStarting_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMTemplate_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\descending_triangle.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_GetMemoryInfo_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerDisconnected_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_EnablePowerControl_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_VMDisabled_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\lifecycle_pressed.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PDChevronUpOver.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\112_RightArrowLong_Blue_24x24_72.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\cross.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_HighLightVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\memory_dynmin_slider.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\export_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\SpinningFrame3.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ServerMaintenance_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Server_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ViewModeTree_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\015_Download_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_error_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateVM_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_TCP-IPGroup_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddIPAddress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_ConfigureIPAddresses_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\000_ManagementInterface_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_RemoveIPAddress_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_FilterSeverity_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert1_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert2_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert3_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert4_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert5_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\alert6_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\cancelled_action_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\close_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\infra_view_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\more_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_alerts_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_events_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_events_errors_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_none_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_none_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\notif_updates_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\objects_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\objects_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\org_view_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\org_view_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\pool_up_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\saved_searches_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\server_up_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\infra_view_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\infra_view_16_textured.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\saved_searches_24.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_UpgradePool_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\objects_16_textured.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\coreos-globe-icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\RunningDC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\PausedDC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\StoppedDC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\DC_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\coreos-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\scilinux_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateStoppedVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_MigrateSuspendedVM_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\padlock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\homepage_bullet.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_Sites_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_AddSite_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\000_RemoveSite_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\neokylin_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\asianux_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\turbo_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\linx_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\yinhekylin_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\usb_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\images\000_userandgroup_h32bit_16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\images\000_user_h32bit_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\xcm.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\..\Branding\Images\xcm_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\images\queued.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\gooroom_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Images\rocky_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - \ No newline at end of file diff --git a/XenAdmin/SettingsPanels/BootOptionsEditPage.cs b/XenAdmin/SettingsPanels/BootOptionsEditPage.cs index ed7b910f2..755f6b5a6 100644 --- a/XenAdmin/SettingsPanels/BootOptionsEditPage.cs +++ b/XenAdmin/SettingsPanels/BootOptionsEditPage.cs @@ -1,331 +1,306 @@ /* Copyright (c) Cloud Software Group, Inc. - * - * Redistribution and use in source and binary forms, - * with or without modification, are permitted provided - * that the following conditions are met: - * - * * Redistributions of source code must retain the above - * copyright notice, this list of conditions and the - * following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the - * following disclaimer in the documentation and/or other - * materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - */ - -using System; -using System.Collections.Generic; -using System.Drawing; -using System.Windows.Forms; -using XenAPI; + * + * Redistribution and use in source and binary forms, + * with or without modification, are permitted provided + * that the following conditions are met: + * + * * Redistributions of source code must retain the above + * copyright notice, this list of conditions and the + * following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the + * following disclaimer in the documentation and/or other + * materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, + * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Windows.Forms; +using XenAPI; using XenAdmin.Actions; -using XenCenterLib; -using XenAdmin.Core; +using XenCenterLib; +using XenAdmin.Core; using System.Linq; - -namespace XenAdmin.SettingsPanels -{ - public partial class BootOptionsEditPage : UserControl, IEditPage - { - #region Private fields - private VM vm; - private bool bootFromCD; - #endregion - - public BootOptionsEditPage() - { - InitializeComponent(); - Text = Messages.GENERAL_HEADING_BOOT_OPTIONS; - } - - #region IEditPage implementation - - public bool ValidToSave { get { return true; } } - - /// - /// Show local validation balloon tooltips - /// - public void ShowLocalValidationMessages() - { } - - /// + +namespace XenAdmin.SettingsPanels +{ + public partial class BootOptionsEditPage : UserControl, IEditPage + { + #region Private fields + private VM vm; + private bool bootFromCD; + #endregion + + public BootOptionsEditPage() + { + InitializeComponent(); + Text = Messages.GENERAL_HEADING_BOOT_OPTIONS; + } + + #region IEditPage implementation + + public bool ValidToSave { get { return true; } } + + /// + /// Show local validation balloon tooltips + /// + public void ShowLocalValidationMessages() + { } + + /// /// Hide local validation balloon tooltips /// public void HideLocalValidationMessages() { } /// - /// Unregister listeners, dispose balloon tooltips, etc. - /// - public void Cleanup() - { } - - public bool HasChanged - { - get - { + /// Unregister listeners, dispose balloon tooltips, etc. + /// + public void Cleanup() + { } + + public bool HasChanged + { + get + { bool autoBootChanged = m_checkBoxAutoBoot.Checked != vm.GetAutoPowerOn(); - return autoBootChanged || (vm.IsHVM() && GetOrder() != vm.GetBootOrder()) || (m_textBoxOsParams.Text != vm.PV_args) || (VMPVBootableDVD() != bootFromCD); - } - } - - public AsyncAction SaveSettings() - { - vm.SetBootOrder(GetOrder()); - - vm.PV_args = m_textBoxOsParams.Text; - + return autoBootChanged || (vm.IsHVM() && GetOrder() != vm.GetBootOrder()) || (m_textBoxOsParams.Text != vm.PV_args) || (VMPVBootableDVD() != bootFromCD); + } + } + + public AsyncAction SaveSettings() + { + vm.SetBootOrder(GetOrder()); + + vm.PV_args = m_textBoxOsParams.Text; + vm.SetAutoPowerOn(m_checkBoxAutoBoot.Checked); - return new DelegatedAsyncAction(vm.Connection, "Change VBDs bootable", "Change VBDs bootable", null, - delegate(Session session) - { - if (bootFromCD) - { - foreach (var vbd in vm.Connection.ResolveAll(vm.VBDs)) - VBD.set_bootable(session, vbd.opaque_ref, vbd.IsCDROM()); - } - else - { - // The lowest numbered disk is the system disk and we should set it to bootable: see CA-47457 - List vbds = vm.Connection.ResolveAll(vm.VBDs); - vbds.Sort((vbd1, vbd2) => - { - if (vbd1.userdevice == "xvda") - return -1; - if (vbd2.userdevice == "xvda") - return 1; - return StringUtility.NaturalCompare(vbd1.userdevice, - vbd2.userdevice); - }); - bool foundSystemDisk = false; - foreach (var vbd in vbds) - { - bool bootable = (!foundSystemDisk && vbd.type == vbd_type.Disk); - if (bootable) - foundSystemDisk = true; - VBD.set_bootable(session, vbd.opaque_ref, bootable); - } - } - }, - true, // supress history - "VBD.set_bootable" - ); - } - - public void SetXenObjects(IXenObject orig, IXenObject clone) - { - vm = clone as VM; - if (vm == null) - return; - - pool = Helpers.GetPoolOfOne(clone.Connection); - var existingCluster = pool.Connection.Cache.Clusters.FirstOrDefault(); - clusteringEnabled = existingCluster != null; + return new DelegatedAsyncAction(vm.Connection, "Change VBDs bootable", "Change VBDs bootable", null, + delegate(Session session) + { + if (bootFromCD) + { + foreach (var vbd in vm.Connection.ResolveAll(vm.VBDs)) + VBD.set_bootable(session, vbd.opaque_ref, vbd.IsCDROM()); + } + else + { + // The lowest numbered disk is the system disk and we should set it to bootable: see CA-47457 + List vbds = vm.Connection.ResolveAll(vm.VBDs); + vbds.Sort((vbd1, vbd2) => + { + if (vbd1.userdevice == "xvda") + return -1; + if (vbd2.userdevice == "xvda") + return 1; + return StringUtility.NaturalCompare(vbd1.userdevice, + vbd2.userdevice); + }); + bool foundSystemDisk = false; + foreach (var vbd in vbds) + { + bool bootable = (!foundSystemDisk && vbd.type == vbd_type.Disk); + if (bootable) + foundSystemDisk = true; + VBD.set_bootable(session, vbd.opaque_ref, bootable); + } + } + }, + true, // supress history + "VBD.set_bootable" + ); + } + + public void SetXenObjects(IXenObject orig, IXenObject clone) + { + vm = clone as VM; + if (vm == null) + return; + + Repopulate(); + } + + #endregion + + #region VerticalTabs.IVerticalTab implementation + + public String SubText + { + get + { + if (vm == null) + return ""; + + if (vm.IsHVM()) + { + List driveLetters = new List(); + + foreach (object o in m_checkedListBox.Items) + { + BootDevice device = o as BootDevice; + + if (device != null) + driveLetters.Add(device.ToString()); + } + + string order = String.Join(", ", driveLetters.ToArray()); - Repopulate(); - } - - #endregion - - #region VerticalTabs.IVerticalTab implementation - - public String SubText - { - get - { - if (vm == null) - return ""; - - if (vm.IsHVM()) - { - List driveLetters = new List(); - - foreach (object o in m_checkedListBox.Items) - { - BootDevice device = o as BootDevice; - - if (device != null) - driveLetters.Add(device.ToString()); - } - - string order = String.Join(", ", driveLetters.ToArray()); - if (m_checkBoxAutoBoot.Checked) return String.Format(Messages.BOOTORDER_AUTOSTART, order); else - return String.Format(Messages.BOOTORDER, order); - } - - return Messages.NONE_DEFINED; - } - } - + return String.Format(Messages.BOOTORDER, order); + } + + return Messages.NONE_DEFINED; + } + } + public Image Image => Images.StaticImages._001_PowerOn_h32bit_16; - - #endregion - - private void BootDeviceAndOrderEnabled(bool enabledState) - { - m_checkedListBox.Enabled = enabledState; - m_comboBoxBootDevice.Enabled = enabledState; - } - - private void Repopulate() - { + + #endregion + + private void BootDeviceAndOrderEnabled(bool enabledState) + { + m_checkedListBox.Enabled = enabledState; + m_comboBoxBootDevice.Enabled = enabledState; + } + + private void Repopulate() + { m_picInfoAutoBoot.Visible = false; m_autoHeightLabelAutoBoot.Visible = false; m_autoHeightLabelAutoBootHAWarning.Visible = false; - m_checkBoxAutoBoot.Visible = false; - - if (clusteringEnabled) - { - m_picInfoAutoBoot.Visible = true; + m_checkBoxAutoBoot.Visible = false; - if (vm.GetAutoPowerOn()) - { - m_checkBoxAutoBoot.Visible = true; - m_checkBoxAutoBoot.Checked = true; - m_autoHeightLabelAutoBootHAWarning.Visible = true; - } - else - { - m_autoHeightLabelAutoBoot.Visible = true; - } - } - else - { - m_checkBoxAutoBoot.Visible = true; - m_checkBoxAutoBoot.Checked = vm.GetAutoPowerOn(); - } - - BootDeviceAndOrderEnabled(vm.IsHVM()); - - if (vm.IsHVM()) - { - m_tlpHvm.Visible = true; - m_autoHeightLabelHvm.Visible = true; - m_tlpNonHvm.Visible = false; - m_autoHeightLabelNonHvm.Visible = false; - - m_checkedListBox.Items.Clear(); - string order = vm.GetBootOrder().ToUpper(); - - foreach (char c in order) - m_checkedListBox.Items.Add(new BootDevice(c),true); - - // then add any 'missing' entries - foreach (char c in BootDevice.BootOptions) - { - if (!order.Contains(c.ToString())) - m_checkedListBox.Items.Add(new BootDevice(c), false); - } - - ToggleUpDownButtonsEnabledState(); - - } - else - { - m_tlpHvm.Visible = false; - m_autoHeightLabelHvm.Visible = false; - m_tlpNonHvm.Visible = true; - m_autoHeightLabelNonHvm.Visible = true; - - m_comboBoxBootDevice.Items.Clear(); - m_comboBoxBootDevice.Items.Add(Messages.BOOT_HARD_DISK); - - if (vm.HasCD()) - { - m_comboBoxBootDevice.Items.Add(Messages.DVD_DRIVE); - m_comboBoxBootDevice.SelectedItem = VMPVBootableDVD() ? Messages.DVD_DRIVE : Messages.BOOT_HARD_DISK; - } - else - m_comboBoxBootDevice.SelectedItem = Messages.BOOT_HARD_DISK; - - m_textBoxOsParams.Text = vm.PV_args; - } - } - - private bool VMPVBootableDVD() - { - foreach (var vbd in vm.Connection.ResolveAll(vm.VBDs)) - { - if (vbd.IsCDROM() && vbd.bootable) - return true; - } - return false; - } - - private string GetOrder() - { - string bootOrder = ""; - - foreach (object o in m_checkedListBox.CheckedItems) - { - BootDevice device = o as BootDevice; - - if (device != null) - bootOrder += device.GetChar().ToString(); - } - - return bootOrder; - } - - private void ToggleUpDownButtonsEnabledState() - { - m_buttonUp.Enabled = 0 < m_checkedListBox.SelectedIndex && m_checkedListBox.SelectedIndex <= m_checkedListBox.Items.Count - 1; - m_buttonDown.Enabled = 0 <= m_checkedListBox.SelectedIndex && m_checkedListBox.SelectedIndex < m_checkedListBox.Items.Count - 1; - m_buttonConvertToHVM.Enabled = vm.power_state == vm_power_state.Halted; - m_buttonConvertToPV.Enabled = vm.power_state == vm_power_state.Halted; - } - - /// - /// True moves the item up, false moves it down - /// - private void MoveItem(bool up) - { - int oldIndex = m_checkedListBox.SelectedIndex; - - //check selection valid - if (oldIndex < 0 || oldIndex > m_checkedListBox.Items.Count - 1) - return; - - //check operation valid - if (up && oldIndex == 0) - return; - if (!up && oldIndex == m_checkedListBox.Items.Count - 1) - return; - - int newIndex = up ? oldIndex - 1 : oldIndex + 1; - - object item = m_checkedListBox.SelectedItem; - bool isChecked = m_checkedListBox.GetItemChecked(oldIndex); - m_checkedListBox.Items.Remove(item); - m_checkedListBox.Items.Insert(newIndex, item); - m_checkedListBox.SetItemChecked(newIndex, isChecked); - m_checkedListBox.SelectedIndex = newIndex; - - ToggleUpDownButtonsEnabledState(); - } - - /// - /// True converts to PV, false converts to HVM - /// + BootDeviceAndOrderEnabled(vm.IsHVM()); + + if (vm.IsHVM()) + { + m_tlpHvm.Visible = true; + m_autoHeightLabelHvm.Visible = true; + m_tlpNonHvm.Visible = false; + m_autoHeightLabelNonHvm.Visible = false; + + m_checkedListBox.Items.Clear(); + string order = vm.GetBootOrder().ToUpper(); + + foreach (char c in order) + m_checkedListBox.Items.Add(new BootDevice(c),true); + + // then add any 'missing' entries + foreach (char c in BootDevice.BootOptions) + { + if (!order.Contains(c.ToString())) + m_checkedListBox.Items.Add(new BootDevice(c), false); + } + + ToggleUpDownButtonsEnabledState(); + + } + else + { + m_tlpHvm.Visible = false; + m_autoHeightLabelHvm.Visible = false; + m_tlpNonHvm.Visible = true; + m_autoHeightLabelNonHvm.Visible = true; + + m_comboBoxBootDevice.Items.Clear(); + m_comboBoxBootDevice.Items.Add(Messages.BOOT_HARD_DISK); + + if (vm.HasCD()) + { + m_comboBoxBootDevice.Items.Add(Messages.DVD_DRIVE); + m_comboBoxBootDevice.SelectedItem = VMPVBootableDVD() ? Messages.DVD_DRIVE : Messages.BOOT_HARD_DISK; + } + else + m_comboBoxBootDevice.SelectedItem = Messages.BOOT_HARD_DISK; + + m_textBoxOsParams.Text = vm.PV_args; + } + } + + private bool VMPVBootableDVD() + { + foreach (var vbd in vm.Connection.ResolveAll(vm.VBDs)) + { + if (vbd.IsCDROM() && vbd.bootable) + return true; + } + return false; + } + + private string GetOrder() + { + string bootOrder = ""; + + foreach (object o in m_checkedListBox.CheckedItems) + { + BootDevice device = o as BootDevice; + + if (device != null) + bootOrder += device.GetChar().ToString(); + } + + return bootOrder; + } + + private void ToggleUpDownButtonsEnabledState() + { + m_buttonUp.Enabled = 0 < m_checkedListBox.SelectedIndex && m_checkedListBox.SelectedIndex <= m_checkedListBox.Items.Count - 1; + m_buttonDown.Enabled = 0 <= m_checkedListBox.SelectedIndex && m_checkedListBox.SelectedIndex < m_checkedListBox.Items.Count - 1; + m_buttonConvertToHVM.Enabled = vm.power_state == vm_power_state.Halted; + m_buttonConvertToPV.Enabled = vm.power_state == vm_power_state.Halted; + } + + /// + /// True moves the item up, false moves it down + /// + private void MoveItem(bool up) + { + int oldIndex = m_checkedListBox.SelectedIndex; + + //check selection valid + if (oldIndex < 0 || oldIndex > m_checkedListBox.Items.Count - 1) + return; + + //check operation valid + if (up && oldIndex == 0) + return; + if (!up && oldIndex == m_checkedListBox.Items.Count - 1) + return; + + int newIndex = up ? oldIndex - 1 : oldIndex + 1; + + object item = m_checkedListBox.SelectedItem; + bool isChecked = m_checkedListBox.GetItemChecked(oldIndex); + m_checkedListBox.Items.Remove(item); + m_checkedListBox.Items.Insert(newIndex, item); + m_checkedListBox.SetItemChecked(newIndex, isChecked); + m_checkedListBox.SelectedIndex = newIndex; + + ToggleUpDownButtonsEnabledState(); + } + + /// + /// True converts to PV, false converts to HVM + /// private void Convert(bool toPV) { if (toPV) @@ -341,30 +316,30 @@ namespace XenAdmin.SettingsPanels } Repopulate(); - } - - - #region Control Event Handlers - - private void m_checkedListBox_SelectedIndexChanged(object sender, EventArgs e) - { - ToggleUpDownButtonsEnabledState(); - } - - private void m_buttonUp_Click(object sender, EventArgs e) - { - MoveItem(true); - } - - private void m_buttonDown_Click(object sender, EventArgs e) - { - MoveItem(false); - } - - private void m_comboBoxBootDevice_SelectedIndexChanged(object sender, EventArgs e) - { - bootFromCD = (string)m_comboBoxBootDevice.SelectedItem == Messages.DVD_DRIVE; - } + } + + + #region Control Event Handlers + + private void m_checkedListBox_SelectedIndexChanged(object sender, EventArgs e) + { + ToggleUpDownButtonsEnabledState(); + } + + private void m_buttonUp_Click(object sender, EventArgs e) + { + MoveItem(true); + } + + private void m_buttonDown_Click(object sender, EventArgs e) + { + MoveItem(false); + } + + private void m_comboBoxBootDevice_SelectedIndexChanged(object sender, EventArgs e) + { + bootFromCD = (string)m_comboBoxBootDevice.SelectedItem == Messages.DVD_DRIVE; + } private void m_buttonConvertToPV_Click(object sender, EventArgs e) { @@ -376,8 +351,8 @@ namespace XenAdmin.SettingsPanels Convert(false); } - #endregion + #endregion - } -} + } +} diff --git a/XenAdmin/TabPages/DockerDetailsPage.ja.resx b/XenAdmin/TabPages/DockerDetailsPage.ja.resx deleted file mode 100755 index e06c6c845..000000000 --- a/XenAdmin/TabPages/DockerDetailsPage.ja.resx +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - Top, Bottom, Left, Right - - - - True - - - 1 - - - Fill - - - - 7, 31 - - - 7, 3, 9, 3 - - - 803, 299 - - - 1 - - - DetailtreeView - - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tableLayoutPanel2 - - - 0 - - - True - - - Segoe UI, 11.25pt - - - 3, 0 - - - 3, 0, 0, 2 - - - 0, 6, 10, 0 - - - 65, 26 - - - 2 - - - 詳細 - - - label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tableLayoutPanel2 - - - 1 - - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 2 - - - 819, 333 - - - 3 - - - tableLayoutPanel2 - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TreePanel - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="DetailtreeView" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="AutoSize,0,Percent,100" /></TableLayoutSettings> - - - True - - - 84, 12 - - - 0, 13 - - - 2 - - - RefreshTime - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ButtonPanel - - - 0 - - - GrowAndShrink - - - 4, 7 - - - 9, 3, 3, 3 - - - 74, 23 - - - 1 - - - 更新(&R) - - - RefreshButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ButtonPanel - - - 1 - - - Bottom - - - 0, 333 - - - 819, 42 - - - 2 - - - ButtonPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TreePanel - - - 1 - - - 3, 3 - - - 819, 375 - - - 3 - - - TreePanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pageContainerPanel - - - 0 - - - 0, 78 - - - 819, 381 - - - pageContainerPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - 17, 17 - - - True - - - 96, 96 - - - 819, 459 - - - RefreshTimer - - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DockerDetailsPage - - - XenAdmin.TabPages.BaseTabPage, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - \ No newline at end of file diff --git a/XenAdmin/TabPages/DockerDetailsPage.zh-CN.resx b/XenAdmin/TabPages/DockerDetailsPage.zh-CN.resx deleted file mode 100755 index 61fdabe85..000000000 --- a/XenAdmin/TabPages/DockerDetailsPage.zh-CN.resx +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - Top, Bottom, Left, Right - - - - True - - - 1 - - - Fill - - - - 7, 31 - - - 7, 3, 9, 3 - - - 803, 299 - - - 1 - - - DetailtreeView - - - System.Windows.Forms.TreeView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tableLayoutPanel2 - - - 0 - - - True - - - Segoe UI, 11.25pt - - - 3, 0 - - - 3, 0, 0, 2 - - - 0, 6, 10, 0 - - - 65, 26 - - - 2 - - - 详细信息 - - - label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tableLayoutPanel2 - - - 1 - - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 2 - - - 819, 333 - - - 3 - - - tableLayoutPanel2 - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TreePanel - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="DetailtreeView" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="label1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="AutoSize,0,Percent,100" /></TableLayoutSettings> - - - True - - - 84, 12 - - - 0, 13 - - - 2 - - - RefreshTime - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ButtonPanel - - - 0 - - - GrowAndShrink - - - 4, 7 - - - 9, 3, 3, 3 - - - 74, 23 - - - 1 - - - 刷新(&R) - - - RefreshButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ButtonPanel - - - 1 - - - Bottom - - - 0, 333 - - - 819, 42 - - - 2 - - - ButtonPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TreePanel - - - 1 - - - 3, 3 - - - 819, 375 - - - 3 - - - TreePanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pageContainerPanel - - - 0 - - - 0, 78 - - - 819, 381 - - - pageContainerPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - 17, 17 - - - True - - - 96, 96 - - - 819, 459 - - - RefreshTimer - - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DockerDetailsPage - - - XenAdmin.TabPages.BaseTabPage, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - \ No newline at end of file diff --git a/XenAdmin/TabPages/DockerProcessPage.ja.resx b/XenAdmin/TabPages/DockerProcessPage.ja.resx deleted file mode 100644 index 77ce18fed..000000000 --- a/XenAdmin/TabPages/DockerProcessPage.ja.resx +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - Top, Bottom, Left, Right - - - プロセスID - - - - 74 - - - コマンド - - - 479 - - - 消費されたCPU時間 - - - 139 - - - Fill - - - - 0, 0 - - - 897, 267 - - - 5 - - - listView1 - - - XenAdmin.Controls.ListViewEx, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - - panel1 - - - 0 - - - NoControl - - - 3, 5 - - - 3, 0, 3, 0 - - - 102, 23 - - - 0 - - - 更新(&R) - - - RefreshButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 - - - 0 - - - None - - - True - - - NoControl - - - 111, 10 - - - 72, 13 - - - 0 - - - 最終更新: - - - labelRefresh - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 - - - 1 - - - Bottom - - - 0, 267 - - - 0, 5, 0, 0 - - - 0, 5, 0, 0 - - - 897, 34 - - - 4 - - - flowLayoutPanel1 - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panel1 - - - 1 - - - 10, 33 - - - 900, 400 - - - 897, 301 - - - 6 - - - panel1 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pageContainerPanel - - - 0 - - - True - - - Segoe UI, 11.25pt - - - NoControl - - - 6, 10 - - - 72, 20 - - - 5 - - - プロセス - - - label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pageContainerPanel - - - 1 - - - 0, 78 - - - 920, 356 - - - pageContainerPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - True - - - NoControl - - - 64, 26 - - - 0, 13 - - - 8 - - - label6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label10 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label9 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label8 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label7 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - Segoe UI, 11.25pt - - - NoControl - - - 0, 0 - - - 8, 0, 0, 0 - - - 920, 36 - - - 27 - - - コンテナ プロセス - - - MiddleLeft - - - TitleLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - True - - - 96, 96 - - - Segoe UI, 8.25pt - - - 0, 0, 0, 0 - - - 920, 434 - - - ColumnPID - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ColumnCommand - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ColumnCPUTime - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - RefreshTimer - - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DockerProcessPage - - - XenAdmin.TabPages.BaseTabPage, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - \ No newline at end of file diff --git a/XenAdmin/TabPages/DockerProcessPage.zh-CN.resx b/XenAdmin/TabPages/DockerProcessPage.zh-CN.resx deleted file mode 100644 index d43c3dac1..000000000 --- a/XenAdmin/TabPages/DockerProcessPage.zh-CN.resx +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - Top, Bottom, Left, Right - - - 进程 ID - - - - 74 - - - 命令 - - - 479 - - - 占用的 CPU 时间 - - - 139 - - - Fill - - - - 0, 0 - - - 897, 267 - - - 5 - - - listView1 - - - XenAdmin.Controls.ListViewEx, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - - panel1 - - - 0 - - - NoControl - - - 3, 5 - - - 3, 0, 3, 0 - - - 102, 23 - - - 0 - - - 刷新(&R) - - - RefreshButton - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 - - - 0 - - - None - - - True - - - NoControl - - - 111, 10 - - - 72, 13 - - - 0 - - - 上次刷新时间: - - - labelRefresh - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - flowLayoutPanel1 - - - 1 - - - Bottom - - - 0, 267 - - - 0, 5, 0, 0 - - - 0, 5, 0, 0 - - - 897, 34 - - - 4 - - - flowLayoutPanel1 - - - System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panel1 - - - 1 - - - 10, 33 - - - 900, 400 - - - 897, 301 - - - 6 - - - panel1 - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pageContainerPanel - - - 0 - - - True - - - Segoe UI, 11.25pt - - - NoControl - - - 6, 10 - - - 72, 20 - - - 5 - - - 进程 - - - label1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pageContainerPanel - - - 1 - - - 0, 78 - - - 920, 356 - - - pageContainerPanel - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 0 - - - True - - - NoControl - - - 64, 26 - - - 0, 13 - - - 8 - - - label6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label10 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label9 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label8 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl - - - 0, 0 - - - 100, 23 - - - 0 - - - label7 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - Segoe UI, 11.25pt - - - NoControl - - - 0, 0 - - - 8, 0, 0, 0 - - - 920, 36 - - - 27 - - - 容器进程 - - - MiddleLeft - - - TitleLabel - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - True - - - 96, 96 - - - Segoe UI, 8.25pt - - - 0, 0, 0, 0 - - - 920, 434 - - - ColumnPID - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ColumnCommand - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ColumnCPUTime - - - System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - RefreshTimer - - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - DockerProcessPage - - - XenAdmin.TabPages.BaseTabPage, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - - \ No newline at end of file diff --git a/XenAdmin/TabPages/GeneralTabPage.Designer.cs b/XenAdmin/TabPages/GeneralTabPage.Designer.cs index f4b8b392d..b30929874 100644 --- a/XenAdmin/TabPages/GeneralTabPage.Designer.cs +++ b/XenAdmin/TabPages/GeneralTabPage.Designer.cs @@ -150,7 +150,6 @@ namespace XenAdmin.TabPages this.panel2.Controls.Add(this.panelCPU); this.panel2.Controls.Add(this.panelMemory); this.panel2.Controls.Add(this.panelManagementInterfaces); - this.panel2.Controls.Add(this.panelBios); this.panel2.Controls.Add(this.panelUpdates); this.panel2.Controls.Add(this.panelVersion); this.panel2.Controls.Add(this.panelLicense); @@ -471,13 +470,11 @@ namespace XenAdmin.TabPages this.panelCustomFields.ResumeLayout(false); this.panelCertificate.ResumeLayout(false); this.panelGeneral.ResumeLayout(false); - this.panelBios.ResumeLayout(false); this.tableLayoutPanelButtons.ResumeLayout(false); this.tableLayoutPanelButtons.PerformLayout(); this.panel1DeviceSecurity.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); - } #endregion diff --git a/XenAdmin/TabPages/GeneralTabPage.cs b/XenAdmin/TabPages/GeneralTabPage.cs index d4182b47b..8c46f7626 100644 --- a/XenAdmin/TabPages/GeneralTabPage.cs +++ b/XenAdmin/TabPages/GeneralTabPage.cs @@ -1183,15 +1183,15 @@ namespace XenAdmin.TabPages if (host.software_version.ContainsKey("product_version")) { - var hotfixEligibilityString = AdditionalVersionString(host); + //var hotfixEligibilityString = AdditionalVersionString(host); var versionString = $"{host.ProductBrand()} {host.ProductVersionText()}"; - if (string.IsNullOrEmpty(hotfixEligibilityString)) + //if (string.IsNullOrEmpty(hotfixEligibilityString)) pdSectionVersion.AddEntry(Messages.SOFTWARE_VERSION_PRODUCT_VERSION, versionString); - else - pdSectionVersion.AddEntry(Messages.SOFTWARE_VERSION_PRODUCT_VERSION, - string.Format(Messages.MAINWINDOW_CONTEXT_REASON, versionString, hotfixEligibilityString), - Color.Red); + //else + // pdSectionVersion.AddEntry(Messages.SOFTWARE_VERSION_PRODUCT_VERSION, + // string.Format(Messages.MAINWINDOW_CONTEXT_REASON, versionString, hotfixEligibilityString), + // Color.Red); } if (host.software_version.ContainsKey("dbv")) @@ -1541,14 +1541,14 @@ namespace XenAdmin.TabPages if (p.IsPoolFullyUpgraded()) { - var hotfixEligibilityString = AdditionalVersionString(coordinator); + //var hotfixEligibilityString = AdditionalVersionString(coordinator); - if (string.IsNullOrEmpty(hotfixEligibilityString)) + //if (string.IsNullOrEmpty(hotfixEligibilityString)) s.AddEntry(Messages.SOFTWARE_VERSION_PRODUCT_VERSION, versionString); - else - s.AddEntry(Messages.SOFTWARE_VERSION_PRODUCT_VERSION, - string.Format(Messages.MAINWINDOW_CONTEXT_REASON, versionString, hotfixEligibilityString), - Color.Red); + //else + // s.AddEntry(Messages.SOFTWARE_VERSION_PRODUCT_VERSION, + // string.Format(Messages.MAINWINDOW_CONTEXT_REASON, versionString, hotfixEligibilityString), + // Color.Red); } else { @@ -1622,21 +1622,21 @@ namespace XenAdmin.TabPages // case hotfix_eligibility.cu: // return Messages.HOTFIX_ELIGIBILITY_WARNING_CU_NO_DATE; - // none - case hotfix_eligibility.none when unlicensed && xenServerVersion.EolDate != DateTime.MinValue: - return string.Format(Messages.HOTFIX_ELIGIBILITY_WARNING_EOL_FREE, HelpersGUI.DateTimeToString(xenServerVersion.EolDate.ToLocalTime(), Messages.DATEFORMAT_DMY, true)); - case hotfix_eligibility.none when xenServerVersion.EolDate != DateTime.MinValue: - return string.Format(Messages.HOTFIX_ELIGIBILITY_WARNING_EOL, HelpersGUI.DateTimeToString(xenServerVersion.EolDate.ToLocalTime(), Messages.DATEFORMAT_DMY, true)); - case hotfix_eligibility.none when unlicensed: - return Messages.HOTFIX_ELIGIBILITY_WARNING_EOL_FREE_NO_DATE; - case hotfix_eligibility.none: - return Messages.HOTFIX_ELIGIBILITY_WARNING_EOL_NO_DATE; + // // none + // case hotfix_eligibility.none when unlicensed && xenServerVersion.EolDate != DateTime.MinValue: + // return string.Format(Messages.HOTFIX_ELIGIBILITY_WARNING_EOL_FREE, HelpersGUI.DateTimeToString(xenServerVersion.EolDate.ToLocalTime(), Messages.DATEFORMAT_DMY, true)); + // case hotfix_eligibility.none when xenServerVersion.EolDate != DateTime.MinValue: + // return string.Format(Messages.HOTFIX_ELIGIBILITY_WARNING_EOL, HelpersGUI.DateTimeToString(xenServerVersion.EolDate.ToLocalTime(), Messages.DATEFORMAT_DMY, true)); + // case hotfix_eligibility.none when unlicensed: + // return Messages.HOTFIX_ELIGIBILITY_WARNING_EOL_FREE_NO_DATE; + // case hotfix_eligibility.none: + // return Messages.HOTFIX_ELIGIBILITY_WARNING_EOL_NO_DATE; - // default - default: - return string.Empty; - } - } + // // default + // default: + // return string.Empty; + // } + //} private static void GenerateVirtualisationStatusForGeneralBox(PDSection s, VM vm) { diff --git a/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateDestinationPage.cs b/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateDestinationPage.cs index b44d5de6d..f70a16dcc 100644 --- a/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateDestinationPage.cs +++ b/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateDestinationPage.cs @@ -53,7 +53,6 @@ namespace XenAdmin.Wizards.CrossPoolMigrateWizard { this.selectedVMs = selectedVMs; this.wizardMode = wizardMode; - this.force = force; this.ignoredConnections = ignoredConnections ?? new List(); InitializeText(); diff --git a/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateWizard.cs b/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateWizard.cs index 5bc2ac99a..bfaa2d96e 100644 --- a/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateWizard.cs +++ b/XenAdmin/Wizards/CrossPoolMigrateWizard/CrossPoolMigrateWizard.cs @@ -276,7 +276,7 @@ namespace XenAdmin.Wizards.CrossPoolMigrateWizard var isCopy = wizardMode == WizardMode.Copy; AsyncAction migrateAction; if (isCopy || IsStorageMotion(pair)) - migrateAction = new VMCrossPoolMigrateAction(vm, target, SelectedTransferNetwork, pair.Value, isCopy, _force); + migrateAction = new VMCrossPoolMigrateAction(vm, target, SelectedTransferNetwork, pair.Value, isCopy); else migrateAction = new VMMigrateAction(vm, target); @@ -337,10 +337,6 @@ namespace XenAdmin.Wizards.CrossPoolMigrateWizard ? Messages.MOVE_VM_WIZARD_TITLE : IsCopyTemplate() ? Messages.COPY_TEMPLATE_WIZARD_TITLE : Messages.COPY_VM_WIZARD_TITLE; - if (_force) - { - Text = "Force " + Text; - } } protected override void UpdateWizardContent(XenTabPage page) diff --git a/XenAdmin/XenAdmin.csproj b/XenAdmin/XenAdmin.csproj index bbf91d5f3..fcb953bed 100755 --- a/XenAdmin/XenAdmin.csproj +++ b/XenAdmin/XenAdmin.csproj @@ -10,7 +10,7 @@ Properties XenAdmin [XenCenter] - ..\Branding\Images\AppIcon.ico + AppIcon.ico v4.8 publish\ true @@ -62,7 +62,7 @@ ..\packages\DiscUtils.dll - + ..\packages\log4net.dll @@ -118,6 +118,7 @@ + @@ -130,7 +131,6 @@ Component - Component @@ -144,11 +144,6 @@ - - - - - Component @@ -580,6 +575,10 @@ DockerDetailsPage.cs + + UserControl + + Component @@ -1561,12 +1560,6 @@ NICPage.cs - - UserControl - - - DockerProcessPage.cs - UserControl @@ -2304,17 +2297,8 @@ Designer BaseTabPage.cs - - DockerDetailsPage.cs - Designer - - - DockerDetailsPage.cs - Designer - - - DockerDetailsPage.cs - + + GeneralTabPage.cs Designer @@ -2867,10 +2851,6 @@ NICPage.cs Designer - - DockerProcessPage.cs - Designer - SrStoragePage.cs Designer @@ -2944,12 +2924,6 @@ HomePage.html - - HomePage.ja.html - - - HomePage.zh-CN.html - Designer @@ -2970,7 +2944,6 @@ Images\about_box_graphic.png - @@ -4429,6 +4402,7 @@ Images\xcm_32x32.png + @@ -5750,12 +5724,6 @@ TabPageCredentialsDialog.cs - - Designer - - - Designer - BootOptionsEditPage.cs @@ -5966,12 +5934,6 @@ NICPage.cs - - DockerProcessPage.cs - - - DockerProcessPage.cs - PerformancePage.cs @@ -6765,10 +6727,6 @@ - - {cd563857-6159-4415-b7b2-a21991f572e3} - splash-xcp-ng - {9861DFA1-B41F-432D-A43F-226257DEBBB9} XenCenterLib @@ -6781,10 +6739,6 @@ {2D78AC6C-B867-484A-A447-3C6FC8B8EAF7} XenOvfApi - - {727e885d-14be-40f0-9d0b-3853d44d3984} - Xe - diff --git a/XenModel/Actions/VM/VMCrossPoolMigrateAction.cs b/XenModel/Actions/VM/VMCrossPoolMigrateAction.cs index 70a92ebcf..e99ca358c 100644 --- a/XenModel/Actions/VM/VMCrossPoolMigrateAction.cs +++ b/XenModel/Actions/VM/VMCrossPoolMigrateAction.cs @@ -41,7 +41,6 @@ namespace XenAdmin.Actions.VMActions private readonly VmMapping mapping; private readonly XenAPI.Network transferNetwork; private readonly bool copy; - private readonly bool force; /// /// Cross pool migration action. Can also be used to copy a VM across pools, by setting the "copy" parameter to true @@ -51,8 +50,7 @@ namespace XenAdmin.Actions.VMActions /// the network used for the VM migration /// the storage and networking mappings /// weather this should be a cross-pool copy (true) or migrate (false) operation - /// weather this should be forced - public VMCrossPoolMigrateAction(VM vm, Host destinationHost, XenAPI.Network transferNetwork, VmMapping mapping, bool copy, bool force) + public VMCrossPoolMigrateAction(VM vm, Host destinationHost, XenAPI.Network transferNetwork, VmMapping mapping, bool copy) : base(vm.Connection, GetTitle(vm, destinationHost, copy)) { Session = vm.Connection.Session; diff --git a/XenModel/Actions/VM/VMPauseAction.cs b/XenModel/Actions/VM/VMPauseAction.cs index 6cb6d256d..7bfb82f0b 100644 --- a/XenModel/Actions/VM/VMPauseAction.cs +++ b/XenModel/Actions/VM/VMPauseAction.cs @@ -36,7 +36,7 @@ using XenAdmin.Core; namespace XenAdmin.Actions.VMActions { - public abstract class VMPauseAction : PureAsyncAction + public abstract class VMPauseAction : AsyncAction { protected VMPauseAction(VM vm, string title) : base(vm.Connection, title) diff --git a/XenModel/Actions/VM/VMUnPauseAction.cs b/XenModel/Actions/VM/VMUnPauseAction.cs index f06b80ef3..fe69b25a1 100644 --- a/XenModel/Actions/VM/VMUnPauseAction.cs +++ b/XenModel/Actions/VM/VMUnPauseAction.cs @@ -35,7 +35,7 @@ using XenAdmin.Core; namespace XenAdmin.Actions.VMActions { - public abstract class VMUnPauseAction : PureAsyncAction + public abstract class VMUnPauseAction : AsyncAction { protected VMUnPauseAction(VM vm,string title) : base(vm.Connection, title) diff --git a/XenModel/FriendlyNames.Designer.cs b/XenModel/FriendlyNames.Designer.cs index a1eb155e3..5380d5bb8 100644 --- a/XenModel/FriendlyNames.Designer.cs +++ b/XenModel/FriendlyNames.Designer.cs @@ -268,7 +268,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Logs of messages exchanged between system deamons ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Logs of messages exchanged between system daemons ähnelt. /// public static string Description_host_system_status_message_switch { get { @@ -304,7 +304,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Collects data specific to your OEM provider. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Contains logs and details useful for diagnosing problems with NVIDIA's graphics drivers ähnelt. + /// + public static string Description_host_system_status_NVIDIA_logs { + get { + return ResourceManager.GetString("Description-host.system_status-NVIDIA-logs", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Observations of system actions in the form of distributed traces, spans, and metrics ähnelt. /// public static string Description_host_system_status_observer { get { @@ -313,7 +322,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Collects data specific to your OEM provider. + /// Sucht eine lokalisierte Zeichenfolge, die Collects data specific to your OEM provider ähnelt. /// public static string Description_host_system_status_oem { get { @@ -322,7 +331,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Configuration files used by the Pluggable Authentication Modules (PAM) in [XenServer]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Configuration files used by the Pluggable Authentication Modules (PAM). ähnelt. /// public static string Description_host_system_status_pam { get { @@ -394,7 +403,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] licensing daemon logs ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server licensing daemon logs ähnelt. /// public static string Description_host_system_status_v6d { get { @@ -421,7 +430,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to vTPM's root CAs and other related debug information. + /// Sucht eine lokalisierte Zeichenfolge, die vTPM's root CAs and other related debug information ähnelt. /// public static string Description_host_system_status_vtpm { get { @@ -430,7 +439,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Logs and status information from the WLB server monitoring this pool.. + /// Sucht eine lokalisierte Zeichenfolge, die Logs and status information from the WLB server monitoring this pool. ähnelt. /// public static string Description_host_system_status_wlb { get { @@ -457,7 +466,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server daemon internal logs. + /// Sucht eine lokalisierte Zeichenfolge, die Server daemon internal logs ähnelt. /// public static string Description_host_system_status_xapi { get { @@ -466,7 +475,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Logs generated by the cluster management daemon for the Toolstack.. + /// Sucht eine lokalisierte Zeichenfolge, die Logs generated by the cluster management daemon for the Toolstack. ähnelt. /// public static string Description_host_system_status_xapi_clusterd { get { @@ -475,7 +484,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server daemon crash dumps. + /// Sucht eine lokalisierte Zeichenfolge, die Server daemon crash dumps ähnelt. /// public static string Description_host_system_status_xapi_debug { get { @@ -484,7 +493,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server daemon process details. + /// Sucht eine lokalisierte Zeichenfolge, die Server daemon process details ähnelt. /// public static string Description_host_system_status_xapi_subprocess { get { @@ -520,7 +529,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Details of the hypervisor such as version and build information, primary hard disk location and pool configuration. + /// Sucht eine lokalisierte Zeichenfolge, die Details of the hypervisor such as version and build information, primary hard disk location and pool configuration ähnelt. /// public static string Description_host_system_status_xenserver_config { get { @@ -655,7 +664,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die '{0}.label' has not been defined in the resources file for plugin '{1}'. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die '{0}.label' has not been defined in the resources file for plug-in '{1}'. ähnelt. /// public static string Exception_PluginLabelNotDefined { get { @@ -673,7 +682,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find resources file for plugin '{0}' at '{1}'. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find resources file for plug-in '{0}' at '{1}'. ähnelt. /// public static string Exception_PluginResourcesFileNotFound { get { @@ -691,7 +700,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die XML node '{0}' is not recognised. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die XML node '{0}' is not recognized. ähnelt. /// public static string Exception_PluginXMLNodeNotRecognised { get { @@ -700,7 +709,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cannot load the XenServerPSSnapIn if the PowerShell 'ExecutionPolicy' is equal to 'Restricted'. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Cannot load the XenServerPSModule if the PowerShell 'ExecutionPolicy' is equal to 'Restricted'. ähnelt. /// public static string Exception_PowerShellExecutionPolicyRestricted { get { @@ -709,7 +718,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You must have the Powershell installed to use Powershell Plugins. This can be downloaded from the Microsoft website. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You must have the PowerShell installed to use PowerShell Plug-ins. This can be downloaded from the Microsoft website. ähnelt. /// public static string Exception_PowerShellNotPresent { get { @@ -718,7 +727,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to You must have the XenServerPSModule installed to run PowerShell Commands on the server. This can be found in the SDK.. + /// Sucht eine lokalisierte Zeichenfolge, die You must have the XenServerPSModule installed to run PowerShell Commands on the server. This can be found in the SDK. ähnelt. /// public static string Exception_PowerShellSnapInNotPresent { get { @@ -727,7 +736,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not parse search '{0}' for plugin '{1}'. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not parse search '{0}' for plug-in '{1}'. ähnelt. /// public static string Exception_SearchParseFailed { get { @@ -826,7 +835,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to {0} Basic Edition. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Basic Edition ähnelt. /// public static string Label_host_edition_basic { get { @@ -835,7 +844,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] Virtual Apps and Desktops ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Citrix Virtual Apps and Desktops ähnelt. /// public static string Label_host_edition_desktop { get { @@ -844,7 +853,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] Virtual Apps and Desktops [Citrix] Cloud ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Citrix Virtual Apps and Desktops Citrix Cloud ähnelt. /// public static string Label_host_edition_desktop_cloud { get { @@ -853,7 +862,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] Virtual Apps and Desktops Premium ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Citrix Virtual Apps and Desktops Premium ähnelt. /// public static string Label_host_edition_desktop_plus { get { @@ -862,7 +871,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] Premium Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Premium Per-Socket ähnelt. /// public static string Label_host_edition_enterprise_per_socket { get { @@ -871,7 +880,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] Premium Per-User ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Premium Per-User ähnelt. /// public static string Label_host_edition_enterprise_per_user { get { @@ -880,7 +889,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Express ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Express ähnelt. /// public static string Label_host_edition_express { get { @@ -889,7 +898,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix XenServer] Basic Edition ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Basic Edition ähnelt. /// public static string Label_host_edition_legacy_basic { get { @@ -898,16 +907,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die XenApp/XenDesktop ähnelt. - /// - public static string Label_host_edition_legacy_desktop { - get { - return ResourceManager.GetString("Label-host.edition-legacy-desktop", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die XenApp/XenDesktop [Citrix] Cloud ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die XenApp/XenDesktop Citrix Cloud ähnelt. /// public static string Label_host_edition_legacy_desktop_cloud { get { @@ -925,7 +925,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] Enterprise Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Enterprise Per-Socket ähnelt. /// public static string Label_host_edition_legacy_enterprise_per_socket { get { @@ -934,7 +934,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] Enterprise Per-User ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Enterprise Per-User ähnelt. /// public static string Label_host_edition_legacy_enterprise_per_user { get { @@ -943,7 +943,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} ähnelt. /// public static string Label_host_edition_legacy_free { get { @@ -952,7 +952,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Per-Socket ähnelt. /// public static string Label_host_edition_legacy_per_socket { get { @@ -961,7 +961,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix XenServer] Ultimate Edition ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Ultimate Edition ähnelt. /// public static string Label_host_edition_legacy_premium { get { @@ -970,7 +970,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix XenServer] Standard Edition ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Standard Edition ähnelt. /// public static string Label_host_edition_legacy_standard { get { @@ -979,7 +979,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] Standard Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Standard Per-Socket ähnelt. /// public static string Label_host_edition_legacy_standard_per_socket { get { @@ -988,16 +988,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die XCP-ng Free/Libre Edition ähnelt. - /// - public static string Label_host_edition_legacy_xcp_ng { - get { - return ResourceManager.GetString("Label-host.edition-legacy-xcp-ng", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [Legacy XenServer product] for XenDesktop ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} for XenDesktop ähnelt. /// public static string Label_host_edition_legacy_xendesktop { get { @@ -1006,7 +997,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Per-Socket ähnelt. /// public static string Label_host_edition_per_socket { get { @@ -1015,7 +1006,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix XenServer] Ultimate Edition ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Ultimate Edition ähnelt. /// public static string Label_host_edition_premium { get { @@ -1024,7 +1015,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Premium Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Premium Per-Socket ähnelt. /// public static string Label_host_edition_premium_per_socket { get { @@ -1033,7 +1024,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Premium Per-User ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Premium Per-User ähnelt. /// public static string Label_host_edition_premium_per_user { get { @@ -1042,7 +1033,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix XenServer] Standard Edition ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Standard Edition ähnelt. /// public static string Label_host_edition_standard { get { @@ -1051,7 +1042,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Standard Per-Socket ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Standard Per-Socket ähnelt. /// public static string Label_host_edition_standard_per_socket { get { @@ -1060,16 +1051,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die XCP-ng Free/Libre Edition ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Trial Edition ähnelt. /// - public static string Label_host_edition_xcp_ng { + public static string Label_host_edition_trial { get { - return ResourceManager.GetString("Label-host.edition-xcp-ng", resourceCulture); + return ResourceManager.GetString("Label-host.edition-trial", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] for [Citrix] Virtual Desktops ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} for Citrix Virtual Desktops ähnelt. /// public static string Label_host_edition_xendesktop { get { @@ -1249,7 +1240,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] logs ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} logs ähnelt. /// public static string Label_host_system_status_client_logs { get { @@ -1419,6 +1410,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die NVIDIA Graphics Driver logs ähnelt. + /// + public static string Label_host_system_status_NVIDIA_logs { + get { + return ResourceManager.GetString("Label-host.system_status-NVIDIA-logs", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Observability Traces and Metrics ähnelt. + /// + public static string Label_host_system_status_observer { + get { + return ResourceManager.GetString("Label-host.system_status-observer", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die OEM-specific logs ähnelt. /// @@ -1501,7 +1510,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] licensing daemon ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server licensing daemon ähnelt. /// public static string Label_host_system_status_v6d { get { @@ -1528,7 +1537,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to vTPM. + /// Sucht eine lokalisierte Zeichenfolge, die vTPM ähnelt. /// public static string Label_host_system_status_vtpm { get { @@ -1537,7 +1546,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Workload Balancing status. + /// Sucht eine lokalisierte Zeichenfolge, die Workload Balancing status ähnelt. /// public static string Label_host_system_status_wlb { get { @@ -1564,7 +1573,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server daemon internal logs. + /// Sucht eine lokalisierte Zeichenfolge, die Server daemon internal logs ähnelt. /// public static string Label_host_system_status_xapi { get { @@ -1573,7 +1582,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server cluster management daemon. + /// Sucht eine lokalisierte Zeichenfolge, die Server cluster management daemon ähnelt. /// public static string Label_host_system_status_xapi_clusterd { get { @@ -1582,7 +1591,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server daemon crash dumps. + /// Sucht eine lokalisierte Zeichenfolge, die Server daemon crash dumps ähnelt. /// public static string Label_host_system_status_xapi_debug { get { @@ -1591,7 +1600,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server daemon subprocesses. + /// Sucht eine lokalisierte Zeichenfolge, die Server daemon subprocesses ähnelt. /// public static string Label_host_system_status_xapi_subprocess { get { @@ -1600,7 +1609,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die RRD plugin logs ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die RRD plug-in logs ähnelt. /// public static string Label_host_system_status_xcp_rrdd_plugins { get { @@ -1627,7 +1636,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server configuration. + /// Sucht eine lokalisierte Zeichenfolge, die Server configuration ähnelt. /// public static string Label_host_system_status_xenserver_config { get { @@ -1636,7 +1645,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server database. + /// Sucht eine lokalisierte Zeichenfolge, die Server database ähnelt. /// public static string Label_host_system_status_xenserver_databases { get { @@ -1645,7 +1654,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server domains list. + /// Sucht eine lokalisierte Zeichenfolge, die Server domains list ähnelt. /// public static string Label_host_system_status_xenserver_domains { get { @@ -1654,7 +1663,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server installation log files. + /// Sucht eine lokalisierte Zeichenfolge, die Server installation log files ähnelt. /// public static string Label_host_system_status_xenserver_install { get { @@ -1663,7 +1672,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server logs. + /// Sucht eine lokalisierte Zeichenfolge, die Server logs ähnelt. /// public static string Label_host_system_status_xenserver_logs { get { @@ -1744,7 +1753,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} ähnelt. /// public static string Label_host_XenMemory { get { @@ -1752,15 +1761,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Average CPU ähnelt. - /// - public static string Label_performance_avg_cpu { - get { - return ResourceManager.GetString("Label-performance.avg_cpu", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die {0} Receive ähnelt. /// @@ -2095,7 +2095,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Session creation rate. + /// Sucht eine lokalisierte Zeichenfolge, die Session creation rate ähnelt. /// public static string Label_performance_pool_session_creation_rate { get { @@ -2104,7 +2104,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Number of tasks. + /// Sucht eine lokalisierte Zeichenfolge, die Number of tasks ähnelt. /// public static string Label_performance_pool_task_count { get { @@ -2536,7 +2536,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Disk {0} Average I/O Latency. + /// Sucht eine lokalisierte Zeichenfolge, die Disk {0} Average I/O Latency ähnelt. /// public static string Label_performance_vbd_latency { get { @@ -2545,7 +2545,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Disk {0} Read. + /// Sucht eine lokalisierte Zeichenfolge, die Disk {0} Read ähnelt. /// public static string Label_performance_vbd_read { get { @@ -2671,7 +2671,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Server Healthcheck Latency. + /// Sucht eine lokalisierte Zeichenfolge, die Server Healthcheck Latency ähnelt. /// public static string Label_performance_xapi_latency { get { @@ -2698,7 +2698,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Agent open file descriptors. + /// Sucht eine lokalisierte Zeichenfolge, die Agent open file descriptors ähnelt. /// public static string Label_performance_xapi_open_fds { get { @@ -2886,6 +2886,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Unknown ähnelt. + /// + public static string Label_SR_SRTypes_dummy { + get { + return ResourceManager.GetString("Label-SR.SRTypes-dummy", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Elastic Block Storage ähnelt. /// @@ -3085,7 +3094,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to SMB. + /// Sucht eine lokalisierte Zeichenfolge, die SMB ähnelt. /// public static string Label_SR_SRTypes_smb { get { @@ -3093,6 +3102,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Unknown ähnelt. + /// + public static string Label_SR_SRTypes_tmpfs { + get { + return ResourceManager.GetString("Label-SR.SRTypes-tmpfs", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die udev ähnelt. /// @@ -3688,7 +3706,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Buy [XenServer] Online ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Buy Licenses Online ähnelt. /// public static string Message_action_license_does_not_support_pooling { get { @@ -3697,7 +3715,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Buy [XenServer] Online ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Buy Licenses Online ähnelt. /// public static string Message_action_license_expires_soon { get { @@ -3751,7 +3769,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Alarm '{0}' was not recognised. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Alarm '{0}' was not recognized. ähnelt. /// public static string Message_body_alarm { get { @@ -3797,6 +3815,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Space utilization on SR '{0}' has exceeded 80%. ähnelt. + /// + public static string Message_body_gfs2_capacity { + get { + return ResourceManager.GetString("Message.body-gfs2_capacity", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die A grace license was issued for {0}. This was because the license server could not be reached, it is an out-of-date version, or because the host has recently been upgraded. ähnelt. /// @@ -4050,7 +4077,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' has experienced a change in multipath status. Currently {1} out of {2} paths are active. See the [XenCenter] logs for the full details. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' has experienced a change in multipath status. Currently {1} out of {2} paths are active. See the application logs for the full details. ähnelt. /// public static string Message_body_multipath_periodic_alert { get { @@ -4059,7 +4086,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Servers in pool '{0}' have experienced a change in multipath status. Currently all paths are active. See the [XenCenter] logs for the full details. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Servers in pool '{0}' have experienced a change in multipath status. Currently all paths are active. See the application logs for the full details. ähnelt. /// public static string Message_body_multipath_periodic_alert_healthy { get { @@ -4068,7 +4095,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' has experienced a change in multipath status. Currently all paths are active. See the [XenCenter] logs for the full details. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' has experienced a change in multipath status. Currently all paths are active. See the application logs for the full details. ähnelt. /// public static string Message_body_multipath_periodic_alert_healthy_standalone { get { @@ -4077,7 +4104,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Servers in pool '{0}' have experienced a change in multipath status. Currently the following servers have inactive paths: {1}. See the [XenCenter] logs for the full details. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Servers in pool '{0}' have experienced a change in multipath status. Currently the following servers have inactive paths: {1}. See the application logs for the full details. ähnelt. /// public static string Message_body_multipath_periodic_alert_summary { get { @@ -4113,7 +4140,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is now the master of pool '{1}'. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is now the coordinator of pool '{1}'. ähnelt. /// public static string Message_body_pool_master_transition { get { @@ -4131,7 +4158,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Certificate verification is enabled on the pool, but overridden on server '{0}'.. + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is enabled on the pool, but overridden on server '{0}'. ähnelt. /// public static string Message_body_tls_verification_emergency_disabled { get { @@ -4140,7 +4167,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Quality of Service settings for disk '{0}' on virtual machine '{1}' could not be obeyed.. + /// Sucht eine lokalisierte Zeichenfolge, die Quality of Service settings for disk '{0}' on virtual machine '{1}' could not be obeyed. ähnelt. /// public static string Message_body_vbd_qos_failed { get { @@ -4625,6 +4652,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Storage repository low on space ähnelt. + /// + public static string Message_name_gfs2_capacity { + get { + return ResourceManager.GetString("Message.name-gfs2_capacity", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Grace license issued. ähnelt. /// @@ -4905,7 +4941,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Pool master changed ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Pool coordinator changed ähnelt. /// public static string Message_name_pool_master_transition { get { @@ -4941,7 +4977,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Certificate verification is disabled.. + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is disabled. ähnelt. /// public static string Message_name_tls_verification_emergency_disabled { get { @@ -4950,7 +4986,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to An unknown error occurred when reclaiming freed space. + /// Sucht eine lokalisierte Zeichenfolge, die An unknown error occurred when reclaiming freed space ähnelt. /// public static string Message_name_UnknownTrimException { get { @@ -5022,7 +5058,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Snapshot of disks and memory for virtual machine has been created. + /// Sucht eine lokalisierte Zeichenfolge, die Snapshot of disks and memory for virtual machine has been created ähnelt. /// public static string Message_name_vm_checkpointed { get { @@ -5031,7 +5067,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to VM Cloned. + /// Sucht eine lokalisierte Zeichenfolge, die VM Cloned ähnelt. /// public static string Message_name_vm_cloned { get { @@ -5049,7 +5085,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Virtual machine has been migrated. + /// Sucht eine lokalisierte Zeichenfolge, die Virtual machine has been migrated ähnelt. /// public static string Message_name_vm_migrated { get { @@ -5058,7 +5094,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Virtual machine has been paused. + /// Sucht eine lokalisierte Zeichenfolge, die Virtual machine has been paused ähnelt. /// public static string Message_name_vm_paused { get { @@ -5067,7 +5103,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to VM Rebooted. + /// Sucht eine lokalisierte Zeichenfolge, die VM Rebooted ähnelt. /// public static string Message_name_vm_rebooted { get { @@ -5103,7 +5139,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Virtual machine has been reverted to snapshot. + /// Sucht eine lokalisierte Zeichenfolge, die Virtual machine has been reverted to snapshot ähnelt. /// public static string Message_name_vm_snapshot_reverted { get { @@ -5112,7 +5148,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Snapshot of disks for virtual machine has been created. + /// Sucht eine lokalisierte Zeichenfolge, die Snapshot of disks for virtual machine has been created ähnelt. /// public static string Message_name_vm_snapshotted { get { @@ -5121,7 +5157,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to VM Started. + /// Sucht eine lokalisierte Zeichenfolge, die VM Started ähnelt. /// public static string Message_name_vm_started { get { @@ -5148,7 +5184,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Virtual machine has been unpaused. + /// Sucht eine lokalisierte Zeichenfolge, die Virtual machine has been unpaused ähnelt. /// public static string Message_name_vm_unpaused { get { @@ -5157,7 +5193,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Snapshot schedule failed: insufficient license for Scheduled snapshots. + /// Sucht eine lokalisierte Zeichenfolge, die Snapshot schedule failed: insufficient license for Scheduled snapshots ähnelt. /// public static string Message_name_vmss_license_error { get { @@ -5265,7 +5301,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to Host CPU Load. + /// Sucht eine lokalisierte Zeichenfolge, die Host CPU Load ähnelt. /// public static string OPERATIONAL_METRICS_HOSTLOAD { get { @@ -5274,7 +5310,7 @@ namespace XenAdmin { } /// - /// Looks up a localized string similar to There was an error in preparing the host for upgrade.. + /// Sucht eine lokalisierte Zeichenfolge, die There was an error in preparing the host for upgrade. ähnelt. /// public static string PREPARE_HOST_UPGRADE_ERROR_PREPARING_HOST { get { @@ -5577,7 +5613,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] ISOs ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} ISOs ähnelt. /// public static string SR_name_description_xenserver_tools { get { @@ -5658,7 +5694,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} ähnelt. /// public static string SR_name_label_xenserver_tools { get { diff --git a/XenModel/FriendlyNames.resx b/XenModel/FriendlyNames.resx index b5fe2e68d..f61bb884d 100644 --- a/XenModel/FriendlyNames.resx +++ b/XenModel/FriendlyNames.resx @@ -400,7 +400,7 @@ {0} Basic Edition - Ext + Ext3 XenApp/XenDesktop Citrix Cloud @@ -1077,9 +1077,6 @@ Dell EqualLogic - - Ext3 - GFS2 @@ -2015,4 +2012,13 @@ If the operating system you plan to use is not listed, you may be able to install it by selecting this template. We recommend that only advanced users attempt to use this template, and you should note that our products have been tested running only the supported distributions and specific versions covered by the standard supplied templates. - + + Ext4 + + + File + + + XFS + + \ No newline at end of file diff --git a/XenModel/InvisibleMessages.Designer.cs b/XenModel/InvisibleMessages.Designer.cs index cffe3e52a..89188031c 100644 --- a/XenModel/InvisibleMessages.Designer.cs +++ b/XenModel/InvisibleMessages.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace XenAdmin { /// - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ namespace XenAdmin { } /// - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ namespace XenAdmin { } /// - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,43 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die https://docs.xenserver.com/en-us/ ähnelt. + /// Looks up a localized string similar to https://cis.citrix.com. + /// + public static string CIS_URL { + get { + return ResourceManager.GetString("CIS_URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to https://support.citrix.com/xencenterclientiddownload. + /// + public static string CLIENT_ID_URL { + get { + return ResourceManager.GetString("CLIENT_ID_URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to https://www.citrix.com/support/programs/. + /// + public static string CSS_URL { + get { + return ResourceManager.GetString("CSS_URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to https://docs.xenserver.com/en-us/xenserver/8/whats-new/removed-features.html. + /// + public static string DEPRECATION_URL { + get { + return ResourceManager.GetString("DEPRECATION_URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to https://docs.xenserver.com/en-us/. /// public static string DOCS_URL { get { @@ -70,16 +106,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. + /// Looks up a localized string similar to ?utm_campaign={0}&utm_medium=ui_link&utm_source={1}. /// - public static string HELP_URL { + public static string HELP_URL_QUERY { get { - return ResourceManager.GetString("HELP_URL", resourceCulture); + return ResourceManager.GetString("HELP_URL_QUERY", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die https://xcp-ng.org ähnelt. + /// Looks up a localized string similar to https://www.xenserver.com/. /// public static string HOMEPAGE { get { @@ -88,16 +124,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. - /// - public static string HTTP_LICENSES { - get { - return ResourceManager.GetString("HTTP_LICENSES", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die https://xenserver.com/buy ähnelt. + /// Looks up a localized string similar to https://xenserver.com/buy. /// public static string LICENSE_BUY_URL { get { @@ -106,16 +133,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. - /// - public static string LICENSE_EXPIRY_WEBPAGE { - get { - return ResourceManager.GetString("LICENSE_EXPIRY_WEBPAGE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die https://docs.citrix.com/en-us/licensing/current-release/license-server-getting-started.html ähnelt. + /// Looks up a localized string similar to https://docs.citrix.com/en-us/licensing/current-release/license-server-getting-started.html. /// public static string LICENSE_SERVER_DOCS_LINK { get { @@ -124,16 +142,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. - /// - public static string LICENSE_SERVER_DOWNLOAD_LINK { - get { - return ResourceManager.GetString("LICENSE_SERVER_DOWNLOAD_LINK", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die en-US ähnelt. + /// Looks up a localized string similar to en-US. /// public static string LOCALE { get { @@ -142,7 +151,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die https://xcp-ng.org ähnelt. + /// Looks up a localized string similar to https://github.com/xenserver/xencenter-samples. /// public static string PLUGINS_URL { get { @@ -151,7 +160,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die https://docs.xenserver.com/en-us/xencenter/current-release/whats-new.html ähnelt. + /// Looks up a localized string similar to https://docs.xenserver.com/en-us/xenserver/8/system-requirements/guest-os-support.html. + /// + public static string PV_GUESTS_CHECK_URL { + get { + return ResourceManager.GetString("PV_GUESTS_CHECK_URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to https://docs.xenserver.com/en-us/xencenter/current-release/whats-new.html. /// public static string RELEASE_NOTES_URL { get { @@ -160,16 +178,25 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die https://xcp-ng.com ähnelt. + /// Looks up a localized string similar to https://fileservice.citrix.com/api/session/token. /// - public static string SUPPORT_URL { + public static string TOKEN_API_URL { get { - return ResourceManager.GetString("SUPPORT_URL", resourceCulture); + return ResourceManager.GetString("TOKEN_API_URL", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. + /// Looks up a localized string similar to https://fileservice.citrix.com/direct/v2/download/. + /// + public static string UPDATE_URL_PREFIX { + get { + return ResourceManager.GetString("UPDATE_URL_PREFIX", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to https://www.xenserver.com/. /// public static string UPSELL_LEARNMOREURL_TRIAL { get { @@ -178,11 +205,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. + /// Looks up a localized string similar to https://www.xenserver.com/downloads. /// - public static string UPSELL_SA { + public static string WEBSITE_DOWNLOADS { get { - return ResourceManager.GetString("UPSELL_SA", resourceCulture); + return ResourceManager.GetString("WEBSITE_DOWNLOADS", resourceCulture); } } } diff --git a/XenModel/Messages.Designer.cs b/XenModel/Messages.Designer.cs index 60dafe570..528e4707d 100755 --- a/XenModel/Messages.Designer.cs +++ b/XenModel/Messages.Designer.cs @@ -19,7 +19,7 @@ namespace XenAdmin { // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class Messages { @@ -60,6 +60,51 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking for the presence of an EUA ähnelt. + /// + public static string ACCEPT_EUA_CHECK_DESCRIPTION { + get { + return ResourceManager.GetString("ACCEPT_EUA_CHECK_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Looking for an EUA to be accepted ähnelt. + /// + public static string ACCEPT_EUA_CHECK_GROUP_NAME { + get { + return ResourceManager.GetString("ACCEPT_EUA_CHECK_GROUP_NAME", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die More than one EUA was fetched. Please ensure you have read all of them before accepting. ähnelt. + /// + public static string ACCEPT_EUA_MORE_THAN_ONE_FOUND { + get { + return ResourceManager.GetString("ACCEPT_EUA_MORE_THAN_ONE_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You must accept the End User Agreement (EUA) ähnelt. + /// + public static string ACCEPT_EUA_PROBLEM_DESCRIPTION { + get { + return ResourceManager.GetString("ACCEPT_EUA_PROBLEM_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die See EUA... ähnelt. + /// + public static string ACCEPT_EUA_PROBLEM_HELP_MESSAGE { + get { + return ResourceManager.GetString("ACCEPT_EUA_PROBLEM_HELP_MESSAGE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Activating virtual disks... ähnelt. /// @@ -78,6 +123,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Installing updates on {0}... ähnelt. + /// + public static string ACTION_APPLY_CDN_UPDATES_TITLE { + get { + return ResourceManager.GetString("ACTION_APPLY_CDN_UPDATES_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Changing control domain memory settings on '{0}' ähnelt. /// @@ -106,7 +160,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Change email options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Change email notifications ähnelt. /// public static string ACTION_CHANGE_EMAIL_OPTIONS { get { @@ -313,7 +367,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Changing email options for '{0}'... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Changing email notifications for '{0}'... ähnelt. /// public static string ACTION_CHANGING_EMAIL_OPTIONS_FOR { get { @@ -600,6 +654,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disabling Health Check for '{0}'... ähnelt. + /// + public static string ACTION_DISABLE_HEALTH_CHECK_DESCRIPTION { + get { + return ResourceManager.GetString("ACTION_DISABLE_HEALTH_CHECK_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disable Health Check ähnelt. + /// + public static string ACTION_DISABLE_HEALTH_CHECK_TITLE { + get { + return ResourceManager.GetString("ACTION_DISABLE_HEALTH_CHECK_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Disable IGMP snooping ähnelt. /// @@ -735,33 +807,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Added disk ähnelt. - /// - public static string ACTION_DISK_ADDED { - get { - return ResourceManager.GetString("ACTION_DISK_ADDED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Adding disk ähnelt. - /// - public static string ACTION_DISK_ADDING { - get { - return ResourceManager.GetString("ACTION_DISK_ADDING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Creating disk '{0}' on SR '{1}' ähnelt. - /// - public static string ACTION_DISK_ADDING_TITLE { - get { - return ResourceManager.GetString("ACTION_DISK_ADDING_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Attaching disk to VM '{0}'... ähnelt. /// @@ -1023,6 +1068,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabling VM memory and vGPU data compression during VM live migration on '{0}' ähnelt. + /// + public static string ACTION_ENABLE_MIGRATION_COMPRESSION { + get { + return ResourceManager.GetString("ACTION_ENABLE_MIGRATION_COMPRESSION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Enable PVS-Accelerator ähnelt. /// @@ -1077,6 +1131,26 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabling metric "{0}"... ähnelt. + /// + public static string ACTION_ENABLING_DATASOURCE { + get { + return ResourceManager.GetString("ACTION_ENABLING_DATASOURCE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Could not enable metric "{0}". + /// + ///This could be because the data source is not generating any data. Ensure the prerequisites for collecting this metric are met before attempting to enable it. ähnelt. + /// + public static string ACTION_ENABLING_DATASOURCE_ERROR { + get { + return ResourceManager.GetString("ACTION_ENABLING_DATASOURCE_ERROR", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Enabling live patching for '{0}' ähnelt. /// @@ -1095,6 +1169,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabling certificate verification... ähnelt. + /// + public static string ACTION_ENABLING_TLS_VERIFICATION { + get { + return ResourceManager.GetString("ACTION_ENABLING_TLS_VERIFICATION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabling certificate verification on {0}... ähnelt. + /// + public static string ACTION_ENABLING_TLS_VERIFICATION_ON { + get { + return ResourceManager.GetString("ACTION_ENABLING_TLS_VERIFICATION_ON", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Export failed due to a block checksum mismatch. Please retry the export. ähnelt. /// @@ -1203,15 +1295,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Exporting {0} to backup file ähnelt. - /// - public static string ACTION_EXPORT_TASK_DESCRIPTION { - get { - return ResourceManager.GetString("ACTION_EXPORT_TASK_DESCRIPTION", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Exporting {0} ähnelt. /// @@ -1257,33 +1340,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Get Health Check analysis result from [Citrix] Insight Services ähnelt. - /// - public static string ACTION_GET_HEALTH_CHECK_RESULT { - get { - return ResourceManager.GetString("ACTION_GET_HEALTH_CHECK_RESULT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Failed to get the analysis result ähnelt. - /// - public static string ACTION_GET_HEALTH_CHECK_RESULT_FAILED { - get { - return ResourceManager.GetString("ACTION_GET_HEALTH_CHECK_RESULT_FAILED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Getting the analysis result ähnelt. - /// - public static string ACTION_GET_HEALTH_CHECK_RESULT_PROGRESS { - get { - return ResourceManager.GetString("ACTION_GET_HEALTH_CHECK_RESULT_PROGRESS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Action completed. {0} VDIs found. ähnelt. /// @@ -1365,24 +1421,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication with [Citrix] Insight Services ähnelt. - /// - public static string ACTION_HEALTHCHECK_AUTHENTICATION { - get { - return ResourceManager.GetString("ACTION_HEALTHCHECK_AUTHENTICATION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Authenticating with [Citrix] Insight Services ähnelt. - /// - public static string ACTION_HEALTHCHECK_AUTHENTICATION_PROGRESS { - get { - return ResourceManager.GetString("ACTION_HEALTHCHECK_AUTHENTICATION_PROGRESS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' rebooted ähnelt. /// @@ -1518,6 +1556,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Thinly provisioned (GFS2) SRs with CHAP authentication are not supported. ähnelt. + /// + public static string ACTION_ISCSI_IQN_SCANNING_GFS2 { + get { + return ResourceManager.GetString("ACTION_ISCSI_IQN_SCANNING_GFS2", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Scanning for LUNs on iSCSI filer {0} ähnelt. /// @@ -1555,20 +1602,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Moving virtual disk '{0}'... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Moving Virtual Disk '{0}' from SR '{1}' to SR '{2}' ähnelt. /// - public static string ACTION_MOVING_VDI_STATUS { + public static string ACTION_MOVING_VDI_TO_SR { get { - return ResourceManager.GetString("ACTION_MOVING_VDI_STATUS", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Moving Virtual Disk '{0}' to SR '{1}' ähnelt. - /// - public static string ACTION_MOVING_VDI_TITLE { - get { - return ResourceManager.GetString("ACTION_MOVING_VDI_TITLE", resourceCulture); + return ResourceManager.GetString("ACTION_MOVING_VDI_TO_SR", resourceCulture); } } @@ -1950,15 +1988,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Save Health Check settings ähnelt. - /// - public static string ACTION_SAVE_HEALTHCHECK_SETTINGS { - get { - return ResourceManager.GetString("ACTION_SAVE_HEALTHCHECK_SETTINGS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Save settings for '{0}'... ähnelt. /// @@ -1968,6 +1997,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Saving system status canceled ähnelt. + /// + public static string ACTION_SAVE_STATUS_REPORT_CANCELLED { + get { + return ResourceManager.GetString("ACTION_SAVE_STATUS_REPORT_CANCELLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Saving system status failed ähnelt. + /// + public static string ACTION_SAVE_STATUS_REPORT_FAILED { + get { + return ResourceManager.GetString("ACTION_SAVE_STATUS_REPORT_FAILED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die There was an error while saving the server status report. Only a partial report may be available ähnelt. + /// + public static string ACTION_SAVE_STATUS_REPORT_FAILED_PARTIAL { + get { + return ResourceManager.GetString("ACTION_SAVE_STATUS_REPORT_FAILED_PARTIAL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Saving alerts for '{0}'... ähnelt. /// @@ -2004,15 +2060,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Saving Health Check settings for '{0}'... ähnelt. - /// - public static string ACTION_SAVING_HEALTHCHECK_SETTINGS { - get { - return ResourceManager.GetString("ACTION_SAVING_HEALTHCHECK_SETTINGS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Saving settings for '{0}'... ähnelt. /// @@ -2067,15 +2114,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Saving VM Configuration ähnelt. - /// - public static string ACTION_SET_VM_OTHER_CONFIG_TITLE { - get { - return ResourceManager.GetString("ACTION_SET_VM_OTHER_CONFIG_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Shut down ähnelt. /// @@ -2545,7 +2583,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Getting system status canceled ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Canceled ähnelt. /// public static string ACTION_SYSTEM_STATUS_CANCELLED { get { @@ -2553,6 +2591,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die No data was compiled. Press previous to select new items or servers and try again. ähnelt. + /// + public static string ACTION_SYSTEM_STATUS_COMPILE_FAILED { + get { + return ResourceManager.GetString("ACTION_SYSTEM_STATUS_COMPILE_FAILED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Finished compiling status report (with errors). A partial status report was saved. ähnelt. + /// + public static string ACTION_SYSTEM_STATUS_COMPILE_PARTIAL { + get { + return ResourceManager.GetString("ACTION_SYSTEM_STATUS_COMPILE_PARTIAL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Status report was compiled and saved successfully. ähnelt. + /// + public static string ACTION_SYSTEM_STATUS_COMPILE_SUCCESSFUL { + get { + return ResourceManager.GetString("ACTION_SYSTEM_STATUS_COMPILE_SUCCESSFUL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Compiling status report for {0} ähnelt. /// @@ -2581,29 +2646,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No data was compiled. Press previous to select new items or servers and try again. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Failed to save the status report to specified location. Please try again. ähnelt. /// - public static string ACTION_SYSTEM_STATUS_FAILED { + public static string ACTION_SYSTEM_STATUS_SAVE_FAILED { get { - return ResourceManager.GetString("ACTION_SYSTEM_STATUS_FAILED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Finished compiling status report ähnelt. - /// - public static string ACTION_SYSTEM_STATUS_SUCCESSFUL { - get { - return ResourceManager.GetString("ACTION_SYSTEM_STATUS_SUCCESSFUL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Finished compiling status report (with errors). A partial status report was compiled. ähnelt. - /// - public static string ACTION_SYSTEM_STATUS_SUCCESSFUL_PARTIAL { - get { - return ResourceManager.GetString("ACTION_SYSTEM_STATUS_SUCCESSFUL_PARTIAL", resourceCulture); + return ResourceManager.GetString("ACTION_SYSTEM_STATUS_SAVE_FAILED", resourceCulture); } } @@ -2634,15 +2681,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Duplicating ähnelt. - /// - public static string ACTION_TEMPLATE_CLONING { - get { - return ResourceManager.GetString("ACTION_TEMPLATE_CLONING", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Restart toolstack on '{0}' ähnelt. /// @@ -2688,15 +2726,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Transfer Health Check settings ähnelt. - /// - public static string ACTION_TRANSFER_HEALTHCHECK_SETTINGS { - get { - return ResourceManager.GetString("ACTION_TRANSFER_HEALTHCHECK_SETTINGS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Updating integrated GPU pass-through on '{0}' ähnelt. /// @@ -2706,48 +2735,12 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Upload server status report to [Citrix] Insight Services ähnelt. - /// - public static string ACTION_UPLOAD_SERVER_STATUS_REPORT { - get { - return ResourceManager.GetString("ACTION_UPLOAD_SERVER_STATUS_REPORT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Failed to upload the status report. ähnelt. - /// - public static string ACTION_UPLOAD_SERVER_STATUS_REPORT_FAILED { - get { - return ResourceManager.GetString("ACTION_UPLOAD_SERVER_STATUS_REPORT_FAILED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Uploading report to [Citrix] Insight Services ({0} of {1}) ähnelt. - /// - public static string ACTION_UPLOAD_SERVER_STATUS_REPORT_PERCENTAGE { - get { - return ResourceManager.GetString("ACTION_UPLOAD_SERVER_STATUS_REPORT_PERCENTAGE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Uploading report to [Citrix] Insight Services ähnelt. - /// - public static string ACTION_UPLOAD_SERVER_STATUS_REPORT_PROGRESS { - get { - return ResourceManager.GetString("ACTION_UPLOAD_SERVER_STATUS_REPORT_PROGRESS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Upload error. The patch was uploaded, but it cannot be found on the host. ähnelt. /// - public static string ACTION_UPLOADPATCHTOMASTERPLANACTION_FAILED { + public static string ACTION_UPLOADPATCHTOCOORDINATORPLANACTION_FAILED { get { - return ResourceManager.GetString("ACTION_UPLOADPATCHTOMASTERPLANACTION_FAILED", resourceCulture); + return ResourceManager.GetString("ACTION_UPLOADPATCHTOCOORDINATORPLANACTION_FAILED", resourceCulture); } } @@ -3085,7 +3078,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copying VM '{0}' to '{1}' ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Copying VM '{0}' from '{1}' to '{2}' ähnelt. /// public static string ACTION_VM_CROSS_POOL_COPY_TITLE { get { @@ -3193,7 +3186,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Moving VM to new storage... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Moving VM '{0}' to new storage ähnelt. /// public static string ACTION_VM_MOVING { get { @@ -3202,11 +3195,29 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Moving VM '{0}' to '{1}' on SR '{2}' ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Moving VM '{0}' from server '{1}' to server '{2}' ähnelt. /// - public static string ACTION_VM_MOVING_TITLE { + public static string ACTION_VM_MOVING_HOST { get { - return ResourceManager.GetString("ACTION_VM_MOVING_TITLE", resourceCulture); + return ResourceManager.GetString("ACTION_VM_MOVING_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Moving VM '{0}' to SR '{1}' ähnelt. + /// + public static string ACTION_VM_MOVING_SR { + get { + return ResourceManager.GetString("ACTION_VM_MOVING_SR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Failed to finalize moving VM '{0}' to new storage. Please see logs for details. ähnelt. + /// + public static string ACTION_VM_MOVING_VDI_DESTROY_FAILURE { + get { + return ResourceManager.GetString("ACTION_VM_MOVING_VDI_DESTROY_FAILURE", resourceCulture); } } @@ -3616,11 +3627,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Waiting for slaves to recover... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Waiting for other pool members to recover... ähnelt. /// - public static string ACTION_WAIT_FOR_SLAVES_TO_RECOVER { + public static string ACTION_WAIT_FOR_POOL_MEMBERS_TO_RECOVER { get { - return ResourceManager.GetString("ACTION_WAIT_FOR_SLAVES_TO_RECOVER", resourceCulture); + return ResourceManager.GetString("ACTION_WAIT_FOR_POOL_MEMBERS_TO_RECOVER", resourceCulture); } } @@ -3687,24 +3698,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Downloading WLB report {0} ähnelt. - /// - public static string ACTION_WLB_REPORT_TASK_DESCRIPTION { - get { - return ResourceManager.GetString("ACTION_WLB_REPORT_TASK_DESCRIPTION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Downloading WLB report {0} ähnelt. - /// - public static string ACTION_WLB_REPORT_TASK_NAME { - get { - return ResourceManager.GetString("ACTION_WLB_REPORT_TASK_NAME", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die A&ctivate ähnelt. /// @@ -3714,20 +3707,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] is unable to contact the activation server. - /// - ///If you are not currently connected to the internet, we can save - ///the activation request to a file, for you to upload at a later date. - /// - ///To use this file, visit https://{0}. ähnelt. - /// - public static string ACTIVATION_FAILED_MESSAGE { - get { - return ResourceManager.GetString("ACTIVATION_FAILED_MESSAGE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Saved activation request to {0}. ähnelt. /// @@ -3783,7 +3762,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Adding/removing roles from subject ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Assigning new roles to subject ähnelt. /// public static string AD_ADDING_REMOVING_ROLES { get { @@ -3792,7 +3771,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Adding/removing roles from subject '{0}' ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Assigning new roles to subject '{0}' ähnelt. /// public static string AD_ADDING_REMOVING_ROLES_ON { get { @@ -3800,6 +3779,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Assigning new roles to subjects '{0}' ähnelt. + /// + public static string AD_ADDING_REMOVING_ROLES_ON_MULTIPLE { + get { + return ResourceManager.GetString("AD_ADDING_REMOVING_ROLES_ON_MULTIPLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die (Always granted access) ähnelt. /// @@ -3875,6 +3863,32 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You are about to revoke the permissions for user '{0}'. + /// + ///You are currently logged in as '{0}' on '{1}', and doing this will disconnect you from '{1}'. To reconnect, you will need to supply the local root account credentials, or the credentials for another authorized AD user. + /// + ///Do you want to continue? ähnelt. + /// + public static string AD_CONFIRM_LOGOUT_CURRENT_USER { + get { + return ResourceManager.GetString("AD_CONFIRM_LOGOUT_CURRENT_USER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You are about to revoke the permissions for group '{0}'. + /// + ///The user you are currently logged into '{1}' with is a member of '{0}'. Proceeding will disconnect you and any other members of this group from '{1}'. To reconnect, you will need to supply the local root account credentials, or the credentials for another authorized AD user. + /// + ///Do you want to continue? ähnelt. + /// + public static string AD_CONFIRM_LOGOUT_CURRENT_USER_GROUP { + get { + return ResourceManager.GetString("AD_CONFIRM_LOGOUT_CURRENT_USER_GROUP", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to terminate this user session? /// @@ -3896,28 +3910,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are about to revoke the permissions for user '{0}'. - /// - ///You are currently logged in as '{0}' on '{1}', and doing this will disconnect you from '{1}'. To reconnect, you will need to supply the local root account credentials, or the credentials for another authorized AD user. - /// - ///Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Please wait while {0} establishes your current external authentication configuration. ähnelt. /// - public static string AD_CONFIRM_SUICIDE { + public static string AD_COORDINATOR_UNAVAILABLE_BLURB { get { - return ResourceManager.GetString("AD_CONFIRM_SUICIDE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die You are about to revoke the permissions for group '{0}'. - /// - ///The user you are currently logged into '{1}' with is a member of '{0}'. Proceeding will disconnect you and any other members of this group from '{1}'. To reconnect, you will need to supply the local root account credentials, or the credentials for another authorized AD user. - /// - ///Do you want to continue? ähnelt. - /// - public static string AD_CONFIRM_SUICIDE_GROUP { - get { - return ResourceManager.GetString("AD_CONFIRM_SUICIDE_GROUP", resourceCulture); + return ResourceManager.GetString("AD_COORDINATOR_UNAVAILABLE_BLURB", resourceCulture); } } @@ -4063,33 +4060,86 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are currently logged in as one of the selected users. If you continue you will be logged out of '{0}'. + /// Sucht eine lokalisierte Zeichenfolge, die You are currently logged in as one of the selected users. If you continue, you will be logged out of '{0}'. All other selected users will also be logged out. /// - ///Do you want to continue? ähnelt. + ///Are you sure you want to continue? ähnelt. /// - public static string AD_LOGOUT_SUICIDE_MANY { + public static string AD_LOGOUT_CURRENT_USER_MANY { get { - return ResourceManager.GetString("AD_LOGOUT_SUICIDE_MANY", resourceCulture); + return ResourceManager.GetString("AD_LOGOUT_CURRENT_USER_MANY", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are currently logged in as the selected user. If you continue you will be logged out of '{0}'. + /// Sucht eine lokalisierte Zeichenfolge, die You are currently logged in as one of the selected users. If you assign a new role, you will be logged out of '{0}'. All other selected users that are logged in will also be logged out. /// - ///Do you want to continue? ähnelt. + ///Are you sure you want to continue? ähnelt. /// - public static string AD_LOGOUT_SUICIDE_ONE { + public static string AD_LOGOUT_CURRENT_USER_MANY_ROLE_CHANGE { get { - return ResourceManager.GetString("AD_LOGOUT_SUICIDE_ONE", resourceCulture); + return ResourceManager.GetString("AD_LOGOUT_CURRENT_USER_MANY_ROLE_CHANGE", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Please wait while [XenCenter] establishes your current external authentication configuration. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You are currently logged in as the selected user. If you continue, you will be logged out of '{0}'. + /// + ///Are you sure you want to continue? ähnelt. /// - public static string AD_MASTER_UNAVAILABLE_BLURB { + public static string AD_LOGOUT_CURRENT_USER_ONE { get { - return ResourceManager.GetString("AD_MASTER_UNAVAILABLE_BLURB", resourceCulture); + return ResourceManager.GetString("AD_LOGOUT_CURRENT_USER_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You are currently logged in as the selected user. If you assign a new role, you will be logged out of '{0}'. + /// + ///Are you sure you want to continue? ähnelt. + /// + public static string AD_LOGOUT_CURRENT_USER_ONE_ROLE_CHANGE { + get { + return ResourceManager.GetString("AD_LOGOUT_CURRENT_USER_ONE_ROLE_CHANGE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to log out these {0} users? ähnelt. + /// + public static string AD_LOGOUT_USER_MANY { + get { + return ResourceManager.GetString("AD_LOGOUT_USER_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you assign a new role to logged in users, they will be logged out. + /// + ///Are you sure you want to continue? ähnelt. + /// + public static string AD_LOGOUT_USER_MANY_ROLE_CHANGE { + get { + return ResourceManager.GetString("AD_LOGOUT_USER_MANY_ROLE_CHANGE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to log out the user '{0}'? ähnelt. + /// + public static string AD_LOGOUT_USER_ONE { + get { + return ResourceManager.GetString("AD_LOGOUT_USER_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you assign a new role to user '{0}', the user will be logged out. + /// + ///Are you sure you want to continue? ähnelt. + /// + public static string AD_LOGOUT_USER_ONE_ROLE_CHANGE { + get { + return ResourceManager.GetString("AD_LOGOUT_USER_ONE_ROLE_CHANGE", resourceCulture); } } @@ -4111,6 +4161,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to remove these {0} users? ähnelt. + /// + public static string AD_REMOVE_USER_MANY { + get { + return ResourceManager.GetString("AD_REMOVE_USER_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to remove the user '{0}'? ähnelt. + /// + public static string AD_REMOVE_USER_ONE { + get { + return ResourceManager.GetString("AD_REMOVE_USER_ONE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Resolving AD names ähnelt. /// @@ -4384,7 +4452,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the server '{0}' to a pool that is using older CPUs. /// - ///[XenServer] can continue by rebooting the server and reducing its CPU to the level of the existing servers in the pool. This will shut down any VMs running on the server. This feature is supported for CPU combinations listed in the [XenServer] Hardware Compatibility List. + ///{1} can continue by rebooting the server and reducing its CPU to the level of the existing servers in the pool. This will shut down any VMs running on the server. This feature is supported for CPU combinations listed in the {1} Hardware Compatibility List. /// ///Do you want to do this? ähnelt. /// @@ -4399,7 +4467,7 @@ namespace XenAdmin { /// ///{0} /// - ///[XenServer] can continue by rebooting the servers and reducing their CPUs to the level of the existing servers in the pool. This will shut down any VMs running on the servers. This feature is supported for CPU combinations listed in the [XenServer] Hardware Compatibility List. + ///{1} can continue by rebooting the servers and reducing their CPUs to the level of the existing servers in the pool. This will shut down any VMs running on the servers. This feature is supported for CPU combinations listed in the {1} Hardware Compatibility List. /// ///Do you want to do this? ähnelt. /// @@ -4676,7 +4744,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] can no longer authenticate with the existing credentials for this server. Enter new credentials to proceed. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} can no longer authenticate with the existing credentials for this server. Enter new credentials to proceed. ähnelt. /// public static string ADDSERVER_PASS_NEW { get { @@ -4685,7 +4753,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Advanced Options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Advanced ähnelt. /// public static string ADVANCED_OPTIONS { get { @@ -4832,7 +4900,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disk usage for the Control Domain on {0} has reached {1}. [XenServer]'s performance will be critically affected if this disk becomes full. Log files or other non-essential (user created) files should be removed. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Disk usage for the Control Domain on {0} has reached {1}. {2}'s performance will be critically affected if this disk becomes full. Log files or other non-essential (user created) files should be removed. ähnelt. /// public static string ALERT_ALARM_FILESYSTEM_DESCRIPTION { get { @@ -4943,6 +5011,60 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have never synchronized with the update channel. ähnelt. + /// + public static string ALERT_CDN_NEVER_SYNC_TITLE { + get { + return ResourceManager.GetString("ALERT_CDN_NEVER_SYNC_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The last synchronization with the update channel took place on {0}. ähnelt. + /// + public static string ALERT_CDN_OUT_OF_SYNC_DESCRIPTION { + get { + return ResourceManager.GetString("ALERT_CDN_OUT_OF_SYNC_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have not synchronized with the update channel in {0} days. ähnelt. + /// + public static string ALERT_CDN_OUT_OF_SYNC_TITLE { + get { + return ResourceManager.GetString("ALERT_CDN_OUT_OF_SYNC_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configure Updates ähnelt. + /// + public static string ALERT_CDN_REPO_NOT_CONFIGURED_ACTION_LINK { + get { + return ResourceManager.GetString("ALERT_CDN_REPO_NOT_CONFIGURED_ACTION_LINK", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configuring an update channel will allow your system to synchronize and retrieve available updates. ähnelt. + /// + public static string ALERT_CDN_REPO_NOT_CONFIGURED_DESCRIPTION { + get { + return ResourceManager.GetString("ALERT_CDN_REPO_NOT_CONFIGURED_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have not configured an update channel on '{0}' ähnelt. + /// + public static string ALERT_CDN_REPO_NOT_CONFIGURED_TITLE { + get { + return ResourceManager.GetString("ALERT_CDN_REPO_NOT_CONFIGURED_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die When CPU usage exceeds {0}% for {1} min(s) ähnelt. /// @@ -4952,6 +5074,69 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your Customer Success Services (CSS) agreement expired on {0}. ähnelt. + /// + public static string ALERT_CSS_EXPIRED_DESCIRPTION { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRED_DESCIRPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Renew CSS Agreement ähnelt. + /// + public static string ALERT_CSS_EXPIRED_LINK_TEXT { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRED_LINK_TEXT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your CSS agreement has expired ähnelt. + /// + public static string ALERT_CSS_EXPIRED_TITLE { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRED_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your Customer Success Services (CSS) agreement will expire on {0}. ähnelt. + /// + public static string ALERT_CSS_EXPIRING_DESCRIPTION { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRING_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your CSS agreement is expiring in {0} day(s) ähnelt. + /// + public static string ALERT_CSS_EXPIRING_TITLE_DAYS { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRING_TITLE_DAYS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your CSS agreement is expiring in {0} hour(s) ähnelt. + /// + public static string ALERT_CSS_EXPIRING_TITLE_HOURS { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRING_TITLE_HOURS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your CSS agreement is expiring in {0} minute(s) ähnelt. + /// + public static string ALERT_CSS_EXPIRING_TITLE_MINUTES { + get { + return ResourceManager.GetString("ALERT_CSS_EXPIRING_TITLE_MINUTES", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die When disk usage exceeds {0} for {1} min(s) ähnelt. /// @@ -5030,6 +5215,105 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die All {0} attempts originated from unknown sources. ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_ALL_UNKNOWN { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_ALL_UNKNOWN", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The most common attempts originated from the following sources: ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_COMMON { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_COMMON", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die There has been a total of {0} failed login attempts. ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_TOTAL { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_TOTAL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} attempts originated from unknown sources. ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_UNKNOWN { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_DESCRIPTION_UNKNOWN", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Last attempt on: {0} ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_DATE { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_DATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die IP address: {0} ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_IP { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_IP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Number of attempts: {0} ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_NUMBER { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_NUMBER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Originator: {0} ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_ORIGINATOR { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_ORIGINATOR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die User agent: {0} ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_USERAGENT { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_USERAGENT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Username: {0} ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_USERNAME { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_OFFENDER_USERNAME", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die There has been a number of failed attempts to login to '{0}' within the past hour. ähnelt. + /// + public static string ALERT_FAILED_LOGIN_ATTEMPT_TITLE { + get { + return ResourceManager.GetString("ALERT_FAILED_LOGIN_ATTEMPT_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Help ähnelt. /// @@ -5084,6 +5368,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} is now available. Click Download and Install to proceed with the update. ähnelt. + /// + public static string ALERT_NEW_VERSION_DETAILS_CLIENT { + get { + return ResourceManager.GetString("ALERT_NEW_VERSION_DETAILS_CLIENT", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Go to Web Page ähnelt. /// @@ -5093,6 +5386,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die v{0} Release Notes ähnelt. + /// + public static string ALERT_NEW_VERSION_DOWNLOAD_CLIENT { + get { + return ResourceManager.GetString("ALERT_NEW_VERSION_DOWNLOAD_CLIENT", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die When SR physical utilization exceeds {0} for {1} min(s) ähnelt. /// @@ -5228,10 +5530,37 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Show internet proxy settings ähnelt. + /// + public static string ALLOWED_UPDATES_DIALOG_CHECKBOX { + get { + return ResourceManager.GetString("ALLOWED_UPDATES_DIALOG_CHECKBOX", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Would you like {0} to periodically check the internet for new versions of the application? ähnelt. + /// + public static string ALLOWED_UPDATES_DIALOG_MESSAGE { + get { + return ResourceManager.GetString("ALLOWED_UPDATES_DIALOG_MESSAGE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You can configure {0} to periodically check the internet for updates and new versions for servers running {1} or earlier. Would you like to do so? ähnelt. + /// + public static string ALLOWED_UPDATES_DIALOG_MESSAGE_CFU { + get { + return ResourceManager.GetString("ALLOWED_UPDATES_DIALOG_MESSAGE_CFU", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The SR '{0}' is currently attached elsewhere. Do you want to attach it to '{1}'? /// - ///Warning: you must ensure that the SR is not in use by any server not connected to [XenCenter]. Failure to do so may result in data loss. ähnelt. + ///Warning: you must ensure that the SR is not in use by any server not connected to {2}. Failure to do so may result in data loss. ähnelt. /// public static string ALREADY_ATTACHED_ELSEWHERE { get { @@ -5624,7 +5953,7 @@ namespace XenAdmin { /// ///- Ensure automated updates are not restricted on any hosts in the pool. /// - ///- Deselect the updates application checkbox on the previous page. [XenCenter] will upgrade the selected servers to the new version without applying any updates. ähnelt. + ///- Deselect the updates application checkbox on the previous page. {0} will upgrade the selected servers to the new version without applying any updates. ähnelt. /// public static string AUTOMATED_UPDATES_UNLICENSED_WARNING_MORE_INFO { get { @@ -5660,11 +5989,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Download ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Checking for {0} updates ähnelt. /// - public static string AVAILABLE_UPDATES_DOWNLOAD_TEXT { + public static string AVAILABLE_UPDATES_CHECKING { get { - return ResourceManager.GetString("AVAILABLE_UPDATES_DOWNLOAD_TEXT", resourceCulture); + return ResourceManager.GetString("AVAILABLE_UPDATES_CHECKING", resourceCulture); } } @@ -5677,15 +6006,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die The following software updates for your system are available online. ähnelt. - /// - public static string AVAILABLE_UPDATES_FOUND { - get { - return ResourceManager.GetString("AVAILABLE_UPDATES_FOUND", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die There was an internal error when searching for available updates. Please see the logs for more information. ähnelt. /// @@ -5705,7 +6025,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No updates found. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die No updates found ähnelt. /// public static string AVAILABLE_UPDATES_NOT_FOUND { get { @@ -5732,7 +6052,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Backing up server '{0}', {1} received... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Backing up server '{0}' ({1} received)... ähnelt. /// public static string BACKINGUP_HOST_WITH_DATA { get { @@ -5922,15 +6242,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die The BIOS boot mode is not supported with the selected template. ähnelt. - /// - public static string BIOS_BOOT_MODE_UNSUPPORTED_WARNING { - get { - return ResourceManager.GetString("BIOS_BOOT_MODE_UNSUPPORTED_WARNING", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die BIOS strings copied ähnelt. /// @@ -6005,9 +6316,9 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Creating this bond will automatically move the management interface on one of your selected bond members to the bond itself: /// - ///- [XenCenter] connections to the pool will temporarily be disturbed + ///- {0} connections to the pool will temporarily be disturbed /// - ///- If your network configuration is incorrect then [XenCenter] may permanently lose the connection to the pool, or pool members may be unable to contact each other. ähnelt. + ///- If your network configuration is incorrect then {0} may permanently lose the connection to the pool, or pool members may be unable to contact each other. ähnelt. /// public static string BOND_CREATE_WILL_DISTURB_PRIMARY { get { @@ -6049,13 +6360,13 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die {0} /// - ///Deleting this bond will automatically transfer the management and secondary interfaces on the bond to the first slave member of the bond: + ///Deleting this bond will automatically transfer the management and secondary interfaces on the bond to the first other member of the bond: /// - ///- [XenCenter] connections to the pool will temporarily be disturbed + ///- {1} connections to the pool will temporarily be disturbed /// ///- Traffic through the secondary interface will be disrupted /// - ///- If your network configuration is incorrect then [XenCenter] may permanently lose the connection to the pool, or pool members may be unable to contact each other. ähnelt. + ///- If your network configuration is incorrect then {1} may permanently lose the connection to the pool, or pool members may be unable to contact each other. ähnelt. /// public static string BOND_DELETE_WILL_DISTURB_BOTH { get { @@ -6066,11 +6377,11 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die {0} /// - ///Deleting this bond will automatically transfer the management interface on the bond to the first slave member of the bond: + ///Deleting this bond will automatically transfer the management interface on the bond to the first of the bonded members: /// - ///- [XenCenter] connections to the pool will temporarily be disturbed + ///- {1} connections to the pool will temporarily be disturbed /// - ///- If your network configuration is incorrect then [XenCenter] may permanently lose the connection to the pool, or pool members may be unable to contact each other. ähnelt. + ///- If your network configuration is incorrect then {1} may permanently lose the connection to the pool, or pool members may be unable to contact each other. ähnelt. /// public static string BOND_DELETE_WILL_DISTURB_PRIMARY { get { @@ -6081,7 +6392,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die {0} /// - ///Deleting this bond will disrupt traffic through the secondary interface on the bond while the interface is moved to the first slave of the bond. ähnelt. + ///Deleting this bond will disrupt traffic through the secondary interface on the bond while the interface is moved to the first of the bonded members. ähnelt. /// public static string BOND_DELETE_WILL_DISTURB_SECONDARY { get { @@ -6090,7 +6401,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find the bond in [XenCenter]'s cache. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find the bond in {0}'s cache. ähnelt. /// public static string BOND_GONE { get { @@ -6099,11 +6410,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find the bond master in [XenCenter]'s cache. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find the bond interface in {0}'s cache. ähnelt. /// - public static string BOND_MASTER_GONE { + public static string BOND_INTERFACE_GONE { get { - return ResourceManager.GetString("BOND_MASTER_GONE", resourceCulture); + return ResourceManager.GetString("BOND_INTERFACE_GONE", resourceCulture); } } @@ -6143,6 +6454,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Not supported with the selected template ähnelt. + /// + public static string BOOT_MODE_UNSUPPORTED_WARNING { + get { + return ResourceManager.GetString("BOOT_MODE_UNSUPPORTED_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Boot order: {0} ähnelt. /// @@ -6171,7 +6491,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Your Tools ISO is on a broken SR, [XenCenter] will attempt to fix it before proceeding. Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Your Tools ISO is on a broken SR, {0} will attempt to fix it before proceeding. Do you want to continue? ähnelt. /// public static string BROKEN_TOOLS_PROMPT { get { @@ -6180,7 +6500,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Compiling [XenCenter] logs and metadata ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Compiling {0} logs and metadata ähnelt. /// public static string BUGTOOL_CLIENT_ACTION_LOGS_META { get { @@ -6189,7 +6509,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Compiling [XenCenter] metadata ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Compiling {0} metadata ähnelt. /// public static string BUGTOOL_CLIENT_ACTION_META { get { @@ -6198,7 +6518,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] logs and metadata ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} logs and metadata ähnelt. /// public static string BUGTOOL_CLIENT_LOGS_META { get { @@ -6207,7 +6527,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] metadata ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} metadata ähnelt. /// public static string BUGTOOL_CLIENT_META { get { @@ -6370,6 +6690,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Downloading ähnelt. + /// + public static string BUGTOOL_REPORTSTATUS_DOWNLOADING_NO_DATA { + get { + return ResourceManager.GetString("BUGTOOL_REPORTSTATUS_DOWNLOADING_NO_DATA", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Failed - Please see logs for details ähnelt. /// @@ -6388,6 +6717,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Saving - {0}% ähnelt. + /// + public static string BUGTOOL_REPORTSTATUS_SAVING { + get { + return ResourceManager.GetString("BUGTOOL_REPORTSTATUS_SAVING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Saving report to selected destination ähnelt. + /// + public static string BUGTOOL_SAVE_STATUS_REPORT { + get { + return ResourceManager.GetString("BUGTOOL_SAVE_STATUS_REPORT", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Saving server status report ähnelt. /// @@ -6505,6 +6852,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disks belonging to templates cannot be activated or deactivated. ähnelt. + /// + public static string CANNOT_ACTIVATE_TEMPLATE_DISK { + get { + return ResourceManager.GetString("CANNOT_ACTIVATE_TEMPLATE_DISK", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die This virtual disk is already activated on VM '{0}'. ähnelt. /// @@ -6542,7 +6898,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You must install [Citrix VM Tools] on VM '{0}' before you can activate this virtual disk for the VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You must install {0} on VM '{1}' before you can activate this virtual disk for the VM. ähnelt. /// public static string CANNOT_ACTIVATE_VD_VM_NEEDS_TOOLS { get { @@ -6650,7 +7006,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You must install [Citrix VM Tools] on VM '{0}' before you can deactivate this virtual disk for the VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You must install {0} on VM '{1}' before you can deactivate this virtual disk for the VM. ähnelt. /// public static string CANNOT_DEACTIVATE_VDI_NEEDS_TOOLS { get { @@ -6686,8 +7042,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die It is not possible to deactivate and delete this virtual disk on the VM '{0}': - /// + /// Sucht eine lokalisierte Zeichenfolge, die It is not possible to deactivate and delete this virtual disk on the VM '{0}': ///{1} ähnelt. /// public static string CANNOT_DELETE_CANNOT_DEACTIVATE_REASON { @@ -6697,7 +7052,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] templates cannot be deleted. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} templates cannot be deleted. ähnelt. /// public static string CANNOT_DELETE_DEFAULT_TEMPLATE { get { @@ -6769,7 +7124,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Deleting the [Citrix VM Tools] ISO storage is not supported. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Deleting the {0} ISO storage is not supported. ähnelt. /// public static string CANNOT_DELETE_TOOLS_SR { get { @@ -6841,7 +7196,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You cannot configure an SR of type '{0}' using [XenCenter]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You cannot configure an SR of type '{0}' using {1}. ähnelt. /// public static string CANNOT_FIND_SR_WIZARD_TYPE { get { @@ -6849,15 +7204,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Cannot move this virtual disk because it is attached to a VM that is not running. ähnelt. - /// - public static string CANNOT_MIGRATE_VDI_NON_RUNNING_VM { - get { - return ResourceManager.GetString("CANNOT_MIGRATE_VDI_NON_RUNNING_VM", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die This virtual disk has CBT enabled. It cannot be moved to another storage repository. ähnelt. /// @@ -6961,6 +7307,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Attached CD/DVD Drive. ähnelt. + /// + public static string CD_DVD_DEVICE_ATTACHED { + get { + return ResourceManager.GetString("CD_DVD_DEVICE_ATTACHED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The DVD drive cannot be created, because you have reached the maximum number of virtual disks allowed for this virtual machine. ähnelt. /// @@ -6970,6 +7325,465 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Migrate VMs off this server ähnelt. + /// + public static string CDN_GUIDANCE_EVACUATE_HOST { + get { + return ResourceManager.GetString("CDN_GUIDANCE_EVACUATE_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Reboot this server ähnelt. + /// + public static string CDN_GUIDANCE_REBOOT_HOST { + get { + return ResourceManager.GetString("CDN_GUIDANCE_REBOOT_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Live patch failed. Reboot this server ähnelt. + /// + public static string CDN_GUIDANCE_REBOOT_HOST_LIVEPATCH_FAILURE { + get { + return ResourceManager.GetString("CDN_GUIDANCE_REBOOT_HOST_LIVEPATCH_FAILURE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Reboot VMs running on this server ähnelt. + /// + public static string CDN_GUIDANCE_RESTART_DEVICE_MODEL { + get { + return ResourceManager.GetString("CDN_GUIDANCE_RESTART_DEVICE_MODEL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Restart Toolstack ähnelt. + /// + public static string CDN_GUIDANCE_RESTART_TOOLSTACK { + get { + return ResourceManager.GetString("CDN_GUIDANCE_RESTART_TOOLSTACK", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This update live patches the following components: {0} ähnelt. + /// + public static string CDN_LIVEPATCHES_IN_UPDATE { + get { + return ResourceManager.GetString("CDN_LIVEPATCHES_IN_UPDATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The following tasks will need to be performed manually for the installed updates to take effect: + ///{0} ähnelt. + /// + public static string CDN_PENDING_GUIDANCES_FAILURE { + get { + return ResourceManager.GetString("CDN_PENDING_GUIDANCES_FAILURE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Pending tasks on {0} ähnelt. + /// + public static string CDN_PENDING_GUIDANCES_KEY { + get { + return ResourceManager.GetString("CDN_PENDING_GUIDANCES_KEY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The following tasks need to be performed for the latest installed updates to take effect: + ///{0} ähnelt. + /// + public static string CDN_PENDING_GUIDANCES_VALUE { + get { + return ResourceManager.GetString("CDN_PENDING_GUIDANCES_VALUE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The trusted CA certificate '{0}' of '{1}' expired on {2}. ähnelt. + /// + public static string CERTIFICATE_CA_ALERT_EXPIRED_DESCIRPTION { + get { + return ResourceManager.GetString("CERTIFICATE_CA_ALERT_EXPIRED_DESCIRPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trusted CA certificate '{0}' on {1} expired ähnelt. + /// + public static string CERTIFICATE_CA_ALERT_EXPIRED_TITLE { + get { + return ResourceManager.GetString("CERTIFICATE_CA_ALERT_EXPIRED_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The trusted CA certificate '{0}' of '{1}' will expire on {2}. ähnelt. + /// + public static string CERTIFICATE_CA_ALERT_EXPIRING_DESCRIPTION { + get { + return ResourceManager.GetString("CERTIFICATE_CA_ALERT_EXPIRING_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trusted CA certificate '{0}' on {1} expiring in {2} day(s) ähnelt. + /// + public static string CERTIFICATE_CA_ALERT_EXPIRING_TITLE_DAYS { + get { + return ResourceManager.GetString("CERTIFICATE_CA_ALERT_EXPIRING_TITLE_DAYS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trusted CA certificate '{0}' on {1} expiring in {2} hour(s) ähnelt. + /// + public static string CERTIFICATE_CA_ALERT_EXPIRING_TITLE_HOURS { + get { + return ResourceManager.GetString("CERTIFICATE_CA_ALERT_EXPIRING_TITLE_HOURS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trusted CA certificate '{0}' on {1} expiring in {2} minute(s) ähnelt. + /// + public static string CERTIFICATE_CA_ALERT_EXPIRING_TITLE_MINUTES { + get { + return ResourceManager.GetString("CERTIFICATE_CA_ALERT_EXPIRING_TITLE_MINUTES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die TLS certificate files (*.pem;*.crt;*.cer)|*.pem;*.crt;*.cer ähnelt. + /// + public static string CERTIFICATE_FILETYPES { + get { + return ResourceManager.GetString("CERTIFICATE_FILETYPES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The identity certificate of server '{0}' expired on {1}. ähnelt. + /// + public static string CERTIFICATE_HOST_ALERT_EXPIRED_DESCIRPTION { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_ALERT_EXPIRED_DESCIRPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server identity certificate on {0} expired ähnelt. + /// + public static string CERTIFICATE_HOST_ALERT_EXPIRED_TITLE { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_ALERT_EXPIRED_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The identity certificate of server '{0}' will expire on {1}. ähnelt. + /// + public static string CERTIFICATE_HOST_ALERT_EXPIRING_DESCRIPTION { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_ALERT_EXPIRING_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server identity certificate on {0} expiring in {1} day(s) ähnelt. + /// + public static string CERTIFICATE_HOST_ALERT_EXPIRING_TITLE_DAYS { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_ALERT_EXPIRING_TITLE_DAYS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server identity certificate on {0} expiring in {1} hour(s) ähnelt. + /// + public static string CERTIFICATE_HOST_ALERT_EXPIRING_TITLE_HOURS { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_ALERT_EXPIRING_TITLE_HOURS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server identity certificate on {0} expiring in {1} minute(s) ähnelt. + /// + public static string CERTIFICATE_HOST_ALERT_EXPIRING_TITLE_MINUTES { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_ALERT_EXPIRING_TITLE_MINUTES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The internal identity certificate of server '{0}' expired on {1}. ähnelt. + /// + public static string CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRED_DESCIRPTION { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRED_DESCIRPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server internal identity certificate on {0} expired ähnelt. + /// + public static string CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRED_TITLE { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRED_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The internal identity certificate of server '{0}' will expire on {1}. ähnelt. + /// + public static string CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_DESCRIPTION { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server internal identity certificate on {0} expiring in {1} day(s) ähnelt. + /// + public static string CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_TITLE_DAYS { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_TITLE_DAYS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server internal identity certificate on {0} expiring in {1} hour(s) ähnelt. + /// + public static string CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_TITLE_HOURS { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_TITLE_HOURS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server internal identity certificate on {0} expiring in {1} minute(s) ähnelt. + /// + public static string CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_TITLE_MINUTES { + get { + return ResourceManager.GetString("CERTIFICATE_HOST_INTERNAL_ALERT_EXPIRING_TITLE_MINUTES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The certificate installation failed. ähnelt. + /// + public static string CERTIFICATE_INSTALLATION_FAILURE { + get { + return ResourceManager.GetString("CERTIFICATE_INSTALLATION_FAILURE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The certificate installation failed. + ///{0} ähnelt. + /// + public static string CERTIFICATE_INSTALLATION_FAILURE_GENERIC { + get { + return ResourceManager.GetString("CERTIFICATE_INSTALLATION_FAILURE_GENERIC", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The certificate installation was completed successfully. ähnelt. + /// + public static string CERTIFICATE_INSTALLATION_SUCCESS { + get { + return ResourceManager.GetString("CERTIFICATE_INSTALLATION_SUCCESS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Invalid TLS certificate file {0} ähnelt. + /// + public static string CERTIFICATE_INVALID { + get { + return ResourceManager.GetString("CERTIFICATE_INVALID", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die TLS key files (*.pem;*.key)|*.pem;*.key ähnelt. + /// + public static string CERTIFICATE_KEY_FILETYPES { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_FILETYPES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The selected TLS key file is invalid. ähnelt. + /// + public static string CERTIFICATE_KEY_INVALID { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_INVALID", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server certificate compatibility check ähnelt. + /// + public static string CERTIFICATE_KEY_LENGTH_CHECK_DESCRIPTION { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_LENGTH_CHECK_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking compatibility of server identity certificate ähnelt. + /// + public static string CERTIFICATE_KEY_LENGTH_CHECK_GROUP { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_LENGTH_CHECK_GROUP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The key size of the server's identity certificate is too small. ähnelt. + /// + public static string CERTIFICATE_KEY_LENGTH_PROBLEM_DESCRIPTION { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_LENGTH_PROBLEM_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The key size of the server's identity certificate is smaller than 2048 bytes. + /// + ///It is recommended that you first install a new certificate with a key size of at least 2048 bytes, otherwise you will not be able to connect to the server after the upgrade. ähnelt. + /// + public static string CERTIFICATE_KEY_LENGTH_PROBLEM_MORE_INFO { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_LENGTH_PROBLEM_MORE_INFO", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The key size of the server's identity certificate is smaller than 2048 bytes. + /// + ///If you are upgrading to {0} {1} and above, it is recommended that you first install a new certificate with a key size of at least 2048 bytes, otherwise you will not be able to connect to the server after the upgrade. ähnelt. + /// + public static string CERTIFICATE_KEY_LENGTH_WARNING_MORE_INFO { + get { + return ResourceManager.GetString("CERTIFICATE_KEY_LENGTH_WARNING_MORE_INFO", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user does not have sufficient permissions to install certificates on the server. Please login using an account with one of the following roles: + /// + ///{1} ähnelt. + /// + public static string CERTIFICATE_RBAC_RESTRICTION { + get { + return ResourceManager.GetString("CERTIFICATE_RBAC_RESTRICTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select TLS Certificate File ähnelt. + /// + public static string CERTIFICATE_SELECT_CERTIFICATE_TITLE { + get { + return ResourceManager.GetString("CERTIFICATE_SELECT_CERTIFICATE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select TLS Key File ähnelt. + /// + public static string CERTIFICATE_SELECT_KEY_TITLE { + get { + return ResourceManager.GetString("CERTIFICATE_SELECT_KEY_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Thumbprint: {0} ähnelt. + /// + public static string CERTIFICATE_THUMBPRINT_VALUE { + get { + return ResourceManager.GetString("CERTIFICATE_THUMBPRINT_VALUE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trusted CA certificate ähnelt. + /// + public static string CERTIFICATE_TYPE_CA { + get { + return ResourceManager.GetString("CERTIFICATE_TYPE_CA", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server identity certificate ähnelt. + /// + public static string CERTIFICATE_TYPE_HOST { + get { + return ResourceManager.GetString("CERTIFICATE_TYPE_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server internal identity certificate ähnelt. + /// + public static string CERTIFICATE_TYPE_HOST_INTERNAL { + get { + return ResourceManager.GetString("CERTIFICATE_TYPE_HOST_INTERNAL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Valid from {0} to {1} ähnelt. + /// + public static string CERTIFICATE_VALIDITY_PERIOD_VALUE { + get { + return ResourceManager.GetString("CERTIFICATE_VALIDITY_PERIOD_VALUE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabled on the pool, but disabled on: ähnelt. + /// + public static string CERTIFICATE_VERIFICATION_HOST_DISABLED_IN_POOL { + get { + return ResourceManager.GetString("CERTIFICATE_VERIFICATION_HOST_DISABLED_IN_POOL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disabled, but enabled on the pool ähnelt. + /// + public static string CERTIFICATE_VERIFICATION_HOST_DISABLED_STANDALONE { + get { + return ResourceManager.GetString("CERTIFICATE_VERIFICATION_HOST_DISABLED_STANDALONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certificate Verification ähnelt. + /// + public static string CERTIFICATE_VERIFICATION_KEY { + get { + return ResourceManager.GetString("CERTIFICATE_VERIFICATION_KEY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Ability to download updates ähnelt. /// @@ -6997,15 +7811,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Insert [XenServer] CD ähnelt. - /// - public static string CHANGE_SERVER_CD { - get { - return ResourceManager.GetString("CHANGE_SERVER_CD", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Change Server Password... ähnelt. /// @@ -7077,24 +7882,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Changed [XenCenter] master password ähnelt. - /// - public static string CHANGED_MASTER_PASSWORD { - get { - return ResourceManager.GetString("CHANGED_MASTER_PASSWORD", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Changed [XenCenter] master password for session restore ähnelt. - /// - public static string CHANGED_MASTER_PASSWORD_LONG { - get { - return ResourceManager.GetString("CHANGED_MASTER_PASSWORD_LONG", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Server CD changed ähnelt. /// @@ -7113,15 +7900,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Please type the root password for '{0}': ähnelt. - /// - public static string CHANGEPASS_ROOT_PASS { - get { - return ResourceManager.GetString("CHANGEPASS_ROOT_PASS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Pool '{0}' cannot have WLB enabled ähnelt. /// @@ -7158,6 +7936,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Docker container management check ähnelt. + /// + public static string CHECKING_CONTAINER_MANAGEMENT { + get { + return ResourceManager.GetString("CHECKING_CONTAINER_MANAGEMENT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking for legacy Container Management supplemental pack ähnelt. + /// + public static string CHECKING_CONTAINER_MANAGEMENT_GROUP { + get { + return ResourceManager.GetString("CHECKING_CONTAINER_MANAGEMENT_GROUP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking for deprecated storage repositories ähnelt. + /// + public static string CHECKING_DEPRECATED_SRS { + get { + return ResourceManager.GetString("CHECKING_DEPRECATED_SRS", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Checking for pending restart ähnelt. /// @@ -7170,9 +7975,18 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Checking HA and WLB status ähnelt. /// - public static string CHECKING_HA_STATUS { + public static string CHECKING_HA_AND_WLB_STATUS { get { - return ResourceManager.GetString("CHECKING_HA_STATUS", resourceCulture); + return ResourceManager.GetString("CHECKING_HA_AND_WLB_STATUS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking pool enrollment to Health Check ähnelt. + /// + public static string CHECKING_HEALTH_CHECK_SERVICE { + get { + return ResourceManager.GetString("CHECKING_HEALTH_CHECK_SERVICE", resourceCulture); } } @@ -7203,6 +8017,42 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Has synchronized within the past week ähnelt. + /// + public static string CHECKING_LAST_CDN_SYNC_DESCRIPTION { + get { + return ResourceManager.GetString("CHECKING_LAST_CDN_SYNC_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking date of last synchronization with update channel ähnelt. + /// + public static string CHECKING_LAST_CDN_SYNC_TILE { + get { + return ResourceManager.GetString("CHECKING_LAST_CDN_SYNC_TILE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Power On mode check ähnelt. + /// + public static string CHECKING_POWER_ON_MODE { + get { + return ResourceManager.GetString("CHECKING_POWER_ON_MODE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking Power On mode ähnelt. + /// + public static string CHECKING_POWER_ON_MODE_GROUP { + get { + return ResourceManager.GetString("CHECKING_POWER_ON_MODE_GROUP", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Checking host upgrade readiness ähnelt. /// @@ -7257,6 +8107,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Security protocol check ähnelt. + /// + public static string CHECKING_SECURITY_PROTOCOL { + get { + return ResourceManager.GetString("CHECKING_SECURITY_PROTOCOL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking security protocol ähnelt. + /// + public static string CHECKING_SECURITY_PROTOCOL_GROUP { + get { + return ResourceManager.GetString("CHECKING_SECURITY_PROTOCOL_GROUP", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Checking reboots required ähnelt. /// @@ -7321,7 +8189,25 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Checking [XenCenter] version ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die vSwitch Controller check ähnelt. + /// + public static string CHECKING_VSWITCH_CONTROLLER { + get { + return ResourceManager.GetString("CHECKING_VSWITCH_CONTROLLER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking vSwitch Controller configuration ähnelt. + /// + public static string CHECKING_VSWITCH_CONTROLLER_GROUP { + get { + return ResourceManager.GetString("CHECKING_VSWITCH_CONTROLLER_GROUP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Checking {0} version ähnelt. /// public static string CHECKING_XENCENTER_VERSION { get { @@ -7483,7 +8369,36 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die for use with Common Criteria versions of [XenServer] only ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Resetting the vTPM that is attached to a VM to its original state may result in the deactivation of some security features on the VM. Do you want to continue? ähnelt. + /// + public static string COMMAND_RESET_VTPM_WARNING { + get { + return ResourceManager.GetString("COMMAND_RESET_VTPM_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die TPM is supported only for VMs using the UEFI or UEFI secure boot modes. ähnelt. + /// + public static string COMMAND_VTPM_DISABLED_NON_UEFI { + get { + return ResourceManager.GetString("COMMAND_VTPM_DISABLED_NON_UEFI", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Mana&ge vTPMs... ähnelt. + /// + public static string COMMAND_VTPM_MENU { + get { + return ResourceManager.GetString("COMMAND_VTPM_MENU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die + ///(For use with Common Criteria versions of {0} only). + /// ähnelt. /// public static string COMMON_CRITERIA_TEXT { get { @@ -7518,6 +8433,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} {1} ähnelt. + /// + public static string CONFIG_CDN_UPDATES_TAB_TITLE { + get { + return ResourceManager.GetString("CONFIG_CDN_UPDATES_TAB_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} or earlier ähnelt. + /// + public static string CONFIG_LCM_UPDATES_TAB_TITLE { + get { + return ResourceManager.GetString("CONFIG_LCM_UPDATES_TAB_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Configure Updates... ähnelt. + /// + public static string CONFIG_UPDATES_MENU_ITEM { + get { + return ResourceManager.GetString("CONFIG_UPDATES_MENU_ITEM", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Configure HA ähnelt. /// @@ -7536,6 +8478,42 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your external SSH console could not be launched. Please check that you have selected a valid file. ähnelt. + /// + public static string CONFIGURE_SSH_CONSOLE_ERROR { + get { + return ResourceManager.GetString("CONFIGURE_SSH_CONSOLE_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die An external SSH console has not been configured. ähnelt. + /// + public static string CONFIGURE_SSH_CONSOLE_FILE_NOT_CONFIGURED { + get { + return ResourceManager.GetString("CONFIGURE_SSH_CONSOLE_FILE_NOT_CONFIGURED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The file associated with your external SSH console doesn't exist. Please check that you have selected a valid file. ähnelt. + /// + public static string CONFIGURE_SSH_CONSOLE_FILE_NOT_FOUND { + get { + return ResourceManager.GetString("CONFIGURE_SSH_CONSOLE_FILE_NOT_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configure &SSH Console ähnelt. + /// + public static string CONFIGURE_SSH_CONSOLE_TITLE { + get { + return ResourceManager.GetString("CONFIGURE_SSH_CONSOLE_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Configuring Workload Balancing ähnelt. /// @@ -7631,6 +8609,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Do you want to continue? ähnelt. + /// + public static string CONFIRM_CONTINUE { + get { + return ResourceManager.GetString("CONFIRM_CONTINUE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to delete the selected {0}? ähnelt. /// @@ -7858,7 +8845,7 @@ namespace XenAdmin { /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to destroy '{0}'? /// ///You should only need to destroy a server if it has physically failed. - ///Destroying this server will permanently remove it from the pool along with its local SRs, DVD drives and removable storage. The server will need to be reinstalled before it can be used again. + ///Destroying a server will permanently remove it from the pool along with its local SRs, DVD drives and removable storage. The server will need to be reinstalled before it can be used again. /// ///This action is final and unrecoverable. ähnelt. ///
@@ -7868,6 +8855,20 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to destroy the selected servers? + /// + ///You should only need to destroy servers if they have physically failed. + ///Destroying servers will permanently remove them from the pool along with their local SRs, DVD drives and removable storage. The servers will need to be reinstalled before they can be used again. + /// + ///This action is final and unrecoverable. ähnelt. + /// + public static string CONFIRM_DESTROY_HOST_MANY { + get { + return ResourceManager.GetString("CONFIRM_DESTROY_HOST_MANY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Destroy Server ähnelt. /// @@ -7877,6 +8878,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Destroy Multiple Servers ähnelt. + /// + public static string CONFIRM_DESTROY_HOST_TITLE_MANY { + get { + return ResourceManager.GetString("CONFIRM_DESTROY_HOST_TITLE_MANY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die &Yes, Destroy ähnelt. /// @@ -7887,7 +8897,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This will disable Changed Block Tracking on the disks of the selected VM. If you are using any third-party solutions to back up the VM, they might be affected. Note that Changed Block Tracking cannot be enabled again from [XenCenter]. Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This will disable Changed Block Tracking on the disks of the selected VM. If you are using any third-party solutions to back up the VM, they might be affected. Note that Changed Block Tracking cannot be enabled again from {0}. Do you want to continue? ähnelt. /// public static string CONFIRM_DISABLE_CBT_VM { get { @@ -7905,7 +8915,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This will disable Changed Block Tracking on the disks of the selected VMs. If you are using any third-party solutions to back up the VMs, they might be affected. Note that Changed Block Tracking cannot be enabled again from [XenCenter]. Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This will disable Changed Block Tracking on the disks of the selected VMs. If you are using any third-party solutions to back up the VMs, they might be affected. Note that Changed Block Tracking cannot be enabled again from {0}. Do you want to continue? ähnelt. /// public static string CONFIRM_DISABLE_CBT_VMS { get { @@ -7922,24 +8932,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to disable Health Check on the selected pool? ähnelt. - /// - public static string CONFIRM_DISABLE_HEALTH_CHECK_POOL { - get { - return ResourceManager.GetString("CONFIRM_DISABLE_HEALTH_CHECK_POOL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to disable Health Check on the selected server? ähnelt. - /// - public static string CONFIRM_DISABLE_HEALTH_CHECK_SERVER { - get { - return ResourceManager.GetString("CONFIRM_DISABLE_HEALTH_CHECK_SERVER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die The export file may be larger than your filesystem limit. /// @@ -8238,7 +9230,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to restart the toolstack on the selected servers? Note that [XenCenter] will temporarily lose connection to them. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to restart the toolstack on the selected servers? Note that {0} will temporarily lose connection to them. ähnelt. /// public static string CONFIRM_RESTART_TOOLSTACK_MANY_SERVERS { get { @@ -8247,7 +9239,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to restart the toolstack on '{0}'? Note that [XenCenter] will temporarily lose connection to the server. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to restart the toolstack on '{0}'? Note that {1} will temporarily lose connection to the server. ähnelt. /// public static string CONFIRM_RESTART_TOOLSTACK_ONE_SERVER { get { @@ -8600,7 +9592,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Proxy and timeout options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Proxy and timeout ähnelt. /// public static string CONNECTION_DESC { get { @@ -8636,20 +9628,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Looking for master for {0} on {1}... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Looking for coordinator for {0} on {1}... ähnelt. /// - public static string CONNECTION_FINDING_MASTER_DESCRIPTION { + public static string CONNECTION_FINDING_COORDINATOR_DESCRIPTION { get { - return ResourceManager.GetString("CONNECTION_FINDING_MASTER_DESCRIPTION", resourceCulture); + return ResourceManager.GetString("CONNECTION_FINDING_COORDINATOR_DESCRIPTION", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Looking for master for {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Looking for coordinator for {0} ähnelt. /// - public static string CONNECTION_FINDING_MASTER_TITLE { + public static string CONNECTION_FINDING_COORDINATOR_TITLE { get { - return ResourceManager.GetString("CONNECTION_FINDING_MASTER_TITLE", resourceCulture); + return ResourceManager.GetString("CONNECTION_FINDING_COORDINATOR_TITLE", resourceCulture); } } @@ -8672,11 +9664,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Lost connection to {0}. Will search for a new pool master in {1} seconds. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Lost connection to {0}. Will search for a new pool coordinator in {1} seconds. ähnelt. /// - public static string CONNECTION_LOST_NOTICE_MASTER_IN_X_SECONDS { + public static string CONNECTION_LOST_NOTICE_COORDINATOR_IN_X_SECONDS { get { - return ResourceManager.GetString("CONNECTION_LOST_NOTICE_MASTER_IN_X_SECONDS", resourceCulture); + return ResourceManager.GetString("CONNECTION_LOST_NOTICE_COORDINATOR_IN_X_SECONDS", resourceCulture); } } @@ -8717,7 +9709,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connection to {0}: redirecting to the pool master at {1} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Connection to {0}: redirecting to the pool coordinator at {1} ähnelt. /// public static string CONNECTION_REDIRECTING { get { @@ -8743,41 +9735,12 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Connection to Server {0} restricted because a connection already exists to another XE Express Server ({1}) ähnelt. - /// - public static string CONNECTION_RESTRICTED_MESSAGE { - get { - return ResourceManager.GetString("CONNECTION_RESTRICTED_MESSAGE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Connection to server {0} restricted - a connection to a [Citrix XenServer] Express Edition server ({1}) already exists. - /// - ///You can only connect to a single [Citrix XenServer] Express Edition server at a time. To find out how to upgrade your license, follow the link below. ähnelt. - /// - public static string CONNECTION_RESTRICTED_MESSAGE_LONG { - get { - return ResourceManager.GetString("CONNECTION_RESTRICTED_MESSAGE_LONG", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Cannot connect to {0} due to license restrictions on the server ähnelt. - /// - public static string CONNECTION_RESTRICTED_NOTICE_TITLE { - get { - return ResourceManager.GetString("CONNECTION_RESTRICTED_NOTICE_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Connection to {0}: trying to find pool at {1} ähnelt. /// - public static string CONNECTION_RETRYING_SLAVE { + public static string CONNECTION_RETRYING_SUPPORTER { get { - return ResourceManager.GetString("CONNECTION_RETRYING_SLAVE", resourceCulture); + return ResourceManager.GetString("CONNECTION_RETRYING_SUPPORTER", resourceCulture); } } @@ -8793,9 +9756,9 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Connection to {0}: will try to connect to another pool member in {1} seconds ähnelt. /// - public static string CONNECTION_WILL_RETRY_SLAVE { + public static string CONNECTION_WILL_RETRY_SUPPORTER { get { - return ResourceManager.GetString("CONNECTION_WILL_RETRY_SLAVE", resourceCulture); + return ResourceManager.GetString("CONNECTION_WILL_RETRY_SUPPORTER", resourceCulture); } } @@ -8809,7 +9772,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Keyboard shortcuts and scaling options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Keyboard shortcuts and scaling ähnelt. /// public static string CONSOLE_DESC { get { @@ -8835,15 +9798,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} Nutanix CVM console ähnelt. - /// - public static string CONSOLE_HOST_NUTANIX { - get { - return ResourceManager.GetString("CONSOLE_HOST_NUTANIX", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die This VM is currently shut down. ähnelt. /// @@ -8898,6 +9852,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die SR '{0}' Driver Domain Console ähnelt. + /// + public static string CONSOLE_SR_DRIVER_DOMAIN { + get { + return ResourceManager.GetString("CONSOLE_SR_DRIVER_DOMAIN", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die contained in ähnelt. /// @@ -8952,6 +9915,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Support for container management has been removed as of {0}. You will no longer be able to use the Container Management supplemental pack for managing Docker containers. ähnelt. + /// + public static string CONTAINER_MANAGEMENT_REMOVAL_WARNING { + get { + return ResourceManager.GetString("CONTAINER_MANAGEMENT_REMOVAL_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0} on '{1}' {2} ähnelt. /// @@ -9360,7 +10332,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Manage Conversions - {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Conversion Manager - {0} ähnelt. /// public static string CONVERSION_MANAGER_TITLE { get { @@ -9414,7 +10386,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Optionally, select [XenServer] networks to connect the VMs ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Optionally, select {0} networks to connect the VMs ähnelt. /// public static string CONVERSION_NETWORK_PAGE_TITLE { get { @@ -9704,7 +10676,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] is incompatible with this version of the Conversion Manager virtual appliance. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} is incompatible with this version of the Conversion Manager virtual appliance. ähnelt. /// public static string CONVERSION_VERSION_INCOMPATIBILITY { get { @@ -9713,7 +10685,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The version of the Conversion Manager virtual appliance you are using is earlier than {0}. You can use the legacy Conversion Manager console to set up and control conversions. However, it is strongly recommended that you import and configure the Conversion Manager virtual appliance matching your [XenServer] version. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The version of the Conversion Manager virtual appliance you are using is earlier than {0}. You can use the legacy Conversion Manager console to set up and control conversions. However, it is strongly recommended that you import and configure the Conversion Manager virtual appliance matching your {1} version. ähnelt. /// public static string CONVERSION_VERSION_INCOMPATIBILITY_INFO { get { @@ -9820,6 +10792,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Coordinator ähnelt. + /// + public static string COORDINATOR { + get { + return ResourceManager.GetString("COORDINATOR", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. /// @@ -10010,11 +10991,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copyright © {0} All rights reserved. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Copying template '{0}' to SR '{1}' ähnelt. /// - public static string COPYRIGHT { + public static string COPYING_TEMPLATE { get { - return ResourceManager.GetString("COPYRIGHT", resourceCulture); + return ResourceManager.GetString("COPYING_TEMPLATE", resourceCulture); } } @@ -10128,15 +11109,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Target Server: ähnelt. - /// - public static string CPM_SUMMARY_KEY_TARGET_SERVER { - get { - return ResourceManager.GetString("CPM_SUMMARY_KEY_TARGET_SERVER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Migration Network: ähnelt. /// @@ -10155,15 +11127,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Unset ähnelt. - /// - public static string CPM_SUMMARY_UNSET { - get { - return ResourceManager.GetString("CPM_SUMMARY_UNSET", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Pl&ace all virtual disks on the same SR: ähnelt. /// @@ -10201,7 +11164,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to copy the selected VMs to. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to copy the selected VM(s) to. ähnelt. /// public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_COPY { get { @@ -10210,16 +11173,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to copy the selected VM to. ähnelt. - /// - public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_COPY_SINGLE { - get { - return ResourceManager.GetString("CPM_WIZARD_DESTINATION_INSTRUCTIONS_COPY_SINGLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to copy the selected templates to. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to copy the selected template(s) to. ähnelt. /// public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_COPY_TEMPLATE { get { @@ -10228,16 +11182,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to copy the selected template to. ähnelt. - /// - public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_COPY_TEMPLATE_SINGLE { - get { - return ResourceManager.GetString("CPM_WIZARD_DESTINATION_INSTRUCTIONS_COPY_TEMPLATE_SINGLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to migrate the selected VMs to. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to migrate the selected VM(s) to. ähnelt. /// public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_MIGRATE { get { @@ -10246,16 +11191,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to migrate the selected VM to. ähnelt. - /// - public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_MIGRATE_SINGLE { - get { - return ResourceManager.GetString("CPM_WIZARD_DESTINATION_INSTRUCTIONS_MIGRATE_SINGLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to move the selected VMs to. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to move the selected VM(s) to. ähnelt. /// public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_MOVE { get { @@ -10263,15 +11199,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the pool or standalone server where you want to move the selected VM to. ähnelt. - /// - public static string CPM_WIZARD_DESTINATION_INSTRUCTIONS_MOVE_SINGLE { - get { - return ResourceManager.GetString("CPM_WIZARD_DESTINATION_INSTRUCTIONS_MOVE_SINGLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Destination Pool ähnelt. /// @@ -10282,11 +11209,38 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Specify a &target server in the destination pool (optional): ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die If you want to copy the disks of a VM to local storage, specify the server below. ähnelt. /// - public static string CPM_WIZARD_DESTINATION_TABLE_INTRO { + public static string CPM_WIZARD_DESTINATION_TABLE_INTRO_COPY { get { - return ResourceManager.GetString("CPM_WIZARD_DESTINATION_TABLE_INTRO", resourceCulture); + return ResourceManager.GetString("CPM_WIZARD_DESTINATION_TABLE_INTRO_COPY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you want to migrate the disks of a VM to local storage, specify the server below. ähnelt. + /// + public static string CPM_WIZARD_DESTINATION_TABLE_INTRO_MIGRATE { + get { + return ResourceManager.GetString("CPM_WIZARD_DESTINATION_TABLE_INTRO_MIGRATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you want to move the disks of a VM to local storage, specify the server below. ähnelt. + /// + public static string CPM_WIZARD_DESTINATION_TABLE_INTRO_MOVE { + get { + return ResourceManager.GetString("CPM_WIZARD_DESTINATION_TABLE_INTRO_MOVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you want to place the disks of a template on local storage, specify the server below. ähnelt. + /// + public static string CPM_WIZARD_DESTINATION_TABLE_INTRO_TEMPLATES { + get { + return ResourceManager.GetString("CPM_WIZARD_DESTINATION_TABLE_INTRO_TEMPLATES", resourceCulture); } } @@ -10518,7 +11472,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The selected VMs are no longer available in [XenCenter]'s cache. Please verify your selection is valid and relaunch the wizard. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The selected VMs are no longer available in {0}'s cache. Please verify your selection is valid and relaunch the wizard. ähnelt. /// public static string CPM_WIZARD_VM_MISSING_ERROR { get { @@ -10535,24 +11489,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die WLB is enabled on the host ähnelt. - /// - public static string CPM_WLB_ENABLED_ON_HOST_FAILURE_REASON { - get { - return ResourceManager.GetString("CPM_WLB_ENABLED_ON_HOST_FAILURE_REASON", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die WLB is enabled on the source ähnelt. - /// - public static string CPM_WLB_ENABLED_ON_VM_FAILURE_REASON { - get { - return ResourceManager.GetString("CPM_WLB_ENABLED_ON_VM_FAILURE_REASON", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Select a storage network on the destination pool or standalone server that will be used for the live migration of the virtual disks. /// @@ -10620,24 +11556,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die CPU and Memory ähnelt. - /// - public static string CPU_AND_MEMORY { - get { - return ResourceManager.GetString("CPU_AND_MEMORY", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} vCPU(s) & {1} MB RAM ähnelt. - /// - public static string CPU_AND_MEMORY_SUB { - get { - return ResourceManager.GetString("CPU_AND_MEMORY_SUB", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die {0} vCPU(s) ähnelt. /// @@ -10935,15 +11853,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Archiving appliance files into single package file {0}... ähnelt. - /// - public static string CREATING_FILE { - get { - return ResourceManager.GetString("CREATING_FILE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Creating manifest file... ähnelt. /// @@ -10954,11 +11863,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Creating new pool '{0}' with master '{1}' ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Calculating checksum for file '{0}'... ähnelt. /// - public static string CREATING_NAMED_POOL_WITH_MASTER { + public static string CREATING_MANIFEST_CHECKSUM { get { - return ResourceManager.GetString("CREATING_NAMED_POOL_WITH_MASTER", resourceCulture); + return ResourceManager.GetString("CREATING_MANIFEST_CHECKSUM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Creating new pool '{0}' with coordinator '{1}' ähnelt. + /// + public static string CREATING_NAMED_POOL_WITH_COORDINATOR { + get { + return ResourceManager.GetString("CREATING_NAMED_POOL_WITH_COORDINATOR", resourceCulture); } } @@ -10980,6 +11898,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Archiving appliance files into single package file '{0}'... ähnelt. + /// + public static string CREATING_OVA_FILE { + get { + return ResourceManager.GetString("CREATING_OVA_FILE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Creating vApp '{0}'... ähnelt. /// @@ -11025,60 +11952,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Dell EqualLogic ähnelt. - /// - public static string CSLG_DELL_DIRECT { - get { - return ResourceManager.GetString("CSLG_DELL_DIRECT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Direct Connection ähnelt. - /// - public static string CSLG_DIRECT_CONNECTION { - get { - return ResourceManager.GetString("CSLG_DIRECT_CONNECTION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die NetApp ähnelt. - /// - public static string CSLG_NETAPP_DIRECT { - get { - return ResourceManager.GetString("CSLG_NETAPP_DIRECT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die &Storage adapter: ähnelt. - /// - public static string CSLG_STORAGEADAPTER { - get { - return ResourceManager.GetString("CSLG_STORAGEADAPTER", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die StorageLink adapters ähnelt. - /// - public static string CSLG_STORAGELINK_ADAPTERS { - get { - return ResourceManager.GetString("CSLG_STORAGELINK_ADAPTERS", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die StorageLink Server ({0}) ähnelt. - /// - public static string CSLG_STORAGELINK_SERVER { - get { - return ResourceManager.GetString("CSLG_STORAGELINK_SERVER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Comma Separated Value ähnelt. /// @@ -11367,6 +12240,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die MMM d, hh:mm:ss ähnelt. + /// + public static string DATEFORMAT_DM_HMS { + get { + return ResourceManager.GetString("DATEFORMAT_DM_HMS", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die MMM d, yyyy ähnelt. /// @@ -11493,6 +12375,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Imported from an OVF/OVA package. ähnelt. + /// + public static string DEFAULT_IMPORT_DESCRIPTION { + get { + return ResourceManager.GetString("DEFAULT_IMPORT_DESCRIPTION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Default install of {0} ähnelt. /// @@ -11566,7 +12457,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die VMs without [Citrix VM Tools] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die VMs without {0} ähnelt. /// public static string DEFAULT_SEARCH_VMS_WO_XS_TOOLS { get { @@ -11789,7 +12680,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die There are no alerts remaining which you have permission to dismiss. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You have no permission to dismiss the selected alerts. ähnelt. /// public static string DELETE_MESSAGE_RBAC_BLOCKED { get { @@ -12085,6 +12976,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die SR deprecation check ähnelt. + /// + public static string DEPRECATED_SRS_CHECK { + get { + return ResourceManager.GetString("DEPRECATED_SRS_CHECK", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. /// @@ -12229,15 +13129,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] has detected that an SR already exists on this LUN. This SR is not currently in use by '{0}', would you like to attach it? ähnelt. - /// - public static string DETACHED_ISCI_DETECTED { - get { - return ResourceManager.GetString("DETACHED_ISCI_DETECTED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Details ähnelt. /// @@ -12274,6 +13165,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Configure just this disk anyway ähnelt. + /// + public static string DEVICE_POSITION_CONFLICT_CONFIGURE { + get { + return ResourceManager.GetString("DEVICE_POSITION_CONFLICT_CONFIGURE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Swap these disks ähnelt. + /// + public static string DEVICE_POSITION_CONFLICT_SWAP { + get { + return ResourceManager.GetString("DEVICE_POSITION_CONFLICT_SWAP", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die You will have to restart the VM for changes in device position to take effect. ähnelt. /// @@ -12311,7 +13220,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable pass-through ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure that you want to disable pass-through on this device? This device will no longer be allowed to be passed through to virtual machines. ähnelt. /// public static string DIALOG_USB_USAGE_DISABLE_PASSTHROUGH { get { @@ -12320,7 +13229,9 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable pass-through ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure that you want to enable pass-through on this device? This will allow this device to be passed through to virtual machines. + /// + ///Plugging in untrustworthy USB devices to your computer may put your computer at risk. USB devices with modifiable behaviour should only be assigned to trustworthy guest VMs. ähnelt. /// public static string DIALOG_USB_USAGE_ENABLE_PASSTHROUGH { get { @@ -12328,24 +13239,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure that you want to enable pass-through on this device? This will allow this device to be passed through to virtual machines. ähnelt. - /// - public static string DIALOG_USB_USAGE_NOTE_ALLOW { - get { - return ResourceManager.GetString("DIALOG_USB_USAGE_NOTE_ALLOW", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure that you want to disable pass-through on this device? This device will no longer be allowed to be passed through to virtual machines. ähnelt. - /// - public static string DIALOG_USB_USAGE_NOTE_DENY { - get { - return ResourceManager.GetString("DIALOG_USB_USAGE_NOTE_DENY", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die &Yes, Disable pass-through ähnelt. /// @@ -12392,11 +13285,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable HA if you want to configure the management interfaces ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Disable HA if you want to configure IP addresses. ähnelt. /// - public static string DISABLE_HA_CONFIGURE_MANAGEMENT_INTERFACES { + public static string DISABLE_HA_CONFIGURE_IP_ADDRESSES { get { - return ResourceManager.GetString("DISABLE_HA_CONFIGURE_MANAGEMENT_INTERFACES", resourceCulture); + return ResourceManager.GetString("DISABLE_HA_CONFIGURE_IP_ADDRESSES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Disable HA ähnelt. + /// + public static string DISABLE_HA_HOTKEY { + get { + return ResourceManager.GetString("DISABLE_HA_HOTKEY", resourceCulture); } } @@ -12463,6 +13365,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Don't compress VMs during migration ähnelt. + /// + public static string DISABLED_MIGRATION_COMPRESSION { + get { + return ResourceManager.GetString("DISABLED_MIGRATION_COMPRESSION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Snapshot schedule '{0}' disabled. ähnelt. /// @@ -12769,15 +13680,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Dynamic Memory Control ähnelt. - /// - public static string DMC { - get { - return ResourceManager.GetString("DMC", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die The Dynamic Memory Control (DMC) is not available due to license restrictions on the server. ähnelt. /// @@ -12806,7 +13708,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because [Citrix VM Tools] are not installed on this VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because {0} are not installed on this VM. ähnelt. /// public static string DMC_UNAVAILABLE_NOTOOLS { get { @@ -12815,7 +13717,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because [Citrix VM Tools] are not installed on these VMs. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because {0} are not installed on these VMs. ähnelt. /// public static string DMC_UNAVAILABLE_NOTOOLS_PLURAL { get { @@ -12842,7 +13744,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because [Citrix VM Tools] are out of date on this VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because {0} are out of date on this VM. ähnelt. /// public static string DMC_UNAVAILABLE_OLDTOOLS { get { @@ -12851,7 +13753,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because [Citrix VM Tools] are out of date on these VMs. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A memory range cannot be set because {0} are out of date on these VMs. ähnelt. /// public static string DMC_UNAVAILABLE_OLDTOOLS_PLURAL { get { @@ -13121,7 +14023,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Don't select a target server ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die None selected ähnelt. /// public static string DONT_SELECT_TARGET_SERVER { get { @@ -13138,6 +14040,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Authenticating your {0} account... ähnelt. + /// + public static string DOWNLOAD_AND_EXTRACT_ACTION_AUTHENTICATING_DESC { + get { + return ResourceManager.GetString("DOWNLOAD_AND_EXTRACT_ACTION_AUTHENTICATING_DESC", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Download canceled ähnelt. /// @@ -13201,6 +14112,51 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Downloading {0} installer ähnelt. + /// + public static string DOWNLOAD_CLIENT_INSTALLER_ACTION_DESCRIPTION { + get { + return ResourceManager.GetString("DOWNLOAD_CLIENT_INSTALLER_ACTION_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Download {0} installer ähnelt. + /// + public static string DOWNLOAD_CLIENT_INSTALLER_ACTION_TITLE { + get { + return ResourceManager.GetString("DOWNLOAD_CLIENT_INSTALLER_ACTION_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The downloaded installer can no longer be found. ähnelt. + /// + public static string DOWNLOAD_CLIENT_INSTALLER_MSI_NOT_FOUND { + get { + return ResourceManager.GetString("DOWNLOAD_CLIENT_INSTALLER_MSI_NOT_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Downloading {0} source code ähnelt. + /// + public static string DOWNLOAD_CLIENT_SOURCE_ACTION_DESCRIPTION { + get { + return ResourceManager.GetString("DOWNLOAD_CLIENT_SOURCE_ACTION_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Download {0} source code ähnelt. + /// + public static string DOWNLOAD_CLIENT_SOURCE_ACTION_TITLE { + get { + return ResourceManager.GetString("DOWNLOAD_CLIENT_SOURCE_ACTION_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Download... ähnelt. /// @@ -13211,7 +14167,34 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} is now available. Download the latest at the [Citrix] website. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The downloaded file can no longer be found. ähnelt. + /// + public static string DOWNLOAD_FILE_ACTION_NOT_FOUND { + get { + return ResourceManager.GetString("DOWNLOAD_FILE_ACTION_NOT_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Downloading {0} ({1} of {2})... ähnelt. + /// + public static string DOWNLOAD_FILE_ACTION_PROGRESS_DESCRIPTION { + get { + return ResourceManager.GetString("DOWNLOAD_FILE_ACTION_PROGRESS_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Download latest {0} source code ähnelt. + /// + public static string DOWNLOAD_LATEST_SOURCE { + get { + return ResourceManager.GetString("DOWNLOAD_LATEST_SOURCE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} is now available. Download the latest at the {1} downloads website. ähnelt. /// public static string DOWNLOAD_LATEST_XS_BODY { get { @@ -13220,7 +14203,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Downloading update from '{0}'... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Download {0} v{1} source code ähnelt. + /// + public static string DOWNLOAD_SOURCE { + get { + return ResourceManager.GetString("DOWNLOAD_SOURCE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Downloading update from '{0}' ({1} of {2})... ähnelt. /// public static string DOWNLOADING_PATCH_FROM { get { @@ -13688,7 +14680,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Click Fail Over to begin the test recovery of the selected vApps and VMs. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Once done, click Fail Over to begin the test recovery of the selected vApps and VMs. ähnelt. /// public static string DR_WIZARD_PRECHECKPAGE_CONTINUE_DRYRUN { get { @@ -13697,7 +14689,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Click Fail Back to begin recovery of the selected vApps and VMs to your primary data site. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Once done, click Fail Back to begin recovery of the selected vApps and VMs to your primary data site. ähnelt. /// public static string DR_WIZARD_PRECHECKPAGE_CONTINUE_FAILBACK { get { @@ -13706,7 +14698,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Click Fail Over to begin recovery of the selected vApps and VMs. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Once done, click Fail Over to begin recovery of the selected vApps and VMs. ähnelt. /// public static string DR_WIZARD_PRECHECKPAGE_CONTINUE_FAILOVER { get { @@ -13786,15 +14778,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: {1} ähnelt. - /// - public static string DR_WIZARD_PRECHECKPAGE_PROBLEM { - get { - return ResourceManager.GetString("DR_WIZARD_PRECHECKPAGE_PROBLEM", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Resolve ähnelt. /// @@ -13804,33 +14787,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Failover pre-checks completed: {0} issues found ähnelt. - /// - public static string DR_WIZARD_PRECHECKPAGE_STATUS_FAILURE { - get { - return ResourceManager.GetString("DR_WIZARD_PRECHECKPAGE_STATUS_FAILURE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Running failover pre-checks: ähnelt. - /// - public static string DR_WIZARD_PRECHECKPAGE_STATUS_RUNNING { - get { - return ResourceManager.GetString("DR_WIZARD_PRECHECKPAGE_STATUS_RUNNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Failover pre-checks completed: No issues found ähnelt. - /// - public static string DR_WIZARD_PRECHECKPAGE_STATUS_SUCCESS { - get { - return ResourceManager.GetString("DR_WIZARD_PRECHECKPAGE_STATUS_SUCCESS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Pre-checks ähnelt. /// @@ -13966,6 +14922,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Missing SR information not found ähnelt. + /// + public static string DR_WIZARD_PROBLEM_MISSING_SR_NO_INFO { + get { + return ResourceManager.GetString("DR_WIZARD_PROBLEM_MISSING_SR_NO_INFO", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Is running on pool '{0}' ähnelt. /// @@ -14002,6 +14967,39 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Test failover is in progress. This may take some time. + /// + ///Once done, click Next to remove the vApps and VMs that were failed over and to see the summary report. ähnelt. + /// + public static string DR_WIZARD_RECOVERPAGE_BLURB_DRYRUN { + get { + return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_BLURB_DRYRUN", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Failback is in progress. This may take some time. + /// + ///Once done, click Next to see the summary report. ähnelt. + /// + public static string DR_WIZARD_RECOVERPAGE_BLURB_FAILBACK { + get { + return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_BLURB_FAILBACK", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} Disaster Recovery is in progress. This may take some time. + /// + ///Once done, click Next to see the summary report. ähnelt. + /// + public static string DR_WIZARD_RECOVERPAGE_BLURB_FAILOVER { + get { + return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_BLURB_FAILOVER", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Test failover to pool '{0}' is complete. ähnelt. /// @@ -14021,7 +15019,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Disaster Recovery is complete. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Disaster Recovery is complete. ähnelt. /// public static string DR_WIZARD_RECOVERPAGE_COMPLETE_FAILOVER { get { @@ -14029,60 +15027,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Click Next to remove the vApps and VMs that were failed over and to see the summary report. ähnelt. - /// - public static string DR_WIZARD_RECOVERPAGE_CONTINUE_DRYRUN { - get { - return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_CONTINUE_DRYRUN", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Click Next to see the summary report. ähnelt. - /// - public static string DR_WIZARD_RECOVERPAGE_CONTINUE_FAILBACK { - get { - return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_CONTINUE_FAILBACK", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Click Next to see the summary report. ähnelt. - /// - public static string DR_WIZARD_RECOVERPAGE_CONTINUE_FAILOVER { - get { - return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_CONTINUE_FAILOVER", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Test failover is in progress. This may take some time. ähnelt. - /// - public static string DR_WIZARD_RECOVERPAGE_IN_PROGRESS_DRYRUN { - get { - return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_IN_PROGRESS_DRYRUN", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Failback is in progress. This may take some time. ähnelt. - /// - public static string DR_WIZARD_RECOVERPAGE_IN_PROGRESS_FAILBACK { - get { - return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_IN_PROGRESS_FAILBACK", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Disaster Recovery is in progress. This may take some time. ähnelt. - /// - public static string DR_WIZARD_RECOVERPAGE_IN_PROGRESS_FAILOVER { - get { - return ResourceManager.GetString("DR_WIZARD_RECOVERPAGE_IN_PROGRESS_FAILOVER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Overall progress: {0} of {1} tasks completed ähnelt. /// @@ -14174,7 +15118,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Disaster Recovery progress ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Disaster Recovery progress ähnelt. /// public static string DR_WIZARD_RECOVERPAGE_TITLE_FAILOVER { get { @@ -14655,7 +15599,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Email Options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Email Notifications ähnelt. /// public static string EMAIL_OPTIONS { get { @@ -14672,6 +15616,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Empty key ähnelt. + /// + public static string EMPTY_KEY { + get { + return ResourceManager.GetString("EMPTY_KEY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die There are no associated virtual disks or snapshots ähnelt. /// @@ -14744,6 +15697,80 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable certificate verification while the pool is in the process of creating a cluster. ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_CLUSTERING { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_CLUSTERING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable certificate verification while HA is being disabled on the pool. ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_HA_DISABLING { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_HA_DISABLING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable certificate verification when HA is on. ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_HA_ENABLED { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_HA_ENABLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable certificate verification while HA is being enabled on the pool. ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_HA_ENABLING { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_HA_ENABLING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enable Certificate Veri&fication ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_MENU { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_MENU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable certificate verification while a new coordinator is being nominated in the pool. ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_NEW_COORDINATOR { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_NEW_COORDINATOR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user does not have sufficient permissions to enable certificate verification. Please login using an account with one of the following roles: + /// + ///{1} ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_RBAC_RESTRICTION { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_RBAC_RESTRICTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable certificate verification while a rolling pool upgrade is in progress. ähnelt. + /// + public static string ENABLE_TLS_VERIFICATION_RPU { + get { + return ResourceManager.GetString("ENABLE_TLS_VERIFICATION_RPU", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Res&ume ähnelt. /// @@ -14771,6 +15798,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Compress VMs during migration ähnelt. + /// + public static string ENABLED_MIGRATION_COMPRESSION { + get { + return ResourceManager.GetString("ENABLED_MIGRATION_COMPRESSION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Snapshot schedule '{0}' enabled. ähnelt. /// @@ -14897,15 +15933,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die To access your saved session it is required that you enter the master password when starting [XenCenter] ähnelt. - /// - public static string ENTER_MASTER_PASSWORD_TO_ACCESS_SETTINGS_TT { - get { - return ResourceManager.GetString("ENTER_MASTER_PASSWORD_TO_ACCESS_SETTINGS_TT", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die The QoS limit value should be an integer greater than zero ähnelt. /// @@ -14924,15 +15951,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Error importing server list. Check that the xml format in the file is correct. ähnelt. - /// - public static string ERRO_IMPORTING_SERVER_LIST { - get { - return ResourceManager.GetString("ERRO_IMPORTING_SERVER_LIST", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. /// @@ -14970,7 +15988,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] has encountered a problem connecting to this server. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} has encountered a problem connecting to this server. ähnelt. /// public static string ERROR_CONNECTING_BLURB { get { @@ -14978,6 +15996,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The storage repository was not found and a default was not assigned. ähnelt. + /// + public static string ERROR_COULD_NOT_FIND_SR { + get { + return ResourceManager.GetString("ERROR_COULD_NOT_FIND_SR", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The following virtual disks could not be deactivated: ähnelt. /// @@ -15401,6 +16428,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The file to import was not provided. ähnelt. + /// + public static string ERROR_FILE_NAME_NULL { + get { + return ResourceManager.GetString("ERROR_FILE_NAME_NULL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die File {0} not found ähnelt. /// @@ -15419,6 +16455,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Error importing server list. Check that the xml format in the file is correct. ähnelt. + /// + public static string ERROR_IMPORTING_SERVER_LIST { + get { + return ResourceManager.GetString("ERROR_IMPORTING_SERVER_LIST", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Gateway is invalid. ähnelt. /// @@ -15455,6 +16500,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die A password was not provided to decrypt the OVF package. ähnelt. + /// + public static string ERROR_NO_PASSWORD { + get { + return ResourceManager.GetString("ERROR_NO_PASSWORD", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die You are not authorized to access this server. ähnelt. /// @@ -15492,7 +16546,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] has encountered a problem launching PuTTY. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A problem was encountered while launching PuTTY. ähnelt. /// public static string ERROR_PUTTY_LAUNCHING { get { @@ -15527,6 +16581,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Please shut down or suspend VM '{0}' before exporting. ähnelt. + /// + public static string ERROR_VM_NOT_HALTED { + get { + return ResourceManager.GetString("ERROR_VM_NOT_HALTED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} encountered an issue while trying to fetch the EUA. ähnelt. + /// + public static string EUA_NOT_FOUND_PROBLEM_DESCRIPTION { + get { + return ResourceManager.GetString("EUA_NOT_FOUND_PROBLEM_DESCRIPTION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die EULA ähnelt. /// @@ -15545,6 +16617,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot nominate a new coordinator while the pool is in the process of creating a cluster. ähnelt. + /// + public static string EVACUATE_HOST_CLUSER_CREATING { + get { + return ResourceManager.GetString("EVACUATE_HOST_CLUSER_CREATING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Enter Maintenance Mode - {0} ähnelt. /// @@ -15563,6 +16644,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot nominate a new coordinator while HA is being disabled on the pool. ähnelt. + /// + public static string EVACUATE_HOST_HA_DISABLING { + get { + return ResourceManager.GetString("EVACUATE_HOST_HA_DISABLING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot nominate a new coordinator while HA is being enabled on the pool. ähnelt. + /// + public static string EVACUATE_HOST_HA_ENABLING { + get { + return ResourceManager.GetString("EVACUATE_HOST_HA_ENABLING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0} Install Management Agent ähnelt. /// @@ -15573,7 +16672,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} Install [Citrix VM Tools] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Install {1} ähnelt. /// public static string EVACUATE_HOST_INSTALL_TOOLS_PROMPT { get { @@ -15600,7 +16699,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die There are no other servers available in the pool to migrate the running VMs to. Please suspend the VMs instead. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die There are no other servers available in the pool to migrate the running VMs to. Please suspend the VMs instead. ähnelt. /// public static string EVACUATE_HOST_NO_OTHER_HOSTS { get { @@ -15608,15 +16707,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die No servers available ähnelt. - /// - public static string EVACUATE_HOST_NO_OTHER_HOSTS_TITLE { - get { - return ResourceManager.GetString("EVACUATE_HOST_NO_OTHER_HOSTS_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die There is not enough free memory available on the other servers in the pool to migrate all the running VMs off this server. Please suspend some of the VMs ähnelt. /// @@ -15626,15 +16716,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Not enough memory ähnelt. - /// - public static string EVACUATE_HOST_NOT_ENOUGH_MEMORY_TITLE { - get { - return ResourceManager.GetString("EVACUATE_HOST_NOT_ENOUGH_MEMORY_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die {0} Shut down the VM ähnelt. /// @@ -15653,15 +16734,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Action in progress... ähnelt. - /// - public static string EVACUATE_SOLUTION_IN_PROGRESS { - get { - return ResourceManager.GetString("EVACUATE_SOLUTION_IN_PROGRESS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die exactly matches ähnelt. /// @@ -15699,22 +16771,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die User canceled. Master needs to be upgraded first. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die User canceled. Coordinator needs to be upgraded first. ähnelt. /// - public static string EXCEPTION_USER_CANCELLED_MASTER { + public static string EXCEPTION_USER_CANCELLED_COORDINATOR { get { - return ResourceManager.GetString("EXCEPTION_USER_CANCELLED_MASTER", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die An existing {0} SR was found on the selected LUN. Click Reattach to use the existing SR, or click Format to destroy any data present on the disk and create a new {1} SR. - /// - ///Warning: to prevent data loss you must ensure that the LUN is not in use by any other system, including servers that are not connected to [XenCenter]. ähnelt. - /// - public static string EXISTING_SR_FOUND_ON_LUN { - get { - return ResourceManager.GetString("EXISTING_SR_FOUND_ON_LUN", resourceCulture); + return ResourceManager.GetString("EXCEPTION_USER_CANCELLED_COORDINATOR", resourceCulture); } } @@ -15755,6 +16816,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your Customer Success Services (CSS) agreement has expired. This server will not receive any updates, including security updates. ähnelt. + /// + public static string EXPIRED_CSS_UPSELLING_MESSAGE_HOST { + get { + return ResourceManager.GetString("EXPIRED_CSS_UPSELLING_MESSAGE_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your Customer Success Services (CSS) agreement has expired. This pool will not receive any updates, including security updates ähnelt. + /// + public static string EXPIRED_CSS_UPSELLING_MESSAGE_POOL { + get { + return ResourceManager.GetString("EXPIRED_CSS_UPSELLING_MESSAGE_POOL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Export All ähnelt. /// @@ -16016,24 +17095,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Security ähnelt. - /// - public static string EXPORT_SECURITY_PAGE_TEXT { - get { - return ResourceManager.GetString("EXPORT_SECURITY_PAGE_TEXT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select security options ähnelt. - /// - public static string EXPORT_SECURITY_PAGE_TITLE { - get { - return ResourceManager.GetString("EXPORT_SECURITY_PAGE_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Target destination has only {0} of free space and you need at least {1} to export the selected VMs. ähnelt. /// @@ -16161,11 +17222,38 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Exporting VMs... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Exporting disk '{0}' to '{1}' ({2} of {3})... ähnelt. /// - public static string EXPORTING_VMS { + public static string EXPORTING_VDI { get { - return ResourceManager.GetString("EXPORTING_VMS", resourceCulture); + return ResourceManager.GetString("EXPORTING_VDI", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Verifying disk '{0}'... ähnelt. + /// + public static string EXPORTING_VDI_VERIFICATION { + get { + return ResourceManager.GetString("EXPORTING_VDI_VERIFICATION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Verification for disk '{0}' failed. See logs for details. ähnelt. + /// + public static string EXPORTING_VDI_VERIFICATION_FAILURE { + get { + return ResourceManager.GetString("EXPORTING_VDI_VERIFICATION_FAILURE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Preparing to export VM '{0}'... ähnelt. + /// + public static string EXPORTING_VM_PREPARE { + get { + return ResourceManager.GetString("EXPORTING_VM_PREPARE", resourceCulture); } } @@ -16178,15 +17266,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Should not happen ähnelt. - /// - public static string EXPORTVM_NOT_HAPPEN { - get { - return ResourceManager.GetString("EXPORTVM_NOT_HAPPEN", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die External network ähnelt. /// @@ -16241,6 +17320,51 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die External Tools ähnelt. + /// + public static string EXTERNAL_TOOLS { + get { + return ResourceManager.GetString("EXTERNAL_TOOLS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Manage external tools ähnelt. + /// + public static string EXTERNAL_TOOLS_DETAILS { + get { + return ResourceManager.GetString("EXTERNAL_TOOLS_DETAILS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die File is invalid. Please select an .exe file. ähnelt. + /// + public static string EXTERNAL_TOOLS_FILE_INVALID { + get { + return ResourceManager.GetString("EXTERNAL_TOOLS_FILE_INVALID", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select SSH console ähnelt. + /// + public static string EXTERNAL_TOOLS_OPEN_FILE_TITLE { + get { + return ResourceManager.GetString("EXTERNAL_TOOLS_OPEN_FILE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Executables (*.exe)|*.exe ähnelt. + /// + public static string EXTERNAL_TOOLS_OPEN_FILE_TYPE { + get { + return ResourceManager.GetString("EXTERNAL_TOOLS_OPEN_FILE_TYPE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Failed ähnelt. /// @@ -16295,6 +17419,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Support for Software FCoE storage repositories has been deprecated as of {0}. ähnelt. + /// + public static string FCOE_DEPRECATION_WARNING { + get { + return ResourceManager.GetString("FCOE_DEPRECATION_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die '{0}' feature is disabled due to license restrictions on the server. ähnelt. /// @@ -16394,6 +17527,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die A file name cannot be a device name. ähnelt. + /// + public static string FILE_NAME_IS_DEVICE_NAME_ERROR_MESSAGE { + get { + return ResourceManager.GetString("FILE_NAME_IS_DEVICE_NAME_ERROR_MESSAGE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die File not found ähnelt. + /// + public static string FILE_NOT_FOUND { + get { + return ResourceManager.GetString("FILE_NOT_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Path section {0} matches a device name. ähnelt. + /// + public static string FILE_PATH_DEVICE_NAME_ERROR_MESSAGE { + get { + return ResourceManager.GetString("FILE_PATH_DEVICE_NAME_ERROR_MESSAGE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Acrobat (PDF) file ähnelt. /// @@ -16430,6 +17590,105 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Could not authenticate your [Citrix] account. ähnelt. + /// + public static string FILESERVICE_AUTHENTICATE_ERROR { + get { + return ResourceManager.GetString("FILESERVICE_AUTHENTICATE_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Client ID file (*.json)|*.json ähnelt. + /// + public static string FILESERVICE_CLIENTID_FILETYPE { + get { + return ResourceManager.GetString("FILESERVICE_CLIENTID_FILETYPE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A Client ID has been specified. ähnelt. + /// + public static string FILESERVICE_CLIENTID_FOUND { + get { + return ResourceManager.GetString("FILESERVICE_CLIENTID_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Invalid or corrupt Client ID file. ähnelt. + /// + public static string FILESERVICE_CLIENTID_INVALID_FILE { + get { + return ResourceManager.GetString("FILESERVICE_CLIENTID_INVALID_FILE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A Client ID has not been specified. ähnelt. + /// + public static string FILESERVICE_CLIENTID_NOT_FOUND { + get { + return ResourceManager.GetString("FILESERVICE_CLIENTID_NOT_FOUND", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select Client ID file. ähnelt. + /// + public static string FILESERVICE_CLIENTID_TITLE { + get { + return ResourceManager.GetString("FILESERVICE_CLIENTID_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Received a bad request. ähnelt. + /// + public static string FILESERVICE_ERROR_400 { + get { + return ResourceManager.GetString("FILESERVICE_ERROR_400", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Ensure the Client ID you have specified is valid and has not been revoked. ähnelt. + /// + public static string FILESERVICE_ERROR_401 { + get { + return ResourceManager.GetString("FILESERVICE_ERROR_401", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your current subscription is insufficient for downloading this update. ähnelt. + /// + public static string FILESERVICE_ERROR_403 { + get { + return ResourceManager.GetString("FILESERVICE_ERROR_403", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Could not download the update. The file was not found. ähnelt. + /// + public static string FILESERVICE_ERROR_404 { + get { + return ResourceManager.GetString("FILESERVICE_ERROR_404", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The authentication server has encountered a situation it doesn't know how to handle. ähnelt. + /// + public static string FILESERVICE_ERROR_500 { + get { + return ResourceManager.GetString("FILESERVICE_ERROR_500", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Show &All ähnelt. /// @@ -16638,16 +17897,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Target: ähnelt. - /// - public static string FINISH_PAGE_TARGET { - get { - return ResourceManager.GetString("FINISH_PAGE_TARGET", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} target: ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Home server: ähnelt. /// public static string FINISH_PAGE_TARGET_FOR_VM { get { @@ -16682,51 +17932,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Obtain automatically through DHCP ähnelt. - /// - public static string FINISH_PAGE_TVM_DHCP { - get { - return ResourceManager.GetString("FINISH_PAGE_TVM_DHCP", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Transfer VM gateway: ähnelt. - /// - public static string FINISH_PAGE_TVM_GATEWAY { - get { - return ResourceManager.GetString("FINISH_PAGE_TVM_GATEWAY", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Transfer VM IP address: ähnelt. - /// - public static string FINISH_PAGE_TVM_IP { - get { - return ResourceManager.GetString("FINISH_PAGE_TVM_IP", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Transfer VM subnet mask: ähnelt. - /// - public static string FINISH_PAGE_TVM_MASK { - get { - return ResourceManager.GetString("FINISH_PAGE_TVM_MASK", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Transfer VM network interface: ähnelt. - /// - public static string FINISH_PAGE_TVM_NETWORK { - get { - return ResourceManager.GetString("FINISH_PAGE_TVM_NETWORK", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Verify manifest content: ähnelt. /// @@ -17366,15 +18571,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die None ähnelt. - /// - public static string GPU_NONE { - get { - return ResourceManager.GetString("GPU_NONE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die On {0}: ähnelt. /// @@ -17447,24 +18643,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die You can improve graphics performance by assigning a dedicated graphics processing unit (GPU) to a VM. However, no GPUs have been detected in this pool, so this option is not currently available. ähnelt. - /// - public static string GPU_RUBRIC_NO_GPUS_POOL { - get { - return ResourceManager.GetString("GPU_RUBRIC_NO_GPUS_POOL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die You can improve graphics performance by assigning a dedicated graphics processing unit (GPU) to a VM. However, no GPUs have been detected in this server, so this option is not currently available. ähnelt. - /// - public static string GPU_RUBRIC_NO_GPUS_SERVER { - get { - return ResourceManager.GetString("GPU_RUBRIC_NO_GPUS_SERVER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Select which virtual GPU types are allowed on these GPUs. ähnelt. /// @@ -17502,7 +18680,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die To view memory data for this VM, you need to install [Citrix VM Tools] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die To view memory data for this VM, you need to install {0} ähnelt. /// public static string GRAPH_NEEDS_TOOLS { get { @@ -17564,15 +18742,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die '{0}' Details ähnelt. - /// - public static string GRAPHS_DETAILS_TITLE { - get { - return ResourceManager.GetString("GRAPHS_DETAILS_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Edit Graph... ähnelt. /// @@ -17582,6 +18751,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Edit '{0}' ähnelt. + /// + public static string GRAPHS_EDIT_TITLE { + get { + return ResourceManager.GetString("GRAPHS_EDIT_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die New Graph... ähnelt. /// @@ -17648,99 +18826,29 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die &UEFI Boot (experimental) ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die UEFI certificates are missing from your system ähnelt. /// - public static string GUEFI_BOOT_MODE_EXPERIMENTAL_LABEL { + public static string GUEFI_SECUREBOOT_MODE_MISSING_CERTIFICATES { get { - return ResourceManager.GetString("GUEFI_BOOT_MODE_EXPERIMENTAL_LABEL", resourceCulture); + return ResourceManager.GetString("GUEFI_SECUREBOOT_MODE_MISSING_CERTIFICATES", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Guest UEFI boot is an experimental feature. You can create UEFI-enabled VMs on hosts that are in a production environment. However, UEFI-enabled VMs must not be used for production purposes. You may have to re-create the VMs when you upgrade the host to a newer version of [XenServer]. ähnelt. - /// - public static string GUEFI_BOOT_MODE_EXPERIMENTAL_WARNING { - get { - return ResourceManager.GetString("GUEFI_BOOT_MODE_EXPERIMENTAL_WARNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die &UEFI Boot ähnelt. - /// - public static string GUEFI_BOOT_MODE_LABEL { - get { - return ResourceManager.GetString("GUEFI_BOOT_MODE_LABEL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die The UEFI boot mode is not supported with the selected template. ähnelt. - /// - public static string GUEFI_BOOT_MODE_UNSUPPORTED_WARNING { - get { - return ResourceManager.GetString("GUEFI_BOOT_MODE_UNSUPPORTED_WARNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Guest UEFI boot and guest UEFI secure boot are experimental features. You can create UEFI-enabled VMs on hosts that are in a production environment. However, UEFI-enabled VMs must not be used for production purposes. You may have to re-create the VMs when you upgrade the host to a newer version of [XenServer]. ähnelt. - /// - public static string GUEFI_BOOT_MODES_EXPERIMENTAL_WARNING { - get { - return ResourceManager.GetString("GUEFI_BOOT_MODES_EXPERIMENTAL_WARNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die The UEFI and UEFI secure boot modes are not supported with the selected template. ähnelt. - /// - public static string GUEFI_BOOT_MODES_UNSUPPORTED_WARNING { - get { - return ResourceManager.GetString("GUEFI_BOOT_MODES_UNSUPPORTED_WARNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die UEFI &Secure Boot (experimental) ähnelt. - /// - public static string GUEFI_SECURE_BOOT_MODE_EXPERIMENTAL_LABEL { - get { - return ResourceManager.GetString("GUEFI_SECURE_BOOT_MODE_EXPERIMENTAL_LABEL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die UEFI &Secure Boot ähnelt. - /// - public static string GUEFI_SECURE_BOOT_MODE_LABEL { - get { - return ResourceManager.GetString("GUEFI_SECURE_BOOT_MODE_LABEL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Guest UEFI secure boot is an experimental feature. You can create VMs configured to use the UEFI secure boot mode on hosts that are in a production environment. However, these VMs must not be used for production purposes. You may have to re-create the VMs when you upgrade the host to a newer version of [XenServer]. ähnelt. - /// - public static string GUEFI_SECUREBOOT_MODE_EXPERIMENTAL_WARNING { - get { - return ResourceManager.GetString("GUEFI_SECUREBOOT_MODE_EXPERIMENTAL_WARNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die The UEFI secure boot mode is not supported with the selected template. ähnelt. - /// - public static string GUEFI_SECUREBOOT_MODE_UNSUPPORTED_WARNING { - get { - return ResourceManager.GetString("GUEFI_SECUREBOOT_MODE_UNSUPPORTED_WARNING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die This version of [XenCenter] is out of date and cannot connect to {0}. + /// Sucht eine lokalisierte Zeichenfolge, die This version of {0} can only connect to {1}, and {2} or greater versions. It cannot connect to {3}. /// - ///You can get a compatible version of [XenCenter] from the following location: ähnelt. + ///You can get a compatible version of {0} from the following location: ähnelt. + /// + public static string GUI_NOT_COMPATIBLE { + get { + return ResourceManager.GetString("GUI_NOT_COMPATIBLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This version of {0} is out of date and cannot connect to {1}. + /// + ///You can get a compatible version of {0} from the following location: ähnelt. /// public static string GUI_OUT_OF_DATE { get { @@ -17827,16 +18935,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' cannot be placed in Maintenance Mode because it is the master of an HA-enabled pool. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' cannot be placed in Maintenance Mode because it is the coordinator of an HA-enabled pool. ähnelt. /// - public static string HA_CANNOT_EVACUATE_MASTER { + public static string HA_CANNOT_EVACUATE_COORDINATOR { get { - return ResourceManager.GetString("HA_CANNOT_EVACUATE_MASTER", resourceCulture); + return ResourceManager.GetString("HA_CANNOT_EVACUATE_COORDINATOR", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die HA and WLB check ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die HA check ähnelt. /// public static string HA_CHECK_DESCRIPTION { get { @@ -17997,15 +19105,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] High Availability (HA) allows virtual machines to automatically be restarted in the event of an underlying hardware failure or loss of an individual server. HA is enabled for '{0}'. ähnelt. - /// - public static string HA_EDIT_DIALOG_BLURB { - get { - return ResourceManager.GetString("HA_EDIT_DIALOG_BLURB", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Change these HA settings now... ähnelt. /// @@ -18384,6 +19483,17 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die HA is not currently enabled for pool '{0}'. + /// + ///Click Configure HA to enable HA for this pool and allow your virtual machines to be automatically restarted in the event of unexpected server failure. ähnelt. + /// + public static string HA_PANEL_BLURB { + get { + return ResourceManager.GetString("HA_PANEL_BLURB", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die HA restart priority ähnelt. /// @@ -18393,15 +19503,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Your changes to HA settings for pool '{0}' may not take effect because not all servers in the pool are reachable. Ensure that all servers in the pool are reachable and then apply the changes again. ähnelt. - /// - public static string HA_SAVE_SETTINGS_FAILED_DEAD_HOSTS { - get { - return ResourceManager.GetString("HA_SAVE_SETTINGS_FAILED_DEAD_HOSTS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Scanning for HA heartbeat SRs on {0} ähnelt. /// @@ -18460,15 +19561,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die HA is currently enabled for pool '{0}'. ähnelt. - /// - public static string HA_TAB_CONFIGURED_UNLICENSED { - get { - return ResourceManager.GetString("HA_TAB_CONFIGURED_UNLICENSED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Unable to calculate maximum pool failure capacity. ähnelt. /// @@ -18532,17 +19624,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die HA is not currently enabled for pool '{0}'. - /// - ///Click Configure HA to enable HA for this pool and allow your virtual machines to be automatically restarted in the event of unexpected server failure. ähnelt. - /// - public static string HAPANEL_BLURB { - get { - return ResourceManager.GetString("HAPANEL_BLURB", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Has any custom field ähnelt. /// @@ -18570,195 +19651,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die HealthCheck ähnelt. - /// - public static string HEALTH_CHECK { - get { - return ResourceManager.GetString("HEALTH_CHECK", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication with [Citrix] Insight Services failed. See the application log files for more information. ähnelt. - /// - public static string HEALTH_CHECK_AUTHENTICATION_FAILED { - get { - return ResourceManager.GetString("HEALTH_CHECK_AUTHENTICATION_FAILED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Invalid user name or password. Please try again. ähnelt. - /// - public static string HEALTH_CHECK_AUTHENTICATION_INVALID_CREDENTIALS { - get { - return ResourceManager.GetString("HEALTH_CHECK_AUTHENTICATION_INVALID_CREDENTIALS", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. - /// - public static string HEALTH_CHECK_CIS_POLICY_URL { - get { - return ResourceManager.GetString("HEALTH_CHECK_CIS_POLICY_URL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. - /// - public static string HEALTH_CHECK_CITRIX_POLICY_URL { - get { - return ResourceManager.GetString("HEALTH_CHECK_CITRIX_POLICY_URL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die The information that Health Check uploads to [Citrix] Insight Services will be used for troubleshooting and diagnostics support purposes, as well as to improve the quality, reliability, and performance of our products subject to the [Citrix] Insight Services Policy at {0} and [Citrix] Privacy Policy at {1}. ähnelt. - /// - public static string HEALTH_CHECK_PRIVACY_POLICY { - get { - return ResourceManager.GetString("HEALTH_CHECK_PRIVACY_POLICY", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die This user is not authorized to access this server. ähnelt. - /// - public static string HEALTH_CHECK_USER_HAS_NO_PERMISSION_TO_CONNECT { - get { - return ResourceManager.GetString("HEALTH_CHECK_USER_HAS_NO_PERMISSION_TO_CONNECT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die This user is not authorized to perform Health Check operations. ähnelt. - /// - public static string HEALTH_CHECK_USER_NOT_AUTHORIZED { - get { - return ResourceManager.GetString("HEALTH_CHECK_USER_NOT_AUTHORIZED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication with [Citrix] Insight Services is required in order to enable this feature. [XenCenter] detected a previous successful authentication for one of other connected pools. You can choose to re-use it or authenticate again. ähnelt. - /// - public static string HEALTHCHECK_AUTHENTICATION_RUBRIC_EXISTING_TOKEN { - get { - return ResourceManager.GetString("HEALTHCHECK_AUTHENTICATION_RUBRIC_EXISTING_TOKEN", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication with [Citrix] Insight Services is required in order to enable this feature. Please register by providing MyCitrix credentials (see {0}). These credentials will only be used to obtain an upload token and will not be stored on this machine or on your server. ähnelt. - /// - public static string HEALTHCHECK_AUTHENTICATION_RUBRIC_NO_TOKEN { - get { - return ResourceManager.GetString("HEALTHCHECK_AUTHENTICATION_RUBRIC_NO_TOKEN", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die OK, Enable Health Check ähnelt. - /// - public static string HEALTHCHECK_ENROLLMENT_CONFIRMATION_BUTTON_LABEL { - get { - return ResourceManager.GetString("HEALTHCHECK_ENROLLMENT_CONFIRMATION_BUTTON_LABEL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Health Check Enrollment - {0} ähnelt. - /// - public static string HEALTHCHECK_ENROLLMENT_TITLE { - get { - return ResourceManager.GetString("HEALTHCHECK_ENROLLMENT_TITLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Request an additional upload now ähnelt. - /// - public static string HEALTHCHECK_ON_DEMAND_REQUEST { - get { - return ResourceManager.GetString("HEALTHCHECK_ON_DEMAND_REQUEST", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Additional upload requested at {0} ähnelt. - /// - public static string HEALTHCHECK_ON_DEMAND_REQUESTED_AT { - get { - return ResourceManager.GetString("HEALTHCHECK_ON_DEMAND_REQUESTED_AT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Upload a Health Check report every {0} weeks on {1} starting at {2} ähnelt. - /// - public static string HEALTHCHECK_SCHEDULE_DESCRIPTION { - get { - return ResourceManager.GetString("HEALTHCHECK_SCHEDULE_DESCRIPTION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} issues detected ähnelt. - /// - public static string HEALTHCHECK_STATUS_ISSUES_FOUND { - get { - return ResourceManager.GetString("HEALTHCHECK_STATUS_ISSUES_FOUND", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die No issues detected ähnelt. - /// - public static string HEALTHCHECK_STATUS_NO_ISSUES_FOUND { - get { - return ResourceManager.GetString("HEALTHCHECK_STATUS_NO_ISSUES_FOUND", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die No report uploaded yet ähnelt. - /// - public static string HEALTHCHECK_STATUS_NO_UPLOAD_YET { - get { - return ResourceManager.GetString("HEALTHCHECK_STATUS_NO_UPLOAD_YET", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Analysis not yet available ähnelt. - /// - public static string HEALTHCHECK_STATUS_NOT_AVAILABLE_YET { - get { - return ResourceManager.GetString("HEALTHCHECK_STATUS_NOT_AVAILABLE_YET", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Health Check not enabled ähnelt. - /// - public static string HEALTHCHECK_STATUS_NOT_ENROLLED { - get { - return ResourceManager.GetString("HEALTHCHECK_STATUS_NOT_ENROLLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die 1 issue detected ähnelt. - /// - public static string HEALTHCHECK_STATUS_ONE_ISSUE_FOUND { - get { - return ResourceManager.GetString("HEALTHCHECK_STATUS_ONE_ISSUE_FOUND", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Heartbeating status ähnelt. /// @@ -19021,7 +19913,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find host in [XenCenter]'s cache. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find host in {0}'s cache. ähnelt. /// public static string HOST_GONE { get { @@ -19075,7 +19967,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to [XenServer] {1} and above, the Control Domain memory on {0} will be increased. + /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to {0} and above, the Control Domain memory on {1} will be increased. /// ///This might result in failure to migrate VMs to this server during the RPU or to accommodate after the upgrade all the VMs that are currently residing on this server. ähnelt. /// @@ -19115,7 +20007,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The Control Domain memory on {0} will be increased when upgrading to [XenServer] {1}. + /// Sucht eine lokalisierte Zeichenfolge, die The Control Domain memory on {0} will be increased when upgrading to {1} {2}. /// ///This might result in failure to migrate VMs to this server during the RPU or to accommodate after the upgrade all the VMs that are currently residing on this server. ähnelt. /// @@ -19323,15 +20215,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die You must reboot your server '{0}' to complete the restore process. ähnelt. - /// - public static string HOST_REBOOT_REQUIRED { - get { - return ResourceManager.GetString("HOST_REBOOT_REQUIRED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Upgrade failed. The server rebooted with the same version. ähnelt. /// @@ -19422,6 +20305,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The server is unreachable. ähnelt. + /// + public static string HOST_UNREACHABLE { + get { + return ResourceManager.GetString("HOST_UNREACHABLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Host '{0}': ähnelt. /// @@ -19441,7 +20333,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' entering maintenance mode... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is entering maintenance mode... ähnelt. /// public static string HOSTACTION_EVACUATING { get { @@ -19459,7 +20351,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' exiting maintenance mode... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is exiting maintenance mode... ähnelt. /// public static string HOSTACTION_EXITING_MAINTENANCE_MODE { get { @@ -19486,20 +20378,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Nominated server {0} as new master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Nominated server {0} as new coordinator ähnelt. /// - public static string HOSTACTION_TRANSITIONED_NEW_MASTER { + public static string HOSTACTION_TRANSITIONED_NEW_COORDINATOR { get { - return ResourceManager.GetString("HOSTACTION_TRANSITIONED_NEW_MASTER", resourceCulture); + return ResourceManager.GetString("HOSTACTION_TRANSITIONED_NEW_COORDINATOR", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Nominating server {0} as new master... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Nominating server {0} as new coordinator... ähnelt. /// - public static string HOSTACTION_TRANSITIONING_NEW_MASTER { + public static string HOSTACTION_TRANSITIONING_NEW_COORDINATOR { get { - return ResourceManager.GetString("HOSTACTION_TRANSITIONING_NEW_MASTER", resourceCulture); + return ResourceManager.GetString("HOSTACTION_TRANSITIONING_NEW_COORDINATOR", resourceCulture); } } @@ -19683,6 +20575,151 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Post-update tasks to be performed: + ///{0} ähnelt. + /// + public static string HOTFIX_POST_UPDATE_ACTIONS { + get { + return ResourceManager.GetString("HOTFIX_POST_UPDATE_ACTIONS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This server will be live patched. If live patch fails, a server reboot will be required. ähnelt. + /// + public static string HOTFIX_POST_UPDATE_LIVEPATCH_ACTIONS { + get { + return ResourceManager.GetString("HOTFIX_POST_UPDATE_LIVEPATCH_ACTIONS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This server will be evacuated prior to installing updates ähnelt. + /// + public static string HOTFIX_PRE_UPDATE_ACTIONS { + get { + return ResourceManager.GetString("HOTFIX_PRE_UPDATE_ACTIONS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} packages will be updated ähnelt. + /// + public static string HOTFIX_RPMS_TO_INSTALL { + get { + return ResourceManager.GetString("HOTFIX_RPMS_TO_INSTALL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} bug fixes ähnelt. + /// + public static string HOTFIX_TYPE_BUG_FIX_MANY { + get { + return ResourceManager.GetString("HOTFIX_TYPE_BUG_FIX_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die 1 bug fix ähnelt. + /// + public static string HOTFIX_TYPE_BUG_FIX_ONE { + get { + return ResourceManager.GetString("HOTFIX_TYPE_BUG_FIX_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} foundational changes ähnelt. + /// + public static string HOTFIX_TYPE_FOUNDATIONAL_MANY { + get { + return ResourceManager.GetString("HOTFIX_TYPE_FOUNDATIONAL_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die 1 foundational change ähnelt. + /// + public static string HOTFIX_TYPE_FOUNDATIONAL_ONE { + get { + return ResourceManager.GetString("HOTFIX_TYPE_FOUNDATIONAL_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} improvements ähnelt. + /// + public static string HOTFIX_TYPE_IMPROVEMENT_MANY { + get { + return ResourceManager.GetString("HOTFIX_TYPE_IMPROVEMENT_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die 1 improvement ähnelt. + /// + public static string HOTFIX_TYPE_IMPROVEMENT_ONE { + get { + return ResourceManager.GetString("HOTFIX_TYPE_IMPROVEMENT_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} new features ähnelt. + /// + public static string HOTFIX_TYPE_NEW_FEATURE_MANY { + get { + return ResourceManager.GetString("HOTFIX_TYPE_NEW_FEATURE_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die 1 new feature ähnelt. + /// + public static string HOTFIX_TYPE_NEW_FEATURE_ONE { + get { + return ResourceManager.GetString("HOTFIX_TYPE_NEW_FEATURE_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} preview features ähnelt. + /// + public static string HOTFIX_TYPE_PREVIEW_FEATURE_MANY { + get { + return ResourceManager.GetString("HOTFIX_TYPE_PREVIEW_FEATURE_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die 1 preview feature ähnelt. + /// + public static string HOTFIX_TYPE_PREVIEW_FEATURE_ONE { + get { + return ResourceManager.GetString("HOTFIX_TYPE_PREVIEW_FEATURE_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} security fixes ähnelt. + /// + public static string HOTFIX_TYPE_SECURITY_FIX_MANY { + get { + return ResourceManager.GetString("HOTFIX_TYPE_SECURITY_FIX_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die 1 security fix ähnelt. + /// + public static string HOTFIX_TYPE_SECURITY_FIX_ONE { + get { + return ResourceManager.GetString("HOTFIX_TYPE_SECURITY_FIX_ONE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Hourly; at {0} minutes past each hour ähnelt. /// @@ -19719,6 +20756,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The following characters are invalid: {0} ähnelt. + /// + public static string ILLEGAL_CHARACTER_ERROR_MESSAGE { + get { + return ResourceManager.GetString("ILLEGAL_CHARACTER_ERROR_MESSAGE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die It is not possible to connect to the iLO service. Please review your configuration. ähnelt. /// @@ -19791,6 +20837,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Preparing to import appliance '{0}'... ähnelt. + /// + public static string IMPORT_APPLIANCE_PREPARING { + get { + return ResourceManager.GetString("IMPORT_APPLIANCE_PREPARING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Creating appliance '{0}'... ähnelt. + /// + public static string IMPORT_CREATING_APPLIANCE { + get { + return ResourceManager.GetString("IMPORT_CREATING_APPLIANCE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Creating VM '{0}'... ähnelt. + /// + public static string IMPORT_CREATING_VM { + get { + return ResourceManager.GetString("IMPORT_CREATING_VM", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Import VM '{0}' from Disk Image to '{1}' ähnelt. /// @@ -19818,15 +20891,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die The server could not complete the import due to an unknown error. ähnelt. - /// - public static string IMPORT_GENERIC_FAIL { - get { - return ResourceManager.GetString("IMPORT_GENERIC_FAIL", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die The exported files are incomplete or in an unrecognized format. ähnelt. /// @@ -20007,15 +21071,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Path does not exist. ähnelt. - /// - public static string IMPORT_SELECT_APPLIANCE_PAGE_ERROR_NONE_EXIST_PATH { - get { - return ResourceManager.GetString("IMPORT_SELECT_APPLIANCE_PAGE_ERROR_NONE_EXIST_PATH", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die The selected file is not a valid appliance file. ähnelt. /// @@ -20164,7 +21219,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die All import options (*.ovf;*.ova;*.ova.gz;*.vhd;*.vmdk;*.xva;*.xva.gz;ova.xml)|*.ovf;*.ova;*.ova.gz;*.vhd;*.vmdk;*.xva;*.xva.gz;ova.xml|OVF/OVA Package files (*.ovf;*.ova;*.ova.gz)|*.ovf;*.ova*;*.ova.gz|Virtual Hard Disk images (*.vhd;*.vmdk;)|*.vhd;*.vmdk;|XVA files (*.xva;*.xva.gz)|*.xva;*.xva.gz|XVA Version 1|ova.xml ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die All import options (*.ovf;*.ova;*.ova.gz;*.vhd;*.vmdk;*.xva;*.xva.gz)|*.ovf;*.ova;*.ova.gz;*.vhd;*.vmdk;*.xva;*.xva.gz|OVF/OVA Package files (*.ovf;*.ova;*.ova.gz)|*.ovf;*.ova*;*.ova.gz|Virtual Hard Disk images (*.vhd;*.vmdk;)|*.vhd;*.vmdk;|XVA files (*.xva;*.xva.gz)|*.xva;*.xva.gz ähnelt. /// public static string IMPORT_SOURCE_PAGE_FILETYPES { get { @@ -20218,7 +21273,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The [XenServer] Template that you are attempting to import already exists in the selected pool. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The {0} Template that you are attempting to import already exists in the selected pool. ähnelt. /// public static string IMPORT_TEMPLATE_ALREADY_EXISTS { get { @@ -20352,6 +21407,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Importing '{0}' ({1} of {2})... ähnelt. + /// + public static string IMPORT_VDI { + get { + return ResourceManager.GetString("IMPORT_VDI", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Preparing VDI for '{0}'... ähnelt. + /// + public static string IMPORT_VDI_PREPARE { + get { + return ResourceManager.GetString("IMPORT_VDI_PREPARE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Configure storage for the new VM ähnelt. /// @@ -20361,6 +21434,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The appliance contains {0} VM(s) with more than {1} vCPUs. Where a VM may be running actively hostile privileged code {2} recommends that the vCPU limit is set to {1} to prevent impact on system availability. ähnelt. + /// + public static string IMPORT_VM_CPUS_COUNT_UNTRUSTED_WARNING { + get { + return ResourceManager.GetString("IMPORT_VM_CPUS_COUNT_UNTRUSTED_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Import VM from... ähnelt. /// @@ -20452,7 +21534,34 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die &Import VM(s) to: ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die At least one VM in the imported appliance requires a minimum of {0} vCPUs, but there are servers with insufficient physical CPUs ({1}). Ensure that the VMs are mapped correctly or you will not be able to start the appliance on the selected server. ähnelt. + /// + public static string IMPORT_WIZARD_CPUS_COUNT_MISMATCH_HOST { + get { + return ResourceManager.GetString("IMPORT_WIZARD_CPUS_COUNT_MISMATCH_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die At least one VM in the imported appliance requires a minimum of {0} vCPUs, while the maximum number of physical CPUs in the selected servers is {1}. You will not be able to start all the VMs in the appliance with the current selection. ähnelt. + /// + public static string IMPORT_WIZARD_CPUS_COUNT_MISMATCH_HOST_ALL { + get { + return ResourceManager.GetString("IMPORT_WIZARD_CPUS_COUNT_MISMATCH_HOST_ALL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die At least one VM in the imported appliance requires a minimum of {0} vCPUs, but not all servers have sufficient physical CPUs. You will not be able to start a VM if you place its disks in the local storage of a server with insufficient physical CPUs. ähnelt. + /// + public static string IMPORT_WIZARD_CPUS_COUNT_MISMATCH_POOL { + get { + return ResourceManager.GetString("IMPORT_WIZARD_CPUS_COUNT_MISMATCH_POOL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Import to: ähnelt. /// public static string IMPORT_WIZARD_DESTINATION_DESTINATION { get { @@ -20461,7 +21570,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Choose the pool or standalone server where you want to place the VM(s). If required, you can also specify a Home Server within the selected pool for each imported VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Choose the pool or standalone server where you want to import the VM(s). ähnelt. /// public static string IMPORT_WIZARD_DESTINATION_INSTRUCTIONS { get { @@ -20470,7 +21579,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die &Assign imported VM(s) to a home server: ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die If you want to place the disks of a VM on local storage, specify the server below. ähnelt. /// public static string IMPORT_WIZARD_DESTINATION_TABLE_INTRO { get { @@ -20505,6 +21614,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The imported appliance requires a minimum of {0} of memory, while the available memory on the server is {1}. You will not be able to start the VM on the selected server. ähnelt. + /// + public static string IMPORT_WIZARD_INSUFFICIENT_MEMORY_HOST { + get { + return ResourceManager.GetString("IMPORT_WIZARD_INSUFFICIENT_MEMORY_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The imported appliance requires a minimum of {0} of memory, while the maximum available memory on the pool is {1}. You will not be able to start the VM on the selected pool. ähnelt. + /// + public static string IMPORT_WIZARD_INSUFFICIENT_MEMORY_POOL { + get { + return ResourceManager.GetString("IMPORT_WIZARD_INSUFFICIENT_MEMORY_POOL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Map the virtual network interfaces in the VMs you are importing to networks in the destination pool or standalone server. ähnelt. /// @@ -20542,7 +21669,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Uncompressing file {0}, please wait... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Uncompressing file {0} ({1} done)... ähnelt. /// public static string IMPORT_WIZARD_UNCOMPRESSING { get { @@ -20586,15 +21713,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Importing VMs... ähnelt. - /// - public static string IMPORTING_VMS { - get { - return ResourceManager.GetString("IMPORTING_VMS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Importing VM from backup file ähnelt. /// @@ -20613,15 +21731,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Importing VM... ähnelt. - /// - public static string IMPORTVM_IMPORTING { - get { - return ResourceManager.GetString("IMPORTVM_IMPORTING", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Preparing to Import VM ähnelt. /// @@ -20631,15 +21740,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Starting VM... ähnelt. - /// - public static string IMPORTVM_STARTING { - get { - return ResourceManager.GetString("IMPORTVM_STARTING", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Import VM from '{0}' to '{1}' ähnelt. /// @@ -20667,6 +21767,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Uploading '{0}' to '{1}' ({2}% done)... ähnelt. + /// + public static string IMPORTVM_UPLOADING { + get { + return ResourceManager.GetString("IMPORTVM_UPLOADING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Waiting for Import VM wizard to complete... ähnelt. /// @@ -20713,7 +21822,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server version is incompatible with [XenCenter]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server version is incompatible with {0}. ähnelt. /// public static string INCOMPATIBLE_PRODUCTS { get { @@ -20766,6 +21875,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Indeterminable ähnelt. + /// + public static string INDETERMINABLE { + get { + return ResourceManager.GetString("INDETERMINABLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Disk snapshots are not currently available for this VM ähnelt. /// @@ -20794,7 +21912,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disk and memory snapshots need [Citrix VM Tools] to be installed ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Disk and memory snapshots need {0} to be installed ähnelt. /// public static string INFO_DISKMEMORY_MODE_NO_TOOLS { get { @@ -20830,7 +21948,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Quiesced snapshots need [Citrix VM Tools] to be installed ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Quiesced snapshots need {0} to be installed ähnelt. /// public static string INFO_QUIESCE_MODE_NO_TOOLS { get { @@ -20920,7 +22038,52 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Install [Citrix VM Tools] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Install certificate... ähnelt. + /// + public static string INSTALL_SERVER_CERTIFICATE_ACTION_LINK { + get { + return ResourceManager.GetString("INSTALL_SERVER_CERTIFICATE_ACTION_LINK", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Installing server certificate... ähnelt. + /// + public static string INSTALL_SERVER_CERTIFICATE_DESCRIPTION { + get { + return ResourceManager.GetString("INSTALL_SERVER_CERTIFICATE_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot install a server certificate when HA is on. ähnelt. + /// + public static string INSTALL_SERVER_CERTIFICATE_HA { + get { + return ResourceManager.GetString("INSTALL_SERVER_CERTIFICATE_HA", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Install certificate... ähnelt. + /// + public static string INSTALL_SERVER_CERTIFICATE_MENU { + get { + return ResourceManager.GetString("INSTALL_SERVER_CERTIFICATE_MENU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Installing certificate on server {0}... ähnelt. + /// + public static string INSTALL_SERVER_CERTIFICATE_TITLE { + get { + return ResourceManager.GetString("INSTALL_SERVER_CERTIFICATE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Install {0} ähnelt. /// public static string INSTALL_XENSERVER_TOOLS { get { @@ -20929,20 +22092,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Install [Citrix VM Tools]... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die &Install {0} ähnelt. /// - public static string INSTALL_XENSERVER_TOOLS_DOTS { + public static string INSTALL_XENSERVER_TOOLS_BUTTON { get { - return ResourceManager.GetString("INSTALL_XENSERVER_TOOLS_DOTS", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Install [Citrix VM Tools] ähnelt. - /// - public static string INSTALL_XS_TOOLS { - get { - return ResourceManager.GetString("INSTALL_XS_TOOLS", resourceCulture); + return ResourceManager.GetString("INSTALL_XENSERVER_TOOLS_BUTTON", resourceCulture); } } @@ -20965,7 +22119,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find the [Citrix VM Tools] install disc. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find the {0} install disk. ähnelt. /// public static string INSTALLTOOLS_COULDNOTFIND_WIN { get { @@ -20974,7 +22128,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] installation launched. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} installation launched. ähnelt. /// public static string INSTALLTOOLS_DONE { get { @@ -20983,7 +22137,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] are already installed on this VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} are already installed on this VM. ähnelt. /// public static string INSTALLTOOLS_EXIST { get { @@ -20992,7 +22146,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Launching [Citrix VM Tools] installation. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Read more about installing {0} ähnelt. + /// + public static string INSTALLTOOLS_READ_MORE { + get { + return ResourceManager.GetString("INSTALLTOOLS_READ_MORE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Launching {0} installation. ähnelt. /// public static string INSTALLTOOLS_STARTING { get { @@ -21001,7 +22164,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Installing [Citrix VM Tools] on VM {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Installing {0} on VM {1} ähnelt. /// public static string INSTALLTOOLS_TITLE { get { @@ -21010,16 +22173,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Creating VM '{0}' from template '{1}' ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Created VM '{0}' ähnelt. /// - public static string INSTANT_VM_CREATE_DESCRIPTION { + public static string INSTANT_VM_CREATE_DESC_COMPLETED { get { - return ResourceManager.GetString("INSTANT_VM_CREATE_DESCRIPTION", resourceCulture); + return ResourceManager.GetString("INSTANT_VM_CREATE_DESC_COMPLETED", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Instant VM create ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Creating VM quickly from template '{0}' ähnelt. /// public static string INSTANT_VM_CREATE_TITLE { get { @@ -21073,7 +22236,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Invalid host name ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Invalid disk size ähnelt. + /// + public static string INVALID_DISK_SIZE { + get { + return ResourceManager.GetString("INVALID_DISK_SIZE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Invalid target host. ähnelt. /// public static string INVALID_HOST { get { @@ -21082,7 +22254,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Invalid disk size ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Invalid number ähnelt. /// public static string INVALID_NUMBER { get { @@ -21262,18 +22434,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Vendor: {0} - ///Serial Number: {1} - ///SCSI ID: {2} - ///Size: {3} ähnelt. - /// - public static string ISCSI_DIALOG_SR_DETAILS_FOR_FIBRECHANNEL { - get { - return ResourceManager.GetString("ISCSI_DIALOG_SR_DETAILS_FOR_FIBRECHANNEL", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Interrogation failed -- call succeeded! ähnelt. /// @@ -21292,15 +22452,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die StorageLink technology ähnelt. - /// - public static string ISL_SR { - get { - return ResourceManager.GetString("ISL_SR", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Loaded ISO '{0}' into the DVD Drive on VM {1} ähnelt. /// @@ -21428,7 +22579,61 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Learn more ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Data merge for VDI '{0}' of VM '{1}' has completed. ähnelt. + /// + public static string LEAF_COALESCE_COMPLETED_DESCRIPTION { + get { + return ResourceManager.GetString("LEAF_COALESCE_COMPLETED_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Data merge for VM {0} has completed. ähnelt. + /// + public static string LEAF_COALESCE_COMPLETED_TITLE { + get { + return ResourceManager.GetString("LEAF_COALESCE_COMPLETED_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Data merge for VDI '{0}' of VM '{1}' has failed. ähnelt. + /// + public static string LEAF_COALESCE_FAILED_DESCRIPTION { + get { + return ResourceManager.GetString("LEAF_COALESCE_FAILED_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Data merge for VM {0} has failed. ähnelt. + /// + public static string LEAF_COALESCE_FAILED_TITLE { + get { + return ResourceManager.GetString("LEAF_COALESCE_FAILED_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Data merge for VDI '{0}' of VM '{1}' has started, performance may be reduced. ähnelt. + /// + public static string LEAF_COALESCE_START_DESCRIPTION { + get { + return ResourceManager.GetString("LEAF_COALESCE_START_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Data merge for VM {0} has started. ähnelt. + /// + public static string LEAF_COALESCE_START_TITLE { + get { + return ResourceManager.GetString("LEAF_COALESCE_START_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Learn more... ähnelt. /// public static string LEARN_MORE { get { @@ -21473,7 +22678,34 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] Virtual &Apps and Desktops ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Virtual Apps and Desktops {0} Cloud features enabled ähnelt. + /// + public static string LICENSE_DESKTOP_CLOUD_FEATURES_ENABLED { + get { + return ResourceManager.GetString("LICENSE_DESKTOP_CLOUD_FEATURES_ENABLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} Virtual Apps and Desktops features enabled ähnelt. + /// + public static string LICENSE_DESKTOP_FEATURES_ENABLED { + get { + return ResourceManager.GetString("LICENSE_DESKTOP_FEATURES_ENABLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} Virtual Apps and Desktops Premium features enabled ähnelt. + /// + public static string LICENSE_DESKTOP_PLUS_FEATURES_ENABLED { + get { + return ResourceManager.GetString("LICENSE_DESKTOP_PLUS_FEATURES_ENABLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} Virtual &Apps and Desktops ähnelt. /// public static string LICENSE_EDITION_DESKTOP { get { @@ -21482,7 +22714,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] Virtual Apps and Desktops [Citrix] &Cloud ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Virtual Apps and Desktops {0} &Cloud ähnelt. /// public static string LICENSE_EDITION_DESKTOP_CLOUD { get { @@ -21491,7 +22723,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die XenApp/XenDesktop [Citrix] &Cloud ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die XenApp/XenDesktop {0} &Cloud ähnelt. /// public static string LICENSE_EDITION_DESKTOP_CLOUD_LEGACY { get { @@ -21509,7 +22741,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] Virtual Apps and Desktops &Premium ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Virtual Apps and Desktops &Premium ähnelt. /// public static string LICENSE_EDITION_DESKTOP_PLUS { get { @@ -21527,7 +22759,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] P&remium Per-Socket ({0} required) ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} P&remium Per-Socket ({1} required) ähnelt. /// public static string LICENSE_EDITION_ENTERPRISE_PERSOCKET { get { @@ -21536,7 +22768,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {1} E&nterprise Per-Socket ({0} required) ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} E&nterprise Per-Socket ({1} required) ähnelt. /// public static string LICENSE_EDITION_ENTERPRISE_PERSOCKET_LEGACY { get { @@ -21545,7 +22777,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Pr&emium Per-User ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Pr&emium Per-User ähnelt. /// public static string LICENSE_EDITION_ENTERPRISE_PERUSER { get { @@ -21563,25 +22795,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] Per-&Socket ({0} required) ähnelt. - /// - public static string LICENSE_EDITION_PERSOCKET { - get { - return ResourceManager.GetString("LICENSE_EDITION_PERSOCKET", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {1} Per-&Socket ({0} required) ähnelt. - /// - public static string LICENSE_EDITION_PERSOCKET_LEGACY { - get { - return ResourceManager.GetString("LICENSE_EDITION_PERSOCKET_LEGACY", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] &Standard Per-Socket ({0} required) ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} &Standard Per-Socket ({1} required) ähnelt. /// public static string LICENSE_EDITION_STANDARD_PERSOCKET { get { @@ -21590,7 +22804,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {1} &Standard Per-Socket ({0} required) ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} &Standard Per-Socket ({1} required) ähnelt. /// public static string LICENSE_EDITION_STANDARD_PERSOCKET_LEGACY { get { @@ -21599,20 +22813,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer product] for [Citrix] Virtual &Desktops ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support ähnelt. /// - public static string LICENSE_EDITION_XENDESKTOP { + public static string LICENSE_ELIGIBLE_FOR_SUPPORT { get { - return ResourceManager.GetString("LICENSE_EDITION_XENDESKTOP", resourceCulture); + return ResourceManager.GetString("LICENSE_ELIGIBLE_FOR_SUPPORT", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} for &XenDesktop ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Premium features enabled ähnelt. /// - public static string LICENSE_EDITION_XENDESKTOP_LEGACY { + public static string LICENSE_ENTERPRISE_FEATURES_ENABLED { get { - return ResourceManager.GetString("LICENSE_EDITION_XENDESKTOP_LEGACY", resourceCulture); + return ResourceManager.GetString("LICENSE_ENTERPRISE_FEATURES_ENABLED", resourceCulture); } } @@ -21706,15 +22920,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Online ähnelt. - /// - public static string LICENSE_EXPIRY_PURCHACE { - get { - return ResourceManager.GetString("LICENSE_EXPIRY_PURCHACE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die This field is disabled due to license restrictions on the server. ähnelt. /// @@ -21769,6 +22974,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Active CSS ähnelt. + /// + public static string LICENSE_MANAGER_ACTIVE_CSS { + get { + return ResourceManager.GetString("LICENSE_MANAGER_ACTIVE_CSS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Active support agreement ähnelt. + /// + public static string LICENSE_MANAGER_ACTIVE_CSS_LONG { + get { + return ResourceManager.GetString("LICENSE_MANAGER_ACTIVE_CSS_LONG", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Buy Licenses... ähnelt. /// @@ -21778,6 +23001,42 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Expired CSS ähnelt. + /// + public static string LICENSE_MANAGER_EXPIRED_CSS { + get { + return ResourceManager.GetString("LICENSE_MANAGER_EXPIRED_CSS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Expired support agreement ähnelt. + /// + public static string LICENSE_MANAGER_EXPIRED_CSS_LONG { + get { + return ResourceManager.GetString("LICENSE_MANAGER_EXPIRED_CSS_LONG", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Licensed ähnelt. + /// + public static string LICENSE_MANAGER_LICENSED { + get { + return ResourceManager.GetString("LICENSE_MANAGER_LICENSED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Purchase Support... ähnelt. + /// + public static string LICENSE_MANAGER_PURCHASE_SUPPORT_LINK_TEXT { + get { + return ResourceManager.GetString("LICENSE_MANAGER_PURCHASE_SUPPORT_LINK_TEXT", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die License Expires: ähnelt. /// @@ -21814,6 +23073,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trial edition ähnelt. + /// + public static string LICENSE_MANAGER_TRIAL_EDITION { + get { + return ResourceManager.GetString("LICENSE_MANAGER_TRIAL_EDITION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trial license ähnelt. + /// + public static string LICENSE_MANAGER_TRIAL_LICENSE { + get { + return ResourceManager.GetString("LICENSE_MANAGER_TRIAL_LICENSE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Never ähnelt. /// @@ -21833,7 +23110,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Servers must be selected one at a time when activating Express [XenServer]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Servers must be selected one at a time when activating Express {0}. ähnelt. /// public static string LICENSE_NO_MULTISELECT_ACTIVATE { get { @@ -21841,15 +23118,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die When licensing servers earlier than {0}, you must select one server at a time. ähnelt. - /// - public static string LICENSE_NO_MULTISELECT_LICENSE { - get { - return ResourceManager.GetString("LICENSE_NO_MULTISELECT_LICENSE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Not eligible for support ähnelt. /// @@ -21859,6 +23127,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Premium features enabled ähnelt. + /// + public static string LICENSE_PREMIUM_FEATURES_ENABLED { + get { + return ResourceManager.GetString("LICENSE_PREMIUM_FEATURES_ENABLED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The license server {0} could not be reached. You have until {1} to reconnect to the license server. ähnelt. /// @@ -21868,15 +23145,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die License Restriction: Could not connect to {0}, a server with an XE Express License already exists ({1}) ähnelt. - /// - public static string LICENSE_RESTRICTION_MESSAGE { - get { - return ResourceManager.GetString("LICENSE_RESTRICTION_MESSAGE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Your support and maintenance has expired ähnelt. /// @@ -21931,6 +23199,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Standard features only ähnelt. + /// + public static string LICENSE_STANDARD_FEATURES_ENABLED { + get { + return ResourceManager.GetString("LICENSE_STANDARD_FEATURES_ENABLED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. /// @@ -21941,71 +23218,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support - ///[Citrix] Virtual Apps and Desktops [Citrix] Cloud features enabled ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Trial ähnelt. /// - public static string LICENSE_SUPPORT_AND_DESKTOP_CLOUD_FEATURES_ENABLED { + public static string LICENSE_TRIAL { get { - return ResourceManager.GetString("LICENSE_SUPPORT_AND_DESKTOP_CLOUD_FEATURES_ENABLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support - ///[Citrix] Virtual Apps and Desktops features enabled ähnelt. - /// - public static string LICENSE_SUPPORT_AND_DESKTOP_FEATURES_ENABLED { - get { - return ResourceManager.GetString("LICENSE_SUPPORT_AND_DESKTOP_FEATURES_ENABLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support - ///[Citrix] Virtual Apps and Desktops Premium features enabled ähnelt. - /// - public static string LICENSE_SUPPORT_AND_DESKTOP_PLUS_FEATURES_ENABLED { - get { - return ResourceManager.GetString("LICENSE_SUPPORT_AND_DESKTOP_PLUS_FEATURES_ENABLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support - ///Premium features enabled ähnelt. - /// - public static string LICENSE_SUPPORT_AND_ENTERPRISE_FEATURES_ENABLED { - get { - return ResourceManager.GetString("LICENSE_SUPPORT_AND_ENTERPRISE_FEATURES_ENABLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support - ///Premium features enabled ähnelt. - /// - public static string LICENSE_SUPPORT_AND_PREMIUM_FEATURES_ENABLED { - get { - return ResourceManager.GetString("LICENSE_SUPPORT_AND_PREMIUM_FEATURES_ENABLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Eligible for support - ///Standard features only ähnelt. - /// - public static string LICENSE_SUPPORT_AND_STANDARD_FEATURES_ENABLED { - get { - return ResourceManager.GetString("LICENSE_SUPPORT_AND_STANDARD_FEATURES_ENABLED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Activation keys can only be applied to one Express [XenServer] product at a time. ähnelt. - /// - public static string LICENSE_TOO_MANY_SERVERS_SELECTED_CAPTION { - get { - return ResourceManager.GetString("LICENSE_TOO_MANY_SERVERS_SELECTED_CAPTION", resourceCulture); + return ResourceManager.GetString("LICENSE_TRIAL", resourceCulture); } } @@ -22081,24 +23298,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die One or more managed servers have expired. Either assign [XenServer] licenses, or activate Express [XenServer] products. ähnelt. - /// - public static string LICENSING_DIALOG_EXPIRED_TEXT { - get { - return ResourceManager.GetString("LICENSING_DIALOG_EXPIRED_TEXT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die One or more managed servers will expire soon. Either assign [XenServer] licenses, or activate Express [XenServer] products. ähnelt. - /// - public static string LICENSING_DIALOG_EXPIRING_SOON_TEXT { - get { - return ResourceManager.GetString("LICENSING_DIALOG_EXPIRING_SOON_TEXT", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Link Status ähnelt. /// @@ -22385,15 +23584,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Maintenance Mode ähnelt. - /// - public static string MAINTENANCE_MODE { - get { - return ResourceManager.GetString("MAINTENANCE_MODE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die &Add... ähnelt. /// @@ -22403,6 +23593,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certi&ficate ähnelt. + /// + public static string MAINWINDOW_CERTIFICATE_CONTEXT_MENU_TEXT { + get { + return ResourceManager.GetString("MAINWINDOW_CERTIFICATE_CONTEXT_MENU_TEXT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Cert&ificate ähnelt. + /// + public static string MAINWINDOW_CERTIFICATE_MENU_TEXT { + get { + return ResourceManager.GetString("MAINWINDOW_CERTIFICATE_MENU_TEXT", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Do you want to migrate the VM {0} to the server {1}? ähnelt. /// @@ -22442,7 +23650,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Do you want to remove '{0}' from pool '{1}'? /// - ///This will permanently delete and reinitialize all local storage on '{2}'. Your data will be lost, and the server will be rebooted. ähnelt. + ///This will permanently delete and reinitialize all local storage on '{2}'. Your data will be lost, and the server will be rebooted. If Active Directory is configured for pool '{1}', the server will be removed from the domain. ähnelt. /// public static string MAINWINDOW_CONFIRM_REMOVE_FROM_POOL { get { @@ -22453,7 +23661,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Do you want to remove the selected servers from pool '{0}'? /// - ///This will permanently delete and reinitialize all local storage on the servers. Your data will be lost, and the servers will be rebooted. ähnelt. + ///This will permanently delete and reinitialize all local storage on the servers. Your data will be lost, and the servers will be rebooted. If Active Directory is configured for pool '{0}', the servers will be removed from the domain. ähnelt. /// public static string MAINWINDOW_CONFIRM_REMOVE_FROM_POOL_MULTIPLE { get { @@ -22605,15 +23813,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Ctrl+S ähnelt. - /// - public static string MAINWINDOW_CTRL_S { - get { - return ResourceManager.GetString("MAINWINDOW_CTRL_S", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Ctrl+Y ähnelt. /// @@ -22741,7 +23940,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The [XenServer] license on '{0}' will expire in {1}. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The {0} license on '{1}' will expire in {2}. ähnelt. /// public static string MAINWINDOW_EXPIRE_MESSAGE { get { @@ -22750,7 +23949,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The [XenServer] license on '{0}' has expired. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The {0} license on '{1}' has expired. ähnelt. /// public static string MAINWINDOW_EXPIRE_MESSAGE_TOO_LATE { get { @@ -22858,7 +24057,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die &High Availability... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die &High Availability ähnelt. /// public static string MAINWINDOW_HIGH_AVAILABILITY { get { @@ -22867,7 +24066,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Inst&all [Citrix VM Tools]... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Inst&all {0}... ähnelt. /// public static string MAINWINDOW_INSTALL_TOOLS { get { @@ -23065,7 +24264,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remo&ve from [XenCenter] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Remo&ve from {0} ähnelt. /// public static string MAINWINDOW_REMOVE_HOST { get { @@ -23083,7 +24282,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remove Crash Dump &Files ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Remove Crash Dump Fi&les ähnelt. /// public static string MAINWINDOW_REMOVE_HOST_CRASHDUMPS_CONTEXT_MENU { get { @@ -23163,15 +24362,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Sa&ve and Restore... ähnelt. - /// - public static string MAINWINDOW_SAVE_AND_RESTORE { - get { - return ResourceManager.GetString("MAINWINDOW_SAVE_AND_RESTORE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Set as Defaul&t ähnelt. /// @@ -23379,6 +24569,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die v{0} &Release Notes ähnelt. + /// + public static string MAINWINDOW_UPDATE_RELEASE { + get { + return ResourceManager.GetString("MAINWINDOW_UPDATE_RELEASE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die XVA Files (*.xva)|*.xva|All Files (*.*)|*.* ähnelt. /// @@ -23478,15 +24677,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Master ähnelt. - /// - public static string MASTER { - get { - return ResourceManager.GetString("MASTER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Max ähnelt. /// @@ -23532,15 +24722,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] ähnelt. - /// - public static string MEMORY_XEN { - get { - return ResourceManager.GetString("MEMORY_XEN", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die &Export... ähnelt. /// @@ -23559,15 +24740,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: {1} ähnelt. - /// - public static string MESSAGE_ALERT_TITLE { - get { - return ResourceManager.GetString("MESSAGE_ALERT_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Activate Virtual Disk ähnelt. /// @@ -23614,7 +24786,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This will delete '{0}' permanently, destroying all data associated with it. Continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This will delete '{0}' permanently, making it unavailable to all resources in the pool and destroying all data associated with it. Do you want to continue? ähnelt. /// public static string MESSAGEBOX_DELETE_CUSTOM_FIELD { get { @@ -23908,6 +25080,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is not enabled on '{0}'. Would you like to enable it now? ähnelt. + /// + public static string MESSAGEBOX_ENABLE_TLS_VERIFICATION_BLURB { + get { + return ResourceManager.GetString("MESSAGEBOX_ENABLE_TLS_VERIFICATION_BLURB", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Yes, Enable certificate verification ähnelt. + /// + public static string MESSAGEBOX_ENABLE_TLS_VERIFICATION_BUTTON { + get { + return ResourceManager.GetString("MESSAGEBOX_ENABLE_TLS_VERIFICATION_BUTTON", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Before enabling certificate verification ensure that there are no operations running in the pool, otherwise they will be interrupted. ähnelt. + /// + public static string MESSAGEBOX_ENABLE_TLS_VERIFICATION_WARNING { + get { + return ResourceManager.GetString("MESSAGEBOX_ENABLE_TLS_VERIFICATION_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Unable to connect to server '{0}'. ///{1} @@ -24073,7 +25272,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The pool Master will become a standalone server, are you sure you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You cannot remove the coordinator from the pool. ähnelt. + /// + public static string MESSAGEBOX_POOL_COORDINATOR_REMOVE { + get { + return ResourceManager.GetString("MESSAGEBOX_POOL_COORDINATOR_REMOVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The pool Coordinator will become a standalone server, are you sure you want to continue? ähnelt. /// public static string MESSAGEBOX_POOL_DELETE { get { @@ -24082,11 +25290,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You cannot remove the master from the pool. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You must eject all other pool members from the pool before you can delete the pool. ähnelt. /// - public static string MESSAGEBOX_POOL_MASTER_REMOVE { + public static string MESSAGEBOX_POOL_MEMBERS_EJECT { get { - return ResourceManager.GetString("MESSAGEBOX_POOL_MASTER_REMOVE", resourceCulture); + return ResourceManager.GetString("MESSAGEBOX_POOL_MEMBERS_EJECT", resourceCulture); } } @@ -24102,7 +25310,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] - Error ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} - Error ähnelt. /// public static string MESSAGEBOX_PROGRAM_UNEXPECTED_TITLE { get { @@ -24111,7 +25319,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Unable to reconnect to {0} . Server is unavailable. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Unable to reconnect to {0}. Server is unavailable. ähnelt. /// public static string MESSAGEBOX_RECONNECT_FAIL { get { @@ -24192,15 +25400,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die You must eject all slaves from the pool before you can delete the pool. ähnelt. - /// - public static string MESSAGEBOX_SLAVES_EJECT { - get { - return ResourceManager.GetString("MESSAGEBOX_SLAVES_EJECT", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die This will delete the selected network interface permanently. Continue? ähnelt. /// @@ -24247,7 +25446,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This VM may not migrate at the moment ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die '{0}' may not migrate at the moment. Please ensure you have installed {1} on it ähnelt. /// public static string MIGRATION_NOT_ALLOWED { get { @@ -24256,7 +25455,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This VM may not migrate because the destination host does not have some of the CPU features that the VM is currently using ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die '{0}' may not migrate because the destination host does not have some of the CPU features that the VM is currently using ähnelt. /// public static string MIGRATION_NOT_ALLOWED_CPU_FEATURES { get { @@ -24265,7 +25464,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This VM may not migrate; it is not on shared storage ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die '{0}' may not migrate because it is not on shared storage ähnelt. /// public static string MIGRATION_NOT_ALLOWED_NO_SHARED_STORAGE { get { @@ -24274,7 +25473,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A VM may not migrate outside of its pool ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die '{0}' may not migrate outside its pool ähnelt. /// public static string MIGRATION_NOT_ALLOWED_OUTSIDE_POOL { get { @@ -24282,6 +25481,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die '{0}' may not migrate because it is on storage that doesn't support migration ähnelt. + /// + public static string MIGRATION_NOT_ALLOWED_USUPPORTED_SR { + get { + return ResourceManager.GetString("MIGRATION_NOT_ALLOWED_USUPPORTED_SR", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Min ähnelt. /// @@ -24336,15 +25544,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Moving {0} canceled ähnelt. - /// - public static string MOVE_CANCELLED { - get { - return ResourceManager.GetString("MOVE_CANCELLED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Move object '{0}' to folder '{1}'... ähnelt. /// @@ -24391,7 +25590,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Moved ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Move completed. ähnelt. /// public static string MOVED { get { @@ -24463,7 +25662,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die One or more paths to at least one of your storages has failed. Refer to the "[XenServer product] Administrator's Guide" for information about configuring storage multipathing. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die One or more paths to at least one of your storages has failed. Refer to the "{0} Administrator's Guide" for information about configuring storage multipathing. ähnelt. /// public static string MULTIPATH_FAILED { get { @@ -24554,15 +25753,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} {1} ähnelt. - /// - public static string NAME_WITH_LOCATION { - get { - return ResourceManager.GetString("NAME_WITH_LOCATION", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Select the SR to reattach or create a new SR ähnelt. /// @@ -24617,6 +25807,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Allowed VLAN range: {0} to {1} ähnelt. + /// + public static string NETW_DETAILS_VLAN_RANGE { + get { + return ResourceManager.GetString("NETW_DETAILS_VLAN_RANGE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Configure the new network ähnelt. /// @@ -24671,6 +25870,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die VLAN 0 will receive all traffic not on any other VLAN ähnelt. + /// + public static string NETW_VLAN_ZERO { + get { + return ResourceManager.GetString("NETW_VLAN_ZERO", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt. /// @@ -24779,6 +25987,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die currently in use by a different operation ähnelt. + /// + public static string NETWORK_LOCKED { + get { + return ResourceManager.GetString("NETWORK_LOCKED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Network {0} ähnelt. /// @@ -24789,7 +26006,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network Options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt. /// public static string NETWORK_OPTIONS { get { @@ -24953,7 +26170,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are reconfiguring the primary management interface. If the new settings are incorrect then [XenCenter] may permanently lose the connection to the server. + /// Sucht eine lokalisierte Zeichenfolge, die You are reconfiguring the primary management interface. If the new settings are incorrect then {0} may permanently lose the connection to the server. /// ///You should only proceed if you have verified that these settings are correct. ähnelt. /// @@ -24964,7 +26181,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are reconfiguring the primary management interface. If the new settings are incorrect then [XenCenter] may permanently lose the connection to the server, or pool members may be unable to contact each other. + /// Sucht eine lokalisierte Zeichenfolge, die You are reconfiguring the primary management interface. If the new settings are incorrect then {0} may permanently lose the connection to the server, or pool members may be unable to contact each other. /// ///You should only proceed if you have verified that these settings are correct. ähnelt. /// @@ -25073,6 +26290,17 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to create a new DVD drive on VM '{0}'? + /// + ///This action will create a new Virtual Block Device (VBD) that cannot be hot-unplugged. ähnelt. + /// + public static string NEW_DVD_DRIVE_CREATE_CONFIRMATION { + get { + return ResourceManager.GetString("NEW_DVD_DRIVE_CREATE_CONFIRMATION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Creating new DVD drive on VM {0} ähnelt. /// @@ -25082,6 +26310,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Yes, Create ähnelt. + /// + public static string NEW_DVD_DRIVE_CREATE_YES_BUTTON { + get { + return ResourceManager.GetString("NEW_DVD_DRIVE_CREATE_YES_BUTTON", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Creating new DVD drive ähnelt. /// @@ -25111,7 +26348,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die You must shut down and then restart the VM to finish the installation of the new DVD drive. - ///Once the VM has restarted click the Install [Citrix VM Tools] menu item once again. ähnelt. + ///Once the VM has restarted click the Install {0} menu item once again. ähnelt. /// public static string NEW_DVD_DRIVE_REBOOT_TOOLS { get { @@ -25120,7 +26357,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The VM you want to install [Citrix VM Tools] onto has no DVD drive, would you like to create one? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The VM you want to install {0} onto has no DVD drive, would you like to create one? ähnelt. /// public static string NEW_DVD_DRIVE_REQUIRED { get { @@ -25129,7 +26366,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die At least one of the VMs you want to install [Citrix VM Tools] onto has no DVD drive. Would you like to create a new DVD drive for each of the VMs that requires one? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die At least one of the VMs you want to install {0} onto has no DVD drive. Would you like to create a new DVD drive for each of the VMs that requires one? ähnelt. /// public static string NEW_DVD_DRIVES_REQUIRED { get { @@ -25183,7 +26420,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the server '{0}' to a pool with a master that is configured to use AD authentication. All pool members must use the same authentication method. + /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the server '{0}' to a pool with a coordinator that is configured to use AD authentication. All pool members must use the same authentication method. /// ///Do you want to enable AD authentication on your server and join it to the same domain as the pool? ähnelt. /// @@ -25194,7 +26431,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the following servers to a pool with a master that is configured to use AD authentication: + /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the following servers to a pool with a coordinator that is configured to use AD authentication: /// ///{0} /// @@ -25207,9 +26444,18 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the server '{0}' to a pool with a master that is using an older CPU. + /// Sucht eine lokalisierte Zeichenfolge, die Clustering is enabled on this server. ähnelt. + /// + public static string NEW_POOL_CLUSTERING_ENABLED { + get { + return ResourceManager.GetString("NEW_POOL_CLUSTERING_ENABLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the server '{0}' to a pool with a coordinator that is using an older CPU. /// - ///[XenServer] can continue by rebooting the server and reducing its CPU to the level of the master. This will shut down any VMs running on the server. This feature is supported for CPU combinations listed in the [XenServer] Hardware Compatibility List. + ///{1} can continue by rebooting the server and reducing its CPU to the level of the coordinator. This will shut down any VMs running on the server. This feature is supported for CPU combinations listed in the {1} Hardware Compatibility List. /// ///Do you want to do this? ähnelt. /// @@ -25220,11 +26466,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the following servers to a pool with a master that is using an older CPU: + /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the following servers to a pool with a coordinator that is using an older CPU: /// ///{0} /// - ///[XenServer] can continue by rebooting the servers and reducing their CPUs to the level of the master. This will shut down any VMs running on the servers. This feature is supported for CPU combinations listed in the [XenServer] Hardware Compatibility List. + ///{1} can continue by rebooting the servers and reducing their CPUs to the level of the coordinator. This will shut down any VMs running on the servers. This feature is supported for CPU combinations listed in the {1} Hardware Compatibility List. /// ///Do you want to do this? ähnelt. /// @@ -25237,7 +26483,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die You are attempting to add the server '{0}' to a licensed pool. /// - ///Do you want to apply the licensing from the master to this server? ähnelt. + ///Do you want to apply the licensing from the coordinator to this server? ähnelt. /// public static string NEW_POOL_LICENSE_MESSAGE { get { @@ -25250,7 +26496,7 @@ namespace XenAdmin { /// ///{0} /// - ///Do you want to apply the licensing from the master to these servers? ähnelt. + ///Do you want to apply the licensing from the coordinator to these servers? ähnelt. /// public static string NEW_POOL_LICENSE_MESSAGE_MULTIPLE { get { @@ -25367,7 +26613,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter &name for new template: ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a &name for the new template: ähnelt. /// public static string NEW_TEMPLATE_PROMPT { get { @@ -25501,15 +26747,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die New [XenCenter] version required ähnelt. - /// - public static string NEW_XENCENTER_REQUIRED_INFO { - get { - return ResourceManager.GetString("NEW_XENCENTER_REQUIRED_INFO", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die You need to shut down and then restart the VM before it can access the new disk. ähnelt. /// @@ -25520,7 +26757,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die There is a newer version of [XenCenter] available. Please contact your support representative. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die There is a newer version of {0} available. Please contact your support representative. ähnelt. /// public static string NEWER_GUI_AVAILABLE { get { @@ -25556,7 +26793,34 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server's hardware is incompatible with the master's ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The coordinator is still connecting ähnelt. + /// + public static string NEWPOOL_COORDINATOR_CONNECTING { + get { + return ResourceManager.GetString("NEWPOOL_COORDINATOR_CONNECTING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The coordinator is disconnected ähnelt. + /// + public static string NEWPOOL_COORDINATOR_DISCONNECTED { + get { + return ResourceManager.GetString("NEWPOOL_COORDINATOR_DISCONNECTED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your current role on the coordinator is not authorized to add hosts to the coordinator's pool ähnelt. + /// + public static string NEWPOOL_COORDINATOR_ROLE { + get { + return ResourceManager.GetString("NEWPOOL_COORDINATOR_ROLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This server's hardware is incompatible with the coordinator's ähnelt. /// public static string NEWPOOL_DIFF_HARDWARE { get { @@ -25565,7 +26829,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server is a different version to the master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server is a different version to the coordinator ähnelt. /// public static string NEWPOOL_DIFF_SERVER { get { @@ -25574,11 +26838,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server has different updates from the master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server has different updates from the coordinator ähnelt. /// - public static string NEWPOOL_DIFFERENT_HOMOGENEOUS_UPDATES_FROM_MASTER { + public static string NEWPOOL_DIFFERENT_HOMOGENEOUS_UPDATES_FROM_COORDINATOR { get { - return ResourceManager.GetString("NEWPOOL_DIFFERENT_HOMOGENEOUS_UPDATES_FROM_MASTER", resourceCulture); + return ResourceManager.GetString("NEWPOOL_DIFFERENT_HOMOGENEOUS_UPDATES_FROM_COORDINATOR", resourceCulture); } } @@ -25592,7 +26856,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server's network backend is different from the master's ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server's network backend is different from the coordinator's ähnelt. /// public static string NEWPOOL_DIFFERENT_NETWORK_BACKENDS { get { @@ -25601,7 +26865,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server has a different Active Directory configuration to the master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server has a different Active Directory configuration to the coordinator ähnelt. /// public static string NEWPOOL_DIFFERING_AD_CONFIG { get { @@ -25646,7 +26910,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server is master of an existing pool ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server is coordinator of an existing pool ähnelt. /// public static string NEWPOOL_IS_A_POOL { get { @@ -25657,14 +26921,14 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die You cannot add a licensed server to an unlicensed pool ähnelt. /// - public static string NEWPOOL_LICENSED_HOST_UNLICENSED_MASTER { + public static string NEWPOOL_LICENSED_HOST_UNLICENSED_COORDINATOR { get { - return ResourceManager.GetString("NEWPOOL_LICENSED_HOST_UNLICENSED_MASTER", resourceCulture); + return ResourceManager.GetString("NEWPOOL_LICENSED_HOST_UNLICENSED_COORDINATOR", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server does not have the same license as the pool master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server does not have the same license as the pool coordinator ähnelt. /// public static string NEWPOOL_LICENSEMISMATCH { get { @@ -25673,7 +26937,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server's Linux pack installation state differs from that of the master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server's Linux pack installation state differs from that of the coordinator ähnelt. /// public static string NEWPOOL_LINUXPACK { get { @@ -25682,34 +26946,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The master is still connecting ähnelt. - /// - public static string NEWPOOL_MASTER_CONNECTING { - get { - return ResourceManager.GetString("NEWPOOL_MASTER_CONNECTING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die The master is disconnected ähnelt. - /// - public static string NEWPOOL_MASTER_DISCONNECTED { - get { - return ResourceManager.GetString("NEWPOOL_MASTER_DISCONNECTED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Your current role on the master is not authorized to add hosts to the master's pool ähnelt. - /// - public static string NEWPOOL_MASTER_ROLE { - get { - return ResourceManager.GetString("NEWPOOL_MASTER_ROLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die The pool has already reached the maximum number of servers allowed by your license ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The pool has already reached the maximum number of servers allowed by your license. Go to {0} to purchase licenses ähnelt. /// public static string NEWPOOL_MAX_NUMBER_HOST_REACHED { get { @@ -25727,25 +26964,25 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Your current role on the slave is not authorized to add the slave to a pool ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Your current role on this server is not authorized to add it to a pool ähnelt. /// - public static string NEWPOOL_SLAVE_ROLE { + public static string NEWPOOL_SUPPORTER_ROLE { get { - return ResourceManager.GetString("NEWPOOL_SLAVE_ROLE", resourceCulture); + return ResourceManager.GetString("NEWPOOL_SUPPORTER_ROLE", resourceCulture); } } /// /// Sucht eine lokalisierte Zeichenfolge, die You cannot add an unlicensed server to a licensed pool ähnelt. /// - public static string NEWPOOL_UNLICENSED_HOST_LICENSED_MASTER { + public static string NEWPOOL_UNLICENSED_HOST_LICENSED_COORDINATOR { get { - return ResourceManager.GetString("NEWPOOL_UNLICENSED_HOST_LICENSED_MASTER", resourceCulture); + return ResourceManager.GetString("NEWPOOL_UNLICENSED_HOST_LICENSED_COORDINATOR", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die The pool will exceed the maximum number of servers allowed by your license ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The pool will exceed the maximum number of servers allowed by your license. Go to {0} to purchase licenses ähnelt. /// public static string NEWPOOL_WILL_EXCEED_POOL_MAX_SIZE { get { @@ -25812,7 +27049,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SMB/CIFS ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die SMB ähnelt. /// public static string NEWSR_CIFS_TYPE_NAME { get { @@ -25820,168 +27057,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the storage system adapter ähnelt. - /// - public static string NEWSR_CSLG_ADAPTER_PAGE_TITLE { - get { - return ResourceManager.GetString("NEWSR_CSLG_ADAPTER_PAGE_TITLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Auto ähnelt. - /// - public static string NEWSR_CSLG_AUTO { - get { - return ResourceManager.GetString("NEWSR_CSLG_AUTO", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die StorageLink technology is used to connect to any of the leading storage architectures and protocols, including DAS, NAS, SAN, iSCSI and Fibre Channel. ähnelt. - /// - public static string NEWSR_CSLG_BLURB { - get { - return ResourceManager.GetString("NEWSR_CSLG_BLURB", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Deduplication ähnelt. - /// - public static string NEWSR_CSLG_DEDUPLICATION { - get { - return ResourceManager.GetString("NEWSR_CSLG_DEDUPLICATION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt. - /// - public static string NEWSR_CSLG_DEFAULT_PROVISIONING { - get { - return ResourceManager.GetString("NEWSR_CSLG_DEFAULT_PROVISIONING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Fibre Channel ähnelt. - /// - public static string NEWSR_CSLG_FC { - get { - return ResourceManager.GetString("NEWSR_CSLG_FC", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die iSCSI ähnelt. - /// - public static string NEWSR_CSLG_ISCSI { - get { - return ResourceManager.GetString("NEWSR_CSLG_ISCSI", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die None ähnelt. - /// - public static string NEWSR_CSLG_NONE { - get { - return ResourceManager.GetString("NEWSR_CSLG_NONE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the storage system for your storage repository ähnelt. - /// - public static string NEWSR_CSLG_PAGE_TITLE { - get { - return ResourceManager.GetString("NEWSR_CSLG_PAGE_TITLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the storage repository settings for use with the provisioning of new storage volumes ähnelt. - /// - public static string NEWSR_CSLG_SETTINGS_PAGE_TITLE { - get { - return ResourceManager.GetString("NEWSR_CSLG_SETTINGS_PAGE_TITLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Thick ähnelt. - /// - public static string NEWSR_CSLG_THICK_PROVISIONING { - get { - return ResourceManager.GetString("NEWSR_CSLG_THICK_PROVISIONING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Thin ähnelt. - /// - public static string NEWSR_CSLG_THIN_PROVISIONING { - get { - return ResourceManager.GetString("NEWSR_CSLG_THIN_PROVISIONING", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die StorageLink technology ähnelt. - /// - public static string NEWSR_CSLG_TYPE_NAME { - get { - return ResourceManager.GetString("NEWSR_CSLG_TYPE_NAME", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Dell EqualLogic is a scalable form of high performance network attached storage, which supports the addition of capacity without downtime. You can use Dell EqualLogic shared storage to support [XenServer] features such as Live Migration and High Availability. ähnelt. - /// - public static string NEWSR_EQUAL_LOGIC_BLURB { - get { - return ResourceManager.GetString("NEWSR_EQUAL_LOGIC_BLURB", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Dell EqualLogic SR [{0} ({1})] ähnelt. - /// - public static string NEWSR_EQUAL_LOGIC_DESCRIPTION { - get { - return ResourceManager.GetString("NEWSR_EQUAL_LOGIC_DESCRIPTION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Dell EqualLogic filer &address: ähnelt. - /// - public static string NEWSR_EQUAL_LOGIC_FILER_ADDRESS { - get { - return ResourceManager.GetString("NEWSR_EQUAL_LOGIC_FILER_ADDRESS", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die EqualLogic Filer Details ähnelt. - /// - public static string NEWSR_EQUAL_LOGIC_FILER_DETAILS_TEXT { - get { - return ResourceManager.GetString("NEWSR_EQUAL_LOGIC_FILER_DETAILS_TEXT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter the Dell EqualLogic filer details ähnelt. - /// - public static string NEWSR_EQUAL_LOGIC_FILER_PAGE_TITLE { - get { - return ResourceManager.GetString("NEWSR_EQUAL_LOGIC_FILER_PAGE_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Software FCoE virtual disk storage ähnelt. /// @@ -26009,17 +27084,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Creating a new virtual disk on this LUN will destroy any data present. You must ensure that no other system is using the LUN, including any servers, or the virtual disk may become corrupted while in use. - /// - ///Do you want to format the disk? ähnelt. - /// - public static string NEWSR_ISCSI_FORMAT_WARNING { - get { - return ResourceManager.GetString("NEWSR_ISCSI_FORMAT_WARNING", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die NFS ISO Library [{0}] ähnelt. /// @@ -26093,11 +27157,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] hosts support Software based Fibre Channel over Ethernet using supported Converged Network Adapters (CNAs) which support FCoE in this way. + /// Sucht eine lokalisierte Zeichenfolge, die {0} hosts support Software based Fibre Channel over Ethernet using supported Converged Network Adapters (CNAs) which support FCoE in this way. /// ///All configuration required to expose a LUN to the host must be completed manually, including configuring your FCoE fabric, and allocating LUN(s) to your CNA’s public world wide name (PWWN). /// - ///Once this configuration has been carried out, this wizard will walk you through discovering and mounting a LUN available to the hosts CNA’s as a SCSI device. The SC [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + ///Once this configuration has been carried out, this wizard will walk you through discovering and mounting a LUN available to the hosts CNA’s as a SCSI device. The SCSI devic [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. /// public static string NEWSR_LVMOFCOE_BLURB { get { @@ -26124,11 +27188,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] hosts support Fibre Channel (FC), Fibre Channel over Ethernet (FCoE) and shared Serial Attached SCSI (SAS) storage area networks (SANs) using host bus adapters (HBAs). + /// Sucht eine lokalisierte Zeichenfolge, die {0} hosts support Fibre Channel (FC), Fibre Channel over Ethernet (FCoE) and shared Serial Attached SCSI (SAS) storage area networks (SANs) using host bus adapters (HBAs). /// - ///All configuration required to expose a LUN to the host must be completed manually, including storage devices, network devices, and the HBA within the [XenServer] host. + ///All configuration required to expose a LUN to the host must be completed manually, including storage devices, network devices, and the HBA within the {0} host. /// - ///Once all configuration is complete the HBA will expose a SCSI device backed by the LUN to the host. The SCSI device can then be used to access the LUN as if i [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + ///Once all configuration is complete the HBA will expose a SCSI device backed by the LUN to the host. The SCSI device can then be used to access the LUN as if it were a locally [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. /// public static string NEWSR_LVMOHBA_BLURB { get { @@ -26254,9 +27318,9 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Warning: you must ensure that the following SR is not in use by any server not connected to [XenCenter]. Failure to do so may result in data loss. + /// Sucht eine lokalisierte Zeichenfolge, die Warning: you must ensure that the following SR is not in use by any server not connected to {0}. Failure to do so may result in data loss. /// - ///SR: {0} + ///SR: {1} /// ///Do you want to reattach the SR? ähnelt. /// @@ -26284,64 +27348,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die If you have access to a Network Appliance (NetApp) filer with sufficient disk space, running a version of Data ONTAP 7G (version 7.2 or greater), you can configure a custom NetApp Storage Repository. - /// - ///The driver uses the XAPI interface to the filer to create a group of FlexVols which correspond to an SR. VDIs are created as virtual LUNs on the filer, and attached to the host using an iSCSI data path. - /// - ///VM cloning uses the snapshot and clone capabilities of the filer to provide high performance and to e [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. - /// - public static string NEWSR_NETAPP_BLURB { - get { - return ResourceManager.GetString("NEWSR_NETAPP_BLURB", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die This aggregate does not support FAS deduplication ähnelt. - /// - public static string NEWSR_NETAPP_DEDUP_UNAVAILABLE { - get { - return ResourceManager.GetString("NEWSR_NETAPP_DEDUP_UNAVAILABLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die NetApp SR [{0} ({1})] ähnelt. - /// - public static string NEWSR_NETAPP_DESCRIPTION { - get { - return ResourceManager.GetString("NEWSR_NETAPP_DESCRIPTION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die NetApp filer &address: ähnelt. - /// - public static string NEWSR_NETAPP_FILER_ADDRESS { - get { - return ResourceManager.GetString("NEWSR_NETAPP_FILER_ADDRESS", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die NetApp Filer Details ähnelt. - /// - public static string NEWSR_NETAPP_FILER_DETAILS_TEXT { - get { - return ResourceManager.GetString("NEWSR_NETAPP_FILER_DETAILS_TEXT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter the NetApp filer details ähnelt. - /// - public static string NEWSR_NETAPP_FILER_PAGE_TITLE { - get { - return ResourceManager.GetString("NEWSR_NETAPP_FILER_PAGE_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Select this option if you have a library of VM installation ISO images available as a NFS share that you want to attach to your host or pool. ähnelt. /// @@ -26707,28 +27713,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The amount of memory allocated to the new VM is greater than the amount of physical memory on any server in the pool. - /// - ///Server '{0}' has {1} of physical memory in total. - /// - ///You will not be able to start this VM without increasing the amount of physical memory on one of the servers in the pool. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The amount of memory allocated to the new VM is greater than the amount of physical memory available on any server in the pool ({0}). ähnelt. /// - public static string NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN1 { + public static string NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN_FREE { get { - return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN1", resourceCulture); + return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN_FREE", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die The amount of memory allocated to the new VM is greater than the amount of physical memory available on any server in the pool. - /// - ///Server '{0}' has {1} of physical memory available. - /// - ///You will not be able to start this VM without freeing some space on one of the servers. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The amount of memory allocated to the new VM is greater than the amount of physical memory on any server in the pool ({0}). ähnelt. /// - public static string NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN2 { + public static string NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN_TOTAL { get { - return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN2", resourceCulture); + return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_MEMORYWARN_TOTAL", resourceCulture); } } @@ -26742,7 +27740,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Specify the number of virtual CPUs, their topology, and the amount of memory that will be allocated to the new virtual machine. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Specify the number of vCPUs, their topology, and the amount of memory that will be allocated to the new virtual machine. ähnelt. /// public static string NEWVMWIZARD_CPUMEMPAGE_RUBRIC { get { @@ -26778,26 +27776,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The number of vCPUs given to the new VM is greater than the number of physical CPUs on any server in the pool. - /// - ///Server '{0}' has {1} physical CPUs. - /// - ///Performance of this VM will be greatly reduced if it is started with this many vCPUs. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You have specified {0} vCPUs, but none of the pool servers have more than {1} physical CPUs. You will not be able to start the VM. ähnelt. /// - public static string NEWVMWIZARD_CPUMEMPAGE_VCPUSWARN { + public static string NEWVMWIZARD_CPUMEMPAGE_VCPUSWARN_POOL { get { - return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_VCPUSWARN", resourceCulture); + return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_VCPUSWARN_POOL", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die All the necessary information has been collected and the wizard is ready to provision the new virtual machine using the settings shown below. - /// - ///Review these settings, then click Previous if you need to change anything. Otherwise, click Create Now to create the new VM. It may take several minutes to create the new VM. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You have specified {0} vCPUs, but the server has only {1} physical CPUs. You will not be able to start the VM. ähnelt. /// - public static string NEWVMWIZARD_FINISHPAGE { + public static string NEWVMWIZARD_CPUMEMPAGE_VCPUSWARN_STANDALONE_HOST { get { - return ResourceManager.GetString("NEWVMWIZARD_FINISHPAGE", resourceCulture); + return ResourceManager.GetString("NEWVMWIZARD_CPUMEMPAGE_VCPUSWARN_STANDALONE_HOST", resourceCulture); } } @@ -27090,7 +28082,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die VMs without a home server cannot have disks on the default SR '{0}'. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The default SR '{0}' cannot be seen from the VM's home server. ähnelt. /// public static string NEWVMWIZARD_STORAGEPAGE_DEFAULT_LOCAL { get { @@ -27098,6 +28090,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die VMs without a home server cannot have disks on the default SR '{0}'. ähnelt. + /// + public static string NEWVMWIZARD_STORAGEPAGE_DEFAULT_LOCAL_NO_HOME { + get { + return ResourceManager.GetString("NEWVMWIZARD_STORAGEPAGE_DEFAULT_LOCAL_NO_HOME", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The default SR '{0}' does not have enough free space for the new VM's disks. ähnelt. /// @@ -27153,7 +28154,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die VMs without a home server cannot have disks on the SR suggested by the template ('{0}'). ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The SR suggested by the template ('{0}') cannot be seen from the VM's home server. ähnelt. /// public static string NEWVMWIZARD_STORAGEPAGE_SUGGESTED_LOCAL { get { @@ -27161,6 +28162,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die VMs without a home server cannot have disks on the SR suggested by the template ('{0}'). ähnelt. + /// + public static string NEWVMWIZARD_STORAGEPAGE_SUGGESTED_LOCAL_NO_HOME { + get { + return ResourceManager.GetString("NEWVMWIZARD_STORAGEPAGE_SUGGESTED_LOCAL_NO_HOME", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The SR suggested by the template ('{0}') does not have enough free space for the new VM's disks. ähnelt. /// @@ -27180,16 +28190,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} {1} ähnelt. - /// - public static string NEWVMWIZARD_STORAGEPAGE_VDINAME { - get { - return ResourceManager.GetString("NEWVMWIZARD_STORAGEPAGE_VDINAME", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] has selected a different SR for you. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} has selected a different SR for you. ähnelt. /// public static string NEWVMWIZARD_STORAGEPAGE_XC_SELECTION { get { @@ -27206,15 +28207,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix] ähnelt. - /// - public static string NEWVMWIZARD_TEMPLATEPAGE_CITRIX { - get { - return ResourceManager.GetString("NEWVMWIZARD_TEMPLATEPAGE_CITRIX", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die CoreOS ähnelt. /// @@ -27242,6 +28234,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Gooroom ähnelt. + /// + public static string NEWVMWIZARD_TEMPLATEPAGE_GOOROOM { + get { + return ResourceManager.GetString("NEWVMWIZARD_TEMPLATEPAGE_GOOROOM", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Linx ähnelt. /// @@ -27296,6 +28297,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Rocky ähnelt. + /// + public static string NEWVMWIZARD_TEMPLATEPAGE_ROCKY { + get { + return ResourceManager.GetString("NEWVMWIZARD_TEMPLATEPAGE_ROCKY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Scientific Linux ähnelt. /// @@ -27387,7 +28397,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This pool is only licensed for [Citrix] Virtual Apps and Desktops workloads ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This pool is only licensed for {0} Virtual Apps and Desktops workloads ähnelt. /// public static string NEWVMWIZARD_XENAPP_XENDESKTOP_INFO_MESSAGE_POOL { get { @@ -27396,7 +28406,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server is only licensed for [Citrix] Virtual Apps and Desktops workloads ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server is only licensed for {0} Virtual Apps and Desktops workloads ähnelt. /// public static string NEWVMWIZARD_XENAPP_XENDESKTOP_INFO_MESSAGE_SERVER { get { @@ -27440,6 +28450,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} (Bonded member) ähnelt. + /// + public static string NIC_BONDED_MEMBER { + get { + return ResourceManager.GetString("NIC_BONDED_MEMBER", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0} (Hidden) ähnelt. /// @@ -27449,15 +28468,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} (Slave) ähnelt. - /// - public static string NIC_SLAVE { - get { - return ResourceManager.GetString("NIC_SLAVE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Network Interface Cards ähnelt. /// @@ -27540,16 +28550,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die There is no server eligible to become the master of your new pool ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die There is no server eligible to become the coordinator of your new pool ähnelt. /// - public static string NO_ELIGIBLE_MASTER { + public static string NO_ELIGIBLE_COORDINATOR { get { - return ResourceManager.GetString("NO_ELIGIBLE_MASTER", resourceCulture); + return ResourceManager.GetString("NO_ELIGIBLE_COORDINATOR", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die GPU configuration and monitoring is disabled, because there are no GPUs available in this pool. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die GPU configuration and monitoring are disabled, because there are no GPUs available in this pool. ähnelt. /// public static string NO_GPU_IN_POOL { get { @@ -27558,7 +28568,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die GPU configuration and monitoring is disabled, because there are no GPUs available on this host. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die GPU configuration and monitoring are disabled, because there are no GPUs available on this host. ähnelt. /// public static string NO_GPU_ON_HOST { get { @@ -27710,6 +28720,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die None ähnelt. + /// + public static string NONE_UPPER { + get { + return ResourceManager.GetString("NONE_UPPER", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The VM is not using a shared network. Restart cannot be guaranteed. ähnelt. /// @@ -27782,6 +28801,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Not configured ähnelt. + /// + public static string NOT_CONFIGURED { + get { + return ResourceManager.GetString("NOT_CONFIGURED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die not contained in ähnelt. /// @@ -27855,7 +28883,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] can free up {0} by removing residual update files. Do you want to proceed with the cleanup? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} can free up {1} by removing residual update files. Do you want to proceed with the cleanup? ähnelt. /// public static string NOT_ENOUGH_SPACE_MESSAGE_CLEANUP { get { @@ -27909,46 +28937,146 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die VMs on local disk will prevent disk repartitioning. - /// - ///A new disk partitioning scheme is available in [XenServer] {0} and above that includes larger dom0 and backup partitions, and dedicated partitions for logging, swap and UEFI. - /// - ///However, there are VMs on local storage, so the current partitioning scheme will be retained. To benefit from repartitioning on upgrade to [XenServer] {0} or above, VMs must be moved from local storage first. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Disk repartitioning is not possible. ähnelt. /// - public static string NOT_SAFE_TO_UPGRADE_DEFAULT_WARNING_LONG { + public static string NOT_SAFE_TO_UPGRADE_DEFAULT { get { - return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_DEFAULT_WARNING_LONG", resourceCulture); + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_DEFAULT", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: VMs on local disk will prevent disk repartitioning. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die However, the new partitioning scheme cannot be applied on your server. This could be because there are VMs on local storage, the partition table type is DOS or there is a utility partition present. To upgrade to {0}, you must identify and resolve the issue first. ähnelt. /// - public static string NOT_SAFE_TO_UPGRADE_DEFAULT_WARNING_SHORT { + public static string NOT_SAFE_TO_UPGRADE_DEFAULT_PROBLEM { get { - return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_DEFAULT_WARNING_SHORT", resourceCulture); + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_DEFAULT_PROBLEM", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die The disk size of the local storage prevents repartitioning. - /// - ///A new disk partitioning scheme is available in [XenServer] {0} and above that includes larger dom0 and backup partitions, and dedicated partitions for logging, swap and UEFI. - /// - ///However, there is not enough space to perform the repartitioning, so the current partitioning scheme will be retained. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die However, the new partitioning scheme cannot be applied on your server. This could be because there are VMs on local storage, the partition table type is DOS or there is a utility partition present. To upgrade to {0} or above, or to benefit from repartitioning on upgrade to a version older than {0}, you must identify and resolve the issue first. ähnelt. /// - public static string NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_LONG { + public static string NOT_SAFE_TO_UPGRADE_DEFAULT_WARNING { get { - return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_LONG", resourceCulture); + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_DEFAULT_WARNING", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: The disk size of the local storage prevents repartitioning. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The partition table type prevents repartitioning. ähnelt. /// - public static string NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_SHORT { + public static string NOT_SAFE_TO_UPGRADE_LEGACY_PARTITION_TABLE { get { - return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_SHORT", resourceCulture); + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_LEGACY_PARTITION_TABLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, the partition table type on your server is DOS, which prevents repartitioning. The current partitioning scheme cannot be retained. Therefore the server cannot be upgraded to {0}. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_LEGACY_PARTITION_TABLE_PROBLEM { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_LEGACY_PARTITION_TABLE_PROBLEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, the partition table type on your server is DOS, which prevents repartitioning. The current partitioning scheme cannot be retained if you upgrade to {0} or above, so an upgrade to {0} or above is not possible. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_LEGACY_PARTITION_TABLE_WARNING { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_LEGACY_PARTITION_TABLE_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die As of {0} the current partitioning scheme is no longer supported. A new disk partitioning scheme is available that includes larger dom0 and backup partitions, and dedicated partitions for logging, swap and UEFI. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_NEW_PARTITION_INFO { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_NEW_PARTITION_INFO", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The disk size of the local storage prevents repartitioning. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, there is not enough space to perform the repartitioning. To upgrade to {0}, the size of the local storage needs to be increased first. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_PROBLEM { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_PROBLEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, there is not enough space to perform the repartitioning. The current partitioning scheme cannot be retained if you upgrade to {0} or above, so the size of the local storage needs to be increased first. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_WARNING { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_NOT_ENOUGH_SPACE_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A utility partition prevents repartitioning. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_UTILITY_PARTITION { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_UTILITY_PARTITION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, there is a utility partition present which prevents repartitioning. To upgrade to {0}, the utility partition must be removed. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_UTILITY_PARTITION_PROBLEM { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_UTILITY_PARTITION_PROBLEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, there is a utility partition present which prevents repartitioning. The current partitioning scheme cannot be retained if you upgrade to {0} or above, so the existing utility partition must be removed first. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_UTILITY_PARTITION_WARNING { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_UTILITY_PARTITION_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die VMs on local disk will prevent disk repartitioning. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_VDI_PRESENT { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_VDI_PRESENT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, there are VMs on local storage, so the new disk partitioning can not be applied. To upgrade to {0} or above, VMs must be moved from local storage first. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_VDI_PRESENT_PROBLEM { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_VDI_PRESENT_PROBLEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die However, there are VMs on local storage, so the new partitioning scheme cannot be applied. To upgrade to {0} or above, or to benefit from repartitioning on upgrade to a version older than {0}, VMs must be moved from local storage first. ähnelt. + /// + public static string NOT_SAFE_TO_UPGRADE_VDI_PRESENT_WARNING { + get { + return ResourceManager.GetString("NOT_SAFE_TO_UPGRADE_VDI_PRESENT_WARNING", resourceCulture); } } @@ -28096,6 +29224,294 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die NRPE ähnelt. + /// + public static string NRPE { + get { + return ResourceManager.GetString("NRPE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Changing NRPE configuration ähnelt. + /// + public static string NRPE_ACTION_CHANGING { + get { + return ResourceManager.GetString("NRPE_ACTION_CHANGING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Retrieving NRPE configuration ähnelt. + /// + public static string NRPE_ACTION_RETRIEVING { + get { + return ResourceManager.GetString("NRPE_ACTION_RETRIEVING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die NRPE service is active ähnelt. + /// + public static string NRPE_ACTIVE { + get { + return ResourceManager.GetString("NRPE_ACTIVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Monitoring servers should not be empty. ähnelt. + /// + public static string NRPE_ALLOW_HOSTS_EMPTY_ERROR { + get { + return ResourceManager.GetString("NRPE_ALLOW_HOSTS_EMPTY_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Monitoring servers format is not correct ähnelt. + /// + public static string NRPE_ALLOW_HOSTS_ERROR_TITLE { + get { + return ResourceManager.GetString("NRPE_ALLOW_HOSTS_ERROR_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Monitoring servers should be comma separated IP address or domain list, e.g. 192.168.1.1, test.domain.com ähnelt. + /// + public static string NRPE_ALLOW_HOSTS_FORMAT_ERROR { + get { + return ResourceManager.GetString("NRPE_ALLOW_HOSTS_FORMAT_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Comma separated IP address or domain list, e.g. 192.168.1.1, test.domain.com ähnelt. + /// + public static string NRPE_ALLOW_HOSTS_PLACE_HOLDER { + get { + return ResourceManager.GetString("NRPE_ALLOW_HOSTS_PLACE_HOLDER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Please remove duplicate addresses ähnelt. + /// + public static string NRPE_ALLOW_HOSTS_SAME_ADDRESS { + get { + return ResourceManager.GetString("NRPE_ALLOW_HOSTS_SAME_ADDRESS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die NRPE batch configuration ähnelt. + /// + public static string NRPE_BATCH_CONFIGURATION { + get { + return ResourceManager.GetString("NRPE_BATCH_CONFIGURATION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Dom0 CPU Usage (%) ähnelt. + /// + public static string NRPE_CHECK_CPU { + get { + return ResourceManager.GetString("NRPE_CHECK_CPU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Dom0 Log Partition Free Space (%) ähnelt. + /// + public static string NRPE_CHECK_DISK_LOG { + get { + return ResourceManager.GetString("NRPE_CHECK_DISK_LOG", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Dom0 Root Partition Free Space (%) ähnelt. + /// + public static string NRPE_CHECK_DISK_ROOT { + get { + return ResourceManager.GetString("NRPE_CHECK_DISK_ROOT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Host CPU Usage (%) ähnelt. + /// + public static string NRPE_CHECK_HOST_CPU { + get { + return ResourceManager.GetString("NRPE_CHECK_HOST_CPU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Host CPU Load ähnelt. + /// + public static string NRPE_CHECK_HOST_LOAD { + get { + return ResourceManager.GetString("NRPE_CHECK_HOST_LOAD", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Host Memory Usage (%) ähnelt. + /// + public static string NRPE_CHECK_HOST_MEMORY { + get { + return ResourceManager.GetString("NRPE_CHECK_HOST_MEMORY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Dom0 CPU Load ähnelt. + /// + public static string NRPE_CHECK_LOAD { + get { + return ResourceManager.GetString("NRPE_CHECK_LOAD", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Dom0 Memory Usage (%) ähnelt. + /// + public static string NRPE_CHECK_MEMORY { + get { + return ResourceManager.GetString("NRPE_CHECK_MEMORY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Dom0 Free Swap (%) ähnelt. + /// + public static string NRPE_CHECK_SWAP { + get { + return ResourceManager.GetString("NRPE_CHECK_SWAP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Host vGPU Usage (%) ähnelt. + /// + public static string NRPE_CHECK_VGPU { + get { + return ResourceManager.GetString("NRPE_CHECK_VGPU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Host vGPU Memory Usage (%) ähnelt. + /// + public static string NRPE_CHECK_VGPU_MEMORY { + get { + return ResourceManager.GetString("NRPE_CHECK_VGPU_MEMORY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die NRPE Configuration ähnelt. + /// + public static string NRPE_EDIT_PAGE_TEXT { + get { + return ResourceManager.GetString("NRPE_EDIT_PAGE_TEXT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die NRPE service is inactive ähnelt. + /// + public static string NRPE_INACTIVE { + get { + return ResourceManager.GetString("NRPE_INACTIVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die NRPE check name: {0} ähnelt. + /// + public static string NRPE_METRIC_TOOLTIP { + get { + return ResourceManager.GetString("NRPE_METRIC_TOOLTIP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Failed to retrieve NRPE configuration, please check the application logs. ähnelt. + /// + public static string NRPE_RETRIEVE_FAILED { + get { + return ResourceManager.GetString("NRPE_RETRIEVE_FAILED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Retrieving NRPE configuration... ähnelt. + /// + public static string NRPE_RETRIEVING_CONFIGURATION { + get { + return ResourceManager.GetString("NRPE_RETRIEVING_CONFIGURATION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Threshold value should range from {0} to {1}. ähnelt. + /// + public static string NRPE_THRESHOLD_RANGE_ERROR { + get { + return ResourceManager.GetString("NRPE_THRESHOLD_RANGE_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Threshold value should consist of 3 comma separated numbers. ähnelt. + /// + public static string NRPE_THRESHOLD_SHOULD_BE_3_NUMBERS { + get { + return ResourceManager.GetString("NRPE_THRESHOLD_SHOULD_BE_3_NUMBERS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Threshold value should be a number. ähnelt. + /// + public static string NRPE_THRESHOLD_SHOULD_BE_NUMBER { + get { + return ResourceManager.GetString("NRPE_THRESHOLD_SHOULD_BE_NUMBER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Threshold value should not be empty. ähnelt. + /// + public static string NRPE_THRESHOLD_SHOULD_NOT_BE_EMPTY { + get { + return ResourceManager.GetString("NRPE_THRESHOLD_SHOULD_NOT_BE_EMPTY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Warning threshold should be greater than critical threshold. ähnelt. + /// + public static string NRPE_THRESHOLD_WARNING_SHOULD_BIGGER_THAN_CRITICAL { + get { + return ResourceManager.GetString("NRPE_THRESHOLD_WARNING_SHOULD_BIGGER_THAN_CRITICAL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Warning threshold should be less than critical threshold. ähnelt. + /// + public static string NRPE_THRESHOLD_WARNING_SHOULD_LESS_THAN_CRITICAL { + get { + return ResourceManager.GetString("NRPE_THRESHOLD_WARNING_SHOULD_LESS_THAN_CRITICAL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Number of snapshots to keep ähnelt. /// @@ -28506,7 +29922,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This version requires [XenCenter] {0} or newer ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This version requires {0} {1} or newer ähnelt. /// public static string PATCH_NEEDS_NEW_XENCENTER { get { @@ -28514,25 +29930,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Not found ähnelt. - /// - public static string PATCH_NOT_FOUND { - get { - return ResourceManager.GetString("PATCH_NOT_FOUND", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} - ///File not found ähnelt. - /// - public static string PATCH_NOT_FOUND_EXPANDED_DESCRIPTION { - get { - return ResourceManager.GetString("PATCH_NOT_FOUND_EXPANDED_DESCRIPTION", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Update uploaded to server '{0}' ähnelt. /// @@ -28561,7 +29958,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} ok. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} OK. ähnelt. /// public static string PATCHING_WIZARD_CHECK_OK { get { @@ -28569,6 +29966,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: {1} OK. ähnelt. + /// + public static string PATCHING_WIZARD_CHECK_ON_XENOBJECT_OK { + get { + return ResourceManager.GetString("PATCHING_WIZARD_CHECK_ON_XENOBJECT_OK", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The patch {0} is going to be deleted. Do you want to continue? ähnelt. /// @@ -28587,15 +29993,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: {1} ok. ähnelt. - /// - public static string PATCHING_WIZARD_HOST_CHECK_OK { - get { - return ResourceManager.GetString("PATCHING_WIZARD_HOST_CHECK_OK", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die {0} ... ähnelt. /// @@ -28725,6 +30122,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Install Updates ähnelt. + /// + public static string PATCHINGWIZARD_AUTOUPDATINGPAGE_TEXT_CDN { + get { + return ResourceManager.GetString("PATCHINGWIZARD_AUTOUPDATINGPAGE_TEXT_CDN", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Uploading and installing updates ähnelt. /// @@ -28789,7 +30195,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart these servers in this order (master always first): ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Restart these servers in this order (coordinator always first): ähnelt. /// public static string PATCHINGWIZARD_MODEPAGE_RESTARTSERVERS { get { @@ -28807,7 +30213,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart toolstack on these servers in this order (master always first): ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Restart toolstack on these servers in this order (coordinator always first): ähnelt. /// public static string PATCHINGWIZARD_MODEPAGE_RESTARTXAPI { get { @@ -29085,6 +30491,60 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} will download and install all released updates on the current version, usually with only a single reboot at the end. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_AUTO_LABEL { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_AUTO_LABEL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} will install all released updates on the current version, usually with only a single reboot at the end. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_AUTO_LABEL_CDN { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_AUTO_LABEL_CDN", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select Automated Updates, choose an update to download, or browse your computer for an update or supplemental pack file. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_BLURB { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_BLURB", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select Automated Updates, or browse your computer for a supplemental pack file. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_BLURB_CDN { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_BLURB_CDN", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Browse your computer for an update or supplemental pack file. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_BLURB_CDN_UNLICENSED { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_BLURB_CDN_UNLICENSED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select an update to download, or browse your computer for an update or supplemental pack file. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_BLURB_UNLICENSED { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_BLURB_UNLICENSED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Choose Update File ähnelt. /// @@ -29094,6 +30554,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Select an update or supplemental pack from disk ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_DISK_RADIO { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_DISK_RADIO", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Select a supplemental pack from disk ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_DISK_RADIO_CDN { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_DISK_RADIO_CDN", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The file you have selected is a Base Installation ISO file and cannot be used to update your system. Please select an Update ISO file, or use the Rolling Pool Upgrade wizard instead to upgrade to a new version. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTPATCHPAGE_ERROR_MAINISO { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTPATCHPAGE_ERROR_MAINISO", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Select Update ähnelt. /// @@ -29104,7 +30591,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Choose an existing update to install or upload a new one ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Choose the update you want to install ähnelt. /// public static string PATCHINGWIZARD_SELECTPATCHPAGE_TITLE { get { @@ -29113,7 +30600,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Updates and Supplemental Packs (*.{0}, *.iso,*.zip)|*.{0};*.iso;*.zip ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Updates and Supplemental Packs (*.iso,*.zip)|*.iso;*.zip ähnelt. /// public static string PATCHINGWIZARD_SELECTPATCHPAGE_UPDATESEXT { get { @@ -29140,16 +30627,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Automated updates are not supported on this [XenServer] version ähnelt. - /// - public static string PATCHINGWIZARD_SELECTSERVERPAGE_AUTOMATED_UPDATES_NOT_SUPPORTED_HOST_VERSION { - get { - return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_AUTOMATED_UPDATES_NOT_SUPPORTED_HOST_VERSION", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Automated updates are not supported on partially upgraded [XenServer] pools ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Automated updates are not supported on partially upgraded {0} pools ähnelt. /// public static string PATCHINGWIZARD_SELECTSERVERPAGE_AUTOMATED_UPDATES_NOT_SUPPORTED_PARTIALLY_UPGRADED { get { @@ -29159,20 +30637,38 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cannot install supplemental packs on this [XenServer] version ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Cannot install updates on this host because the coordinator is running a version higher than {0} ähnelt. /// - public static string PATCHINGWIZARD_SELECTSERVERPAGE_CANNOT_INSTALL_SUPP_PACKS { + public static string PATCHINGWIZARD_SELECTSERVERPAGE_CANNOT_INSTALL_UPDATE_COORDINATOR_POST_7_0 { get { - return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_CANNOT_INSTALL_SUPP_PACKS", resourceCulture); + return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_CANNOT_INSTALL_UPDATE_COORDINATOR_POST_7_0", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cannot install updates on this host because the master is running a version higher than {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die You have never synchronized with the update channel. ähnelt. /// - public static string PATCHINGWIZARD_SELECTSERVERPAGE_CANNOT_INSTALL_UPDATE_MASTER_POST_7_0 { + public static string PATCHINGWIZARD_SELECTSERVERPAGE_CDN_NOT_SYNCHRONIZED { get { - return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_CANNOT_INSTALL_UPDATE_MASTER_POST_7_0", resourceCulture); + return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_CDN_NOT_SYNCHRONIZED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have not configured an update channel. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTSERVERPAGE_CDN_REPOS_NOT_CONFIGURED { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_CDN_REPOS_NOT_CONFIGURED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die All updates available at the last synchronization have been applied. ähnelt. + /// + public static string PATCHINGWIZARD_SELECTSERVERPAGE_CDN_UPDATES_APPLIED { + get { + return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_CDN_UPDATES_APPLIED", resourceCulture); } } @@ -29195,20 +30691,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The server is unreachable ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die One or more servers in the pool have to be upgraded before {0} can apply the selected new version. ähnelt. /// - public static string PATCHINGWIZARD_SELECTSERVERPAGE_HOST_UNREACHABLE { + public static string PATCHINGWIZARD_SELECTSERVERPAGE_NEW_VERSION_UPGRADE_SUPPORTERS_FIRST { get { - return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_HOST_UNREACHABLE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die One or more servers in the pool have to be upgraded before [XenCenter] can apply the selected new version. ähnelt. - /// - public static string PATCHINGWIZARD_SELECTSERVERPAGE_NEW_VERSION_UPGRADE_SLAVES_FIRST { - get { - return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_NEW_VERSION_UPGRADE_SLAVES_FIRST", resourceCulture); + return ResourceManager.GetString("PATCHINGWIZARD_SELECTSERVERPAGE_NEW_VERSION_UPGRADE_SUPPORTERS_FIRST", resourceCulture); } } @@ -29379,7 +30866,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] is now installing update {0} on your system. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} is now installing update {1} on your system. ähnelt. /// public static string PATCHINGWIZARD_SINGLEUPDATE_TITLE { get { @@ -29480,7 +30967,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] is now performing the operations necessary to upload your update to the servers specified in the previous step. Please wait for these operations to complete, then click Next to continue with the installation. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} is now performing the operations necessary to upload your update to the servers specified in the previous step. Please wait for these operations to complete, then click Next to continue with the installation. ähnelt. /// public static string PATCHINGWIZARD_SINGLEUPLOAD_TITLE { get { @@ -29507,7 +30994,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] is now installing updates on your system. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} is now installing updates on your system. ähnelt. /// public static string PATCHINGWIZARD_UPLOAD_AND_INSTALL_TITLE_AUTOMATED_MODE { get { @@ -29516,7 +31003,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] is now installing the new version on your system. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} is now installing the new version on your system. ähnelt. /// public static string PATCHINGWIZARD_UPLOAD_AND_INSTALL_TITLE_NEW_VERSION_AUTOMATED_MODE { get { @@ -29543,11 +31030,29 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die XVA (*.xva)|*.xva|XVA Version 1 (ova.xml)|ova.xml ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Path cannot be null or empty. ähnelt. /// - public static string PATHPICKER_FILETYPE { + public static string PATH_CAN_NOT_BE_NULL_ERROR_MESSAGE { get { - return ResourceManager.GetString("PATHPICKER_FILETYPE", resourceCulture); + return ResourceManager.GetString("PATH_CAN_NOT_BE_NULL_ERROR_MESSAGE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Path does not exist. ähnelt. + /// + public static string PATH_DOES_NOT_EXIST { + get { + return ResourceManager.GetString("PATH_DOES_NOT_EXIST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Path {0} does not exist. ähnelt. + /// + public static string PATH_DOES_NOT_EXIST_PLACEHOLDER { + get { + return ResourceManager.GetString("PATH_DOES_NOT_EXIST_PLACEHOLDER", resourceCulture); } } @@ -29659,15 +31164,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die None ähnelt. - /// - public static string PIF_NONE { - get { - return ResourceManager.GetString("PIF_NONE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Static ähnelt. /// @@ -29768,7 +31264,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Installing [XenServer] on '{0}'... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' could not be evacuated because VM '{1}' lacks the feature the attempted operation needs. ähnelt. + /// + public static string PLAN_ACTION_FAILURE_VM_LACKS_FEATURE { + get { + return ResourceManager.GetString("PLAN_ACTION_FAILURE_VM_LACKS_FEATURE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Installing {0} on '{1}'... ähnelt. /// public static string PLAN_ACTION_STATUS_INSTALLING_XENSERVER { get { @@ -29777,7 +31282,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Installing [XenServer] {0} on '{1}'... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Installing {0} {1} on '{2}'... ähnelt. /// public static string PLAN_ACTION_STATUS_INSTALLING_XENSERVER_VERSION { get { @@ -29958,15 +31463,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Adjust settings for plug-ins to [XenCenter] ähnelt. - /// - public static string PLUGINS_DESC { - get { - return ResourceManager.GetString("PLUGINS_DESC", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Menu item features must only have a single command XML node as a child ähnelt. /// @@ -30084,6 +31580,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Pool coordinator ähnelt. + /// + public static string POOL_COORDINATOR { + get { + return ResourceManager.GetString("POOL_COORDINATOR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Could not find the pool coordinator in {0}'s cache. ähnelt. + /// + public static string POOL_COORDINATOR_GONE { + get { + return ResourceManager.GetString("POOL_COORDINATOR_GONE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Pool '{0}' has HA enabled. You must disable HA before making the pool into a standalone server. ähnelt. /// @@ -30157,7 +31671,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find the pool in [XenCenter]'s cache. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find the pool in {0}'s cache. ähnelt. /// public static string POOL_GONE { get { @@ -30165,6 +31679,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for Software FCoE SRs has been deprecated in {1} ähnelt. + /// + public static string POOL_HAS_DEPRECATED_FCOE_SHORT { + get { + return ResourceManager.GetString("POOL_HAS_DEPRECATED_FCOE_SHORT", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Support for Software FCoE SRs has been deprecated in {0} and will be removed in a future release. It is recommended that you move your VMs to a different type of storage and remove Software FCoE SRs from your systems as soon as possible. ähnelt. + /// + public static string POOL_HAS_DEPRECATED_FCOE_WARNING { + get { + return ResourceManager.GetString("POOL_HAS_DEPRECATED_FCOE_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die This pool has hosts with different types of license. ähnelt. /// @@ -30184,7 +31716,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for paravirtualized (PV) guests is dropped as of [XenServer] {1}. Click "Learn more" to see the list of supported guest operating systems. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for paravirtualized (PV) guests has been removed in {1}. ähnelt. /// public static string POOL_HAS_PV_GUEST_WARNING { get { @@ -30192,6 +31724,19 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The following VMs are paravirtualized (PV): + /// + ///{0} + /// + ///Support for PV guests has been removed in {1}. Click Learn more to see the list of supported guest operating systems. ähnelt. + /// + public static string POOL_HAS_PV_GUEST_WARNING_DETAIL { + get { + return ResourceManager.GetString("POOL_HAS_PV_GUEST_WARNING_DETAIL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The pool is partially licensed ähnelt. /// @@ -30201,6 +31746,42 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is enabled on coordinator, but not on this server. To create the pool, first enable certificate verification on the server. ähnelt. + /// + public static string POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_COORDINATOR { + get { + return ResourceManager.GetString("POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_COORDINATOR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is enabled on this server, but not on coordinator. To create the pool, first enable certificate verification on coordinator. ähnelt. + /// + public static string POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_COORDINATOR_JOINER { + get { + return ResourceManager.GetString("POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_COORDINATOR_JOINER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is enabled on the pool, but not on this server. To add the server to the pool, first enable certificate verification on the server. ähnelt. + /// + public static string POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_POOL { + get { + return ResourceManager.GetString("POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_POOL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Certificate verification is enabled on this server, but not on the pool. To add the server to the pool, first enable certificate verification on the pool. ähnelt. + /// + public static string POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_POOL_JOINER { + get { + return ResourceManager.GetString("POOL_JOIN_CERTIFICATE_CHECKING_ONLY_ON_POOL_JOINER", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die HA is enabled on the pool ähnelt. /// @@ -30247,20 +31828,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Pool master ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Support for Software FCoE SRs has been deprecated in {0} and will be removed in a future release. If you are upgrading to this version, it is recommended that you move your VMs to a different type of storage and remove Software FCoE SRs from your system as soon as possible. ähnelt. /// - public static string POOL_MASTER { + public static string POOL_MAY_HAVE_DEPRECATED_FCOE_WARNING { get { - return ResourceManager.GetString("POOL_MASTER", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find the pool master in [XenCenter]'s cache. ähnelt. - /// - public static string POOL_MASTER_GONE { - get { - return ResourceManager.GetString("POOL_MASTER_GONE", resourceCulture); + return ResourceManager.GetString("POOL_MAY_HAVE_DEPRECATED_FCOE_WARNING", resourceCulture); } } @@ -30292,7 +31864,9 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select a pool or stand alone server to import this VM to. The home server setting will be taken from the template.\n\nIf this value does not correspond to a server within the selected resource pool then it will be ignored for all resourcing decisions. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Select a pool or stand alone server to import this VM to. The home server setting will be taken from the template. + /// + ///If this value does not correspond to a server within the selected resource pool then it will be ignored for all resourcing decisions. ähnelt. /// public static string POOL_PICKER_BLURB_NO_AFFINITY { get { @@ -30301,7 +31875,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not find the pool update in [XenCenter]'s cache. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Could not find the pool update in {0}'s cache. ähnelt. /// public static string POOL_UPDATE_GONE { get { @@ -30310,7 +31884,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Pool partially upgraded to [XenServer] {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Pool partially upgraded to {0} ähnelt. /// public static string POOL_VERSIONS_LINK_TEXT { get { @@ -30426,6 +32000,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Please specify a script name ähnelt. + /// + public static string POWER_ON_CUSTOM_MODE_ERROR { + get { + return ResourceManager.GetString("POWER_ON_CUSTOM_MODE_ERROR", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Power on request to {0} failed. Check the network connectivity. ähnelt. /// @@ -30489,6 +32072,97 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for container management has been removed as of {1}. ähnelt. + /// + public static string PROBLEM_CONTAINER_MANAGEMENT_DESCRIPTION { + get { + return ResourceManager.GetString("PROBLEM_CONTAINER_MANAGEMENT_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You will no longer be able to use the Container Management supplemental pack for managing Docker containers. The update will not remove the supplemental pack from your system, but it may not be fully, if at all, functional. ähnelt. + /// + public static string PROBLEM_CONTAINER_MANAGEMENT_UPDATE { + get { + return ResourceManager.GetString("PROBLEM_CONTAINER_MANAGEMENT_UPDATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to {0} or above, you will no longer be able to use the Container Management supplemental pack for managing Docker containers. The upgrade will remove the supplemental pack from your system. ähnelt. + /// + public static string PROBLEM_CONTAINER_MANAGEMENT_UPGRADE { + get { + return ResourceManager.GetString("PROBLEM_CONTAINER_MANAGEMENT_UPGRADE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: The coordinator needs to be rebooted first ähnelt. + /// + public static string PROBLEM_COORDINATOR_PENDING_RESTART_HOST { + get { + return ResourceManager.GetString("PROBLEM_COORDINATOR_PENDING_RESTART_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: This update requires the coordinator to be rebooted first ähnelt. + /// + public static string PROBLEM_COORDINATOR_PENDING_RESTART_HOST_THIS_UPDATE { + get { + return ResourceManager.GetString("PROBLEM_COORDINATOR_PENDING_RESTART_HOST_THIS_UPDATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Toolstack on coordinator needs to be restarted first ähnelt. + /// + public static string PROBLEM_COORDINATOR_PENDING_RESTART_TOOLSTACK { + get { + return ResourceManager.GetString("PROBLEM_COORDINATOR_PENDING_RESTART_TOOLSTACK", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: This update requires the toolstack on coordinator to be restarted first ähnelt. + /// + public static string PROBLEM_COORDINATOR_PENDING_RESTART_TOOLSTACK_THIS_UPDATE { + get { + return ResourceManager.GetString("PROBLEM_COORDINATOR_PENDING_RESTART_TOOLSTACK_THIS_UPDATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disable Health Check ähnelt. + /// + public static string PROBLEM_HEALTH_CHECK_HELP { + get { + return ResourceManager.GetString("PROBLEM_HEALTH_CHECK_HELP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Health Check has been removed, but '{0}' is still enrolled to it. + ///{1} will disable Health Check and clear the enrollment before you can proceed to manage your system. ähnelt. + /// + public static string PROBLEM_HEALTH_CHECK_ON_CONNECTION { + get { + return ResourceManager.GetString("PROBLEM_HEALTH_CHECK_ON_CONNECTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Health Check has been removed. ähnelt. + /// + public static string PROBLEM_HEALTH_CHECK_SERVICE_DESCRIPTION { + get { + return ResourceManager.GetString("PROBLEM_HEALTH_CHECK_SERVICE_DESCRIPTION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' ähnelt. /// @@ -30498,6 +32172,42 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for protocols earlier than TLS 1.2 has been removed as of {1} ähnelt. + /// + public static string PROBLEM_LEGACY_PROTOCOL_DESCRIPTION { + get { + return ResourceManager.GetString("PROBLEM_LEGACY_PROTOCOL_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disable legacy protocols ähnelt. + /// + public static string PROBLEM_LEGACY_PROTOCOL_HELP { + get { + return ResourceManager.GetString("PROBLEM_LEGACY_PROTOCOL_HELP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to {0} and above, you will not be able to use security protocols earlier than TLS 1.2 for communication with the pool and you may lose permanently access to it. ähnelt. + /// + public static string PROBLEM_LEGACY_PROTOCOL_INFO_POOL { + get { + return ResourceManager.GetString("PROBLEM_LEGACY_PROTOCOL_INFO_POOL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to {0} and above, you will not be able to use security protocols earlier than TLS 1.2 for communication with the server and you may lose permanently access to it. ähnelt. + /// + public static string PROBLEM_LEGACY_PROTOCOL_INFO_SERVER { + get { + return ResourceManager.GetString("PROBLEM_LEGACY_PROTOCOL_INFO_SERVER", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die The MAC address entered has already been assigned to the VM: ///{1} @@ -30519,42 +32229,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: The master needs to be rebooted first ähnelt. - /// - public static string PROBLEM_MASTER_PENDING_RESTART_HOST { - get { - return ResourceManager.GetString("PROBLEM_MASTER_PENDING_RESTART_HOST", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: This update requires the master to be rebooted first ähnelt. - /// - public static string PROBLEM_MASTER_PENDING_RESTART_HOST_THIS_UPDATE { - get { - return ResourceManager.GetString("PROBLEM_MASTER_PENDING_RESTART_HOST_THIS_UPDATE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: Toolstack on master needs to be restarted first ähnelt. - /// - public static string PROBLEM_MASTER_PENDING_RESTART_TOOLSTACK { - get { - return ResourceManager.GetString("PROBLEM_MASTER_PENDING_RESTART_TOOLSTACK", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: This update requires the toolstack on master to be restarted first ähnelt. - /// - public static string PROBLEM_MASTER_PENDING_RESTART_TOOLSTACK_THIS_UPDATE { - get { - return ResourceManager.GetString("PROBLEM_MASTER_PENDING_RESTART_TOOLSTACK_THIS_UPDATE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Pool '{0}' ähnelt. /// @@ -30564,6 +32238,33 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for the Power On mode iLO has been removed as of {1} ähnelt. + /// + public static string PROBLEM_POWER_ON_ILO_DESCRIPTION { + get { + return ResourceManager.GetString("PROBLEM_POWER_ON_ILO_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disable Power On mode iLO ähnelt. + /// + public static string PROBLEM_POWER_ON_ILO_HELP { + get { + return ResourceManager.GetString("PROBLEM_POWER_ON_ILO_HELP", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to {0} and above, you will not be able to use the Hewlett-Packard Integrated Lights-Out (iLO) feature to power on your server remotely. ähnelt. + /// + public static string PROBLEM_POWER_ON_ILO_INFO { + get { + return ResourceManager.GetString("PROBLEM_POWER_ON_ILO_INFO", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Please ensure you have specified a network location that is visible from the server and contains an applicable version of installer files. /// @@ -30575,15 +32276,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die SR '{0}' ähnelt. - /// - public static string PROBLEM_SRPROBLEM_TITLE { - get { - return ResourceManager.GetString("PROBLEM_SRPROBLEM_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die An error has occurred while attempting to connect to Storage Link Gateway: \n\n{0}\n\nPlease review the settings for this host and reconnect. ähnelt. /// @@ -30593,15 +32285,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die The use of StorageLink SRs has been deprecated. Please remove StorageLink SRs before upgrading. ähnelt. - /// - public static string PROBLEM_UNSUPPORTED_STORAGELINK_SR { - get { - return ResourceManager.GetString("PROBLEM_UNSUPPORTED_STORAGELINK_SR", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die vApp {0} ähnelt. /// @@ -30621,7 +32304,34 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] version ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Support for the vSwitch Controller has been removed in {1}. ähnelt. + /// + public static string PROBLEM_VSWITCH_CONTROLLER_DESCRIPTION { + get { + return ResourceManager.GetString("PROBLEM_VSWITCH_CONTROLLER_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Support for the vSwitch Controller has been removed in {0}. You must deconfigure the controller because any features that require it will no longer work. Please click the link below for more information. ähnelt. + /// + public static string PROBLEM_VSWITCH_CONTROLLER_INFO_ERROR { + get { + return ResourceManager.GetString("PROBLEM_VSWITCH_CONTROLLER_INFO_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die If you are upgrading to {0} and above, you must deconfigure the vSwitch Controller because support for it has been removed in this release and any features that require it will no longer work. Please click the link below for more information. ähnelt. + /// + public static string PROBLEM_VSWITCH_CONTROLLER_INFO_WARNING { + get { + return ResourceManager.GetString("PROBLEM_VSWITCH_CONTROLLER_INFO_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} version ähnelt. /// public static string PROBLEM_XENCENTER_VERSION_TITLE { get { @@ -30638,16 +32348,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Please insert the [XenServer] CD into the physical drive on server '{0}'. - ///Press OK to continue the wizard and return to the server and follow the instructions on screen. ähnelt. - /// - public static string PROMPT_XS_CD { - get { - return ResourceManager.GetString("PROMPT_XS_CD", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die '{0}' Properties ähnelt. /// @@ -30693,15 +32393,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Provisioning Options ähnelt. - /// - public static string PROVISIONING_OPTIONS { - get { - return ResourceManager.GetString("PROVISIONING_OPTIONS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Provisioning Type ähnelt. /// @@ -30730,7 +32421,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] not installed ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} not installed ähnelt. /// public static string PV_DRIVERS_NOT_INSTALLED { get { @@ -30739,7 +32430,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] out of date (version {0} installed) ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} out of date (version {1}.{2} installed) ähnelt. /// public static string PV_DRIVERS_OUT_OF_DATE { get { @@ -30748,7 +32439,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] out of date ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} out of date ähnelt. /// public static string PV_DRIVERS_OUT_OF_DATE_UNKNOWN_VERSION { get { @@ -30819,15 +32510,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Not configured ähnelt. - /// - public static string PVS_CACHE_NOT_CONFIGURED { - get { - return ResourceManager.GetString("PVS_CACHE_NOT_CONFIGURED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die This PVS cache storage cannot be changed because it is in use. ähnelt. /// @@ -30937,55 +32619,47 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are about to log out {0} users. - /// - ///Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die To reduce the risk of unauthorized access to your system, it is recommended that you also change the server root password and rotate the pool secret. ähnelt. /// - public static string QUESTION_LOGOUT_AD_USER_MANY { + public static string QUESTION_ADMIN_EXIT_PROCEDURE_ADVISORY { get { - return ResourceManager.GetString("QUESTION_LOGOUT_AD_USER_MANY", resourceCulture); + return ResourceManager.GetString("QUESTION_ADMIN_EXIT_PROCEDURE_ADVISORY", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are about to log out the user '{0}'. - /// - ///Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The users you are about to remove are Pool Administrators. ähnelt. /// - public static string QUESTION_LOGOUT_AD_USER_ONE { + public static string QUESTION_ADMIN_EXIT_PROCEDURE_MANY { get { - return ResourceManager.GetString("QUESTION_LOGOUT_AD_USER_ONE", resourceCulture); + return ResourceManager.GetString("QUESTION_ADMIN_EXIT_PROCEDURE_MANY", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die ? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The user you are about to remove is a Pool Administrator. ähnelt. /// - public static string QUESTION_MARK { + public static string QUESTION_ADMIN_EXIT_PROCEDURE_ONE { get { - return ResourceManager.GetString("QUESTION_MARK", resourceCulture); + return ResourceManager.GetString("QUESTION_ADMIN_EXIT_PROCEDURE_ONE", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are about to remove {0} users. - /// - ///Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die One of the users you are about to remove is a Pool Administrator. ähnelt. /// - public static string QUESTION_REMOVE_AD_USER_MANY { + public static string QUESTION_ADMIN_EXIT_PROCEDURE_ONE_OF_MANY { get { - return ResourceManager.GetString("QUESTION_REMOVE_AD_USER_MANY", resourceCulture); + return ResourceManager.GetString("QUESTION_ADMIN_EXIT_PROCEDURE_ONE_OF_MANY", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die You are about to remove the user '{0}'. - /// - ///Do you want to continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} of the users you are about to remove are Pool Administrators. ähnelt. /// - public static string QUESTION_REMOVE_AD_USER_ONE { + public static string QUESTION_ADMIN_EXIT_PROCEDURE_SOME_OF_MANY { get { - return ResourceManager.GetString("QUESTION_REMOVE_AD_USER_ONE", resourceCulture); + return ResourceManager.GetString("QUESTION_ADMIN_EXIT_PROCEDURE_SOME_OF_MANY", resourceCulture); } } @@ -31043,7 +32717,34 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Current access levels do not allow migration of VMs across pools. Log in as a different user with sufficient privileges on both source and target hosts and try again. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot copy templates across pools. Log in as a different user with sufficient privileges on both source and destination servers and try again. ähnelt. + /// + public static string RBAC_CROSS_POOL_COPY_TEMPLATE_BLOCKED { + get { + return ResourceManager.GetString("RBAC_CROSS_POOL_COPY_TEMPLATE_BLOCKED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot copy VMs across pools. Log in as a different user with sufficient privileges on both source and destination servers and try again. ähnelt. + /// + public static string RBAC_CROSS_POOL_COPY_VM_BLOCKED { + get { + return ResourceManager.GetString("RBAC_CROSS_POOL_COPY_VM_BLOCKED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot migrate templates across pools. Log in as a different user with sufficient privileges on both source and destination servers and try again. ähnelt. + /// + public static string RBAC_CROSS_POOL_MIGRATE_TEMPLATE_BLOCKED { + get { + return ResourceManager.GetString("RBAC_CROSS_POOL_MIGRATE_TEMPLATE_BLOCKED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot migrate VMs across pools. Log in as a different user with sufficient privileges on both source and destination servers and try again. ähnelt. /// public static string RBAC_CROSS_POOL_MIGRATE_VM_BLOCKED { get { @@ -31052,7 +32753,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die User {0} does not have sufficient permissions to run a Disaster Recovery wizard. Login as a different user with sufficient privileges and try again. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user does not have sufficient permissions to use Disaster Recovery. Login as a different user with sufficient privileges and try again. ähnelt. /// public static string RBAC_DR_WIZARD_MESSAGE { get { @@ -31060,6 +32761,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot download system status reports. Log in as a different user with sufficient privileges and try again. ähnelt. + /// + public static string RBAC_GET_SYSTEM_STATUS_BLOCKED { + get { + return ResourceManager.GetString("RBAC_GET_SYSTEM_STATUS_BLOCKED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Your current role is '{1}'. /// @@ -31067,9 +32777,18 @@ namespace XenAdmin { /// ///{0} ähnelt. /// - public static string RBAC_HA_TAB_WARNING { + public static string RBAC_HA_CONFIGURE_WARNING { get { - return ResourceManager.GetString("RBAC_HA_TAB_WARNING", resourceCulture); + return ResourceManager.GetString("RBAC_HA_CONFIGURE_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot configure HA settings. Log in as a different user with sufficient privileges and try again. ähnelt. + /// + public static string RBAC_HA_ENABLE_WARNING { + get { + return ResourceManager.GetString("RBAC_HA_ENABLE_WARNING", resourceCulture); } } @@ -31082,6 +32801,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot copy templates. Log in as a different user with sufficient privileges and try again. ähnelt. + /// + public static string RBAC_INTRA_POOL_COPY_TEMPLATE_BLOCKED { + get { + return ResourceManager.GetString("RBAC_INTRA_POOL_COPY_TEMPLATE_BLOCKED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user cannot copy VMs. Log in as a different user with sufficient privileges and try again. ähnelt. + /// + public static string RBAC_INTRA_POOL_COPY_VM_BLOCKED { + get { + return ResourceManager.GetString("RBAC_INTRA_POOL_COPY_VM_BLOCKED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Check complete, you have full access to the features in this wizard. ähnelt. /// @@ -31275,6 +33012,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Read Caching ähnelt. + /// + public static string READ_CACHING { + get { + return ResourceManager.GetString("READ_CACHING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Read Only ähnelt. /// @@ -31426,6 +33172,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Remove Files ähnelt. + /// + public static string REMOVE_FILES { + get { + return ResourceManager.GetString("REMOVE_FILES", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Remove from &folder ähnelt. /// @@ -31870,9 +33625,18 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die {0}: The required hotfix is not installed ähnelt. /// - public static string REQUIRED_HOTFIX_ISNOT_INSTALLED { + public static string REQUIRED_HOTFIX_NOT_INSTALLED { get { - return ResourceManager.GetString("REQUIRED_HOTFIX_ISNOT_INSTALLED", resourceCulture); + return ResourceManager.GetString("REQUIRED_HOTFIX_NOT_INSTALLED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Check skipped because the required hotfix is not installed ähnelt. + /// + public static string REQUIRED_HOTFIX_NOT_INSTALLED_WARNING { + get { + return ResourceManager.GetString("REQUIRED_HOTFIX_NOT_INSTALLED_WARNING", resourceCulture); } } @@ -31885,6 +33649,42 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Resetting certificate... ähnelt. + /// + public static string RESET_SERVER_CERTIFICATE_DESCRIPTION { + get { + return ResourceManager.GetString("RESET_SERVER_CERTIFICATE_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Reset certificate... ähnelt. + /// + public static string RESET_SERVER_CERTIFICATE_MENU { + get { + return ResourceManager.GetString("RESET_SERVER_CERTIFICATE_MENU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Resetting certificate on server {0}... ähnelt. + /// + public static string RESET_SERVER_CERTIFICATE_TITLE { + get { + return ResourceManager.GetString("RESET_SERVER_CERTIFICATE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The server's identity certificate will be replaced by a self-signed certificate. Do you want to continue? ähnelt. + /// + public static string RESET_SERVER_CERTIFICATE_WARNING { + get { + return ResourceManager.GetString("RESET_SERVER_CERTIFICATE_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Resolved as {0} ähnelt. /// @@ -31904,7 +33704,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Backup file loaded to server '{0}'. Refer to the "[XenServer product] Administrator's Guide" for instructions on how to complete the restore procedure. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Backup file loaded to server '{0}'. Refer to the "{1} Administrator's Guide" for instructions on how to complete the restore procedure. ähnelt. /// public static string RESTORE_FROM_BACKUP_FINALIZE { get { @@ -32295,13 +34095,13 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die To install the [XenServer] upgrade on {0}, follow these steps: + /// Sucht eine lokalisierte Zeichenfolge, die To install the {0} upgrade on {1}, follow these steps: /// - ///1. Insert the [XenServer] installation CD-ROM in the server’s CD/DVD drive or set up a PXE network boot. + ///1. Insert the {0} installation CD-ROM in the server's CD/DVD drive or set up a PXE network boot. ///2. Click the Reboot Now button below to reboot the server and begin the installation. ///3. Go to the server’s console and follow the on-screen instructions to install the upgrade. /// - ///To skip this server and continue to the next server in the pool, click Skip This Server. Note that running a pool with servers on different versions of [X [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. + ///To skip this server and continue to the next server in the pool, click Skip This Server. Note that running a pool with servers on different versions of {0} is not support [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt. /// public static string ROLLING_UPGRADE_REBOOT_MESSAGE { get { @@ -32328,7 +34128,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Still waiting for the installation of [XenServer] on '{0}' to complete. Please check the server console for possible errors. Keep waiting if the installation is still running... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Still waiting for the installation of {0} on '{1}' to complete. Please check the server console for possible errors. Keep waiting if the installation is still running... ähnelt. /// public static string ROLLING_UPGRADE_TIMEOUT { get { @@ -32337,7 +34137,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Still waiting for the installation of [XenServer] {0} on '{1}' to complete. Please check the server console for possible errors. Keep waiting if the installation is still running... ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Still waiting for the installation of {0} {1} on '{2}' to complete. Please check the server console for possible errors. Keep waiting if the installation is still running... ähnelt. /// public static string ROLLING_UPGRADE_TIMEOUT_VERSION { get { @@ -32426,6 +34226,89 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot rotate the pool secret when HA is on. ähnelt. + /// + public static string ROTATE_POOL_SECRET_HA { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_HA", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Rotate &Pool Secret ähnelt. + /// + public static string ROTATE_POOL_SECRET_MENU { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_MENU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot enable clustering while a pool secret rotation is in progress. ähnelt. + /// + public static string ROTATE_POOL_SECRET_PENDING_CLUSTER { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_PENDING_CLUSTER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot configure HA while a pool secret rotation is in progress. ähnelt. + /// + public static string ROTATE_POOL_SECRET_PENDING_HA { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_PENDING_HA", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot nominate a new coordinator while a pool secret rotation is in progress. ähnelt. + /// + public static string ROTATE_POOL_SECRET_PENDING_NEW_COORDINATOR { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_PENDING_NEW_COORDINATOR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A {0} user does not have sufficient permissions to rotate the pool secret. Please login using an account with one of the following roles: + /// + ///{1} ähnelt. + /// + public static string ROTATE_POOL_SECRET_RBAC_RESTRICTION { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_RBAC_RESTRICTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die To reduce the risk of unauthorized access to your system, it is recommended that you also change the server root password. ähnelt. + /// + public static string ROTATE_POOL_SECRET_REMIND_CHANGE_PASSWORD { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_REMIND_CHANGE_PASSWORD", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You cannot rotate the pool secret when a Rolling Pool Upgrade is in progress. ähnelt. + /// + public static string ROTATE_POOL_SECRET_RPU { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_RPU", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Rotating pool secret ähnelt. + /// + public static string ROTATE_POOL_SECRET_TITLE { + get { + return ResourceManager.GetString("ROTATE_POOL_SECRET_TITLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0} could be skipped. ähnelt. /// @@ -32579,15 +34462,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Instance is already locked ähnelt. - /// - public static string SAVECHANGES_LOCKED { - get { - return ResourceManager.GetString("SAVECHANGES_LOCKED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Saving file {0} ähnelt. /// @@ -32618,18 +34492,18 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Saving configuration... ähnelt. /// - public static string SAVING_VMS_ACTION_DESC { + public static string SAVING_VM_PROPERTIES_ACTION_DESC { get { - return ResourceManager.GetString("SAVING_VMS_ACTION_DESC", resourceCulture); + return ResourceManager.GetString("SAVING_VM_PROPERTIES_ACTION_DESC", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die Saving VM Configuration ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Saving VM properties ähnelt. /// - public static string SAVING_VMS_ACTION_TITLE { + public static string SAVING_VM_PROPERTIES_ACTION_TITLE { get { - return ResourceManager.GetString("SAVING_VMS_ACTION_TITLE", resourceCulture); + return ResourceManager.GetString("SAVING_VM_PROPERTIES_ACTION_TITLE", resourceCulture); } } @@ -32660,15 +34534,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Scanning adapters ähnelt. - /// - public static string SCANNING_ADAPTERS { - get { - return ResourceManager.GetString("SCANNING_ADAPTERS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Scanning VMs... ähnelt. /// @@ -32760,7 +34625,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SSL certificate options ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Certificates and pool secrets ähnelt. /// public static string SECURITY_DESC { get { @@ -32804,6 +34669,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Changing this setting will cause you to lose access to the server temporarily. ähnelt. + /// + public static string SECURITYEDITPAGE_WARNING_HOST { + get { + return ResourceManager.GetString("SECURITYEDITPAGE_WARNING_HOST", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Select a filter... ähnelt. /// @@ -32822,6 +34696,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Select License Key ähnelt. + /// + public static string SELECT_LICENSE_KEY { + get { + return ResourceManager.GetString("SELECT_LICENSE_KEY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die There are no networks available for this network interface ähnelt. /// @@ -32895,7 +34778,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This server is using an API that is incompatible with [XenCenter]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This server is using an API that is incompatible with {0}. ähnelt. /// public static string SERVER_API_INCOMPATIBLE { get { @@ -32912,15 +34795,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Server failure: {0} ähnelt. - /// - public static string SERVER_FAILURE { - get { - return ResourceManager.GetString("SERVER_FAILURE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die &Server: ähnelt. /// @@ -32930,15 +34804,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Out of Date ähnelt. - /// - public static string SERVER_OUT_OF_DATE { - get { - return ResourceManager.GetString("SERVER_OUT_OF_DATE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is out of date and can no longer be connected to. ähnelt. /// @@ -32985,7 +34850,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server Status Report ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die &Server Status Report ähnelt. /// public static string SERVER_STATUS_REPORT { get { @@ -33012,7 +34877,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The current time on the pool master is: {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The current time on the pool coordinator is: {0} ähnelt. /// public static string SERVER_TIME { get { @@ -33021,7 +34886,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This version of [XenCenter] supports [XenServer] {0} onwards. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This version of {0} can only connect to {1}, and {2} or greater versions. ähnelt. /// public static string SERVER_TOO_OLD { get { @@ -33030,7 +34895,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use an earlier version of [XenCenter] to manage this server. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Use an earlier version of {0} to manage this server. ähnelt. /// public static string SERVER_TOO_OLD_SOLUTION { get { @@ -33426,20 +35291,20 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} are pool masters. It is strongly recommended to nominate a new master for each affected pool before proceeding. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} are pool coordinators. It is strongly recommended to nominate a new coordinator for each affected pool before proceeding. ähnelt. /// - public static string SHUT_DOWN_POOL_MASTER_MULTIPLE { + public static string SHUT_DOWN_POOL_COORDINATOR_MULTIPLE { get { - return ResourceManager.GetString("SHUT_DOWN_POOL_MASTER_MULTIPLE", resourceCulture); + return ResourceManager.GetString("SHUT_DOWN_POOL_COORDINATOR_MULTIPLE", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} is the pool master. It is strongly recommended to nominate a new master for the pool before proceeding. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} is the pool coordinator. It is strongly recommended to nominate a new coordinator for the pool before proceeding. ähnelt. /// - public static string SHUT_DOWN_POOL_MASTER_SINGLE { + public static string SHUT_DOWN_POOL_COORDINATOR_SINGLE { get { - return ResourceManager.GetString("SHUT_DOWN_POOL_MASTER_SINGLE", resourceCulture); + return ResourceManager.GetString("SHUT_DOWN_POOL_COORDINATOR_SINGLE", resourceCulture); } } @@ -33533,15 +35398,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}, {1} ähnelt. - /// - public static string SIZE_LOCATION_SUB { - get { - return ResourceManager.GetString("SIZE_LOCATION_SUB", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Negligible ähnelt. /// @@ -33569,34 +35425,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is a member of pool '{1}' and is already connected. ähnelt. - /// - public static string SLAVE_ALREADY_CONNECTED { - get { - return ResourceManager.GetString("SLAVE_ALREADY_CONNECTED", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is in a pool. To connect to a pool, you must connect to the pool master. - ///Do you want to connect to the pool master '{1}'? ähnelt. - /// - public static string SLAVE_CONNECTION_ERROR { - get { - return ResourceManager.GetString("SLAVE_CONNECTION_ERROR", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die This pool contains servers earlier than [XenServer] {0}. Please use an earlier version of [XenCenter] to manage this pool. ähnelt. - /// - public static string SLAVE_TOO_OLD { - get { - return ResourceManager.GetString("SLAVE_TOO_OLD", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die smaller than ähnelt. /// @@ -33705,6 +35533,26 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to revert to '{0}'? + /// + ///Reverting to this snapshot will revert the VM back to the point in time that the snapshot was created, and the current state of the VM will be lost. ähnelt. + /// + public static string SNAPSHOT_REVERT_BLURB { + get { + return ResourceManager.GetString("SNAPSHOT_REVERT_BLURB", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Take a snapshot of the VM's current state and then revert ähnelt. + /// + public static string SNAPSHOT_REVERT_NEW_SNAPSHOT { + get { + return ResourceManager.GetString("SNAPSHOT_REVERT_NEW_SNAPSHOT", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Taken on: {0} ähnelt. /// @@ -33822,6 +35670,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Software FCoE storage repositories ähnelt. + /// + public static string SOFTWARE_FCOE_STORAGE_REPOSITORIES { + get { + return ResourceManager.GetString("SOFTWARE_FCOE_STORAGE_REPOSITORIES", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Build number ähnelt. /// @@ -33840,6 +35697,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Last updated ähnelt. + /// + public static string SOFTWARE_VERSION_LAST_UPDATED { + get { + return ResourceManager.GetString("SOFTWARE_VERSION_LAST_UPDATED", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. /// @@ -33859,7 +35725,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check that the proxy server on '{0}' is configured correctly and [XenCenter]'s connection settings are correct and try again. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Check that the proxy server on '{0}' is configured correctly and {1}'s connection settings are correct and try again. ähnelt. /// public static string SOLUTION_CHECK_PROXY { get { @@ -33868,7 +35734,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check that [XenServer] is configured correctly on '{0}' and try again. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Check that {0} is configured correctly on '{1}' and try again. ähnelt. /// public static string SOLUTION_CHECK_XENSERVER { get { @@ -33877,7 +35743,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check the proxy settings and that the server is configured correctly on '{0}' and try again. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Check the proxy settings and that {0} is configured correctly on '{1}' and try again. ähnelt. /// public static string SOLUTION_CHECK_XENSERVER_WITH_PROXY { get { @@ -33922,7 +35788,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Some errors were encountered. See the [XenCenter] log for more information. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Some errors were encountered. See the application log for more information. ähnelt. /// public static string SOME_ERRORS_ENCOUNTERED { get { @@ -33967,7 +35833,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This SR cannot be destroyed with [XenCenter]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This SR cannot be destroyed with {0}. ähnelt. /// public static string SR_CANNOT_BE_DESTROYED_WITH_XC { get { @@ -33976,7 +35842,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This SR cannot be forgotten with [XenCenter]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This SR cannot be forgotten with {0}. ähnelt. /// public static string SR_CANNOT_BE_FORGOTTEN_WITH_XC { get { @@ -34011,6 +35877,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The SR is currently unplugged from {0} ähnelt. + /// + public static string SR_DETACHED_FROM_HOST { + get { + return ResourceManager.GetString("SR_DETACHED_FROM_HOST", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Initial allocation: {0} ///Incremental allocation: {1} ähnelt. @@ -34067,7 +35942,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This storage repository is broken ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die This SR is broken or not fully attached. ähnelt. /// public static string SR_IS_BROKEN { get { @@ -34084,6 +35959,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die SR '{0}' does not have {1} of free space to import virtual disk {2}. ähnelt. + /// + public static string SR_NOT_ENOUGH_SPACE { + get { + return ResourceManager.GetString("SR_NOT_ENOUGH_SPACE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Disk size ({0}) exceeds SR size ({1}) ähnelt. /// @@ -34114,7 +35998,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Scanning SR ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Scanning SR '{0}'... ähnelt. /// public static string SR_REFRESH_ACTION_DESC { get { @@ -34131,6 +36015,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Scanning... ähnelt. + /// + public static string SR_REFRESH_ACTION_TITLE_GENERIC { + get { + return ResourceManager.GetString("SR_REFRESH_ACTION_TITLE_GENERIC", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Reverting {0} to unshared completed. ähnelt. /// @@ -34177,7 +36070,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cannot reclaim freed space, because the SR is detached. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Cannot reclaim freed space because the SR is detached. ähnelt. /// public static string SR_TRIM_NO_STORAGE_HOST_ERROR { get { @@ -34231,7 +36124,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Creating this SR-IOV network will temporarily disturb [XenCenter] connections to the pool. + /// Sucht eine lokalisierte Zeichenfolge, die Creating this SR-IOV network will temporarily disturb {0} connections to the pool. /// ///You may need to reboot your server(s) to enable SR-IOV network. ähnelt. /// @@ -34349,6 +36242,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Decrypting {0}... ähnelt. + /// + public static string START_FILE_DECRYPTION { + get { + return ResourceManager.GetString("START_FILE_DECRYPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Expanding {0}... ähnelt. + /// + public static string START_FILE_EXPANSION { + get { + return ResourceManager.GetString("START_FILE_EXPANSION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Start host ähnelt. /// @@ -34376,6 +36287,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configuring VM for the server... ähnelt. + /// + public static string START_POST_INSTALL_INSTRUCTIONS { + get { + return ResourceManager.GetString("START_POST_INSTALL_INSTRUCTIONS", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Start shut down VMs ähnelt. /// @@ -34574,24 +36494,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter your MyCitrix credentials (see {0}). These credentials will only be used to authenticate with [Citrix] Insight Services once and will not be stored on this machine or on your server. ähnelt. - /// - public static string STATUS_REPORT_ENTER_CREDENTIALS_MESSAGE { - get { - return ResourceManager.GetString("STATUS_REPORT_ENTER_CREDENTIALS_MESSAGE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die There was an error while packaging the server status report. Only a partial report may be available ähnelt. - /// - public static string STATUS_REPORT_ZIP_FAILED { - get { - return ResourceManager.GetString("STATUS_REPORT_ZIP_FAILED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Stopped ähnelt. /// @@ -34790,15 +36692,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die StorageLink SR status ähnelt. - /// - public static string STORAGELINK_UPGRADE_TEST { - get { - return ResourceManager.GetString("STORAGELINK_UPGRADE_TEST", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Storage Pools ähnelt. /// @@ -34817,6 +36710,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: {1} ähnelt. + /// + public static string STRING_COLON_SPACE_STRING { + get { + return ResourceManager.GetString("STRING_COLON_SPACE_STRING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}, {1} ähnelt. + /// + public static string STRING_COMMA_SPACE_STRING { + get { + return ResourceManager.GetString("STRING_COMMA_SPACE_STRING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0} {1} ähnelt. /// @@ -34845,7 +36756,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die succeeded ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Succeeded ähnelt. /// public static string SUCCEEDED { get { @@ -34883,7 +36794,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Failed to install supplemental pack '{0}' on '{1}'. /// - ///Refer to the "[XenServer product] Administrator's Guide" for instructions on how to manually install a supplemental pack on a server. ähnelt. + ///Refer to the "{2} Administrator's Guide" for instructions on how to manually install a supplemental pack on a server. ähnelt. /// public static string SUPP_PACK_INSTALL_FAILED { get { @@ -34945,6 +36856,34 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is a member of pool '{1}' and is already connected. ähnelt. + /// + public static string SUPPORTER_ALREADY_CONNECTED { + get { + return ResourceManager.GetString("SUPPORTER_ALREADY_CONNECTED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Server '{0}' is in a pool. To connect to a pool, you must connect to the pool coordinator. + ///Do you want to connect to the pool coordinator '{1}'? ähnelt. + /// + public static string SUPPORTER_CONNECTION_ERROR { + get { + return ResourceManager.GetString("SUPPORTER_CONNECTION_ERROR", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die This pool contains servers earlier than {0}. Please use an earlier version of {1} to manage this pool. ähnelt. + /// + public static string SUPPORTER_TOO_OLD { + get { + return ResourceManager.GetString("SUPPORTER_TOO_OLD", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Suspend ähnelt. /// @@ -35053,15 +36992,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Target Server ähnelt. - /// - public static string TARGET_SERVER { - get { - return ResourceManager.GetString("TARGET_SERVER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Tell me more ... ähnelt. /// @@ -35089,6 +37019,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Template generated by {0} from snapshot '{1}' ähnelt. + /// + public static string TEMPLATE_FROM_SNAPSHOT_DEFAULT_DESCRIPTION { + get { + return ResourceManager.GetString("TEMPLATE_FROM_SNAPSHOT_DEFAULT_DESCRIPTION", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Template from snapshot '{0}' ähnelt. /// @@ -35143,33 +37082,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools]: Not present ähnelt. - /// - public static string TEMPLATE_INFO_TOOLSNOTPRESENT { - get { - return ResourceManager.GetString("TEMPLATE_INFO_TOOLSNOTPRESENT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools]: Out of date (version {0}.{1} installed) ähnelt. - /// - public static string TEMPLATE_INFO_TOOLSOLD { - get { - return ResourceManager.GetString("TEMPLATE_INFO_TOOLSOLD", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools]: Up to date ähnelt. - /// - public static string TEMPLATE_INFO_TOOLSUPTODATE { - get { - return ResourceManager.GetString("TEMPLATE_INFO_TOOLSUPTODATE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die vCPUs: {0} ähnelt. /// @@ -35215,6 +37127,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Terminating session for users '{0}' ähnelt. + /// + public static string TERMINATING_USER_SESSION_MULTIPLE { + get { + return ResourceManager.GetString("TERMINATING_USER_SESSION_MULTIPLE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Test archive target location ähnelt. /// @@ -35458,15 +37379,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Disks cannot be activated or deactivated from running VMs without [Citrix VM Tools] installed ähnelt. - /// - public static string TOOLTIP_DEACTIVATE_VDI_NEED_TOOLS { - get { - return ResourceManager.GetString("TOOLTIP_DEACTIVATE_VDI_NEED_TOOLS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Networks cannot be deactivated while the VM is suspended ähnelt. /// @@ -35503,15 +37415,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Disks cannot be deleted from running VMs without [Citrix VM Tools] installed ähnelt. - /// - public static string TOOLTIP_DELETE_VDI_NEED_TOOLS { - get { - return ResourceManager.GetString("TOOLTIP_DELETE_VDI_NEED_TOOLS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Disks cannot be removed while the VM is suspended ähnelt. /// @@ -35539,15 +37442,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Disks cannot be removed from running VMs without [Citrix VM Tools] installed ähnelt. - /// - public static string TOOLTIP_DETACH_VDI_NEED_TOOLS { - get { - return ResourceManager.GetString("TOOLTIP_DETACH_VDI_NEED_TOOLS", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die I/O drivers must be installed to edit a network on a running VM ähnelt. /// @@ -35558,7 +37452,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] must be installed to edit a network on a running VM ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} must be installed to edit a network on a running VM ähnelt. /// public static string TOOLTIP_EDIT_NETWORK_TOOLS { get { @@ -35584,15 +37478,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] only supports {0} NICs per Bond. ähnelt. - /// - public static string TOOLTIP_NICS_PER_BOND_LIMIT { - get { - return ResourceManager.GetString("TOOLTIP_NICS_PER_BOND_LIMIT", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die I/O drivers must be installed to remove a network on a running VM ähnelt. /// @@ -35612,7 +37497,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] must be installed to remove a network on a running VM ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} must be installed to remove a network on a running VM ähnelt. /// public static string TOOLTIP_REMOVE_NETWORK_TOOLS { get { @@ -35630,7 +37515,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reclaiming freed space not supported on this SR ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Reclaiming freed space is not supported on this SR ähnelt. /// public static string TOOLTIP_SR_TRIM_UNSUPPORTED { get { @@ -35639,7 +37524,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reclaiming freed space not supported on these SRs ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Reclaiming freed space is not supported on these SRs ähnelt. /// public static string TOOLTIP_SR_TRIM_UNSUPPORTED_MULTIPLE { get { @@ -35656,6 +37541,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Unlicensed servers will not receive any updates, including security updates. ähnelt. + /// + public static string TRIAL_EDITION_UPSELLING_MESSAGE { + get { + return ResourceManager.GetString("TRIAL_EDITION_UPSELLING_MESSAGE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die True ähnelt. /// @@ -35701,42 +37595,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the network on which the temporary VM (Transfer VM) used to perform the export operation will run. ähnelt. - /// - public static string TVM_PAGE_DESCRIPTION_EXPORT { - get { - return ResourceManager.GetString("TVM_PAGE_DESCRIPTION_EXPORT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the network on which the temporary VM (Transfer VM) used to perform the import operation will run. ähnelt. - /// - public static string TVM_PAGE_DESCRIPTION_IMPORT { - get { - return ResourceManager.GetString("TVM_PAGE_DESCRIPTION_IMPORT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Transfer VM Settings ähnelt. - /// - public static string TVM_PAGE_TEXT { - get { - return ResourceManager.GetString("TVM_PAGE_TEXT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Configure networking options for the Transfer VM ähnelt. - /// - public static string TVM_PAGE_TITLE { - get { - return ResourceManager.GetString("TVM_PAGE_TITLE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Text Files ähnelt. /// @@ -35810,9 +37668,9 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] was unable to import a saved search from file '{0}'. + /// Sucht eine lokalisierte Zeichenfolge, die {0} was unable to import a saved search from file '{1}'. /// - ///Verify that the file is a valid {1} export. ähnelt. + ///Verify that the file is a valid {2} export. ähnelt. /// public static string UNABLE_TO_IMPORT_SEARCH { get { @@ -35830,7 +37688,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] will uncompress the file to '{0}'. After uncompression the original file '{1}' will be deleted. Continue? ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} will uncompress the file to '{1}'. After uncompression the original file '{2}' will be deleted. Continue? ähnelt. /// public static string UNCOMPRESS_APPLIANCE_DESCRIPTION { get { @@ -35838,6 +37696,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Imported VM ähnelt. + /// + public static string UNDEFINED_NAME_LABEL { + get { + return ResourceManager.GetString("UNDEFINED_NAME_LABEL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt. /// @@ -35892,6 +37759,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die File type {0} is not supported. ähnelt. + /// + public static string UNSUPPORTED_FILE_TYPE { + get { + return ResourceManager.GetString("UNSUPPORTED_FILE_TYPE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Unsupported SR type ähnelt. /// @@ -35929,7 +37805,52 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You have applied filters to the list of updates. Do you want to dismiss all updates from every connected server, or only the updates you have chosen to view? In both cases the dismissed updates will be removed from the servers permanently. + /// Sucht eine lokalisierte Zeichenfolge, die Could not validate the certificate associated with the downloaded installer. ähnelt. + /// + public static string UPDATE_CLIENT_FAILED_CERTIFICATE_CHECK { + get { + return ResourceManager.GetString("UPDATE_CLIENT_FAILED_CERTIFICATE_CHECK", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die An error occurred when launching the downloaded installer. Please see the logs for more information. ähnelt. + /// + public static string UPDATE_CLIENT_FAILED_INSTALLER_LAUNCH { + get { + return ResourceManager.GetString("UPDATE_CLIENT_FAILED_INSTALLER_LAUNCH", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The checksum of the downloaded installer does not match the expected value. ähnelt. + /// + public static string UPDATE_CLIENT_INVALID_CHECKSUM { + get { + return ResourceManager.GetString("UPDATE_CLIENT_INVALID_CHECKSUM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Invalid digital signature on msi. ähnelt. + /// + public static string UPDATE_CLIENT_INVALID_DIGITAL_CERTIFICATE { + get { + return ResourceManager.GetString("UPDATE_CLIENT_INVALID_DIGITAL_CERTIFICATE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Validating the downloaded installer... ähnelt. + /// + public static string UPDATE_CLIENT_VALIDATING_INSTALLER { + get { + return ResourceManager.GetString("UPDATE_CLIENT_VALIDATING_INSTALLER", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have applied filters to the list of update notifications. Do you want to dismiss all update notifications for every connected server, or only the update notifications you have chosen to view? /// ///Note that if RBAC is enabled, only updates which you have privileges to dismiss will be affected. ähnelt. /// @@ -35940,7 +37861,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This operation will remove permanently all updates from every connected server. Do you want to continue? + /// Sucht eine lokalisierte Zeichenfolge, die This operation will dismiss all update notifications for every connected server. Do you want to continue? /// ///Note that if RBAC is enabled, only updates which you have privileges to dismiss will be affected. ähnelt. /// @@ -35960,7 +37881,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die This operation will remove the selected updates from the servers permanently. Do you want to continue? + /// Sucht eine lokalisierte Zeichenfolge, die This operation will dismiss all the selected update notifications. Do you want to continue? /// ///Note that if RBAC is enabled, only updates which you have privileges to dismiss will be affected. ähnelt. /// @@ -36087,15 +38008,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Automatically check for [XenServer] or [XenCenter] updates ähnelt. - /// - public static string UPDATES_DESC { - get { - return ResourceManager.GetString("UPDATES_DESC", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die For the update to take effect after application, the following action is required: /// ähnelt. @@ -36242,7 +38154,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Download [XenCenter] ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Download {0} ähnelt. /// public static string UPDATES_DOWNLOAD_REQUIRED_XENCENTER { get { @@ -36251,7 +38163,79 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Install Update ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Configure Updates... ähnelt. + /// + public static string UPDATES_GENERAL_TAB_CONFIG { + get { + return ResourceManager.GetString("UPDATES_GENERAL_TAB_CONFIG", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die (full application required) ähnelt. + /// + public static string UPDATES_GENERAL_TAB_ENFORCE_HOMOGENEITY { + get { + return ResourceManager.GetString("UPDATES_GENERAL_TAB_ENFORCE_HOMOGENEITY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Last synchronized ähnelt. + /// + public static string UPDATES_GENERAL_TAB_LAST_SYNCED { + get { + return ResourceManager.GetString("UPDATES_GENERAL_TAB_LAST_SYNCED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Update channel ähnelt. + /// + public static string UPDATES_GENERAL_TAB_REPO { + get { + return ResourceManager.GetString("UPDATES_GENERAL_TAB_REPO", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Synchronize Now ähnelt. + /// + public static string UPDATES_GENERAL_TAB_SYNC_NOW { + get { + return ResourceManager.GetString("UPDATES_GENERAL_TAB_SYNC_NOW", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Updates ähnelt. + /// + public static string UPDATES_MENU_ITEM { + get { + return ResourceManager.GetString("UPDATES_MENU_ITEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Automatically check for {0} updates ähnelt. + /// + public static string UPDATES_OPTIONS_DESC { + get { + return ResourceManager.GetString("UPDATES_OPTIONS_DESC", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} Updates ähnelt. + /// + public static string UPDATES_OPTIONS_TITLE { + get { + return ResourceManager.GetString("UPDATES_OPTIONS_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Install Updates ähnelt. /// public static string UPDATES_WIZARD { get { @@ -36295,6 +38279,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Install updates ähnelt. + /// + public static string UPDATES_WIZARD_APPLY_UPDATES { + get { + return ResourceManager.GetString("UPDATES_WIZARD_APPLY_UPDATES", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Installing update {0} on {1}... ähnelt. /// @@ -36313,6 +38306,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Installing updates on {0}... ähnelt. + /// + public static string UPDATES_WIZARD_APPLYING_UPDATES_FROM_CDN { + get { + return ResourceManager.GetString("UPDATES_WIZARD_APPLYING_UPDATES_FROM_CDN", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0}: Check skipped because the '{1}' storage repository is broken. ähnelt. /// @@ -36468,6 +38470,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0}: Check skipped because HA and WLB are enabled on pool {1}. ähnelt. + /// + public static string UPDATES_WIZARD_HA_AND_WLB_ON_WARNING { + get { + return ResourceManager.GetString("UPDATES_WIZARD_HA_AND_WLB_ON_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Pool '{0}' cannot have HA enabled. ähnelt. /// @@ -36606,7 +38617,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] version {0} or newer is required. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} version {1} or newer is required. ähnelt. /// public static string UPDATES_WIZARD_NEWER_XENCENTER_REQUIRED { get { @@ -36615,7 +38626,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Ensure you have upgraded [XenCenter] before upgrading [XenServer]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Ensure you have upgraded to {0} {1} before upgrading {2}. ähnelt. /// public static string UPDATES_WIZARD_NEWER_XENCENTER_WARNING { get { @@ -36669,7 +38680,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: The VM {1} does not have [Citrix VM Tools] installed. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0}: The VM {1} does not have {2} installed. ähnelt. /// public static string UPDATES_WIZARD_NO_TOOLS { get { @@ -36678,7 +38689,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: The VM {1} cannot be suspended until it has up to date [Citrix VM Tools]. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0}: The VM {1} cannot be suspended until it has up to date {2}. ähnelt. /// public static string UPDATES_WIZARD_OUT_OF_DATE_TOOLS { get { @@ -36722,15 +38733,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}: {1} ähnelt. - /// - public static string UPDATES_WIZARD_PRECHECK_FAILED { - get { - return ResourceManager.GetString("UPDATES_WIZARD_PRECHECK_FAILED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die {0}: Conflicting update(s) are present: {1} ähnelt. /// @@ -36812,6 +38814,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Refreshing the updates list for {0}... ähnelt. + /// + public static string UPDATES_WIZARD_REFRESHING_CDN_UPDATES_LIST { + get { + return ResourceManager.GetString("UPDATES_WIZARD_REFRESHING_CDN_UPDATES_LIST", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Deleting update installation file {0} from {1}... ähnelt. /// @@ -36994,6 +39005,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Upgrade coordinator {0} ähnelt. + /// + public static string UPGRADE_COORDINATOR { + get { + return ResourceManager.GetString("UPGRADE_COORDINATOR", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Upgrade host {0} ähnelt. /// @@ -37003,15 +39023,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Upgrade master {0} ähnelt. - /// - public static string UPGRADE_MASTER { - get { - return ResourceManager.GetString("UPGRADE_MASTER", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Apply Upgrade ähnelt. /// @@ -37031,11 +39042,11 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Upgrade pool master '{0}' ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Upgrade pool coordinator '{0}' ähnelt. /// - public static string UPGRADE_POOL_MASTER { + public static string UPGRADE_POOL_COORDINATOR { get { - return ResourceManager.GetString("UPGRADE_POOL_MASTER", resourceCulture); + return ResourceManager.GetString("UPGRADE_POOL_COORDINATOR", resourceCulture); } } @@ -37069,9 +39080,9 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die Upgrade '{0}' ähnelt. /// - public static string UPGRADE_SLAVE { + public static string UPGRADE_SUPPORTER { get { - return ResourceManager.GetString("UPGRADE_SLAVE", resourceCulture); + return ResourceManager.GetString("UPGRADE_SUPPORTER", resourceCulture); } } @@ -37238,7 +39249,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your server license to enable Active Directory. Active Directory allows you to configure [XenServer] access control by adding named user accounts. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your server license to enable Active Directory. Active Directory allows you to configure {0} access control by adding named user accounts. ähnelt. /// public static string UPSELL_BLURB_AD { get { @@ -37256,7 +39267,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your server license to enable the Conversion Manager. This feature helps you migrate workloads from VMware to [XenServer] by moving batches of VMware virtual machines to your [XenServer] environment. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your server license to enable the Conversion Manager. This feature helps you migrate workloads from VMware to {0} by moving batches of VMware virtual machines to your {0} environment. ähnelt. /// public static string UPSELL_BLURB_CONVERSION { get { @@ -37328,7 +39339,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your [XenServer] license to enable VDI live migration. This feature enables you to migrate multiple running VDIs between SRs in the same pool with no VM downtime. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your {0} license to enable VDI live migration. This feature enables you to migrate multiple running VDIs between SRs in the same pool with no VM downtime. ähnelt. /// public static string UPSELL_BLURB_MIGRATE_VDI { get { @@ -37346,7 +39357,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your server license to enable Role Based Access Control. Using the RBAC feature, you will be able to control access to vital components in your [XenServer] resource pools, with full audit logging capabilities and seamless integration with your current Active Directory setup. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Upgrade your server license to enable Role Based Access Control. Using the RBAC feature, you will be able to control access to vital components in your {0} resource pools, with full audit logging capabilities and seamless integration with your current Active Directory setup. ähnelt. /// public static string UPSELL_BLURB_RBAC { get { @@ -37357,7 +39368,7 @@ namespace XenAdmin { /// /// Sucht eine lokalisierte Zeichenfolge, die /// - ///To start a [XenServer] trial, click the button below. ähnelt. + ///To start a {0} trial, click the button below. ähnelt. /// public static string UPSELL_BLURB_TRIAL { get { @@ -37510,7 +39521,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] was unable to authorize the action as {0}. See the application log files for more information. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} was unable to authorize the action as {1}. See the application log files for more information. ähnelt. /// public static string USER_AUTHORIZATION_FAILED { get { @@ -37636,7 +39647,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die GBps ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die GB/s ähnelt. /// public static string VAL_GIGRATE { get { @@ -37672,7 +39683,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die kBps ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die kB/s ähnelt. /// public static string VAL_KILRATE { get { @@ -37708,7 +39719,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die MBps ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die MB/s ähnelt. /// public static string VAL_MEGRATE { get { @@ -37762,7 +39773,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Bps ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die B/s ähnelt. /// public static string VAL_RATE { get { @@ -37798,7 +39809,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TBps ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die TB/s ähnelt. /// public static string VAL_TERRATE { get { @@ -37896,6 +39907,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have selected more than {0} vCPUs for the new VM. Where a VM may be running actively hostile privileged code {1} recommends that the vCPU limit is set to {0} to prevent impact on system availability. ähnelt. + /// + public static string VCPUS_UNTRUSTED_VM_WARNING { + get { + return ResourceManager.GetString("VCPUS_UNTRUSTED_VM_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die VDI ähnelt. /// @@ -37923,6 +39943,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die A VDI with size {0} is required to import virtual disk {1}. ähnelt. + /// + public static string VDI_NOT_ENOUGH_SPACE { + get { + return ResourceManager.GetString("VDI_NOT_ENOUGH_SPACE", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die {0} on '{1}' {2} ähnelt. /// @@ -37987,7 +40016,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] version {0} (build {1}.{2}) {3}-bit ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} version {1} (build {2}) {3}-bit. ähnelt. /// public static string VERSION_NUMBER { get { @@ -37995,57 +40024,21 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU, {2}, {3} displays) ähnelt. - /// - public static string VGPU_DESCRIPTION_MANY { - get { - return ResourceManager.GetString("VGPU_DESCRIPTION_MANY", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU, {2}, {3} displays, multiple vGPU support) ähnelt. - /// - public static string VGPU_DESCRIPTION_MANY_MULTIPLE_VGPU_SUPPORT { - get { - return ResourceManager.GetString("VGPU_DESCRIPTION_MANY_MULTIPLE_VGPU_SUPPORT", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU, {2}, {3} display) ähnelt. - /// - public static string VGPU_DESCRIPTION_ONE { - get { - return ResourceManager.GetString("VGPU_DESCRIPTION_ONE", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU, {2}, {3} display, multiple vGPU support) ähnelt. - /// - public static string VGPU_DESCRIPTION_ONE_MULTIPLE_VGPU_SUPPORT { - get { - return ResourceManager.GetString("VGPU_DESCRIPTION_ONE_MULTIPLE_VGPU_SUPPORT", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU) ähnelt. /// - public static string VGPU_DESCRIPTION_ZEROES { + public static string VGPU_DESCRIPTION { get { - return ResourceManager.GetString("VGPU_DESCRIPTION_ZEROES", resourceCulture); + return ResourceManager.GetString("VGPU_DESCRIPTION", resourceCulture); } } /// /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU, multiple vGPU support) ähnelt. /// - public static string VGPU_DESCRIPTION_ZEROES_MULTIPLE_VGPU_SUPPORT { + public static string VGPU_DESCRIPTION_MULTIPLE_VGPU_SUPPORT { get { - return ResourceManager.GetString("VGPU_DESCRIPTION_ZEROES_MULTIPLE_VGPU_SUPPORT", resourceCulture); + return ResourceManager.GetString("VGPU_DESCRIPTION_MULTIPLE_VGPU_SUPPORT", resourceCulture); } } @@ -38058,15 +40051,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die {0} virtual GPU ({1} per GPU) ähnelt. - /// - public static string VGPU_TOSTRING { - get { - return ResourceManager.GetString("VGPU_TOSTRING", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die View folder... ähnelt. /// @@ -38265,6 +40249,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Management Agent installed only ähnelt. + /// + public static string VIRTUALIZATION_STATE_VM_MANAGEMENT_AGENT_INSTALLED_ONLY { + get { + return ResourceManager.GetString("VIRTUALIZATION_STATE_VM_MANAGEMENT_AGENT_INSTALLED_ONLY", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Management Agent not installed ähnelt. /// @@ -38571,6 +40564,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die The amount of physical memory allocated to this VM is greater than the total memory of its home server. ähnelt. + /// + public static string VM_CPUMEMPAGE_INSUFFICIENT_MEMORY_HOST { + get { + return ResourceManager.GetString("VM_CPUMEMPAGE_INSUFFICIENT_MEMORY_HOST", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The amount of physical memory allocated to this VM is greater than the total memory of any server in the pool. ähnelt. + /// + public static string VM_CPUMEMPAGE_INSUFFICIENT_MEMORY_POOL { + get { + return ResourceManager.GetString("VM_CPUMEMPAGE_INSUFFICIENT_MEMORY_POOL", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Maximum number of &vCPUs: ähnelt. /// @@ -38608,7 +40619,16 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die It is recommended to allocate at least {0} vCPUs for this VM ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The VM's home server does not have enough physical CPUs to start the VM. The VM will start on another server. ähnelt. + /// + public static string VM_CPUMEMPAGE_VCPU_HOME_HOST_WARNING { + get { + return ResourceManager.GetString("VM_CPUMEMPAGE_VCPU_HOME_HOST_WARNING", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die It is recommended to allocate at least {0} vCPUs for this VM. ähnelt. /// public static string VM_CPUMEMPAGE_VCPU_MIN_WARNING { get { @@ -38617,7 +40637,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die More vCPUs than physical CPUs may lead to reduced VM performance ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die There are no servers with enough physical CPUs to start the VM. ähnelt. /// public static string VM_CPUMEMPAGE_VCPU_WARNING { get { @@ -39040,7 +41060,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die {0}. {1}: {2} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die - {0}: {1} ähnelt. /// public static string VMSS_ALERT_VM_ERROR_FORMAT { get { @@ -39085,7 +41105,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Pool master unreachable ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Pool coordinator unreachable ähnelt. /// public static string VMSS_HOST_NOT_LIVE { get { @@ -39184,15 +41204,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Succeeded ähnelt. - /// - public static string VMSS_SUCCEEDED { - get { - return ResourceManager.GetString("VMSS_SUCCEEDED", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Virtual Machines ähnelt. /// @@ -39409,6 +41420,177 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Trusted Platform Module ähnelt. + /// + public static string VTPM { + get { + return ResourceManager.GetString("VTPM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Attaching vTPM... ähnelt. + /// + public static string VTPM_ATTACH_DESCRIPTION { + get { + return ResourceManager.GetString("VTPM_ATTACH_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Attaching a new vTPM to VM '{0}' ähnelt. + /// + public static string VTPM_ATTACH_TITLE { + get { + return ResourceManager.GetString("VTPM_ATTACH_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} vTPMs are attached to this VM. ähnelt. + /// + public static string VTPM_ATTACHED_MANY { + get { + return ResourceManager.GetString("VTPM_ATTACHED_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die A vTPM is attached to this VM. ähnelt. + /// + public static string VTPM_ATTACHED_ONE { + get { + return ResourceManager.GetString("VTPM_ATTACHED_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Your selection includes VMs with attached vTPMs. If you export and re-import these VMs, the vTPM data will not be preserved. Some of the VMs' security features may be deactivated and the VMs may not start. ähnelt. + /// + public static string VTPM_EXPORT_UNSUPPORTED_FOR_ALL { + get { + return ResourceManager.GetString("VTPM_EXPORT_UNSUPPORTED_FOR_ALL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The OVF/OVA format does not preserve vTPM data. Some of the VMs' security features may be deactivated and the VMs may not start. Use the XVA format to preserve vTPM data. ähnelt. + /// + public static string VTPM_EXPORT_UNSUPPORTED_FOR_OVF { + get { + return ResourceManager.GetString("VTPM_EXPORT_UNSUPPORTED_FOR_OVF", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The maximum number of vTPMs that can be attached to this VM is {0}. ähnelt. + /// + public static string VTPM_MAX_REACHED { + get { + return ResourceManager.GetString("VTPM_MAX_REACHED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The selected template has {0} vTPMs attached to it, which is the maximum number that can be attached to the VM. ähnelt. + /// + public static string VTPM_MAX_REACHED_CUSTOM_TEMPLATE_MANY { + get { + return ResourceManager.GetString("VTPM_MAX_REACHED_CUSTOM_TEMPLATE_MANY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die The selected template has 1 vTPM attached to it, which is the maximum number that can be attached to the VM. ähnelt. + /// + public static string VTPM_MAX_REACHED_CUSTOM_TEMPLATE_ONE { + get { + return ResourceManager.GetString("VTPM_MAX_REACHED_CUSTOM_TEMPLATE_ONE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die There are no vTPMs attached to this VM. ähnelt. + /// + public static string VTPM_NONE_ATTACHED { + get { + return ResourceManager.GetString("VTPM_NONE_ATTACHED", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Attaching a new vTPM to this VM is currently not allowed. ähnelt. + /// + public static string VTPM_OPERATION_DISALLOWED_ADD { + get { + return ResourceManager.GetString("VTPM_OPERATION_DISALLOWED_ADD", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Removing this vTPM from the VM is currently not allowed. ähnelt. + /// + public static string VTPM_OPERATION_DISALLOWED_REMOVE { + get { + return ResourceManager.GetString("VTPM_OPERATION_DISALLOWED_REMOVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You need to shut down this VM before you can attach a new vTPM to it. ähnelt. + /// + public static string VTPM_POWER_STATE_WRONG_ATTACH { + get { + return ResourceManager.GetString("VTPM_POWER_STATE_WRONG_ATTACH", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You need to shut down the VM before you can remove this vTPM. ähnelt. + /// + public static string VTPM_POWER_STATE_WRONG_REMOVE { + get { + return ResourceManager.GetString("VTPM_POWER_STATE_WRONG_REMOVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Remove vTPM ähnelt. + /// + public static string VTPM_REMOVE { + get { + return ResourceManager.GetString("VTPM_REMOVE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Removing vTPM... ähnelt. + /// + public static string VTPM_REMOVE_DESCRIPTION { + get { + return ResourceManager.GetString("VTPM_REMOVE_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Removing a vTPM from VM '{0}' ähnelt. + /// + public static string VTPM_REMOVE_TITLE { + get { + return ResourceManager.GetString("VTPM_REMOVE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Removing the vTPM may result in the deactivation of some security features on the VM and prevent it from starting. Do you want to continue? ähnelt. + /// + public static string VTPM_REMOVE_WARNING { + get { + return ResourceManager.GetString("VTPM_REMOVE_WARNING", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Waiting ähnelt. /// @@ -39517,6 +41699,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Health Check has been removed. You must disable Health Check first. ähnelt. + /// + public static string WARNING_HEALTH_CHECK_SERVICE_INFO { + get { + return ResourceManager.GetString("WARNING_HEALTH_CHECK_SERVICE_INFO", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Cannot find '{0}'. ähnelt. /// @@ -39625,24 +41816,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Your new network will be mapped to an existing physical network interface and assigned a VLAN number to use on that interface. You can select the physical interface you would like to use below. ähnelt. - /// - public static string WIZARD_DESC_NETWORK_SETTINGS_EXTERNAL { - get { - return ResourceManager.GetString("WIZARD_DESC_NETWORK_SETTINGS_EXTERNAL", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die Check the box below if you would like to automatically add this network to new VMs. ähnelt. - /// - public static string WIZARD_DESC_NETWORK_SETTINGS_INTERNAL { - get { - return ResourceManager.GetString("WIZARD_DESC_NETWORK_SETTINGS_INTERNAL", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die There was an internal error completing this wizard. Please see the logs for more information. ähnelt. /// @@ -39769,6 +41942,24 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die WLB check ähnelt. + /// + public static string WLB_CHECK_DESCRIPTION { + get { + return ResourceManager.GetString("WLB_CHECK_DESCRIPTION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Workload &Balancing ähnelt. + /// + public static string WLB_COMMAND_MENU_ITEM { + get { + return ResourceManager.GetString("WLB_COMMAND_MENU_ITEM", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Workload Balancing Configuration for {0} ähnelt. /// @@ -39863,6 +42054,26 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Disconnect WLB server... ähnelt. + /// + public static string WLB_DISCONNECT_MENU_ITEM { + get { + return ResourceManager.GetString("WLB_DISCONNECT_MENU_ITEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to disconnect the Workload Balancing server from this pool? + /// + ///Disconnecting will stop all Workload Balancing operations for this resource pool and delete all information about this pool from the Workload Balancing database. ähnelt. + /// + public static string WLB_DISCONNECT_SERVER { + get { + return ResourceManager.GetString("WLB_DISCONNECT_SERVER", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Workload Balancing is currently paused for pool {0}. /// @@ -39957,6 +42168,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die WLB received an argument from the server that is not implemented. ähnelt. + /// + public static string WLB_ERROR_4006 { + get { + return ResourceManager.GetString("WLB_ERROR_4006", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die WLB received an invalid argument from the server. ähnelt. /// @@ -40510,15 +42730,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die None ähnelt. - /// - public static string WLB_OPT_REASON_NONE { - get { - return ResourceManager.GetString("WLB_OPT_REASON_NONE", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Release Resource ähnelt. /// @@ -40675,7 +42886,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die An error occurred when attempting to bind report datasources: {0} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die An error occurred when attempting to bind report data sources: {0} ähnelt. /// public static string WLB_REPORT_BIND_DATASOURCE { get { @@ -41142,6 +43353,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die View Workload &Reports... ähnelt. + /// + public static string WLB_REPORT_VIEW_MENU_ITEM { + get { + return ResourceManager.GetString("WLB_REPORT_VIEW_MENU_ITEM", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Filter Item ähnelt. /// @@ -41196,6 +43416,15 @@ namespace XenAdmin { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Retrieving WLB recommendations on VMs to migrate from server {0} ähnelt. + /// + public static string WLB_RETRIEVING_EVACUATE_RECOMMENDATIONS { + get { + return ResourceManager.GetString("WLB_RETRIEVING_EVACUATE_RECOMMENDATIONS", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Retrieving WLB recommendations for pool {0} ähnelt. /// @@ -41206,7 +43435,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Retrieving WLB recommendations ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Retrieving WLB recommendations ähnelt. /// public static string WLB_RETRIEVING_VM_RECOMMENDATIONS { get { @@ -41567,15 +43796,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Pool Audit Log History ähnelt. - /// - public static string WLBREPORT_POOL_AUDIT_HISTORY { - get { - return ResourceManager.GetString("WLBREPORT_POOL_AUDIT_HISTORY", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Pool Connection Lost ähnelt. /// @@ -41603,24 +43823,6 @@ namespace XenAdmin { } } - /// - /// Sucht eine lokalisierte Zeichenfolge, die Pool Optimization History ähnelt. - /// - public static string WLBREPORT_POOL_OPTIMIZATION_HISTORY { - get { - return ResourceManager.GetString("WLBREPORT_POOL_OPTIMIZATION_HISTORY", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die An error occurred when attempting to open the Workload Balancing report window. Please check the report configuration file. ähnelt. - /// - public static string WLBREPORT_REPORT_CONFIG_ERROR { - get { - return ResourceManager.GetString("WLBREPORT_REPORT_CONFIG_ERROR", resourceCulture); - } - } - /// /// Sucht eine lokalisierte Zeichenfolge, die Virtual Machine Motion History ähnelt. /// @@ -41676,7 +43878,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The {0} feature was deprecated in {1} and may be retired in future versions ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The {0} feature was deprecated in {1} and may be retired in future versions. ähnelt. /// public static string X_IS_DEPRECATED_IN_X { get { @@ -41685,7 +43887,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The {0} feature is not available in {1} and later versions ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The {0} feature is not available in {1} and later versions. ähnelt. /// public static string X_IS_REMOVED_IN_X { get { @@ -41703,16 +43905,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] ähnelt. - /// - public static string XENCENTER { - get { - return ResourceManager.GetString("XENCENTER", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] Settings|*.config ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Settings|*.config ähnelt. /// public static string XENCENTER_CONFIG_FILTER { get { @@ -41721,7 +43914,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Newer [XenCenter] Available ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Newer {0} Available ähnelt. /// public static string XENCENTER_NEWER_AVAILABLE { get { @@ -41730,7 +43923,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenCenter] version check ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} version check ähnelt. /// public static string XENCENTER_VERSION_CHECK_DESCRIPTION { get { @@ -41748,34 +43941,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] ähnelt. - /// - public static string XENSERVER { - get { - return ResourceManager.GetString("XENSERVER", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] {0} ähnelt. - /// - public static string XENSERVER_6_5 { - get { - return ResourceManager.GetString("XENSERVER_6_5", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] {0} ähnelt. - /// - public static string XENSERVER_8_1 { - get { - return ResourceManager.GetString("XENSERVER_8_1", resourceCulture); - } - } - - /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Templates ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Templates ähnelt. /// public static string XENSERVER_TEMPLATES { get { @@ -41793,7 +43959,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Backup Files ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} Backup Files ähnelt. /// public static string XS_BACKUP_FILES { get { @@ -41802,7 +43968,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] License Files ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die {0} License Files ähnelt. /// public static string XS_LICENSE_FILES { get { @@ -41811,7 +43977,7 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [Citrix VM Tools] DVDs will now be inserted into the DVD drive of each of the selected VMs. Any disks currently in the drives will be ejected. + /// Sucht eine lokalisierte Zeichenfolge, die {0} DVDs will now be inserted into the DVD drive of each of the selected VMs. Any disks currently in the drives will be ejected. /// ///You will need to navigate to the Console on each of the selected VMs to complete the installation. ähnelt. /// @@ -41822,20 +43988,22 @@ namespace XenAdmin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The [Citrix VM Tools] SR could not be found. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die Do you want {0} to insert the {1} DVD into your VM's DVD drive and take you to the VM's console? + /// + ///Any disk in your VM's DVD drive will be ejected when installing {1}. ähnelt. /// - public static string XS_TOOLS_SR_NOT_FOUND { + public static string XS_TOOLS_MESSAGE_ONE_VM { get { - return ResourceManager.GetString("XS_TOOLS_SR_NOT_FOUND", resourceCulture); + return ResourceManager.GetString("XS_TOOLS_MESSAGE_ONE_VM", resourceCulture); } } /// - /// Sucht eine lokalisierte Zeichenfolge, die [XenServer] Update Files ({0})|{0}|All files ({1})|{1} ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The {0} SR could not be found. ähnelt. /// - public static string XSUPDATE { + public static string XS_TOOLS_SR_NOT_FOUND { get { - return ResourceManager.GetString("XSUPDATE", resourceCulture); + return ResourceManager.GetString("XS_TOOLS_SR_NOT_FOUND", resourceCulture); } } @@ -41874,5 +44042,214 @@ namespace XenAdmin { return ResourceManager.GetString("YOU_ARE_HERE", resourceCulture); } } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Retrieving list of available updates for {0}... ähnelt. + /// + public static string YUM_REPO_ACTION_CHECK_FOR_UPDATES { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_CHECK_FOR_UPDATES", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disabling repository {0}... ähnelt. + /// + public static string YUM_REPO_ACTION_CONFIG_DESCRIPTION_DISABLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_CONFIG_DESCRIPTION_DISABLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabling repository {0}... ähnelt. + /// + public static string YUM_REPO_ACTION_CONFIG_DESCRIPTION_ENABLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_CONFIG_DESCRIPTION_ENABLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Introducing repository {0}... ähnelt. + /// + public static string YUM_REPO_ACTION_CONFIG_DESCRIPTION_INTRODUCE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_CONFIG_DESCRIPTION_INTRODUCE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configuring {0} to retrieve updates from the {1} repo... ähnelt. + /// + public static string YUM_REPO_ACTION_CONFIG_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_CONFIG_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configuring proxy for accessing the update channel ähnelt. + /// + public static string YUM_REPO_ACTION_PROXY_CONFIG_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_PROXY_CONFIG_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disabling proxy for accessing the update channel ähnelt. + /// + public static string YUM_REPO_ACTION_PROXY_DISABLE_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_PROXY_DISABLE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Configuring periodic synchronization with the update channel... ähnelt. + /// + public static string YUM_REPO_ACTION_SYNC_SCHEDULE_CONFIG_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_SYNC_SCHEDULE_CONFIG_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Disabling periodic synchronization with the update channel... ähnelt. + /// + public static string YUM_REPO_ACTION_SYNC_SCHEDULE_DISABLE_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_SYNC_SCHEDULE_DISABLE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Enabling periodic synchronization with the update channel... ähnelt. + /// + public static string YUM_REPO_ACTION_SYNC_SCHEDULE_ENABLE_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_SYNC_SCHEDULE_ENABLE_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Synchronizing {0} with update channel... ähnelt. + /// + public static string YUM_REPO_ACTION_SYNCING_TITLE { + get { + return ResourceManager.GetString("YUM_REPO_ACTION_SYNCING_TITLE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Base ähnelt. + /// + public static string YUM_REPO_BASE { + get { + return ResourceManager.GetString("YUM_REPO_BASE", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Early Access ähnelt. + /// + public static string YUM_REPO_EARLY_ACCESS { + get { + return ResourceManager.GetString("YUM_REPO_EARLY_ACCESS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Normal ähnelt. + /// + public static string YUM_REPO_NORMAL { + get { + return ResourceManager.GetString("YUM_REPO_NORMAL", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die ähnelt. + /// + public static string YUM_REPO_PROXY { + get { + return ResourceManager.GetString("YUM_REPO_PROXY", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die {0} recommends that you synchronize the selected pool(s) or standalone host(s) with the specified update channel as soon as possible to retrieve the latest available updates. + /// + ///Do you want to synchronize immediately? ähnelt. + /// + public static string YUM_REPO_SYNC_AFTER_CONFIG { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_AFTER_CONFIG", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to synchronize all connected pools or standalone servers with their respective update channel? ähnelt. + /// + public static string YUM_REPO_SYNC_ALL_CONFIRMATION { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_ALL_CONFIRMATION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die You have applied filters to the list of pools or standalone servers. Do you want to synchronize all connected systems with their respective update channel, or only the systems you have chosen to view? ähnelt. + /// + public static string YUM_REPO_SYNC_FILTER_CONFIRMATION { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_FILTER_CONFIRMATION", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Synchronization with the update channel is in progress. Please try again later. ähnelt. + /// + public static string YUM_REPO_SYNC_IN_PROGRESS { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_IN_PROGRESS", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Synchronize with update channel ähnelt. + /// + public static string YUM_REPO_SYNC_MENU_ITEM { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_MENU_ITEM", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Synchronize &all ähnelt. + /// + public static string YUM_REPO_SYNC_YES_ALL_BUTTON { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_YES_ALL_BUTTON", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die &Yes, Synchronize ähnelt. + /// + public static string YUM_REPO_SYNC_YES_BUTTON { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_YES_BUTTON", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Only synchronize &visible ähnelt. + /// + public static string YUM_REPO_SYNC_YES_VISIBLE_BUTTON { + get { + return ResourceManager.GetString("YUM_REPO_SYNC_YES_VISIBLE_BUTTON", resourceCulture); + } + } } } diff --git a/XenModel/Messages.resx b/XenModel/Messages.resx index ee4091e33..a12e4ef83 100755 --- a/XenModel/Messages.resx +++ b/XenModel/Messages.resx @@ -167,6 +167,21 @@ Change log destination + + + Install certificate... + + + Installing server certificate... + + + You cannot install a server certificate when HA is on. + + + &Install certificate... + + + Installing certificate on server {0}... Changing memory settings for {0}... @@ -1063,6 +1078,15 @@ This could be because the data source is not generating any data. Ensure the pre Saving virtual GPU configuration + + + The selected virtual GPU type supports multiple instances. + + + The selected virtual GPU type does not support multiple instances. + + + Assign a virtual GPU Virtual network interface created diff --git a/XenModel/Utils/Helpers.cs b/XenModel/Utils/Helpers.cs index d74e04880..493e443c5 100755 --- a/XenModel/Utils/Helpers.cs +++ b/XenModel/Utils/Helpers.cs @@ -28,6 +28,7 @@ * SUCH DAMAGE. */ +using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Collections.Specialized; diff --git a/XenModel/XenAPI-Extensions/Host.cs b/XenModel/XenAPI-Extensions/Host.cs index c0b882209..1c4d38f96 100644 --- a/XenModel/XenAPI-Extensions/Host.cs +++ b/XenModel/XenAPI-Extensions/Host.cs @@ -527,15 +527,15 @@ namespace XenAPI #region Experimental Features - //public static bool CorosyncDisabled(Host h) - //{ - // return RestrictCorosync(h) && FeatureDisabled(h, "corosync"); - //} + public static bool CorosyncDisabled(Host h) + { + return RestrictCorosync(h) && FeatureDisabled(h, "corosync"); + } - //public static bool SriovNetworkDisabled(Host h) - //{ - // return RestrictSriovNetwork(h) && FeatureDisabled(h, "network_sriov"); - //} + public static bool SriovNetworkDisabled(Host h) + { + return RestrictSriovNetwork(h) && FeatureDisabled(h, "network_sriov"); + } public static bool UefiBootDisabled(Host h) { diff --git a/XenModel/XenAPI-Extensions/SR.cs b/XenModel/XenAPI-Extensions/SR.cs index d808895bc..30a8090f5 100644 --- a/XenModel/XenAPI-Extensions/SR.cs +++ b/XenModel/XenAPI-Extensions/SR.cs @@ -50,7 +50,7 @@ namespace XenAPI { local, file, ext, ext4, lvmoiscsi, iso, nfs, lvm, udev, lvmofc, lvmohba, egenera, egeneracd, dummy, unknown, shm, - iscsi, + iscsi, tmpfs, xfs, ebs, rawhba, smb, lvmofcoe, gfs2, nutanix, nutanixiso, diff --git a/XenModel/XenAPI/ApiVersion.cs b/XenModel/XenAPI/ApiVersion.cs index 03967893a..d98d5fba8 100644 --- a/XenModel/XenAPI/ApiVersion.cs +++ b/XenModel/XenAPI/ApiVersion.cs @@ -36,33 +36,60 @@ namespace XenAPI { public enum API_Version { - API_1_1 = 1, //XenServer 4.0 (rio) - API_1_2 = 2, //XenServer 4.1 (miami) - API_1_3 = 3, //XenServer 5.0 (orlando) - API_1_4 = 4, //Unreleased () - API_1_5 = 5, //XenServer 5.0 update 3 () - API_1_6 = 6, //XenServer 5.5 (george) - API_1_7 = 7, //XenServer 5.6 (midnight-ride) - API_1_8 = 8, //XenServer 5.6 FP1 (cowley) - API_1_9 = 9, //XenServer 6.0 (boston) - API_1_10 = 10, //XenServer 6.1 (tampa) - API_2_0 = 11, //XenServer 6.2 (clearwater) - API_2_1 = 12, //XenServer 6.2 SP1 (vgpu-productisation) - API_2_2 = 13, //XenServer 6.2 SP1 Hotfix 4 (clearwater-felton) - API_2_3 = 14, //XenServer 6.5 (creedence) - API_2_4 = 15, //XenServer 6.5 SP1 (cream) - API_2_5 = 16, //XenServer 7.0 (dundee) - API_2_6 = 17, //XenServer 7.1 (ely) - API_2_7 = 18, //XenServer 7.2 (falcon) - API_2_8 = 19, //XenServer 7.3 (inverness) - API_2_9 = 20, //XenServer 7.4 (jura) - API_2_10 = 21, //XenServer 7.5 (kolkata) - API_2_11 = 22, //XenServer 7.6 (lima) - API_2_12 = 23, //Citrix Hypervisor 8.0 (naples) - API_2_13 = 24, //Unreleased (oslo) - API_2_14 = 25, //Citrix Hypervisor 8.1 (quebec) - API_2_15 = 26, //Citrix Hypervisor 8.2 (stockholm) - API_2_16 = 27, //unreleased (stockholm) + /// XenServer 4.0 (rio) + API_1_1 = 1, + /// XenServer 4.1 (miami) + API_1_2 = 2, + /// XenServer 5.0 (orlando) + API_1_3 = 3, + /// Unreleased () + API_1_4 = 4, + /// XenServer 5.0 update 3 () + API_1_5 = 5, + /// XenServer 5.5 (george) + API_1_6 = 6, + /// XenServer 5.6 (midnight-ride) + API_1_7 = 7, + /// XenServer 5.6 FP1 (cowley) + API_1_8 = 8, + /// XenServer 6.0 (boston) + API_1_9 = 9, + /// XenServer 6.1 (tampa) + API_1_10 = 10, + /// XenServer 6.2 (clearwater) + API_2_0 = 11, + /// XenServer 6.2 SP1 (vgpu-productisation) + API_2_1 = 12, + /// XenServer 6.2 SP1 Hotfix 4 (clearwater-felton) + API_2_2 = 13, + /// XenServer 6.5 (creedence) + API_2_3 = 14, + /// XenServer 6.5 SP1 (cream) + API_2_4 = 15, + /// XenServer 7.0 (dundee) + API_2_5 = 16, + /// XenServer 7.1 (ely) + API_2_6 = 17, + /// XenServer 7.2 (falcon) + API_2_7 = 18, + /// XenServer 7.3 (inverness) + API_2_8 = 19, + /// XenServer 7.4 (jura) + API_2_9 = 20, + /// XenServer 7.5 (kolkata) + API_2_10 = 21, + /// XenServer 7.6 (lima) + API_2_11 = 22, + /// Citrix Hypervisor 8.0 (naples) + API_2_12 = 23, + /// Unreleased (oslo) + API_2_13 = 24, + /// Citrix Hypervisor 8.1 (quebec) + API_2_14 = 25, + /// Citrix Hypervisor 8.2 (stockholm) + API_2_15 = 26, + /// Unreleased (next) + API_2_20 = 27, LATEST = 27, UNKNOWN = 99 } @@ -125,8 +152,6 @@ namespace XenAPI return "2.14"; case API_Version.API_2_15: return "2.15"; - case API_Version.API_2_16: - return "2.16"; case API_Version.API_2_20: return "2.20"; default: diff --git a/XenModel/XenModel.csproj b/XenModel/XenModel.csproj index 32b766403..50153ee5a 100755 --- a/XenModel/XenModel.csproj +++ b/XenModel/XenModel.csproj @@ -80,6 +80,7 @@ + @@ -176,6 +177,8 @@ + + @@ -552,10 +555,7 @@ - - Branding.resx - Designer - + Designer PublicResXFileCodeGenerator