Merge pull request #1215 from geosharath/VMSS

CA-213509: [VMSS] XC Unable to add policy to a Folder/ Tags
This commit is contained in:
Mihaela Stoica 2016-10-19 09:38:45 +01:00 committed by GitHub
commit 64228be587
3 changed files with 18 additions and 0 deletions

View File

@ -203,6 +203,12 @@ namespace XenAdmin.SettingsPanels
labelTitle.Text = Messages.GENERAL_PAGE_VMPP_SETTINGS; labelTitle.Text = Messages.GENERAL_PAGE_VMPP_SETTINGS;
} }
if (xenObjectCopy is VMSS)
{
lblFolder.Visible = labelTags.Visible = folderPanel.Visible = tagsPanel.Visible = false;
labelTitle.Text = Messages.GENERAL_PAGE_VMSS_SETTINGS;
}
if (xenObjectCopy is VM_appliance) if (xenObjectCopy is VM_appliance)
{ {
lblFolder.Visible = labelTags.Visible = folderPanel.Visible = tagsPanel.Visible = false; lblFolder.Visible = labelTags.Visible = folderPanel.Visible = tagsPanel.Visible = false;

View File

@ -15255,6 +15255,15 @@ namespace XenAdmin {
} }
} }
/// <summary>
/// Looks up a localized string similar to Enter the snapshot schedule name and an optional description..
/// </summary>
public static string GENERAL_PAGE_VMSS_SETTINGS {
get {
return ResourceManager.GetString("GENERAL_PAGE_VMSS_SETTINGS", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to The server &apos;{0}&apos; needs to be rebooted for update &apos;{1}&apos; to take effect. /// Looks up a localized string similar to The server &apos;{0}&apos; needs to be rebooted for update &apos;{1}&apos; to take effect.
/// </summary> /// </summary>

View File

@ -5345,6 +5345,9 @@ Would you like to eject these ISOs before continuing?</value>
<data name="GENERAL_PAGE_VMPP_SETTINGS" xml:space="preserve"> <data name="GENERAL_PAGE_VMPP_SETTINGS" xml:space="preserve">
<value>Enter the VM Protection Policy name and an optional description.</value> <value>Enter the VM Protection Policy name and an optional description.</value>
</data> </data>
<data name="GENERAL_PAGE_VMSS_SETTINGS" xml:space="preserve">
<value>Enter the snapshot schedule name and an optional description.</value>
</data>
<data name="GENERAL_PAGE_VM_APPLIANCE_SETTINGS" xml:space="preserve"> <data name="GENERAL_PAGE_VM_APPLIANCE_SETTINGS" xml:space="preserve">
<value>Enter the vApp name and an optional description.</value> <value>Enter the vApp name and an optional description.</value>
</data> </data>