20250314 中英文切换

This commit is contained in:
2025-03-14 15:29:22 +08:00
parent 0845150840
commit 2782f576b2
19 changed files with 5111 additions and 171 deletions
@@ -132,6 +132,8 @@ namespace FineUIPro.Web.common
//材料到货
getCldh();
getCNEN();//中英文翻译
}
}
@@ -1236,5 +1238,40 @@ namespace FineUIPro.Web.common
}
}
#endregion
/// <summary>
/// 中英文
/// </summary>
protected string QualityRate = string.Empty;//质量问题整改率
protected string OnePassRate = string.Empty;//一次共检合格率
protected string OnePassRateOfWelding = string.Empty;//焊接一次合格率
protected string total = string.Empty;//总计
protected string completed = string.Empty;//已完成
protected string majorRisk = string.Empty;//重大风险
protected string LowRisk = string.Empty;//低风险
protected string GeneralRisk = string.Empty;//一般风险
protected string GreaterRisk = string.Empty;//较大风险
protected string PlannedValue = string.Empty;//计划值
protected string ActualValue = string.Empty;//实际值
protected string Cumulative_planned_value = string.Empty;//累计计划值
protected string Cumulative_actual_value = string.Empty;//累计实际值
private void getCNEN()
{
QualityRate = Resources.Lan.QualityRate;
OnePassRate = Resources.Lan.OnePassRate;
OnePassRateOfWelding = Resources.Lan.OnePassRateOfWelding;
total = Resources.Lan.total;
completed = Resources.Lan.completed;
majorRisk = Resources.Lan.MajorRisk;
LowRisk = Resources.Lan.LowRisk;
GeneralRisk = Resources.Lan.GeneralRisk;
GreaterRisk = Resources.Lan.GreaterRisk;
PlannedValue = Resources.Lan.PlannedValue;
ActualValue = Resources.Lan.ActualValue;
Cumulative_planned_value = Resources.Lan.Cumulative_planned_value;
Cumulative_actual_value = Resources.Lan.Cumulative_actual_value;
}
}
}