mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-24 22:06:59 +01:00
CA-205187 - L10n: JA/SC: The websites are not shown as hyperlink on t… (#1591)
* CA-205187 - L10n: JA/SC: The websites are not shown as hyperlink on the “Health Check Privacy Statement” window Signed-off-by: Letsibogo Ramadi <letsibogo.ramadi@citrix.com> * CA-205187 - L10n: JA/SC: The websites are not shown as hyperlink Fixed tab order Signed-off-by: Letsibogo Ramadi <letsibogo.ramadi@citrix.com> * CA-205187 - L10n: JA/SC: The websites are not shown as hyperlink Added Japanese privacy policy * CA-205187 - L10n: JA/SC: The websites are not shown as hyperlink Fixed regression in tab order
This commit is contained in:
parent
221a11f6b7
commit
fb5438282d
@ -30,345 +30,345 @@ namespace XenAdmin.Dialogs.HealthCheck
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HealthCheckOverviewDialog));
|
||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
||||
this.poolsDataGridView = new XenAdmin.Controls.DataGridViewEx.DataGridViewEx();
|
||||
this.PoolNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.StatusColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.poolNameLabel = new System.Windows.Forms.Label();
|
||||
this.poolDetailsPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.healthCheckStatusPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.failedUploadDateLabel = new System.Windows.Forms.Label();
|
||||
this.failedUploadLabel = new System.Windows.Forms.Label();
|
||||
this.lastUploadDateLabel = new System.Windows.Forms.Label();
|
||||
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
||||
this.issuesLabel = new System.Windows.Forms.Label();
|
||||
this.refreshLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.disableLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.uploadRequestLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.scheduleLabel = new System.Windows.Forms.Label();
|
||||
this.editLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.label4 = new System.Windows.Forms.Label();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.lastUploadLabel = new System.Windows.Forms.Label();
|
||||
this.ReportAnalysisLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.previousUploadPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.viewReportLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.previousUploadDateLabel = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.notEnrolledPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.enrollNowLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.label6 = new System.Windows.Forms.Label();
|
||||
this.buttonCancel = new System.Windows.Forms.Button();
|
||||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.PolicyStatementLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.rubricLabel = new System.Windows.Forms.Label();
|
||||
this.showAgainCheckBox = new System.Windows.Forms.CheckBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
||||
this.splitContainer1.Panel1.SuspendLayout();
|
||||
this.splitContainer1.Panel2.SuspendLayout();
|
||||
this.splitContainer1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.poolsDataGridView)).BeginInit();
|
||||
this.tableLayoutPanel2.SuspendLayout();
|
||||
this.poolDetailsPanel.SuspendLayout();
|
||||
this.healthCheckStatusPanel.SuspendLayout();
|
||||
this.flowLayoutPanel1.SuspendLayout();
|
||||
this.previousUploadPanel.SuspendLayout();
|
||||
this.notEnrolledPanel.SuspendLayout();
|
||||
this.tableLayoutPanel1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// splitContainer1
|
||||
//
|
||||
resources.ApplyResources(this.splitContainer1, "splitContainer1");
|
||||
this.splitContainer1.Name = "splitContainer1";
|
||||
//
|
||||
// splitContainer1.Panel1
|
||||
//
|
||||
this.splitContainer1.Panel1.Controls.Add(this.poolsDataGridView);
|
||||
resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
|
||||
//
|
||||
// splitContainer1.Panel2
|
||||
//
|
||||
this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel2);
|
||||
resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
|
||||
//
|
||||
// poolsDataGridView
|
||||
//
|
||||
this.poolsDataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
|
||||
this.poolsDataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
|
||||
this.poolsDataGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
|
||||
this.poolsDataGridView.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
||||
this.poolsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.PoolNameColumn,
|
||||
this.StatusColumn});
|
||||
resources.ApplyResources(this.poolsDataGridView, "poolsDataGridView");
|
||||
this.poolsDataGridView.Name = "poolsDataGridView";
|
||||
this.poolsDataGridView.ReadOnly = true;
|
||||
this.poolsDataGridView.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
|
||||
//
|
||||
// PoolNameColumn
|
||||
//
|
||||
this.PoolNameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
||||
resources.ApplyResources(this.PoolNameColumn, "PoolNameColumn");
|
||||
this.PoolNameColumn.Name = "PoolNameColumn";
|
||||
this.PoolNameColumn.ReadOnly = true;
|
||||
//
|
||||
// StatusColumn
|
||||
//
|
||||
this.StatusColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
||||
resources.ApplyResources(this.StatusColumn, "StatusColumn");
|
||||
this.StatusColumn.Name = "StatusColumn";
|
||||
this.StatusColumn.ReadOnly = true;
|
||||
this.StatusColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
||||
//
|
||||
// tableLayoutPanel2
|
||||
//
|
||||
this.tableLayoutPanel2.BackColor = System.Drawing.SystemColors.Window;
|
||||
resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
|
||||
this.tableLayoutPanel2.Controls.Add(this.poolNameLabel, 0, 0);
|
||||
this.tableLayoutPanel2.Controls.Add(this.poolDetailsPanel, 0, 1);
|
||||
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
|
||||
//
|
||||
// poolNameLabel
|
||||
//
|
||||
this.poolNameLabel.AutoEllipsis = true;
|
||||
resources.ApplyResources(this.poolNameLabel, "poolNameLabel");
|
||||
this.poolNameLabel.Name = "poolNameLabel";
|
||||
//
|
||||
// poolDetailsPanel
|
||||
//
|
||||
resources.ApplyResources(this.poolDetailsPanel, "poolDetailsPanel");
|
||||
this.tableLayoutPanel2.SetColumnSpan(this.poolDetailsPanel, 2);
|
||||
this.poolDetailsPanel.Controls.Add(this.healthCheckStatusPanel, 0, 0);
|
||||
this.poolDetailsPanel.Controls.Add(this.notEnrolledPanel, 0, 1);
|
||||
this.poolDetailsPanel.Name = "poolDetailsPanel";
|
||||
//
|
||||
// healthCheckStatusPanel
|
||||
//
|
||||
resources.ApplyResources(this.healthCheckStatusPanel, "healthCheckStatusPanel");
|
||||
this.healthCheckStatusPanel.Controls.Add(this.failedUploadDateLabel, 1, 5);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.failedUploadLabel, 0, 5);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.lastUploadDateLabel, 1, 1);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.flowLayoutPanel1, 0, 3);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.disableLinkLabel, 0, 10);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.uploadRequestLinkLabel, 0, 11);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.scheduleLabel, 0, 8);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.editLinkLabel, 0, 9);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.label4, 0, 7);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.label1, 0, 0);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.lastUploadLabel, 0, 1);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.ReportAnalysisLinkLabel, 0, 4);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.previousUploadPanel, 0, 6);
|
||||
this.healthCheckStatusPanel.Name = "healthCheckStatusPanel";
|
||||
//
|
||||
// failedUploadDateLabel
|
||||
//
|
||||
resources.ApplyResources(this.failedUploadDateLabel, "failedUploadDateLabel");
|
||||
this.failedUploadDateLabel.Name = "failedUploadDateLabel";
|
||||
//
|
||||
// failedUploadLabel
|
||||
//
|
||||
resources.ApplyResources(this.failedUploadLabel, "failedUploadLabel");
|
||||
this.failedUploadLabel.Name = "failedUploadLabel";
|
||||
//
|
||||
// lastUploadDateLabel
|
||||
//
|
||||
resources.ApplyResources(this.lastUploadDateLabel, "lastUploadDateLabel");
|
||||
this.lastUploadDateLabel.Name = "lastUploadDateLabel";
|
||||
//
|
||||
// flowLayoutPanel1
|
||||
//
|
||||
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.flowLayoutPanel1, 2);
|
||||
this.flowLayoutPanel1.Controls.Add(this.issuesLabel);
|
||||
this.flowLayoutPanel1.Controls.Add(this.refreshLinkLabel);
|
||||
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
||||
//
|
||||
// issuesLabel
|
||||
//
|
||||
resources.ApplyResources(this.issuesLabel, "issuesLabel");
|
||||
this.issuesLabel.Name = "issuesLabel";
|
||||
//
|
||||
// refreshLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.refreshLinkLabel, "refreshLinkLabel");
|
||||
this.refreshLinkLabel.Name = "refreshLinkLabel";
|
||||
this.refreshLinkLabel.TabStop = true;
|
||||
this.refreshLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.refreshLinkLabel_LinkClicked);
|
||||
//
|
||||
// disableLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.disableLinkLabel, "disableLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.disableLinkLabel, 2);
|
||||
this.disableLinkLabel.Name = "disableLinkLabel";
|
||||
this.disableLinkLabel.TabStop = true;
|
||||
this.disableLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.disableLinkLabel_LinkClicked);
|
||||
//
|
||||
// uploadRequestLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.uploadRequestLinkLabel, "uploadRequestLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.uploadRequestLinkLabel, 2);
|
||||
this.uploadRequestLinkLabel.Name = "uploadRequestLinkLabel";
|
||||
this.uploadRequestLinkLabel.TabStop = true;
|
||||
this.uploadRequestLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.uploadRequestLinkLabel_LinkClicked);
|
||||
//
|
||||
// scheduleLabel
|
||||
//
|
||||
resources.ApplyResources(this.scheduleLabel, "scheduleLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.scheduleLabel, 2);
|
||||
this.scheduleLabel.Name = "scheduleLabel";
|
||||
//
|
||||
// editLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.editLinkLabel, "editLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.editLinkLabel, 2);
|
||||
this.editLinkLabel.Name = "editLinkLabel";
|
||||
this.editLinkLabel.TabStop = true;
|
||||
this.editLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.editlinkLabel_LinkClicked);
|
||||
//
|
||||
// label4
|
||||
//
|
||||
resources.ApplyResources(this.label4, "label4");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.label4, 2);
|
||||
this.label4.Name = "label4";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
resources.ApplyResources(this.label1, "label1");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.label1, 2);
|
||||
this.label1.Name = "label1";
|
||||
//
|
||||
// lastUploadLabel
|
||||
//
|
||||
resources.ApplyResources(this.lastUploadLabel, "lastUploadLabel");
|
||||
this.lastUploadLabel.Name = "lastUploadLabel";
|
||||
//
|
||||
// ReportAnalysisLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.ReportAnalysisLinkLabel, "ReportAnalysisLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.ReportAnalysisLinkLabel, 2);
|
||||
this.ReportAnalysisLinkLabel.Name = "ReportAnalysisLinkLabel";
|
||||
this.ReportAnalysisLinkLabel.TabStop = true;
|
||||
this.ReportAnalysisLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ReportAnalysisLinkLabel_LinkClicked);
|
||||
//
|
||||
// previousUploadPanel
|
||||
//
|
||||
resources.ApplyResources(this.previousUploadPanel, "previousUploadPanel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.previousUploadPanel, 2);
|
||||
this.previousUploadPanel.Controls.Add(this.viewReportLinkLabel, 0, 1);
|
||||
this.previousUploadPanel.Controls.Add(this.previousUploadDateLabel, 1, 0);
|
||||
this.previousUploadPanel.Controls.Add(this.label3, 0, 0);
|
||||
this.previousUploadPanel.Name = "previousUploadPanel";
|
||||
//
|
||||
// viewReportLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.viewReportLinkLabel, "viewReportLinkLabel");
|
||||
this.previousUploadPanel.SetColumnSpan(this.viewReportLinkLabel, 2);
|
||||
this.viewReportLinkLabel.Name = "viewReportLinkLabel";
|
||||
this.viewReportLinkLabel.TabStop = true;
|
||||
this.viewReportLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.viewReportLinkLabel_LinkClicked);
|
||||
//
|
||||
// previousUploadDateLabel
|
||||
//
|
||||
resources.ApplyResources(this.previousUploadDateLabel, "previousUploadDateLabel");
|
||||
this.previousUploadDateLabel.Name = "previousUploadDateLabel";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
resources.ApplyResources(this.label3, "label3");
|
||||
this.label3.Name = "label3";
|
||||
//
|
||||
// notEnrolledPanel
|
||||
//
|
||||
resources.ApplyResources(this.notEnrolledPanel, "notEnrolledPanel");
|
||||
this.poolDetailsPanel.SetColumnSpan(this.notEnrolledPanel, 2);
|
||||
this.notEnrolledPanel.Controls.Add(this.enrollNowLinkLabel, 0, 1);
|
||||
this.notEnrolledPanel.Controls.Add(this.label6, 0, 0);
|
||||
this.notEnrolledPanel.Name = "notEnrolledPanel";
|
||||
//
|
||||
// enrollNowLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.enrollNowLinkLabel, "enrollNowLinkLabel");
|
||||
this.enrollNowLinkLabel.Name = "enrollNowLinkLabel";
|
||||
this.enrollNowLinkLabel.TabStop = true;
|
||||
this.enrollNowLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.enrollNowLinkLabel_LinkClicked);
|
||||
//
|
||||
// label6
|
||||
//
|
||||
resources.ApplyResources(this.label6, "label6");
|
||||
this.label6.Name = "label6";
|
||||
//
|
||||
// buttonCancel
|
||||
//
|
||||
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
||||
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.buttonCancel.Name = "buttonCancel";
|
||||
this.buttonCancel.UseVisualStyleBackColor = true;
|
||||
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
||||
//
|
||||
// tableLayoutPanel1
|
||||
//
|
||||
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
||||
this.tableLayoutPanel1.Controls.Add(this.PolicyStatementLinkLabel, 0, 1);
|
||||
this.tableLayoutPanel1.Controls.Add(this.splitContainer1, 0, 2);
|
||||
this.tableLayoutPanel1.Controls.Add(this.rubricLabel, 0, 0);
|
||||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||||
//
|
||||
// PolicyStatementLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.PolicyStatementLinkLabel, "PolicyStatementLinkLabel");
|
||||
this.PolicyStatementLinkLabel.Name = "PolicyStatementLinkLabel";
|
||||
this.PolicyStatementLinkLabel.TabStop = true;
|
||||
this.PolicyStatementLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.PolicyStatementLinkLabel_LinkClicked);
|
||||
//
|
||||
// rubricLabel
|
||||
//
|
||||
resources.ApplyResources(this.rubricLabel, "rubricLabel");
|
||||
this.rubricLabel.Name = "rubricLabel";
|
||||
//
|
||||
// showAgainCheckBox
|
||||
//
|
||||
resources.ApplyResources(this.showAgainCheckBox, "showAgainCheckBox");
|
||||
this.showAgainCheckBox.Name = "showAgainCheckBox";
|
||||
this.showAgainCheckBox.UseVisualStyleBackColor = true;
|
||||
this.showAgainCheckBox.CheckedChanged += new System.EventHandler(this.showAgainCheckBox_CheckedChanged);
|
||||
//
|
||||
// HealthCheckOverviewDialog
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.CancelButton = this.buttonCancel;
|
||||
this.Controls.Add(this.tableLayoutPanel1);
|
||||
this.Controls.Add(this.showAgainCheckBox);
|
||||
this.Controls.Add(this.buttonCancel);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
|
||||
this.Name = "HealthCheckOverviewDialog";
|
||||
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.HealthCheckOOverviewDialog_FormClosed);
|
||||
this.Load += new System.EventHandler(this.HealthCheckOverviewDialog_Load);
|
||||
this.splitContainer1.Panel1.ResumeLayout(false);
|
||||
this.splitContainer1.Panel2.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
||||
this.splitContainer1.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.poolsDataGridView)).EndInit();
|
||||
this.tableLayoutPanel2.ResumeLayout(false);
|
||||
this.tableLayoutPanel2.PerformLayout();
|
||||
this.poolDetailsPanel.ResumeLayout(false);
|
||||
this.poolDetailsPanel.PerformLayout();
|
||||
this.healthCheckStatusPanel.ResumeLayout(false);
|
||||
this.healthCheckStatusPanel.PerformLayout();
|
||||
this.flowLayoutPanel1.ResumeLayout(false);
|
||||
this.flowLayoutPanel1.PerformLayout();
|
||||
this.previousUploadPanel.ResumeLayout(false);
|
||||
this.previousUploadPanel.PerformLayout();
|
||||
this.notEnrolledPanel.ResumeLayout(false);
|
||||
this.notEnrolledPanel.PerformLayout();
|
||||
this.tableLayoutPanel1.ResumeLayout(false);
|
||||
this.tableLayoutPanel1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HealthCheckOverviewDialog));
|
||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
||||
this.poolsDataGridView = new XenAdmin.Controls.DataGridViewEx.DataGridViewEx();
|
||||
this.PoolNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.StatusColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.poolNameLabel = new System.Windows.Forms.Label();
|
||||
this.poolDetailsPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.healthCheckStatusPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.failedUploadDateLabel = new System.Windows.Forms.Label();
|
||||
this.failedUploadLabel = new System.Windows.Forms.Label();
|
||||
this.lastUploadDateLabel = new System.Windows.Forms.Label();
|
||||
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
|
||||
this.issuesLabel = new System.Windows.Forms.Label();
|
||||
this.refreshLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.disableLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.uploadRequestLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.scheduleLabel = new System.Windows.Forms.Label();
|
||||
this.editLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.label4 = new System.Windows.Forms.Label();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.lastUploadLabel = new System.Windows.Forms.Label();
|
||||
this.ReportAnalysisLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.previousUploadPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.viewReportLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.previousUploadDateLabel = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.notEnrolledPanel = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.enrollNowLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.label6 = new System.Windows.Forms.Label();
|
||||
this.buttonCancel = new System.Windows.Forms.Button();
|
||||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.PolicyStatementLinkLabel = new System.Windows.Forms.LinkLabel();
|
||||
this.rubricLabel = new System.Windows.Forms.Label();
|
||||
this.showAgainCheckBox = new System.Windows.Forms.CheckBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
||||
this.splitContainer1.Panel1.SuspendLayout();
|
||||
this.splitContainer1.Panel2.SuspendLayout();
|
||||
this.splitContainer1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.poolsDataGridView)).BeginInit();
|
||||
this.tableLayoutPanel2.SuspendLayout();
|
||||
this.poolDetailsPanel.SuspendLayout();
|
||||
this.healthCheckStatusPanel.SuspendLayout();
|
||||
this.flowLayoutPanel1.SuspendLayout();
|
||||
this.previousUploadPanel.SuspendLayout();
|
||||
this.notEnrolledPanel.SuspendLayout();
|
||||
this.tableLayoutPanel1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// splitContainer1
|
||||
//
|
||||
resources.ApplyResources(this.splitContainer1, "splitContainer1");
|
||||
this.splitContainer1.Name = "splitContainer1";
|
||||
//
|
||||
// splitContainer1.Panel1
|
||||
//
|
||||
this.splitContainer1.Panel1.Controls.Add(this.poolsDataGridView);
|
||||
resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
|
||||
//
|
||||
// splitContainer1.Panel2
|
||||
//
|
||||
this.splitContainer1.Panel2.Controls.Add(this.tableLayoutPanel2);
|
||||
resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
|
||||
//
|
||||
// poolsDataGridView
|
||||
//
|
||||
this.poolsDataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
|
||||
this.poolsDataGridView.BackgroundColor = System.Drawing.SystemColors.Window;
|
||||
this.poolsDataGridView.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
|
||||
this.poolsDataGridView.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
|
||||
this.poolsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.PoolNameColumn,
|
||||
this.StatusColumn});
|
||||
resources.ApplyResources(this.poolsDataGridView, "poolsDataGridView");
|
||||
this.poolsDataGridView.Name = "poolsDataGridView";
|
||||
this.poolsDataGridView.ReadOnly = true;
|
||||
this.poolsDataGridView.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
|
||||
//
|
||||
// PoolNameColumn
|
||||
//
|
||||
this.PoolNameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
|
||||
resources.ApplyResources(this.PoolNameColumn, "PoolNameColumn");
|
||||
this.PoolNameColumn.Name = "PoolNameColumn";
|
||||
this.PoolNameColumn.ReadOnly = true;
|
||||
//
|
||||
// StatusColumn
|
||||
//
|
||||
this.StatusColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
||||
resources.ApplyResources(this.StatusColumn, "StatusColumn");
|
||||
this.StatusColumn.Name = "StatusColumn";
|
||||
this.StatusColumn.ReadOnly = true;
|
||||
this.StatusColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
||||
//
|
||||
// tableLayoutPanel2
|
||||
//
|
||||
this.tableLayoutPanel2.BackColor = System.Drawing.SystemColors.Window;
|
||||
resources.ApplyResources(this.tableLayoutPanel2, "tableLayoutPanel2");
|
||||
this.tableLayoutPanel2.Controls.Add(this.poolNameLabel, 0, 0);
|
||||
this.tableLayoutPanel2.Controls.Add(this.poolDetailsPanel, 0, 1);
|
||||
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
|
||||
//
|
||||
// poolNameLabel
|
||||
//
|
||||
this.poolNameLabel.AutoEllipsis = true;
|
||||
resources.ApplyResources(this.poolNameLabel, "poolNameLabel");
|
||||
this.poolNameLabel.Name = "poolNameLabel";
|
||||
//
|
||||
// poolDetailsPanel
|
||||
//
|
||||
resources.ApplyResources(this.poolDetailsPanel, "poolDetailsPanel");
|
||||
this.tableLayoutPanel2.SetColumnSpan(this.poolDetailsPanel, 2);
|
||||
this.poolDetailsPanel.Controls.Add(this.healthCheckStatusPanel, 0, 0);
|
||||
this.poolDetailsPanel.Controls.Add(this.notEnrolledPanel, 0, 1);
|
||||
this.poolDetailsPanel.Name = "poolDetailsPanel";
|
||||
//
|
||||
// healthCheckStatusPanel
|
||||
//
|
||||
resources.ApplyResources(this.healthCheckStatusPanel, "healthCheckStatusPanel");
|
||||
this.healthCheckStatusPanel.Controls.Add(this.failedUploadDateLabel, 1, 5);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.failedUploadLabel, 0, 5);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.lastUploadDateLabel, 1, 1);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.flowLayoutPanel1, 0, 3);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.disableLinkLabel, 0, 10);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.uploadRequestLinkLabel, 0, 11);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.scheduleLabel, 0, 8);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.editLinkLabel, 0, 9);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.label4, 0, 7);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.label1, 0, 0);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.lastUploadLabel, 0, 1);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.ReportAnalysisLinkLabel, 0, 4);
|
||||
this.healthCheckStatusPanel.Controls.Add(this.previousUploadPanel, 0, 6);
|
||||
this.healthCheckStatusPanel.Name = "healthCheckStatusPanel";
|
||||
//
|
||||
// failedUploadDateLabel
|
||||
//
|
||||
resources.ApplyResources(this.failedUploadDateLabel, "failedUploadDateLabel");
|
||||
this.failedUploadDateLabel.Name = "failedUploadDateLabel";
|
||||
//
|
||||
// failedUploadLabel
|
||||
//
|
||||
resources.ApplyResources(this.failedUploadLabel, "failedUploadLabel");
|
||||
this.failedUploadLabel.Name = "failedUploadLabel";
|
||||
//
|
||||
// lastUploadDateLabel
|
||||
//
|
||||
resources.ApplyResources(this.lastUploadDateLabel, "lastUploadDateLabel");
|
||||
this.lastUploadDateLabel.Name = "lastUploadDateLabel";
|
||||
//
|
||||
// flowLayoutPanel1
|
||||
//
|
||||
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.flowLayoutPanel1, 2);
|
||||
this.flowLayoutPanel1.Controls.Add(this.issuesLabel);
|
||||
this.flowLayoutPanel1.Controls.Add(this.refreshLinkLabel);
|
||||
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
|
||||
//
|
||||
// issuesLabel
|
||||
//
|
||||
resources.ApplyResources(this.issuesLabel, "issuesLabel");
|
||||
this.issuesLabel.Name = "issuesLabel";
|
||||
//
|
||||
// refreshLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.refreshLinkLabel, "refreshLinkLabel");
|
||||
this.refreshLinkLabel.Name = "refreshLinkLabel";
|
||||
this.refreshLinkLabel.TabStop = true;
|
||||
this.refreshLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.refreshLinkLabel_LinkClicked);
|
||||
//
|
||||
// disableLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.disableLinkLabel, "disableLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.disableLinkLabel, 2);
|
||||
this.disableLinkLabel.Name = "disableLinkLabel";
|
||||
this.disableLinkLabel.TabStop = true;
|
||||
this.disableLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.disableLinkLabel_LinkClicked);
|
||||
//
|
||||
// uploadRequestLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.uploadRequestLinkLabel, "uploadRequestLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.uploadRequestLinkLabel, 2);
|
||||
this.uploadRequestLinkLabel.Name = "uploadRequestLinkLabel";
|
||||
this.uploadRequestLinkLabel.TabStop = true;
|
||||
this.uploadRequestLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.uploadRequestLinkLabel_LinkClicked);
|
||||
//
|
||||
// scheduleLabel
|
||||
//
|
||||
resources.ApplyResources(this.scheduleLabel, "scheduleLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.scheduleLabel, 2);
|
||||
this.scheduleLabel.Name = "scheduleLabel";
|
||||
//
|
||||
// editLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.editLinkLabel, "editLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.editLinkLabel, 2);
|
||||
this.editLinkLabel.Name = "editLinkLabel";
|
||||
this.editLinkLabel.TabStop = true;
|
||||
this.editLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.editlinkLabel_LinkClicked);
|
||||
//
|
||||
// label4
|
||||
//
|
||||
resources.ApplyResources(this.label4, "label4");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.label4, 2);
|
||||
this.label4.Name = "label4";
|
||||
//
|
||||
// label1
|
||||
//
|
||||
resources.ApplyResources(this.label1, "label1");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.label1, 2);
|
||||
this.label1.Name = "label1";
|
||||
//
|
||||
// lastUploadLabel
|
||||
//
|
||||
resources.ApplyResources(this.lastUploadLabel, "lastUploadLabel");
|
||||
this.lastUploadLabel.Name = "lastUploadLabel";
|
||||
//
|
||||
// ReportAnalysisLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.ReportAnalysisLinkLabel, "ReportAnalysisLinkLabel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.ReportAnalysisLinkLabel, 2);
|
||||
this.ReportAnalysisLinkLabel.Name = "ReportAnalysisLinkLabel";
|
||||
this.ReportAnalysisLinkLabel.TabStop = true;
|
||||
this.ReportAnalysisLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ReportAnalysisLinkLabel_LinkClicked);
|
||||
//
|
||||
// previousUploadPanel
|
||||
//
|
||||
resources.ApplyResources(this.previousUploadPanel, "previousUploadPanel");
|
||||
this.healthCheckStatusPanel.SetColumnSpan(this.previousUploadPanel, 2);
|
||||
this.previousUploadPanel.Controls.Add(this.viewReportLinkLabel, 0, 1);
|
||||
this.previousUploadPanel.Controls.Add(this.previousUploadDateLabel, 1, 0);
|
||||
this.previousUploadPanel.Controls.Add(this.label3, 0, 0);
|
||||
this.previousUploadPanel.Name = "previousUploadPanel";
|
||||
//
|
||||
// viewReportLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.viewReportLinkLabel, "viewReportLinkLabel");
|
||||
this.previousUploadPanel.SetColumnSpan(this.viewReportLinkLabel, 2);
|
||||
this.viewReportLinkLabel.Name = "viewReportLinkLabel";
|
||||
this.viewReportLinkLabel.TabStop = true;
|
||||
this.viewReportLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.viewReportLinkLabel_LinkClicked);
|
||||
//
|
||||
// previousUploadDateLabel
|
||||
//
|
||||
resources.ApplyResources(this.previousUploadDateLabel, "previousUploadDateLabel");
|
||||
this.previousUploadDateLabel.Name = "previousUploadDateLabel";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
resources.ApplyResources(this.label3, "label3");
|
||||
this.label3.Name = "label3";
|
||||
//
|
||||
// notEnrolledPanel
|
||||
//
|
||||
resources.ApplyResources(this.notEnrolledPanel, "notEnrolledPanel");
|
||||
this.poolDetailsPanel.SetColumnSpan(this.notEnrolledPanel, 2);
|
||||
this.notEnrolledPanel.Controls.Add(this.enrollNowLinkLabel, 0, 1);
|
||||
this.notEnrolledPanel.Controls.Add(this.label6, 0, 0);
|
||||
this.notEnrolledPanel.Name = "notEnrolledPanel";
|
||||
//
|
||||
// enrollNowLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.enrollNowLinkLabel, "enrollNowLinkLabel");
|
||||
this.enrollNowLinkLabel.Name = "enrollNowLinkLabel";
|
||||
this.enrollNowLinkLabel.TabStop = true;
|
||||
this.enrollNowLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.enrollNowLinkLabel_LinkClicked);
|
||||
//
|
||||
// label6
|
||||
//
|
||||
resources.ApplyResources(this.label6, "label6");
|
||||
this.label6.Name = "label6";
|
||||
//
|
||||
// buttonCancel
|
||||
//
|
||||
resources.ApplyResources(this.buttonCancel, "buttonCancel");
|
||||
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.buttonCancel.Name = "buttonCancel";
|
||||
this.buttonCancel.UseVisualStyleBackColor = true;
|
||||
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
||||
//
|
||||
// tableLayoutPanel1
|
||||
//
|
||||
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
|
||||
this.tableLayoutPanel1.Controls.Add(this.PolicyStatementLinkLabel, 0, 1);
|
||||
this.tableLayoutPanel1.Controls.Add(this.splitContainer1, 0, 2);
|
||||
this.tableLayoutPanel1.Controls.Add(this.rubricLabel, 0, 0);
|
||||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||||
//
|
||||
// PolicyStatementLinkLabel
|
||||
//
|
||||
resources.ApplyResources(this.PolicyStatementLinkLabel, "PolicyStatementLinkLabel");
|
||||
this.PolicyStatementLinkLabel.Name = "PolicyStatementLinkLabel";
|
||||
this.PolicyStatementLinkLabel.TabStop = true;
|
||||
this.PolicyStatementLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.PolicyStatementLinkLabel_LinkClicked);
|
||||
//
|
||||
// rubricLabel
|
||||
//
|
||||
resources.ApplyResources(this.rubricLabel, "rubricLabel");
|
||||
this.rubricLabel.Name = "rubricLabel";
|
||||
//
|
||||
// showAgainCheckBox
|
||||
//
|
||||
resources.ApplyResources(this.showAgainCheckBox, "showAgainCheckBox");
|
||||
this.showAgainCheckBox.Name = "showAgainCheckBox";
|
||||
this.showAgainCheckBox.UseVisualStyleBackColor = true;
|
||||
this.showAgainCheckBox.CheckedChanged += new System.EventHandler(this.showAgainCheckBox_CheckedChanged);
|
||||
//
|
||||
// HealthCheckOverviewDialog
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.CancelButton = this.buttonCancel;
|
||||
this.Controls.Add(this.tableLayoutPanel1);
|
||||
this.Controls.Add(this.showAgainCheckBox);
|
||||
this.Controls.Add(this.buttonCancel);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
|
||||
this.Name = "HealthCheckOverviewDialog";
|
||||
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.HealthCheckOOverviewDialog_FormClosed);
|
||||
this.Load += new System.EventHandler(this.HealthCheckOverviewDialog_Load);
|
||||
this.splitContainer1.Panel1.ResumeLayout(false);
|
||||
this.splitContainer1.Panel2.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
||||
this.splitContainer1.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.poolsDataGridView)).EndInit();
|
||||
this.tableLayoutPanel2.ResumeLayout(false);
|
||||
this.tableLayoutPanel2.PerformLayout();
|
||||
this.poolDetailsPanel.ResumeLayout(false);
|
||||
this.poolDetailsPanel.PerformLayout();
|
||||
this.healthCheckStatusPanel.ResumeLayout(false);
|
||||
this.healthCheckStatusPanel.PerformLayout();
|
||||
this.flowLayoutPanel1.ResumeLayout(false);
|
||||
this.flowLayoutPanel1.PerformLayout();
|
||||
this.previousUploadPanel.ResumeLayout(false);
|
||||
this.previousUploadPanel.PerformLayout();
|
||||
this.notEnrolledPanel.ResumeLayout(false);
|
||||
this.notEnrolledPanel.PerformLayout();
|
||||
this.tableLayoutPanel1.ResumeLayout(false);
|
||||
this.tableLayoutPanel1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -28,44 +28,42 @@
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HealthCheckPolicyStatementDialog));
|
||||
this.OKButton = new System.Windows.Forms.Button();
|
||||
this.policyStatementTextBox = new System.Windows.Forms.RichTextBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// OKButton
|
||||
//
|
||||
resources.ApplyResources(this.OKButton, "OKButton");
|
||||
this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
this.OKButton.Name = "OKButton";
|
||||
this.OKButton.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// policyStatementTextBox
|
||||
//
|
||||
resources.ApplyResources(this.policyStatementTextBox, "policyStatementTextBox");
|
||||
this.policyStatementTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.policyStatementTextBox.Cursor = System.Windows.Forms.Cursors.Default;
|
||||
this.policyStatementTextBox.Name = "policyStatementTextBox";
|
||||
this.policyStatementTextBox.ReadOnly = true;
|
||||
this.policyStatementTextBox.TabStop = false;
|
||||
this.policyStatementTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.policyStatementTextBox_LinkClicked);
|
||||
//
|
||||
// HealthCheckPolicyStatementDialog
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.OKButton);
|
||||
this.Controls.Add(this.policyStatementTextBox);
|
||||
this.HelpButton = false;
|
||||
this.Name = "HealthCheckPolicyStatementDialog";
|
||||
this.ResumeLayout(false);
|
||||
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HealthCheckPolicyStatementDialog));
|
||||
this.OKButton = new System.Windows.Forms.Button();
|
||||
this.policyStatementTextBox = new System.Windows.Forms.LinkLabel();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// OKButton
|
||||
//
|
||||
resources.ApplyResources(this.OKButton, "OKButton");
|
||||
this.OKButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
this.OKButton.Name = "OKButton";
|
||||
this.OKButton.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// policyStatementTextBox
|
||||
//
|
||||
this.policyStatementTextBox.AutoEllipsis = true;
|
||||
resources.ApplyResources(this.policyStatementTextBox, "policyStatementTextBox");
|
||||
this.policyStatementTextBox.Name = "policyStatementTextBox";
|
||||
this.policyStatementTextBox.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.policyStatementTextBox_LinkClicked);
|
||||
//
|
||||
// HealthCheckPolicyStatementDialog
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.policyStatementTextBox);
|
||||
this.Controls.Add(this.OKButton);
|
||||
this.HelpButton = false;
|
||||
this.Name = "HealthCheckPolicyStatementDialog";
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.RichTextBox policyStatementTextBox;
|
||||
internal System.Windows.Forms.Button OKButton;
|
||||
#endregion
|
||||
|
||||
internal System.Windows.Forms.Button OKButton;
|
||||
private System.Windows.Forms.LinkLabel policyStatementTextBox;
|
||||
|
||||
|
||||
}
|
||||
|
@ -45,12 +45,17 @@ namespace XenAdmin.Dialogs
|
||||
{
|
||||
public HealthCheckPolicyStatementDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void policyStatementTextBox_LinkClicked(object sender, LinkClickedEventArgs e)
|
||||
{
|
||||
Program.OpenURL(e.LinkText);
|
||||
InitializeComponent();
|
||||
string cis_policy = Messages.HEALTH_CHECK_CIS_POLICY_URL;
|
||||
string citrix_policy = Messages.HEALTH_CHECK_CITRIX_POLICY_URL;
|
||||
policyStatementTextBox.Text = String.Format(Messages.HEALTH_CHECK_PRIVACY_POLICY, cis_policy, citrix_policy);
|
||||
policyStatementTextBox.Links.Add(policyStatementTextBox.Text.IndexOf(cis_policy), cis_policy.Length, cis_policy);
|
||||
policyStatementTextBox.Links.Add(policyStatementTextBox.Text.IndexOf(citrix_policy), citrix_policy.Length, citrix_policy);
|
||||
}
|
||||
|
||||
private void policyStatementTextBox_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
Program.OpenURL(e.Link.LinkData.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,213 +1,213 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="OKButton.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Bottom, Right</value>
|
||||
</data>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="OKButton.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="OKButton.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>NoControl</value>
|
||||
</data>
|
||||
<data name="OKButton.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>353, 127</value>
|
||||
</data>
|
||||
<data name="OKButton.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>79, 23</value>
|
||||
</data>
|
||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="OKButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>8</value>
|
||||
</data>
|
||||
<data name="OKButton.Text" xml:space="preserve">
|
||||
<value>OK</value>
|
||||
</data>
|
||||
<data name=">>OKButton.Name" xml:space="preserve">
|
||||
<value>OKButton</value>
|
||||
</data>
|
||||
<data name=">>OKButton.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>OKButton.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>OKButton.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Bottom, Left, Right</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>8, 8</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.ScrollBars" type="System.Windows.Forms.RichTextBoxScrollBars, System.Windows.Forms">
|
||||
<value>None</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>424, 113</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>7</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Text" xml:space="preserve">
|
||||
<value>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 https://cis.citrix.com/legal/ and [Citrix] Privacy Policy at http://www.citrix.com/about/legal/privacy.html.</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.Name" xml:space="preserve">
|
||||
<value>policyStatementTextBox</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
||||
<value>96, 96</value>
|
||||
</data>
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>444, 162</value>
|
||||
</data>
|
||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="$this.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
|
||||
<value>41, 19, 41, 19</value>
|
||||
</data>
|
||||
<data name="$this.Text" xml:space="preserve">
|
||||
<value>Health Check Privacy Statement</value>
|
||||
</data>
|
||||
<data name=">>$this.Name" xml:space="preserve">
|
||||
<value>HealthCheckPolicyStatementDialog</value>
|
||||
</data>
|
||||
<data name=">>$this.Type" xml:space="preserve">
|
||||
<value>XenAdmin.Dialogs.XenDialogBase, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="OKButton.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Bottom, Right</value>
|
||||
</data>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="OKButton.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="OKButton.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
|
||||
<value>NoControl</value>
|
||||
</data>
|
||||
<data name="OKButton.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>353, 127</value>
|
||||
</data>
|
||||
<data name="OKButton.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>79, 23</value>
|
||||
</data>
|
||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="OKButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>8</value>
|
||||
</data>
|
||||
<data name="OKButton.Text" xml:space="preserve">
|
||||
<value>OK</value>
|
||||
</data>
|
||||
<data name=">>OKButton.Name" xml:space="preserve">
|
||||
<value>OKButton</value>
|
||||
</data>
|
||||
<data name=">>OKButton.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>OKButton.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>OKButton.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>12, 9</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.MaximumSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>424, 113</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>0, 15</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>9</value>
|
||||
</data>
|
||||
<data name="policyStatementTextBox.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
|
||||
<value>MiddleLeft</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.Name" xml:space="preserve">
|
||||
<value>policyStatementTextBox</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>policyStatementTextBox.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
|
||||
<value>96, 96</value>
|
||||
</data>
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>444, 162</value>
|
||||
</data>
|
||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 9pt</value>
|
||||
</data>
|
||||
<data name="$this.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
|
||||
<value>41, 19, 41, 19</value>
|
||||
</data>
|
||||
<data name="$this.Text" xml:space="preserve">
|
||||
<value>Health Check Privacy Statement</value>
|
||||
</data>
|
||||
<data name=">>$this.Name" xml:space="preserve">
|
||||
<value>HealthCheckPolicyStatementDialog</value>
|
||||
</data>
|
||||
<data name=">>$this.Type" xml:space="preserve">
|
||||
<value>XenAdmin.Dialogs.XenDialogBase, XenCenterMain, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
</root>
|
@ -139,7 +139,7 @@
|
||||
<value>75, 25</value>
|
||||
</data>
|
||||
<data name="okButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>18</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="okButton.Text" xml:space="preserve">
|
||||
<value>OK</value>
|
||||
@ -232,7 +232,7 @@
|
||||
<value>94, 29</value>
|
||||
</data>
|
||||
<data name="frequencyLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>10</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="frequencyLabel.Text" xml:space="preserve">
|
||||
<value>&Frequency:</value>
|
||||
@ -262,7 +262,7 @@
|
||||
<value>54, 23</value>
|
||||
</data>
|
||||
<data name="frequencyNumericBox.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>4</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name=">>frequencyNumericBox.Name" xml:space="preserve">
|
||||
<value>frequencyNumericBox</value>
|
||||
@ -340,7 +340,7 @@
|
||||
<value>94, 29</value>
|
||||
</data>
|
||||
<data name="dayOfweekLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>14</value>
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="dayOfweekLabel.Text" xml:space="preserve">
|
||||
<value>&Day of the week:</value>
|
||||
@ -382,7 +382,7 @@
|
||||
<value>94, 29</value>
|
||||
</data>
|
||||
<data name="timeOfDayLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>12</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="timeOfDayLabel.Text" xml:space="preserve">
|
||||
<value>&Time of the day:</value>
|
||||
@ -415,7 +415,7 @@
|
||||
<value>121, 23</value>
|
||||
</data>
|
||||
<data name="timeOfDayComboBox.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>5</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name=">>timeOfDayComboBox.Name" xml:space="preserve">
|
||||
<value>timeOfDayComboBox</value>
|
||||
@ -439,7 +439,7 @@
|
||||
<value>121, 23</value>
|
||||
</data>
|
||||
<data name="dayOfWeekComboBox.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>6</value>
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name=">>dayOfWeekComboBox.Name" xml:space="preserve">
|
||||
<value>dayOfWeekComboBox</value>
|
||||
@ -499,7 +499,7 @@
|
||||
<value>597, 115</value>
|
||||
</data>
|
||||
<data name="decentGroupBox2.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="decentGroupBox2.Text" xml:space="preserve">
|
||||
<value>Health Check upload schedule</value>
|
||||
@ -553,7 +553,7 @@
|
||||
<value>63, 29</value>
|
||||
</data>
|
||||
<data name="label1.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>33</value>
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="label1.Text" xml:space="preserve">
|
||||
<value>U&sername:</value>
|
||||
@ -595,7 +595,7 @@
|
||||
<value>63, 29</value>
|
||||
</data>
|
||||
<data name="label2.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>35</value>
|
||||
<value>6</value>
|
||||
</data>
|
||||
<data name="label2.Text" xml:space="preserve">
|
||||
<value>Pass&word:</value>
|
||||
@ -625,7 +625,7 @@
|
||||
<value>300, 23</value>
|
||||
</data>
|
||||
<data name="textBoxMyCitrixPassword.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>17</value>
|
||||
<value>7</value>
|
||||
</data>
|
||||
<data name=">>textBoxMyCitrixPassword.Name" xml:space="preserve">
|
||||
<value>textBoxMyCitrixPassword</value>
|
||||
@ -649,7 +649,7 @@
|
||||
<value>300, 23</value>
|
||||
</data>
|
||||
<data name="textBoxMyCitrixUsername.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>16</value>
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name=">>textBoxMyCitrixUsername.Name" xml:space="preserve">
|
||||
<value>textBoxMyCitrixUsername</value>
|
||||
@ -679,7 +679,7 @@
|
||||
<value>167, 19</value>
|
||||
</data>
|
||||
<data name="existingAuthenticationRadioButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>14</value>
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="existingAuthenticationRadioButton.Text" xml:space="preserve">
|
||||
<value>Use existing &authentication</value>
|
||||
@ -712,7 +712,7 @@
|
||||
<value>232, 19</value>
|
||||
</data>
|
||||
<data name="newAuthenticationRadioButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>15</value>
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="newAuthenticationRadioButton.Text" xml:space="preserve">
|
||||
<value>Authenticate using &MyCitrix credentials</value>
|
||||
@ -742,7 +742,7 @@
|
||||
<value>0, 15</value>
|
||||
</data>
|
||||
<data name="authRubricLinkLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>12</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name=">>authRubricLinkLabel.Name" xml:space="preserve">
|
||||
<value>authRubricLinkLabel</value>
|
||||
@ -769,7 +769,7 @@
|
||||
<value>0, 15</value>
|
||||
</data>
|
||||
<data name="authRubricTextLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>13</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name=">>authRubricTextLabel.Name" xml:space="preserve">
|
||||
<value>authRubricTextLabel</value>
|
||||
@ -829,7 +829,7 @@
|
||||
<value>597, 218</value>
|
||||
</data>
|
||||
<data name="decentGroupBox1.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>4</value>
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name="decentGroupBox1.Text" xml:space="preserve">
|
||||
<value>Authentication with Citrix Insight Services</value>
|
||||
@ -868,7 +868,7 @@
|
||||
<value>603, 30</value>
|
||||
</data>
|
||||
<data name="rubricLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>10</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="rubricLabel.Text" xml:space="preserve">
|
||||
<value>Health Check will automatically upload a server status report to Citrix Insight Services, based on a predefined schedule configured on your XenServer pool.</value>
|
||||
@ -904,7 +904,7 @@
|
||||
<value>101, 15</value>
|
||||
</data>
|
||||
<data name="PolicyStatementLinkLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>2</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="PolicyStatementLinkLabel.Text" xml:space="preserve">
|
||||
<value>Privacy statement</value>
|
||||
@ -985,7 +985,7 @@
|
||||
<value>190, 36</value>
|
||||
</data>
|
||||
<data name="flowLayoutPanel1.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>5</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name=">>flowLayoutPanel1.Name" xml:space="preserve">
|
||||
<value>flowLayoutPanel1</value>
|
||||
@ -1018,7 +1018,7 @@
|
||||
<value>139, 27</value>
|
||||
</data>
|
||||
<data name="enrollmentCheckBox.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="enrollmentCheckBox.Text" xml:space="preserve">
|
||||
<value>&Enable Health Check</value>
|
||||
@ -1075,7 +1075,7 @@
|
||||
<value>378, 20</value>
|
||||
</data>
|
||||
<data name="errorLabel.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>120</value>
|
||||
<value>8</value>
|
||||
</data>
|
||||
<data name="errorLabel.Visible" type="System.Boolean, mscorlib">
|
||||
<value>False</value>
|
||||
@ -1150,7 +1150,7 @@
|
||||
<value>591, 15</value>
|
||||
</data>
|
||||
<data name="label3.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>24</value>
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="label3.Text" xml:space="preserve">
|
||||
<value>Enter the credentials the Health Check Service will use to connect to XenServer.</value>
|
||||
@ -1192,7 +1192,7 @@
|
||||
<value>63, 29</value>
|
||||
</data>
|
||||
<data name="label4.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>23</value>
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="label4.Text" xml:space="preserve">
|
||||
<value>&Username:</value>
|
||||
@ -1234,7 +1234,7 @@
|
||||
<value>63, 29</value>
|
||||
</data>
|
||||
<data name="label5.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>25</value>
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name="label5.Text" xml:space="preserve">
|
||||
<value>&Password:</value>
|
||||
@ -1264,7 +1264,7 @@
|
||||
<value>300, 23</value>
|
||||
</data>
|
||||
<data name="textboxXSPassword.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>10</value>
|
||||
<value>6</value>
|
||||
</data>
|
||||
<data name=">>textboxXSPassword.Name" xml:space="preserve">
|
||||
<value>textboxXSPassword</value>
|
||||
@ -1288,7 +1288,7 @@
|
||||
<value>300, 23</value>
|
||||
</data>
|
||||
<data name="textboxXSUserName.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>9</value>
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="textboxXSUserName.Text" xml:space="preserve">
|
||||
<value>root</value>
|
||||
@ -1321,7 +1321,7 @@
|
||||
<value>231, 19</value>
|
||||
</data>
|
||||
<data name="currentXsCredentialsRadioButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>7</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="currentXsCredentialsRadioButton.Text" xml:space="preserve">
|
||||
<value>Use the cu&rrent [XenCenter] credentials</value>
|
||||
@ -1354,7 +1354,7 @@
|
||||
<value>152, 19</value>
|
||||
</data>
|
||||
<data name="newXsCredentialsRadioButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>8</value>
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="newXsCredentialsRadioButton.Text" xml:space="preserve">
|
||||
<value>Use different &credentials</value>
|
||||
@ -1390,7 +1390,7 @@
|
||||
<value>99, 25</value>
|
||||
</data>
|
||||
<data name="testCredentialsButton.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>11</value>
|
||||
<value>7</value>
|
||||
</data>
|
||||
<data name="testCredentialsButton.Text" xml:space="preserve">
|
||||
<value>Test credentials</value>
|
||||
@ -1453,7 +1453,7 @@
|
||||
<value>597, 183</value>
|
||||
</data>
|
||||
<data name="decentGroupBoxXSCredentials.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>3</value>
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="decentGroupBoxXSCredentials.Text" xml:space="preserve">
|
||||
<value>XenServer Credentials</value>
|
||||
|
27
XenModel/Messages.Designer.cs
generated
27
XenModel/Messages.Designer.cs
generated
@ -17171,6 +17171,33 @@ namespace XenAdmin {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to https://cis.citrix.com/legal/.
|
||||
/// </summary>
|
||||
public static string HEALTH_CHECK_CIS_POLICY_URL {
|
||||
get {
|
||||
return ResourceManager.GetString("HEALTH_CHECK_CIS_POLICY_URL", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to http://www.citrix.com/about/legal/privacy.html.
|
||||
/// </summary>
|
||||
public static string HEALTH_CHECK_CITRIX_POLICY_URL {
|
||||
get {
|
||||
return ResourceManager.GetString("HEALTH_CHECK_CITRIX_POLICY_URL", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to 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}..
|
||||
/// </summary>
|
||||
public static string HEALTH_CHECK_PRIVACY_POLICY {
|
||||
get {
|
||||
return ResourceManager.GetString("HEALTH_CHECK_PRIVACY_POLICY", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to This user is not authorized to access this server..
|
||||
/// </summary>
|
||||
|
@ -59,46 +59,46 @@
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element msdata:IsDataSet="true" name="root">
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="value" type="xsd:string"/>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" msdata:Ordinal="1" name="value" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" msdata:Ordinal="2" name="comment" type="xsd:string"/>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute msdata:Ordinal="1" name="name" type="xsd:string" use="required"/>
|
||||
<xsd:attribute msdata:Ordinal="3" name="type" type="xsd:string"/>
|
||||
<xsd:attribute msdata:Ordinal="4" name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" msdata:Ordinal="1" name="value" type="xsd:string"/>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
@ -5769,10 +5769,6 @@ CD をイジェクトしてから再試行してください。</value>
|
||||
<data name="HAWIZARD_ASSIGNPRIORITIESPAGE_TITLE" xml:space="preserve">
|
||||
<value>このプールの VM の高可用性再起動の優先度、再起動順序、および起動間隔の構成</value>
|
||||
</data>
|
||||
|
||||
|
||||
|
||||
|
||||
<data name="HA_ASSIGN_PRIORITIES_MIXED_PROTECTION_LEVELS" xml:space="preserve">
|
||||
<value>(複数の値)</value>
|
||||
</data>
|
||||
@ -6080,6 +6076,9 @@ VM の再起動優先度をクリアしてもよろしいですか?</value>
|
||||
<data name="HEALTH_CHECK_AUTHENTICATION_INVALID_CREDENTIALS" xml:space="preserve">
|
||||
<value>ユーザー名またはパスワードが無効です。再試行してください。</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_PRIVACY_POLICY" xml:space="preserve">
|
||||
<value>ヘルス チェックによって [Citrix] Insight Services にアップロードされる情報は、トラブルシューティングや診断サポート、および [Citrix] Insight Services Policy ({0}) と [Citrix] Privacy Policy ({1}) で必要な製品の品質、信頼性、パフォーマンスを改善するために使用されます。</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_USER_HAS_NO_PERMISSION_TO_CONNECT" xml:space="preserve">
|
||||
<value>このユーザーにはこのサーバーにアクセスする権限がありません。</value>
|
||||
</data>
|
||||
@ -10901,7 +10900,7 @@ VM が再起動したら、[[XenServer product] Tools のインストール] を
|
||||
<value>権限のより多いユーザー アカウントで再試行してください。</value>
|
||||
</data>
|
||||
<data name="SOLUTION_UNKNOWN" xml:space="preserve">
|
||||
<value/>
|
||||
<value />
|
||||
</data>
|
||||
<data name="SOME_ERRORS_ENCOUNTERED" xml:space="preserve">
|
||||
<value>いくつかのエラーが発生しました。詳しくは、[XenCenter] のログを参照してください。</value>
|
||||
@ -11536,7 +11535,7 @@ VM が再起動したら、[[XenServer product] Tools のインストール] を
|
||||
<value>OVF または OVA パッケージからアプライアンスをインポートします。</value>
|
||||
</data>
|
||||
<data name="TYPE_PAGE_DESCRIPTION_HEADER_VHD" xml:space="preserve">
|
||||
<value/>
|
||||
<value />
|
||||
</data>
|
||||
<data name="TYPE_PAGE_DESCRIPTION_HEADER_XVA" xml:space="preserve">
|
||||
<value>ローカルに格納された VM、テンプレート、またはスナップショットを新規 VM としてインポートします。</value>
|
||||
@ -12922,7 +12921,7 @@ VM が再起動したら、[[XenServer product] Tools のインストール] を
|
||||
<value>詳細</value>
|
||||
</data>
|
||||
<data name="WLB_ADVANCED_CONFIGURATION_SUBTEXT" xml:space="preserve">
|
||||
<value/>
|
||||
<value />
|
||||
</data>
|
||||
<data name="WLB_AUDIT_LOG_MAXIMUM" xml:space="preserve">
|
||||
<value>最大</value>
|
||||
@ -13635,4 +13634,4 @@ VM が再起動したら、[[XenServer product] Tools のインストール] を
|
||||
<data name="YOU_ARE_HERE" xml:space="preserve">
|
||||
<value>現在の位置</value>
|
||||
</data>
|
||||
</root>
|
||||
</root>
|
@ -6061,6 +6061,15 @@ Click Configure HA to alter the settings displayed below.</value>
|
||||
<data name="HEALTH_CHECK_AUTHENTICATION_INVALID_CREDENTIALS" xml:space="preserve">
|
||||
<value>Invalid user name or password. Please try again.</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_CIS_POLICY_URL" xml:space="preserve">
|
||||
<value>https://cis.citrix.com/legal/</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_CITRIX_POLICY_URL" xml:space="preserve">
|
||||
<value>http://www.citrix.com/about/legal/privacy.html</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_PRIVACY_POLICY" xml:space="preserve">
|
||||
<value>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}.</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_USER_HAS_NO_PERMISSION_TO_CONNECT" xml:space="preserve">
|
||||
<value>This user is not authorized to access this server.</value>
|
||||
</data>
|
||||
|
@ -59,46 +59,46 @@
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||
<xsd:element msdata:IsDataSet="true" name="root">
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" name="value" type="xsd:string"/>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="type" type="xsd:string"/>
|
||||
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string"/>
|
||||
<xsd:attribute name="name" type="xsd:string"/>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" msdata:Ordinal="1" name="value" type="xsd:string"/>
|
||||
<xsd:element minOccurs="0" msdata:Ordinal="2" name="comment" type="xsd:string"/>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute msdata:Ordinal="1" name="name" type="xsd:string" use="required"/>
|
||||
<xsd:attribute msdata:Ordinal="3" name="type" type="xsd:string"/>
|
||||
<xsd:attribute msdata:Ordinal="4" name="mimetype" type="xsd:string"/>
|
||||
<xsd:attribute ref="xml:space"/>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element minOccurs="0" msdata:Ordinal="1" name="value" type="xsd:string"/>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
@ -5763,10 +5763,6 @@
|
||||
<data name="HAWIZARD_ASSIGNPRIORITIESPAGE_TITLE" xml:space="preserve">
|
||||
<value>为此池中的 VM 配置高可用性重启优先级、重启顺序和延迟间隔</value>
|
||||
</data>
|
||||
|
||||
|
||||
|
||||
|
||||
<data name="HA_ASSIGN_PRIORITIES_MIXED_PROTECTION_LEVELS" xml:space="preserve">
|
||||
<value>(多个值)</value>
|
||||
</data>
|
||||
@ -6074,6 +6070,9 @@
|
||||
<data name="HEALTH_CHECK_AUTHENTICATION_INVALID_CREDENTIALS" xml:space="preserve">
|
||||
<value>无效用户名或密码。请重试。</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_PRIVACY_POLICY" xml:space="preserve">
|
||||
<value>根据 Citrix Insight Services 策略(网址为 {0})和 Citrix 隐私策略(网址为 {1})的规定,运行状况检查上载到 Citrix Insight Services 的信息将用于故障诊断和诊断支持以及改进产品质量、可靠性和性能。</value>
|
||||
</data>
|
||||
<data name="HEALTH_CHECK_USER_HAS_NO_PERMISSION_TO_CONNECT" xml:space="preserve">
|
||||
<value>此用户无权访问此服务器。</value>
|
||||
</data>
|
||||
@ -10899,7 +10898,7 @@ VM 克隆使用文件管理器的快照和克隆功能来实现高性能,并
|
||||
<value>使用权限更大的用户帐户重试。</value>
|
||||
</data>
|
||||
<data name="SOLUTION_UNKNOWN" xml:space="preserve">
|
||||
<value/>
|
||||
<value />
|
||||
</data>
|
||||
<data name="SOME_ERRORS_ENCOUNTERED" xml:space="preserve">
|
||||
<value>遇到一些错误。有关详细信息,请参阅 [XenCenter] 日志。</value>
|
||||
@ -11534,7 +11533,7 @@ VM 克隆使用文件管理器的快照和克隆功能来实现高性能,并
|
||||
<value>从 OVF 或 OVA 包导入设备。</value>
|
||||
</data>
|
||||
<data name="TYPE_PAGE_DESCRIPTION_HEADER_VHD" xml:space="preserve">
|
||||
<value/>
|
||||
<value />
|
||||
</data>
|
||||
<data name="TYPE_PAGE_DESCRIPTION_HEADER_XVA" xml:space="preserve">
|
||||
<value>将本地存储的 VM、模板或快照作为新 VM 导入。</value>
|
||||
@ -12920,7 +12919,7 @@ VM 克隆使用文件管理器的快照和克隆功能来实现高性能,并
|
||||
<value>高级</value>
|
||||
</data>
|
||||
<data name="WLB_ADVANCED_CONFIGURATION_SUBTEXT" xml:space="preserve">
|
||||
<value/>
|
||||
<value />
|
||||
</data>
|
||||
<data name="WLB_AUDIT_LOG_MAXIMUM" xml:space="preserve">
|
||||
<value>最大值</value>
|
||||
@ -13633,4 +13632,4 @@ VM 克隆使用文件管理器的快照和克隆功能来实现高性能,并
|
||||
<data name="YOU_ARE_HERE" xml:space="preserve">
|
||||
<value>您在此处</value>
|
||||
</data>
|
||||
</root>
|
||||
</root>
|
Loading…
Reference in New Issue
Block a user