From 25c591b105be8a8cadf1053c95cd7d4060bfa305 Mon Sep 17 00:00:00 2001 From: tq <1916474859@qq,com> Date: Fri, 26 Jul 2024 15:05:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BD=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/EquipAlarmRecordController.cs | 27 +- .../Controllers/SwapMonitorController.cs | 15 +- .../Controllers/SwapOrderStepController.cs | 15 +- .../Controllers/System/SysConfigController.cs | 13 +- WebStarter/Program.cs | 24 + ....EquipAlarmRecordController.en.Designer.cs | 3320 ++++++++++++++++ ...rollers.EquipAlarmRecordController.en.resx | 2012 ++++++++++ ....EquipAlarmRecordController.zh.Designer.cs | 3329 +++++++++++++++++ ...rollers.EquipAlarmRecordController.zh.resx | 2014 ++++++++++ ...llers.SwapMonitorController.en.Designer.cs | 197 + .../Controllers.SwapMonitorController.en.resx | 90 + ...llers.SwapMonitorController.zh.Designer.cs | 197 + .../Controllers.SwapMonitorController.zh.resx | 90 + ...ers.SwapOrderStepController.en.Designer.cs | 179 + ...ontrollers.SwapOrderStepController.en.resx | 67 + ...ers.SwapOrderStepController.zh.Designer.cs | 179 + ...ontrollers.SwapOrderStepController.zh.resx | 67 + ....System.SysConfigController.en.Designer.cs | 116 + ...rollers.System.SysConfigController.en.resx | 62 + ....System.SysConfigController.zh.Designer.cs | 116 + ...rollers.System.SysConfigController.zh.resx | 63 + WebStarter/WebStarter.csproj | 71 + 22 files changed, 12255 insertions(+), 8 deletions(-) create mode 100644 WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs create mode 100644 WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx create mode 100644 WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs create mode 100644 WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx create mode 100644 WebStarter/Resources/Controllers.SwapMonitorController.en.Designer.cs create mode 100644 WebStarter/Resources/Controllers.SwapMonitorController.en.resx create mode 100644 WebStarter/Resources/Controllers.SwapMonitorController.zh.Designer.cs create mode 100644 WebStarter/Resources/Controllers.SwapMonitorController.zh.resx create mode 100644 WebStarter/Resources/Controllers.SwapOrderStepController.en.Designer.cs create mode 100644 WebStarter/Resources/Controllers.SwapOrderStepController.en.resx create mode 100644 WebStarter/Resources/Controllers.SwapOrderStepController.zh.Designer.cs create mode 100644 WebStarter/Resources/Controllers.SwapOrderStepController.zh.resx create mode 100644 WebStarter/Resources/Controllers.System.SysConfigController.en.Designer.cs create mode 100644 WebStarter/Resources/Controllers.System.SysConfigController.en.resx create mode 100644 WebStarter/Resources/Controllers.System.SysConfigController.zh.Designer.cs create mode 100644 WebStarter/Resources/Controllers.System.SysConfigController.zh.resx diff --git a/WebStarter/Controllers/EquipAlarmRecordController.cs b/WebStarter/Controllers/EquipAlarmRecordController.cs index 2f4f0c3..4cac4a2 100644 --- a/WebStarter/Controllers/EquipAlarmRecordController.cs +++ b/WebStarter/Controllers/EquipAlarmRecordController.cs @@ -2,6 +2,7 @@ using Entity.Api.Req; using Entity.DbModel.Station; using HybirdFrameworkCore.Entity; using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Localization; using Service.Station; namespace WebStarter.Controllers; @@ -14,9 +15,11 @@ namespace WebStarter.Controllers; public class EquipAlarmRecordController : ControllerBase { private readonly EquipAlarmRecordService equipAlarmRecordService; + private readonly IStringLocalizer _localizer; - public EquipAlarmRecordController(EquipAlarmRecordService equipAlarmRecordService) + public EquipAlarmRecordController(IStringLocalizer localizer,EquipAlarmRecordService equipAlarmRecordService) { + _localizer = localizer; this.equipAlarmRecordService = equipAlarmRecordService; } @@ -29,7 +32,16 @@ public class EquipAlarmRecordController : ControllerBase [HttpPost("QueryEquipAlarmPage")] public Result> QueryEquipAlarmPage([FromBody] QueryAlarmReq req) { - return equipAlarmRecordService.QueryEquipAlarmPage(req); + Result> result = equipAlarmRecordService.QueryEquipAlarmPage(req); + if (result.Data.Rows.Count > 0) + { + foreach (var recordAlarm in result.Data.Rows) + { + recordAlarm.ErrorMsg = _localizer[recordAlarm.ErrorMsg]; + } + } + + return result; } /// @@ -55,7 +67,16 @@ public class EquipAlarmRecordController : ControllerBase [HttpPost("QueryEquipAlarmProcessPage")] public Result> QueryEquipAlarmProcessPage([FromBody] QueryAlarmReq req) { - return equipAlarmRecordService.QueryEquipAlarmProcessPage(req); + Result> result = equipAlarmRecordService.QueryEquipAlarmProcessPage(req); + + if (result.Data.Rows.Count > 0) + { + foreach (var recordAlarm in result.Data.Rows) + { + recordAlarm.ErrorMsg = _localizer[recordAlarm.ErrorMsg]; + } + } + return result; } /// diff --git a/WebStarter/Controllers/SwapMonitorController.cs b/WebStarter/Controllers/SwapMonitorController.cs index 610d6d1..dc82f8f 100644 --- a/WebStarter/Controllers/SwapMonitorController.cs +++ b/WebStarter/Controllers/SwapMonitorController.cs @@ -3,6 +3,7 @@ using Entity.Api.Resp; using Entity.Constant; using HybirdFrameworkCore.Entity; using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Localization; using Service.Execute; using Service.Execute.Api; using Service.Execute.Model; @@ -21,9 +22,11 @@ public class SwapMonitorController : ControllerBase { private readonly MonitorService _swapMonitorService; private readonly BinInfoService _binInfoService; + private readonly IStringLocalizer _localizer; - public SwapMonitorController(MonitorService swapMonitorService, BinInfoService binInfoService) + public SwapMonitorController(IStringLocalizer localizer,MonitorService swapMonitorService, BinInfoService binInfoService) { + _localizer = localizer; _swapMonitorService = swapMonitorService; _binInfoService = binInfoService; } @@ -46,7 +49,15 @@ public class SwapMonitorController : ControllerBase [HttpPost("GetSwapMonitorData")] public async Task> GetSwapMonitorData() { - return _swapMonitorService.GetSwapMonitorData(); + + var respList = _swapMonitorService.GetSwapMonitorData(); + + foreach (var item in respList.Data?.StateInfo) + { + item.StepName = _localizer[item.StepNo.ToString()]; + } + + return respList; } diff --git a/WebStarter/Controllers/SwapOrderStepController.cs b/WebStarter/Controllers/SwapOrderStepController.cs index 92cd2b7..ce6b039 100644 --- a/WebStarter/Controllers/SwapOrderStepController.cs +++ b/WebStarter/Controllers/SwapOrderStepController.cs @@ -2,6 +2,7 @@ using Entity.Api.Req; using Entity.Api.Resp; using HybirdFrameworkCore.Entity; using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Localization; using Service.Station; namespace WebStarter.Controllers; @@ -15,9 +16,11 @@ public class SwapOrderStepController : ControllerBase { private readonly SwapOrderStepService swapOrderStepService; + private readonly IStringLocalizer _localizer; - public SwapOrderStepController(SwapOrderStepService swapOrderStepService) + public SwapOrderStepController(IStringLocalizer localizer,SwapOrderStepService swapOrderStepService) { + _localizer = localizer; this.swapOrderStepService = swapOrderStepService; } @@ -30,8 +33,16 @@ public class SwapOrderStepController : ControllerBase [Route("QuerySwapOrderStep")] public Result> QuerySwapOrderStep([FromBody] QuerySwapOrderStepReq swapOrderStepReq) { - return Result>.Success(swapOrderStepService.QueryEqmFaultInfo(swapOrderStepReq)); + PageResult pageResult = swapOrderStepService.QueryEqmFaultInfo(swapOrderStepReq); + if (pageResult.Rows.Count > 0) + { + foreach (var order in pageResult.Rows) + { + order.StepName = _localizer[order.StepName]; + } + } + return Result>.Success(pageResult); } diff --git a/WebStarter/Controllers/System/SysConfigController.cs b/WebStarter/Controllers/System/SysConfigController.cs index c3ff886..f08045e 100644 --- a/WebStarter/Controllers/System/SysConfigController.cs +++ b/WebStarter/Controllers/System/SysConfigController.cs @@ -16,6 +16,7 @@ using SqlSugar; using System.ComponentModel.DataAnnotations; using System.Reflection; using Entity.DbModel.System; +using Microsoft.Extensions.Localization; using Service.Init; namespace WebStarter.Controllers.System @@ -27,9 +28,12 @@ namespace WebStarter.Controllers.System { private readonly SysConfigService _sysConfigService; private readonly IWebHostEnvironment _webHostEnvironment; + private readonly IStringLocalizer _localizer; - public SysConfigController(SysConfigService sysConfigService, IWebHostEnvironment webHostEnvironment) + + public SysConfigController(IStringLocalizer localizer,SysConfigService sysConfigService, IWebHostEnvironment webHostEnvironment) { + _localizer = localizer; _sysConfigService = sysConfigService; _webHostEnvironment = webHostEnvironment; } @@ -139,6 +143,13 @@ namespace WebStarter.Controllers.System } } + + stationBaseInfoResp.AreaName = _localizer["AreaName"]; + stationBaseInfoResp.StationCity = _localizer["StationCity"]; + stationBaseInfoResp.StationName = _localizer["StationName"]; + stationBaseInfoResp.StationProvince = _localizer["StationProvince"]; + stationBaseInfoResp.StationType = _localizer["StationType"]; + stationBaseInfoResp.Principal = _localizer["Principal"]; return Result.Success(stationBaseInfoResp); } diff --git a/WebStarter/Program.cs b/WebStarter/Program.cs index 428f007..bf2e967 100644 --- a/WebStarter/Program.cs +++ b/WebStarter/Program.cs @@ -1,3 +1,4 @@ +using System.Globalization; using System.Text; using Autofac; using Autofac.Extensions.DependencyInjection; @@ -11,6 +12,7 @@ using HybirdFrameworkCore.Redis; using log4net; using Mapster; using Microsoft.AspNetCore.Authentication.JwtBearer; +using Microsoft.AspNetCore.Localization; using Microsoft.IdentityModel.Tokens; using Service.Charger.Client; using Service.Execute; @@ -131,6 +133,12 @@ builder.Services.AddAuthentication(options => }; }); +// 添加国际化支持 +builder.Services.AddLocalization(options => +{ + options.ResourcesPath = "Resources"; +}); + var app = builder.Build(); @@ -197,4 +205,20 @@ TaskInit.Init(); QuartzSchedulerFactory.Init(); app.Lifetime.ApplicationStopping.Register(QuartzSchedulerFactory.Shutdown); + +// 配置多语言支持 +var supportedCultures = new List +{ + new CultureInfo("en"), + new CultureInfo("zh") +}; + +app.UseRequestLocalization(new RequestLocalizationOptions +{ + DefaultRequestCulture = new RequestCulture("zh"), + SupportedCultures = supportedCultures, + SupportedUICultures = supportedCultures, +}); + + app.Run(); diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs new file mode 100644 index 0000000..8ab836f --- /dev/null +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.Designer.cs @@ -0,0 +1,3320 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_EquipAlarmRecordController_en { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_EquipAlarmRecordController_en() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.EquipAlarmRecordController.en", typeof(Controllers_EquipAlarmRecordController_en).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Extension Timeout Alarm. + /// + internal static string _1000000_吊具推杆1夹爪推杆伸出超时报警 { + get { + return ResourceManager.GetString("1000000:吊具推杆1夹爪推杆伸出超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Extension Timeout Alarm. + /// + internal static string _1000001_吊具推杆2夹爪推杆伸出超时报警 { + get { + return ResourceManager.GetString("1000001:吊具推杆2夹爪推杆伸出超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Retraction Timeout Alarm. + /// + internal static string _1000020_吊具推杆1夹爪推杆缩回超时报警 { + get { + return ResourceManager.GetString("1000020:吊具推杆1夹爪推杆缩回超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Retraction Timeout Alarm. + /// + internal static string _1000021_吊具推杆2夹爪推杆缩回超时报警 { + get { + return ResourceManager.GetString("1000021:吊具推杆2夹爪推杆缩回超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Should Be Extended. + /// + internal static string _1000040_吊具推杆1夹爪推杆应在伸出位置 { + get { + return ResourceManager.GetString("1000040:吊具推杆1夹爪推杆应在伸出位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Should Be Extended. + /// + internal static string _1000041_吊具推杆2夹爪推杆应在伸出位置 { + get { + return ResourceManager.GetString("1000041:吊具推杆2夹爪推杆应在伸出位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Should Be Retracted. + /// + internal static string _1000060_吊具推杆1夹爪推杆应在缩回位置 { + get { + return ResourceManager.GetString("1000060:吊具推杆1夹爪推杆应在缩回位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Should Be Retracted. + /// + internal static string _1000061_吊具推杆2夹爪推杆应在缩回位置 { + get { + return ResourceManager.GetString("1000061:吊具推杆2夹爪推杆应在缩回位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Extension Limited. + /// + internal static string _1000080_吊具推杆1夹爪推杆伸出受限 { + get { + return ResourceManager.GetString("1000080:吊具推杆1夹爪推杆伸出受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Extension Limited. + /// + internal static string _1000081_吊具推杆2夹爪推杆伸出受限 { + get { + return ResourceManager.GetString("1000081:吊具推杆2夹爪推杆伸出受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Retraction Limited. + /// + internal static string _1000100_吊具推杆1夹爪推杆缩回受限 { + get { + return ResourceManager.GetString("1000100:吊具推杆1夹爪推杆缩回受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Retraction Limited. + /// + internal static string _1000101_吊具推杆2夹爪推杆缩回受限 { + get { + return ResourceManager.GetString("1000101:吊具推杆2夹爪推杆缩回受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 1 Jaw Pusher Extension and Retraction Detected Simultaneously. + /// + internal static string _1000120_吊具推杆1夹爪推杆伸出缩回同时检测到 { + get { + return ResourceManager.GetString("1000120:吊具推杆1夹爪推杆伸出缩回同时检测到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher 2 Jaw Pusher Extension and Retraction Detected Simultaneously. + /// + internal static string _1000121_吊具推杆2夹爪推杆伸出缩回同时检测到 { + get { + return ResourceManager.GetString("1000121:吊具推杆2夹爪推杆伸出缩回同时检测到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lifter Pusher Jaw Pusher Retraction Limited. + /// + internal static string _1000140_吊具推杆夹爪推杆缩回受限 { + get { + return ResourceManager.GetString("1000140:吊具推杆夹爪推杆缩回受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Safety PLC not running. + /// + internal static string _200000_安全PLC没有运行 { + get { + return ResourceManager.GetString("200000:安全PLC没有运行", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emergency stop triggered. + /// + internal static string _200001_有急停触发 { + get { + return ResourceManager.GetString("200001:有急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Main control cabinet emergency stop triggered. + /// + internal static string _200002_主控柜急停触发 { + get { + return ResourceManager.GetString("200002:主控柜急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery swap channel emergency stop triggered. + /// + internal static string _200003_换电通道急停触发 { + get { + return ResourceManager.GetString("200003:换电通道急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Robot emergency stop triggered. + /// + internal static string _200004_机器人急停触发 { + get { + return ResourceManager.GetString("200004:机器人急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control emergency stop triggered. + /// + internal static string _200005_站控急停触发 { + get { + return ResourceManager.GetString("200005:站控急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Control room HMI emergency stop triggered. + /// + internal static string _200020_控制室HMI急停触发 { + get { + return ResourceManager.GetString("200020:控制室HMI急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment HMI emergency stop triggered. + /// + internal static string _200021_电池仓HMI急停触发 { + get { + return ResourceManager.GetString("200021:电池仓HMI急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No HMI emergency stop access point selected. + /// + internal static string _200040_未选择HMI急停接入点 { + get { + return ResourceManager.GetString("200040:未选择HMI急停接入点", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Safety door opened. + /// + internal static string _200041_安全门被打开 { + get { + return ResourceManager.GetString("200041:安全门被打开", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Main control cabinet IO module communication failure. + /// + internal static string _200042_主控柜IO模块通讯异常 { + get { + return ResourceManager.GetString("200042:主控柜IO模块通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote IO module communication failure for hoist. + /// + internal static string _200043_吊具远程IO模块通讯异常 { + get { + return ResourceManager.GetString("200043:吊具远程IO模块通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote IO module communication failure for robot. + /// + internal static string _200044_机器人远程IO模块通讯异常 { + get { + return ResourceManager.GetString("200044:机器人远程IO模块通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis encoder runaway. + /// + internal static string _200046_Y轴编码器飞车 { + get { + return ResourceManager.GetString("200046:Y轴编码器飞车", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis encoder communication failure. + /// + internal static string _200047_Y轴编码器通讯异常 { + get { + return ResourceManager.GetString("200047:Y轴编码器通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis following error alarm. + /// + internal static string _200050_Y轴跟随误差报警 { + get { + return ResourceManager.GetString("200050:Y轴跟随误差报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis encoder failure. + /// + internal static string _200051_Y轴编码器异常 { + get { + return ResourceManager.GetString("200051:Y轴编码器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis encoder communication failure. + /// + internal static string _200052_X轴编码器通讯异常 { + get { + return ResourceManager.GetString("200052:X轴编码器通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 1 sensor 1 failure. + /// + internal static string _200060_1_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200060:1#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stop after action completed. + /// + internal static string _200060_动作结束后停机 { + get { + return ResourceManager.GetString("200060:动作结束后停机", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 2 sensor 1 failure. + /// + internal static string _200061_2_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200061:2#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 3 sensor 1 failure. + /// + internal static string _200062_3_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200062:3#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 4 sensor 1 failure. + /// + internal static string _200063_4_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200063:4#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 5 sensor 1 failure. + /// + internal static string _200064_5_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200064:5#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 6 sensor 1 failure. + /// + internal static string _200065_6_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200065:6#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 7 sensor 1 failure. + /// + internal static string _200066_7_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200066:7#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 8 sensor 1 failure. + /// + internal static string _200067_8_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200067:8#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 1 sensor 2 failure. + /// + internal static string _200080_1_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200080:1#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 2 sensor 2 failure. + /// + internal static string _200081_2_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200081:2#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 3 sensor 2 failure. + /// + internal static string _200082_3_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200082:3#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 4 sensor 2 failure. + /// + internal static string _200083_4_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200083:4#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 5 sensor 2 failure. + /// + internal static string _200084_5_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200084:5#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 6 sensor 2 failure. + /// + internal static string _200085_6_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200085:6#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 7 sensor 2 failure. + /// + internal static string _200086_7_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200086:7#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 8 sensor 2 failure. + /// + internal static string _200087_8_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200087:8#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Entrance radar sensor failure. + /// + internal static string _200100_入口雷达感应异常 { + get { + return ResourceManager.GetString("200100:入口雷达感应异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exit radar sensor failure. + /// + internal static string _200101_出口雷达感应异常 { + get { + return ResourceManager.GetString("200101:出口雷达感应异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sliding door opening timeout. + /// + internal static string _200103_移门开门超时 { + get { + return ResourceManager.GetString("200103:移门开门超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sliding door closing timeout. + /// + internal static string _200104_移门关门超时 { + get { + return ResourceManager.GetString("200104:移门关门超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Not all sliding door opening sensors detected. + /// + internal static string _200105_移门开门感应器没有都感应到 { + get { + return ResourceManager.GetString("200105:移门开门感应器没有都感应到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Both sliding door opening and closing sensors detected. + /// + internal static string _200106_移门开门和关门感应器都感应到 { + get { + return ResourceManager.GetString("200106:移门开门和关门感应器都感应到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Detected task not completed. + /// + internal static string _200112_检测到任务未执行完成 { + get { + return ResourceManager.GetString("200112:检测到任务未执行完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Initialization detected battery memory on hoist. + /// + internal static string _200113_初始化检测吊具上有电池记忆 { + get { + return ResourceManager.GetString("200113:初始化检测吊具上有电池记忆", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis not in standby position. + /// + internal static string _200114_X轴不在待机位 { + get { + return ResourceManager.GetString("200114:X轴不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis not in standby position. + /// + internal static string _200115_Y轴不在待机位 { + get { + return ResourceManager.GetString("200115:Y轴不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis not in standby position. + /// + internal static string _200116_Z轴不在待机位 { + get { + return ResourceManager.GetString("200116:Z轴不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist pushrod 1 not in standby position. + /// + internal static string _200117_吊具推杆1不在待机位 { + get { + return ResourceManager.GetString("200117:吊具推杆1不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist pushrod 2 not in standby position. + /// + internal static string _200120_吊具推杆2不在待机位 { + get { + return ResourceManager.GetString("200120:吊具推杆2不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist sensor failure. + /// + internal static string _200121_吊具感应器异常 { + get { + return ResourceManager.GetString("200121:吊具感应器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist sensor 1 failure. + /// + internal static string _200122_吊具感应器1异常 { + get { + return ResourceManager.GetString("200122:吊具感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist sensor 2 failure. + /// + internal static string _200123_吊具感应器2异常 { + get { + return ResourceManager.GetString("200123:吊具感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist sensor 3 failure. + /// + internal static string _200124_吊具感应器3异常 { + get { + return ResourceManager.GetString("200124:吊具感应器3异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist sensor 4 failure. + /// + internal static string _200125_吊具感应器4异常 { + get { + return ResourceManager.GetString("200125:吊具感应器4异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position setting error. + /// + internal static string _200126_X轴位置点位设置错误 { + get { + return ResourceManager.GetString("200126:X轴位置点位设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position setting error. + /// + internal static string _200127_Y轴位置点位设置错误 { + get { + return ResourceManager.GetString("200127:Y轴位置点位设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position setting error. + /// + internal static string _200130_Z轴位置点位设置错误 { + get { + return ResourceManager.GetString("200130:Z轴位置点位设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Robot current position cannot start transfer task. + /// + internal static string _200132_机器人当前位置不能启动移仓任务 { + get { + return ResourceManager.GetString("200132:机器人当前位置不能启动移仓任务", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Robot current position cannot start fire control task. + /// + internal static string _200133_机器人当前位置不能启动消防任务 { + get { + return ResourceManager.GetString("200133:机器人当前位置不能启动消防任务", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis recheck sensor failure. + /// + internal static string _200134_Y轴复判感应器异常 { + get { + return ResourceManager.GetString("200134:Y轴复判感应器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera program not running. + /// + internal static string _200135_相机程序未运行 { + get { + return ResourceManager.GetString("200135:相机程序未运行", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera photo timeout. + /// + internal static string _200136_相机拍照超时 { + get { + return ResourceManager.GetString("200136:相机拍照超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera offset value exceeded. + /// + internal static string _200137_相机偏移值超限 { + get { + return ResourceManager.GetString("200137:相机偏移值超限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera photo failed. + /// + internal static string _200140_相机拍照失败 { + get { + return ResourceManager.GetString("200140:相机拍照失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis encoder zeroing failed. + /// + internal static string _200141_Y轴编码器清零失败 { + get { + return ResourceManager.GetString("200141:Y轴编码器清零失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist in place sensor restricting Z-axis descent. + /// + internal static string _200143_吊具到位感应使Z轴下降受限 { + get { + return ResourceManager.GetString("200143:吊具到位感应使Z轴下降受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control communication protocol version error. + /// + internal static string _200320_站控通讯协议版本错误 { + get { + return ResourceManager.GetString("200320:站控通讯协议版本错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wire rope 1 slack alarm. + /// + internal static string _200340_钢丝绳1松弛报警 { + get { + return ResourceManager.GetString("200340:钢丝绳1松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wire rope 2 slack alarm. + /// + internal static string _200341_钢丝绳2松弛报警 { + get { + return ResourceManager.GetString("200341:钢丝绳2松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wire rope 3 slack alarm. + /// + internal static string _200342_钢丝绳3松弛报警 { + get { + return ResourceManager.GetString("200342:钢丝绳3松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wire rope 4 slack alarm. + /// + internal static string _200343_钢丝绳4松弛报警 { + get { + return ResourceManager.GetString("200343:钢丝绳4松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis should be within standby position limits. + /// + internal static string _200360_X轴应该在待机位正负限制之内 { + get { + return ResourceManager.GetString("200360:X轴应该在待机位正负限制之内", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser axis origin sensor failure. + /// + internal static string _200361_激光轴原点感应异常 { + get { + return ResourceManager.GetString("200361:激光轴原点感应异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis standby position review sensor mismatch. + /// + internal static string _200362_Y轴待机位复盘感应比对异常 { + get { + return ResourceManager.GetString("200362:Y轴待机位复盘感应比对异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 1 status memory error. + /// + internal static string _200380_1_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200380:1#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 2 status memory error. + /// + internal static string _200381_2_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200381:2#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 3 status memory error. + /// + internal static string _200382_3_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200382:3#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 4 status memory error. + /// + internal static string _200383_4_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200383:4#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 5 status memory error. + /// + internal static string _200384_5_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200384:5#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 6 status memory error. + /// + internal static string _200385_6_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200385:6#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 7 status memory error. + /// + internal static string _200386_7_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200386:7#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery compartment 8 status memory error. + /// + internal static string _200387_8_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200387:8#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Main control cabinet IO module not configured alarm. + /// + internal static string _200401_主控柜IO模块未配置报警 { + get { + return ResourceManager.GetString("200401:主控柜IO模块未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser axis not configured alarm. + /// + internal static string _200402_激光轴未配置报警 { + get { + return ResourceManager.GetString("200402:激光轴未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis not configured alarm. + /// + internal static string _200403_X轴未配置报警 { + get { + return ResourceManager.GetString("200403:X轴未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis not configured alarm. + /// + internal static string _200404_Y轴未配置报警 { + get { + return ResourceManager.GetString("200404:Y轴未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis encoder not configured alarm. + /// + internal static string _200405_X轴编码器未配置报警 { + get { + return ResourceManager.GetString("200405:X轴编码器未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station type not configured alarm. + /// + internal static string _200406_站型未配置报警 { + get { + return ResourceManager.GetString("200406:站型未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle not entered in the correct direction or exit radar triggered abnormally. + /// + internal static string _200407_车辆未按照正常方向驶入或出口雷达被异常触发 { + get { + return ResourceManager.GetString("200407:车辆未按照正常方向驶入或出口雷达被异常触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wire rope broken. + /// + internal static string _200410_钢丝绳断裂 { + get { + return ResourceManager.GetString("200410:钢丝绳断裂", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Control room smoke alarm. + /// + internal static string _300000_主控室烟感报警 { + get { + return ResourceManager.GetString("300000:主控室烟感报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Liquid level warning. + /// + internal static string _300001_液位预警 { + get { + return ResourceManager.GetString("300001:液位预警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Liquid level alarm. + /// + internal static string _300002_液位报警 { + get { + return ResourceManager.GetString("300002:液位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 1 not placed correctly. + /// + internal static string _300100_1号电池仓电池未放好 { + get { + return ResourceManager.GetString("300100:1号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 2 not placed correctly. + /// + internal static string _300101_2号电池仓电池未放好 { + get { + return ResourceManager.GetString("300101:2号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 3 not placed correctly. + /// + internal static string _300102_3号电池仓电池未放好 { + get { + return ResourceManager.GetString("300102:3号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 4 not placed correctly. + /// + internal static string _300103_4号电池仓电池未放好 { + get { + return ResourceManager.GetString("300103:4号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 5 not placed correctly. + /// + internal static string _300104_5号电池仓电池未放好 { + get { + return ResourceManager.GetString("300104:5号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 6 not placed correctly. + /// + internal static string _300105_6号电池仓电池未放好 { + get { + return ResourceManager.GetString("300105:6号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 7 not placed correctly. + /// + internal static string _300106_7号电池仓电池未放好 { + get { + return ResourceManager.GetString("300106:7号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery in compartment 8 not placed correctly. + /// + internal static string _300107_8号电池仓电池未放好 { + get { + return ResourceManager.GetString("300107:8号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 1. + /// + internal static string _300120_1号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300120:1号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 2. + /// + internal static string _300121_2号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300121:2号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 3. + /// + internal static string _300122_3号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300122:3号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 4. + /// + internal static string _300123_4号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300123:4号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 5. + /// + internal static string _300124_5号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300124:5号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 6. + /// + internal static string _300125_6号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300125:6号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 7. + /// + internal static string _300126_7号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300126:7号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery illegally placed in compartment 8. + /// + internal static string _300127_8号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300127:8号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HMI heartbeat lost. + /// + internal static string _400000_HMI心跳丢失 { + get { + return ResourceManager.GetString("400000:HMI心跳丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PLC Modbus server command error. + /// + internal static string _400001_PLC_Modbus服务器指令异常 { + get { + return ResourceManager.GetString("400001:PLC Modbus服务器指令异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control heartbeat error. + /// + internal static string _400002_站控心跳异常 { + get { + return ResourceManager.GetString("400002:站控心跳异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera communication error. + /// + internal static string _400003_相机通讯异常 { + get { + return ResourceManager.GetString("400003:相机通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device run times reached maintenance warning. + /// + internal static string _400004_设备运行次数已达到设定保养次数预警 { + get { + return ResourceManager.GetString("400004:设备运行次数已达到设定保养次数预警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device run times reached maintenance alarm. + /// + internal static string _400005_设备运行次数已达到设定保养次数报警 { + get { + return ResourceManager.GetString("400005:设备运行次数已达到设定保养次数报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis not torque checked or torque check NG. + /// + internal static string _400180_X轴未做轴扭力点检或扭力点检NG { + get { + return ResourceManager.GetString("400180:X轴未做轴扭力点检或扭力点检NG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis not torque checked or torque check NG. + /// + internal static string _400181_Y轴未做轴扭力点检或扭力点检NG { + get { + return ResourceManager.GetString("400181:Y轴未做轴扭力点检或扭力点检NG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis not torque checked or torque check NG. + /// + internal static string _400182_Z轴未做轴扭力点检或扭力点检NG { + get { + return ResourceManager.GetString("400182:Z轴未做轴扭力点检或扭力点检NG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Safety door shielded. + /// + internal static string _700000_安全门屏蔽中 { + get { + return ResourceManager.GetString("700000:安全门屏蔽中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Idle running. + /// + internal static string _700001_空跑中 { + get { + return ResourceManager.GetString("700001:空跑中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid initialization command received from station control. + /// + internal static string _700002_收到站控无效的初始化命令 { + get { + return ResourceManager.GetString("700002:收到站控无效的初始化命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid initialization command received from station control. + /// + internal static string _700003_收到站控有效的初始化命令 { + get { + return ResourceManager.GetString("700003:收到站控有效的初始化命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid start command received from station control. + /// + internal static string _700004_收到站控无效的启动命令 { + get { + return ResourceManager.GetString("700004:收到站控无效的启动命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid start command received from station control. + /// + internal static string _700005_收到站控有效的启动命令 { + get { + return ResourceManager.GetString("700005:收到站控有效的启动命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid reset command received from station control. + /// + internal static string _700006_收到站控无效的复位命令 { + get { + return ResourceManager.GetString("700006:收到站控无效的复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid reset command received from station control. + /// + internal static string _700007_收到站控有效的复位命令 { + get { + return ResourceManager.GetString("700007:收到站控有效的复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid pause command received from station control. + /// + internal static string _700010_收到站控无效的暂停命令 { + get { + return ResourceManager.GetString("700010:收到站控无效的暂停命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid pause command received from station control. + /// + internal static string _700011_收到站控有效的暂停命令 { + get { + return ResourceManager.GetString("700011:收到站控有效的暂停命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid program reset command received from station control. + /// + internal static string _700012_收到站控无效的程序复位命令 { + get { + return ResourceManager.GetString("700012:收到站控无效的程序复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid program reset command received from station control. + /// + internal static string _700013_收到站控有效的程序复位命令 { + get { + return ResourceManager.GetString("700013:收到站控有效的程序复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid forced battery swap completion command received from station control. + /// + internal static string _700014_收到站控无效的强制换电完成命令 { + get { + return ResourceManager.GetString("700014:收到站控无效的强制换电完成命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid forced battery swap completion command received from station control. + /// + internal static string _700015_收到站控有效的强制换电完成命令 { + get { + return ResourceManager.GetString("700015:收到站控有效的强制换电完成命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid switch to manual mode command received from station control. + /// + internal static string _700016_收到站控无效的切换手动模式命令 { + get { + return ResourceManager.GetString("700016:收到站控无效的切换手动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid switch to manual mode command received from station control. + /// + internal static string _700017_收到站控有效的切换手动模式命令 { + get { + return ResourceManager.GetString("700017:收到站控有效的切换手动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid switch to automatic mode command received from station control. + /// + internal static string _700020_收到站控无效的切换自动模式命令 { + get { + return ResourceManager.GetString("700020:收到站控无效的切换自动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid switch to automatic mode command received from station control. + /// + internal static string _700021_收到站控有效的切换自动模式命令 { + get { + return ResourceManager.GetString("700021:收到站控有效的切换自动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid switch to remote mode command received from station control. + /// + internal static string _700022_收到站控无效的切换远程模式命令 { + get { + return ResourceManager.GetString("700022:收到站控无效的切换远程模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid switch to remote mode command received from station control. + /// + internal static string _700023_收到站控有效的切换远程模式命令 { + get { + return ResourceManager.GetString("700023:收到站控有效的切换远程模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid switch to local mode command received from station control. + /// + internal static string _700024_收到站控无效的切换本地模式命令 { + get { + return ResourceManager.GetString("700024:收到站控无效的切换本地模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid switch to local mode command received from station control. + /// + internal static string _700025_收到站控有效的切换本地模式命令 { + get { + return ResourceManager.GetString("700025:收到站控有效的切换本地模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid battery swap command received from station control. + /// + internal static string _700026_收到站控无效的换电命令 { + get { + return ResourceManager.GetString("700026:收到站控无效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid battery swap command received from station control. + /// + internal static string _700027_收到站控有效的换电命令 { + get { + return ResourceManager.GetString("700027:收到站控有效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid storage command received from station control. + /// + internal static string _700030_收到站控无效的入库命令 { + get { + return ResourceManager.GetString("700030:收到站控无效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid storage command received from station control. + /// + internal static string _700031_收到站控有效的入库命令 { + get { + return ResourceManager.GetString("700031:收到站控有效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid retrieval command received from station control. + /// + internal static string _700032_收到站控无效的出库命令 { + get { + return ResourceManager.GetString("700032:收到站控无效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid retrieval command received from station control. + /// + internal static string _700033_收到站控有效的出库命令 { + get { + return ResourceManager.GetString("700033:收到站控有效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid warehouse adjustment command received from station control. + /// + internal static string _700034_收到站控无效的调库命令 { + get { + return ResourceManager.GetString("700034:收到站控无效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid warehouse adjustment command received from station control. + /// + internal static string _700035_收到站控有效的调库命令 { + get { + return ResourceManager.GetString("700035:收到站控有效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid fire control command received from station control. + /// + internal static string _700036_收到站控无效的消防命令 { + get { + return ResourceManager.GetString("700036:收到站控无效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid fire control command received from station control. + /// + internal static string _700037_收到站控有效的消防命令 { + get { + return ResourceManager.GetString("700037:收到站控有效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote disconnect transformer command received. + /// + internal static string _700040_收到远程断箱变命令 { + get { + return ResourceManager.GetString("700040:收到远程断箱变命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote disconnect battery swap circuit breaker command received. + /// + internal static string _700041_收到远程断换电断路器命令 { + get { + return ResourceManager.GetString("700041:收到远程断换电断路器命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote close all lights command received. + /// + internal static string _700042_收到远程关闭所有灯 { + get { + return ResourceManager.GetString("700042:收到远程关闭所有灯", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote close battery swap channel lighting command received. + /// + internal static string _700043_收到远程关闭换电通道照明 { + get { + return ResourceManager.GetString("700043:收到远程关闭换电通道照明", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote close control room lighting command received. + /// + internal static string _700044_收到远程关闭控制室照明 { + get { + return ResourceManager.GetString("700044:收到远程关闭控制室照明", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote start exhaust fan command received. + /// + internal static string _700045_收到远程开启排风启动命令 { + get { + return ResourceManager.GetString("700045:收到远程开启排风启动命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid battery swap command received from HMI. + /// + internal static string _700046_收到HMI无效的换电命令 { + get { + return ResourceManager.GetString("700046:收到HMI无效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid battery swap command received from HMI. + /// + internal static string _700047_收到HMI有效的换电命令 { + get { + return ResourceManager.GetString("700047:收到HMI有效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid storage command received from HMI. + /// + internal static string _700050_收到HMI无效的入库命令 { + get { + return ResourceManager.GetString("700050:收到HMI无效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid storage command received from HMI. + /// + internal static string _700051_收到HMI有效的入库命令 { + get { + return ResourceManager.GetString("700051:收到HMI有效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid retrieval command received from HMI. + /// + internal static string _700052_收到HMI无效的出库命令 { + get { + return ResourceManager.GetString("700052:收到HMI无效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid retrieval command received from HMI. + /// + internal static string _700053_收到HMI有效的出库命令 { + get { + return ResourceManager.GetString("700053:收到HMI有效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid warehouse adjustment command received from HMI. + /// + internal static string _700054_收到HMI无效的调库命令 { + get { + return ResourceManager.GetString("700054:收到HMI无效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid warehouse adjustment command received from HMI. + /// + internal static string _700055_收到HMI有效的调库命令 { + get { + return ResourceManager.GetString("700055:收到HMI有效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid fire control command received from HMI. + /// + internal static string _700056_收到HMI无效的消防命令 { + get { + return ResourceManager.GetString("700056:收到HMI无效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Valid fire control command received from HMI. + /// + internal static string _700057_收到HMI有效的消防命令 { + get { + return ResourceManager.GetString("700057:收到HMI有效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Safety door not closed properly. + /// + internal static string _700060_安全门未关好 { + get { + return ResourceManager.GetString("700060:安全门未关好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HMI emergency stop shielded. + /// + internal static string _700061_HMI急停已屏蔽 { + get { + return ResourceManager.GetString("700061:HMI急停已屏蔽", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis stopping. + /// + internal static string _700062_Z轴停止中 { + get { + return ResourceManager.GetString("700062:Z轴停止中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please manually detach the hoist from the battery. + /// + internal static string _700063_请手动将吊具脱离电池 { + get { + return ResourceManager.GetString("700063:请手动将吊具脱离电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Whole station power off triggered. + /// + internal static string _700064_整站断电触发 { + get { + return ResourceManager.GetString("700064:整站断电触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control stopping. + /// + internal static string _700065_站控停止中 { + get { + return ResourceManager.GetString("700065:站控停止中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control starting. + /// + internal static string _700066_站控启动中 { + get { + return ResourceManager.GetString("700066:站控启动中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control emergency stopping. + /// + internal static string _700067_站控急停中 { + get { + return ResourceManager.GetString("700067:站控急停中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station control alarm resetting. + /// + internal static string _700070_站控报警复位中 { + get { + return ResourceManager.GetString("700070:站控报警复位中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid station start command received from HMI. + /// + internal static string _700073_收到HMI无效开站命令 { + get { + return ResourceManager.GetString("700073:收到HMI无效开站命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid station close command received from HMI. + /// + internal static string _700074_收到HMI无效闭站命令 { + get { + return ResourceManager.GetString("700074:收到HMI无效闭站命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please place the battery in the designated position. + /// + internal static string _700075_请人员将电池放在指定位置 { + get { + return ResourceManager.GetString("700075:请人员将电池放在指定位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist spring line reached warning times. + /// + internal static string _700077_吊具弹簧线达到预警次数 { + get { + return ResourceManager.GetString("700077:吊具弹簧线达到预警次数", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoist spring line reached warning times. + /// + internal static string _700080_吊具弹簧线达到预警次数 { + get { + return ResourceManager.GetString("700080:吊具弹簧线达到预警次数", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis standby position setting error. + /// + internal static string _700100_X轴待机位位置设置错误 { + get { + return ResourceManager.GetString("700100:X轴待机位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis vehicle guide pick/place position setting error. + /// + internal static string _700101_X轴车辆引导取放位位置设置错误 { + get { + return ResourceManager.GetString("700101:X轴车辆引导取放位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis photo end position setting error. + /// + internal static string _700102_X轴拍照结束位位置设置错误 { + get { + return ResourceManager.GetString("700102:X轴拍照结束位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis vehicle battery pick/place position setting error. + /// + internal static string _700103_X轴车辆取放电池位置设置错误 { + get { + return ResourceManager.GetString("700103:X轴车辆取放电池位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 1 data setting error. + /// + internal static string _700105_X轴1号仓位数据设置错误 { + get { + return ResourceManager.GetString("700105:X轴1号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 2 data setting error. + /// + internal static string _700106_X轴2号仓位数据设置错误 { + get { + return ResourceManager.GetString("700106:X轴2号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 3 data setting error. + /// + internal static string _700107_X轴3号仓位数据设置错误 { + get { + return ResourceManager.GetString("700107:X轴3号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 4 data setting error. + /// + internal static string _700110_X轴4号仓位数据设置错误 { + get { + return ResourceManager.GetString("700110:X轴4号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 5 data setting error. + /// + internal static string _700111_X轴5号仓位数据设置错误 { + get { + return ResourceManager.GetString("700111:X轴5号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 6 data setting error. + /// + internal static string _700112_X轴6号仓位数据设置错误 { + get { + return ResourceManager.GetString("700112:X轴6号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 7 data setting error. + /// + internal static string _700113_X轴7号仓位数据设置错误 { + get { + return ResourceManager.GetString("700113:X轴7号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis position 8 data setting error. + /// + internal static string _700114_X轴8号仓位数据设置错误 { + get { + return ResourceManager.GetString("700114:X轴8号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis standby position setting error. + /// + internal static string _700140_Y轴待机位位置设置错误 { + get { + return ResourceManager.GetString("700140:Y轴待机位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis vehicle guide pick/place position setting error. + /// + internal static string _700141_Y轴车辆引导取放位位置设置错误 { + get { + return ResourceManager.GetString("700141:Y轴车辆引导取放位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis photo end position setting error. + /// + internal static string _700142_Y轴拍照结束位位置设置错误 { + get { + return ResourceManager.GetString("700142:Y轴拍照结束位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis vehicle battery pick position setting error. + /// + internal static string _700143_Y轴取车电池位位置设置错误 { + get { + return ResourceManager.GetString("700143:Y轴取车电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 1 battery pick/place position setting error. + /// + internal static string _700145_Y轴1号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700145:Y轴1号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 2 battery pick/place position setting error. + /// + internal static string _700146_Y轴2号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700146:Y轴2号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 3 battery pick/place position setting error. + /// + internal static string _700147_Y轴3号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700147:Y轴3号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 4 battery pick/place position setting error. + /// + internal static string _700150_Y轴4号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700150:Y轴4号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 5 battery pick/place position setting error. + /// + internal static string _700151_Y轴5号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700151:Y轴5号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 6 battery pick/place position setting error. + /// + internal static string _700152_Y轴6号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700152:Y轴6号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 7 battery pick/place position setting error. + /// + internal static string _700153_Y轴7号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700153:Y轴7号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis position 8 battery pick/place position setting error. + /// + internal static string _700154_Y轴8号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700154:Y轴8号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis standby position setting error. + /// + internal static string _700180_Z轴待机位位置设置错误 { + get { + return ResourceManager.GetString("700180:Z轴待机位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis dynamic vehicle battery pick position setting error. + /// + internal static string _700181_Z轴动态取车电池位位置设置错误 { + get { + return ResourceManager.GetString("700181:Z轴动态取车电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis vehicle battery pick position setting error. + /// + internal static string _700183_Z轴车辆取电池位位置设置错误 { + get { + return ResourceManager.GetString("700183:Z轴车辆取电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis ground pick/place position setting error. + /// + internal static string _700184_Z轴取放地面位置设置错误 { + get { + return ResourceManager.GetString("700184:Z轴取放地面位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 1 battery pick/place position setting error. + /// + internal static string _700185_Z轴1号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700185:Z轴1号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 2 battery pick/place position setting error. + /// + internal static string _700186_Z轴2号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700186:Z轴2号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 3 battery pick/place position setting error. + /// + internal static string _700187_Z轴3号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700187:Z轴3号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 4 battery pick/place position setting error. + /// + internal static string _700190_Z轴4号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700190:Z轴4号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 5 battery pick/place position setting error. + /// + internal static string _700191_Z轴5号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700191:Z轴5号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 6 battery pick/place position setting error. + /// + internal static string _700192_Z轴6号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700192:Z轴6号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 7 battery pick/place position setting error. + /// + internal static string _700193_Z轴7号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700193:Z轴7号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis position 8 battery pick/place position setting error. + /// + internal static string _700194_Z轴8号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700194:Z轴8号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Station offline. + /// + internal static string _700223_有站点掉线 { + get { + return ResourceManager.GetString("700223:有站点掉线", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submodule error. + /// + internal static string _700224_有子模块异常 { + get { + return ResourceManager.GetString("700224:有子模块异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo drive warning. + /// + internal static string _700225_X伺服驱动警告 { + get { + return ResourceManager.GetString("700225:X伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo drive warning. + /// + internal static string _700226_Y伺服驱动警告 { + get { + return ResourceManager.GetString("700226:Y伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo drive warning. + /// + internal static string _700227_Z伺服驱动警告 { + get { + return ResourceManager.GetString("700227:Z伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser axis servo drive warning. + /// + internal static string _700230_激光轴伺服驱动警告 { + get { + return ResourceManager.GetString("700230:激光轴伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser scanning timeout. + /// + internal static string _700231_激光扫描超时 { + get { + return ResourceManager.GetString("700231:激光扫描超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser data acquisition error. + /// + internal static string _700232_激光数据采集异常 { + get { + return ResourceManager.GetString("700232:激光数据采集异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser width acquisition error. + /// + internal static string _700233_激光宽度采集异常 { + get { + return ResourceManager.GetString("700233:激光宽度采集异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single point laser calibration failed. + /// + internal static string _700420_单点激光标定失败 { + get { + return ResourceManager.GetString("700420:单点激光标定失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo JOG+ interlock alarm. + /// + internal static string _800000_X伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800000:X伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo JOG- interlock alarm. + /// + internal static string _800001_X伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800001:X伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo positive limit alarm. + /// + internal static string _800002_X伺服正限位报警 { + get { + return ResourceManager.GetString("800002:X伺服正限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo negative limit alarm. + /// + internal static string _800003_X伺服负限位报警 { + get { + return ResourceManager.GetString("800003:X伺服负限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo soft limit alarm. + /// + internal static string _800004_X伺服软限位报警 { + get { + return ResourceManager.GetString("800004:X伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo communication error. + /// + internal static string _800005_X伺服通讯异常 { + get { + return ResourceManager.GetString("800005:X伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo enable lost. + /// + internal static string _800006_X伺服使能丢失 { + get { + return ResourceManager.GetString("800006:X伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo home position lost. + /// + internal static string _800007_X伺服原点丢失 { + get { + return ResourceManager.GetString("800007:X伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis mechanical jam or brake not released or circuit error. + /// + internal static string _800010_X轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800010:X轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis external encoder error. + /// + internal static string _800013_X轴外置编码器异常 { + get { + return ResourceManager.GetString("800013:X轴外置编码器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis external encoder runaway. + /// + internal static string _800014_X轴外置编码器飞车 { + get { + return ResourceManager.GetString("800014:X轴外置编码器飞车", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis external encoder following error alarm. + /// + internal static string _800015_X轴外置编码器跟随误差报警 { + get { + return ResourceManager.GetString("800015:X轴外置编码器跟随误差报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in standby position. + /// + internal static string _800020_X伺服应该在待机位 { + get { + return ResourceManager.GetString("800020:X伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in vehicle guide pick/place position. + /// + internal static string _800021_X伺服应该在车辆引导取放位 { + get { + return ResourceManager.GetString("800021:X伺服应该在车辆引导取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in vehicle battery standard pick/place position. + /// + internal static string _800022_X伺服应该在车电池标准取放位 { + get { + return ResourceManager.GetString("800022:X伺服应该在车电池标准取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 1 battery pick/place position. + /// + internal static string _800025_X伺服应该在1号仓取放电池位 { + get { + return ResourceManager.GetString("800025:X伺服应该在1号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 2 battery pick/place position. + /// + internal static string _800026_X伺服应该在2号仓取放电池位 { + get { + return ResourceManager.GetString("800026:X伺服应该在2号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 3 battery pick/place position. + /// + internal static string _800027_X伺服应该在3号仓取放电池位 { + get { + return ResourceManager.GetString("800027:X伺服应该在3号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 4 battery pick/place position. + /// + internal static string _800030_X伺服应该在4号仓取放电池位 { + get { + return ResourceManager.GetString("800030:X伺服应该在4号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 5 battery pick/place position. + /// + internal static string _800031_X伺服应该在5号仓取放电池位 { + get { + return ResourceManager.GetString("800031:X伺服应该在5号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 6 battery pick/place position. + /// + internal static string _800032_X伺服应该在6号仓取放电池位 { + get { + return ResourceManager.GetString("800032:X伺服应该在6号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 7 battery pick/place position. + /// + internal static string _800033_X伺服应该在7号仓取放电池位 { + get { + return ResourceManager.GetString("800033:X伺服应该在7号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-axis servo should be in position 8 battery pick/place position. + /// + internal static string _800034_X伺服应该在8号仓取放电池位 { + get { + return ResourceManager.GetString("800034:X伺服应该在8号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo JOG+ interlock alarm. + /// + internal static string _800060_Y伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800060:Y伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo JOG- interlock alarm. + /// + internal static string _800061_Y伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800061:Y伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo positive limit alarm. + /// + internal static string _800062_Y伺服正限位报警 { + get { + return ResourceManager.GetString("800062:Y伺服正限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo negative limit alarm. + /// + internal static string _800063_Y伺服负限位报警 { + get { + return ResourceManager.GetString("800063:Y伺服负限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo soft limit alarm. + /// + internal static string _800064_Y伺服软限位报警 { + get { + return ResourceManager.GetString("800064:Y伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo communication error. + /// + internal static string _800065_Y伺服通讯异常 { + get { + return ResourceManager.GetString("800065:Y伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo enable lost. + /// + internal static string _800066_Y伺服使能丢失 { + get { + return ResourceManager.GetString("800066:Y伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo home position lost. + /// + internal static string _800067_Y伺服原点丢失 { + get { + return ResourceManager.GetString("800067:Y伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis mechanical jam or brake not released or circuit error. + /// + internal static string _800070_Y轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800070:Y轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis external encoder error. + /// + internal static string _800073_Y轴外置编码器异常 { + get { + return ResourceManager.GetString("800073:Y轴外置编码器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis external encoder runaway. + /// + internal static string _800074_Y轴外置编码器飞车 { + get { + return ResourceManager.GetString("800074:Y轴外置编码器飞车", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis external encoder following error alarm. + /// + internal static string _800075_Y轴外置编码器跟随误差报警 { + get { + return ResourceManager.GetString("800075:Y轴外置编码器跟随误差报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in standby position. + /// + internal static string _800080_Y伺服应该在待机位 { + get { + return ResourceManager.GetString("800080:Y伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in vehicle guide pick/place position. + /// + internal static string _800081_Y伺服应该在车辆引导取放位 { + get { + return ResourceManager.GetString("800081:Y伺服应该在车辆引导取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in vehicle battery standard pick/place position. + /// + internal static string _800082_Y伺服应该在车电池标准取放位 { + get { + return ResourceManager.GetString("800082:Y伺服应该在车电池标准取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 1 battery pick/place position. + /// + internal static string _800085_Y伺服应该在1号仓取放电池位 { + get { + return ResourceManager.GetString("800085:Y伺服应该在1号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 2 battery pick/place position. + /// + internal static string _800086_Y伺服应该在2号仓取放电池位 { + get { + return ResourceManager.GetString("800086:Y伺服应该在2号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 3 battery pick/place position. + /// + internal static string _800087_Y伺服应该在3号仓取放电池位 { + get { + return ResourceManager.GetString("800087:Y伺服应该在3号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 4 battery pick/place position. + /// + internal static string _800090_Y伺服应该在4号仓取放电池位 { + get { + return ResourceManager.GetString("800090:Y伺服应该在4号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 5 battery pick/place position. + /// + internal static string _800091_Y伺服应该在5号仓取放电池位 { + get { + return ResourceManager.GetString("800091:Y伺服应该在5号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 6 battery pick/place position. + /// + internal static string _800092_Y伺服应该在6号仓取放电池位 { + get { + return ResourceManager.GetString("800092:Y伺服应该在6号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 7 battery pick/place position. + /// + internal static string _800093_Y伺服应该在7号仓取放电池位 { + get { + return ResourceManager.GetString("800093:Y伺服应该在7号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y-axis servo should be in position 8 battery pick/place position. + /// + internal static string _800094_Y伺服应该在8号仓取放电池位 { + get { + return ResourceManager.GetString("800094:Y伺服应该在8号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo JOG+ interlock alarm. + /// + internal static string _800120_Z伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800120:Z伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo JOG- interlock alarm. + /// + internal static string _800121_Z伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800121:Z伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo lower limit alarm. + /// + internal static string _800122_Z伺服下限位报警 { + get { + return ResourceManager.GetString("800122:Z伺服下限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo upper limit alarm. + /// + internal static string _800123_Z伺服上限位报警 { + get { + return ResourceManager.GetString("800123:Z伺服上限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo soft limit alarm. + /// + internal static string _800124_Z伺服软限位报警 { + get { + return ResourceManager.GetString("800124:Z伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo communication error. + /// + internal static string _800125_Z伺服通讯异常 { + get { + return ResourceManager.GetString("800125:Z伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo enable lost. + /// + internal static string _800126_Z伺服使能丢失 { + get { + return ResourceManager.GetString("800126:Z伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo home position lost. + /// + internal static string _800127_Z伺服原点丢失 { + get { + return ResourceManager.GetString("800127:Z伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis mechanical jam or brake not released or circuit error. + /// + internal static string _800130_Z轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800130:Z轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in standby position. + /// + internal static string _800140_Z伺服应该在待机位 { + get { + return ResourceManager.GetString("800140:Z伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in guide pick/place position. + /// + internal static string _800141_Z伺服应该在引导取放位 { + get { + return ResourceManager.GetString("800141:Z伺服应该在引导取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in vehicle battery standard pick/place position. + /// + internal static string _800142_Z伺服应该在车电池标准取放位 { + get { + return ResourceManager.GetString("800142:Z伺服应该在车电池标准取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in ground pick/place position. + /// + internal static string _800144_Z伺服应该在地面取放电池位 { + get { + return ResourceManager.GetString("800144:Z伺服应该在地面取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 1 battery pick/place position. + /// + internal static string _800145_Z伺服应该在1号仓取放电池位 { + get { + return ResourceManager.GetString("800145:Z伺服应该在1号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 2 battery pick/place position. + /// + internal static string _800146_Z伺服应该在2号仓取放电池位 { + get { + return ResourceManager.GetString("800146:Z伺服应该在2号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 3 battery pick/place position. + /// + internal static string _800147_Z伺服应该在3号仓取放电池位 { + get { + return ResourceManager.GetString("800147:Z伺服应该在3号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 4 battery pick/place position. + /// + internal static string _800150_Z伺服应该在4号仓取放电池位 { + get { + return ResourceManager.GetString("800150:Z伺服应该在4号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 5 battery pick/place position. + /// + internal static string _800151_Z伺服应该在5号仓取放电池位 { + get { + return ResourceManager.GetString("800151:Z伺服应该在5号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 6 battery pick/place position. + /// + internal static string _800152_Z伺服应该在6号仓取放电池位 { + get { + return ResourceManager.GetString("800152:Z伺服应该在6号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 7 battery pick/place position. + /// + internal static string _800153_Z伺服应该在7号仓取放电池位 { + get { + return ResourceManager.GetString("800153:Z伺服应该在7号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z-axis servo should be in position 8 battery pick/place position. + /// + internal static string _800154_Z伺服应该在8号仓取放电池位 { + get { + return ResourceManager.GetString("800154:Z伺服应该在8号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo JOG+ interlock alarm. + /// + internal static string _800180_激光伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800180:激光伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo JOG- interlock alarm. + /// + internal static string _800181_激光伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800181:激光伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo lower limit alarm. + /// + internal static string _800182_激光伺服下限位报警 { + get { + return ResourceManager.GetString("800182:激光伺服下限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo upper limit alarm. + /// + internal static string _800183_激光伺服上限位报警 { + get { + return ResourceManager.GetString("800183:激光伺服上限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo soft limit alarm. + /// + internal static string _800184_激光伺服软限位报警 { + get { + return ResourceManager.GetString("800184:激光伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo communication error. + /// + internal static string _800185_激光伺服通讯异常 { + get { + return ResourceManager.GetString("800185:激光伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo enable lost. + /// + internal static string _800186_激光伺服使能丢失 { + get { + return ResourceManager.GetString("800186:激光伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo home position lost. + /// + internal static string _800187_激光伺服原点丢失 { + get { + return ResourceManager.GetString("800187:激光伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser axis mechanical jam or brake not released or circuit error. + /// + internal static string _800190_激光轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800190:激光轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo drive anomaly; Drive fault code: %(WATCH1)d. + /// + internal static string _800191_激光伺服驱动异常_驱动器故障代码___WATCH1_d { + get { + return ResourceManager.GetString("800191:激光伺服驱动异常;驱动器故障代码:%(WATCH1)d", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo process object error; Process axis alarm code: %(WATCH1)d Process subdivision code: %(WATCH2)d. + /// + internal static string _800192_激光伺服工艺对象报错_工艺轴报警代码___WATCH1_d工艺细分代码___WATCH2_d { + get { + return ResourceManager.GetString("800192:激光伺服工艺对象报错;工艺轴报警代码:%(WATCH1)d工艺细分代码:%(WATCH2)d", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo should be in standby position. + /// + internal static string _800200_激光伺服应该在待机位 { + get { + return ResourceManager.GetString("800200:激光伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo should be in scan start position. + /// + internal static string _800201_激光伺服应该在扫描开始位 { + get { + return ResourceManager.GetString("800201:激光伺服应该在扫描开始位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Laser servo should be in scan end position. + /// + internal static string _800202_激光伺服应该在扫描结束位 { + get { + return ResourceManager.GetString("800202:激光伺服应该在扫描结束位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS Communication Fault. + /// + internal static string BMS通信故障 { + get { + return ResourceManager.GetString("BMS通信故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Control Guidance Fault During Charging. + /// + internal static string 充电中车辆控制导引故障 { + get { + return ResourceManager.GetString("充电中车辆控制导引故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Interface Electromagnetic Lock Fault. + /// + internal static string 充电接口电磁锁故障 { + get { + return ResourceManager.GetString("充电接口电磁锁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Interface Overtemperature Fault. + /// + internal static string 充电接口过温故障 { + get { + return ResourceManager.GetString("充电接口过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Gun Not In Place Alarm. + /// + internal static string 充电枪未归位告警 { + get { + return ResourceManager.GetString("充电枪未归位告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Gun Overtemperature Alarm. + /// + internal static string 充电枪过温告警 { + get { + return ResourceManager.GetString("充电枪过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile AC Input Contactor Refusal/Malfunction Fault. + /// + internal static string 充电桩交流输入接触器拒动_误动故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile AC Input Contactor Sticking Fault. + /// + internal static string 充电桩交流输入接触器粘连故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile AC Input Circuit Breaker Fault (System Power Supply Circuit Breaker). + /// + internal static string 充电桩交流输入断路器故障_系统供电断路器_ { + get { + return ResourceManager.GetString("充电桩交流输入断路器故障(系统供电断路器)", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Input Undervoltage Fault. + /// + internal static string 充电桩输入电压欠压故障 { + get { + return ResourceManager.GetString("充电桩输入电压欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Input Overvoltage Fault. + /// + internal static string 充电桩输入电压过压故障 { + get { + return ResourceManager.GetString("充电桩输入电压过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Overtemperature Alarm. + /// + internal static string 充电桩过温告警 { + get { + return ResourceManager.GetString("充电桩过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Overtemperature Fault. + /// + internal static string 充电桩过温故障 { + get { + return ResourceManager.GetString("充电桩过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Charging Pile Fan Fault. + /// + internal static string 充电桩风扇故障 { + get { + return ResourceManager.GetString("充电桩风扇故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sub-Control Valve Fault. + /// + internal static string 分控阀故障 { + get { + return ResourceManager.GetString("分控阀故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single Battery Voltage Above Upper Limit. + /// + internal static string 单体蓄电池电压越上限 { + get { + return ResourceManager.GetString("单体蓄电池电压越上限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single Battery Voltage Below Lower Limit. + /// + internal static string 单体蓄电池电压越下限 { + get { + return ResourceManager.GetString("单体蓄电池电压越下限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Backup Power Undervoltage. + /// + internal static string 备电欠压 { + get { + return ResourceManager.GetString("备电欠压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Emergency Stop Button Action Fault. + /// + internal static string 急停按钮动作故障 { + get { + return ResourceManager.GetString("急停按钮动作故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Module Output Reverse Fault. + /// + internal static string 模块输出反接 { + get { + return ResourceManager.GetString("模块输出反接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Positive DC Output Contactor Sticking Fault. + /// + internal static string 正极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("正极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Water Immersion Alarm. + /// + internal static string 水浸告警 { + get { + return ResourceManager.GetString("水浸告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discharge Circuit Fault. + /// + internal static string 泄放回路故障 { + get { + return ResourceManager.GetString("泄放回路故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Smoke Sensor Fault. + /// + internal static string 烟感故障 { + get { + return ResourceManager.GetString("烟感故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battery Polarity Reverse Fault. + /// + internal static string 电池极性反接故障 { + get { + return ResourceManager.GetString("电池极性反接故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Electric Meter Power Abnormal. + /// + internal static string 电表电度异常 { + get { + return ResourceManager.GetString("电表电度异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Electric Meter Communication Abnormal. + /// + internal static string 电表通信异常 { + get { + return ResourceManager.GetString("电表通信异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Positive Output Contactor Refusal/Malfunction Fault. + /// + internal static string 直流母线正极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线正极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Positive Output Fuse Fault. + /// + internal static string 直流母线正级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线正级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Negative Output Contactor Refusal/Malfunction Fault. + /// + internal static string 直流母线负极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线负极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Negative Output Fuse Fault. + /// + internal static string 直流母线负级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线负级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Output Undervoltage Fault. + /// + internal static string 直流母线输出欠压故障 { + get { + return ResourceManager.GetString("直流母线输出欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Output Overvoltage Fault. + /// + internal static string 直流母线输出过压故障 { + get { + return ResourceManager.GetString("直流母线输出过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DC Bus Output Overcurrent Fault. + /// + internal static string 直流母线输出过流故障 { + get { + return ResourceManager.GetString("直流母线输出过流故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation Monitoring Alarm. + /// + internal static string 绝缘监测告警 { + get { + return ResourceManager.GetString("绝缘监测告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Insulation Monitoring Fault. + /// + internal static string 绝缘监测故障 { + get { + return ResourceManager.GetString("绝缘监测故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Negative DC Output Contactor Sticking Fault. + /// + internal static string 负极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("负极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auxiliary Power Supply Fault. + /// + internal static string 辅助电源故障 { + get { + return ResourceManager.GetString("辅助电源故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reverse Power Alarm. + /// + internal static string 逆功率报警 { + get { + return ResourceManager.GetString("逆功率报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Surge Protector Fault. + /// + internal static string 避雷器故障 { + get { + return ResourceManager.GetString("避雷器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access Control Fault. + /// + internal static string 门禁故障 { + get { + return ResourceManager.GetString("门禁故障", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx new file mode 100644 index 0000000..4955d56 --- /dev/null +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.en.resx @@ -0,0 +1,2012 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + + + + + Fire alarm, please evacuate + + + Safety PLC not running + + + Emergency stop triggered + + + Main control cabinet emergency stop triggered + + + Battery swap channel emergency stop triggered + + + Robot emergency stop triggered + + + Station control emergency stop triggered + + + Control room HMI emergency stop triggered + + + Battery compartment HMI emergency stop triggered + + + No HMI emergency stop access point selected + + + Safety door opened + + + Main control cabinet IO module communication failure + + + Remote IO module communication failure for hoist + + + Remote IO module communication failure for robot + + + Travel into door interference zone alarm, JOG speed max 20 + + + Y-axis encoder runaway + + + Y-axis encoder communication failure + + + Y-axis following error alarm + + + Y-axis encoder failure + + + X-axis encoder communication failure + + + Stop after action completed + + + Battery compartment 1 sensor 1 failure + + + Battery compartment 2 sensor 1 failure + + + Battery compartment 3 sensor 1 failure + + + Battery compartment 4 sensor 1 failure + + + Battery compartment 5 sensor 1 failure + + + Battery compartment 6 sensor 1 failure + + + Battery compartment 7 sensor 1 failure + + + Battery compartment 8 sensor 1 failure + + + Battery compartment 1 sensor 2 failure + + + Battery compartment 2 sensor 2 failure + + + Battery compartment 3 sensor 2 failure + + + Battery compartment 4 sensor 2 failure + + + Battery compartment 5 sensor 2 failure + + + Battery compartment 6 sensor 2 failure + + + Battery compartment 7 sensor 2 failure + + + Battery compartment 8 sensor 2 failure + + + Entrance radar sensor failure + + + Exit radar sensor failure + + + Level 3 alarm triggered, please troubleshoot before continuing + + + Sliding door opening timeout + + + Sliding door closing timeout + + + Not all sliding door opening sensors detected + + + Both sliding door opening and closing sensors detected + + + Station preheating not completed, battery swap prohibited + + + Station heating not completed, battery swap prohibited + + + Y-axis process object error, PLC restart required + + + Detected task not completed + + + Initialization detected battery memory on hoist + + + X-axis not in standby position + + + Y-axis not in standby position + + + Z-axis not in standby position + + + Hoist pushrod 1 not in standby position + + + Hoist pushrod 2 not in standby position + + + Hoist sensor failure + + + Hoist sensor 1 failure + + + Hoist sensor 2 failure + + + Hoist sensor 3 failure + + + Hoist sensor 4 failure + + + X-axis position setting error + + + Y-axis position setting error + + + Z-axis position setting error + + + Pushrod not retracted, hoist cannot initialize + + + Robot current position cannot start transfer task + + + Robot current position cannot start fire control task + + + Y-axis recheck sensor failure + + + Camera program not running + + + Camera photo timeout + + + Camera offset value exceeded + + + Camera photo failed + + + Y-axis encoder zeroing failed + + + Anti-loose sensor detected, Z-axis descent restricted + + + Hoist in place sensor restricting Z-axis descent + + + System configuration not OK, please configure the system + + + Station control communication protocol version error + + + Wire rope 1 slack alarm + + + Wire rope 2 slack alarm + + + Wire rope 3 slack alarm + + + Wire rope 4 slack alarm + + + X-axis should be within standby position limits + + + Laser axis origin sensor failure + + + Y-axis standby position review sensor mismatch + + + Battery compartment 1 status memory error + + + Battery compartment 2 status memory error + + + Battery compartment 3 status memory error + + + Battery compartment 4 status memory error + + + Battery compartment 5 status memory error + + + Battery compartment 6 status memory error + + + Battery compartment 7 status memory error + + + Battery compartment 8 status memory error + + + Z-axis torque exceeded, check if vehicle is unlocked or base is stuck + + + Main control cabinet IO module not configured alarm + + + Laser axis not configured alarm + + + X-axis not configured alarm + + + Y-axis not configured alarm + + + X-axis encoder not configured alarm + + + Station type not configured alarm + + + Vehicle not entered in the correct direction or exit radar triggered abnormally + + + Wire rope broken + + + Control room smoke alarm + + + Liquid level warning + + + Liquid level alarm + + + Wire rope 1 reached total service life, please replace parts + + + Wire rope 2 reached total service life, please replace parts + + + Wire rope 3 reached total service life, please replace parts + + + Wire rope 4 reached total service life, please replace parts + + + Pushrod 1 reached total service life, please replace parts + + + Pushrod 2 reached total service life, please replace parts + + + Spring cable reached total service life, please replace parts + + + Battery in compartment 1 not placed correctly + + + Battery in compartment 2 not placed correctly + + + Battery in compartment 3 not placed correctly + + + Battery in compartment 4 not placed correctly + + + Battery in compartment 5 not placed correctly + + + Battery in compartment 6 not placed correctly + + + Battery in compartment 7 not placed correctly + + + Battery in compartment 8 not placed correctly + + + Battery illegally placed in compartment 1 + + + Battery illegally placed in compartment 2 + + + Battery illegally placed in compartment 3 + + + Battery illegally placed in compartment 4 + + + Battery illegally placed in compartment 5 + + + Battery illegally placed in compartment 6 + + + Battery illegally placed in compartment 7 + + + Battery illegally placed in compartment 8 + + + HMI heartbeat lost + + + PLC Modbus server command error + + + Station control heartbeat error + + + Camera communication error + + + Device run times reached maintenance warning + + + Device run times reached maintenance alarm + + + Wire rope 1 reached service life warning, prepare parts + + + Wire rope 2 reached service life warning, prepare parts + + + Wire rope 3 reached service life warning, prepare parts + + + Wire rope 4 reached service life warning, prepare parts + + + Pushrod 1 reached service life warning, prepare parts + + + Pushrod 2 reached service life warning, prepare parts + + + Spring cable reached service life warning, prepare parts + + + Wire rope 1 reached maintenance prompt, please maintain + + + Wire rope 2 reached maintenance prompt, please maintain + + + Wire rope 3 reached maintenance prompt, please maintain + + + Wire rope 4 reached maintenance prompt, please maintain + + + Pushrod 1 reached maintenance prompt, please maintain + + + Pushrod 2 reached maintenance prompt, please maintain + + + Spring cable reached maintenance prompt, please maintain + + + X-axis not torque checked or torque check NG + + + Y-axis not torque checked or torque check NG + + + Z-axis not torque checked or torque check NG + + + + Safety door shielded + + + + Idle running + + + Invalid initialization command received from station control + + + Valid initialization command received from station control + + + Invalid start command received from station control + + + Valid start command received from station control + + + Invalid reset command received from station control + + + Valid reset command received from station control + + + Invalid pause command received from station control + + + Valid pause command received from station control + + + Invalid program reset command received from station control + + + Valid program reset command received from station control + + + Invalid forced battery swap completion command received from station control + + + Valid forced battery swap completion command received from station control + + + Invalid switch to manual mode command received from station control + + + Valid switch to manual mode command received from station control + + + Invalid switch to automatic mode command received from station control + + + Valid switch to automatic mode command received from station control + + + Invalid switch to remote mode command received from station control + + + Valid switch to remote mode command received from station control + + + Invalid switch to local mode command received from station control + + + Valid switch to local mode command received from station control + + + Invalid battery swap command received from station control + + + Valid battery swap command received from station control + + + Invalid storage command received from station control + + + Valid storage command received from station control + + + Invalid retrieval command received from station control + + + Valid retrieval command received from station control + + + Invalid warehouse adjustment command received from station control + + + Valid warehouse adjustment command received from station control + + + Invalid fire control command received from station control + + + Valid fire control command received from station control + + + Remote disconnect transformer command received + + + Remote disconnect battery swap circuit breaker command received + + + Remote close all lights command received + + + Remote close battery swap channel lighting command received + + + Remote close control room lighting command received + + + Remote start exhaust fan command received + + + Invalid battery swap command received from HMI + + + Valid battery swap command received from HMI + + + Invalid storage command received from HMI + + + Valid storage command received from HMI + + + Invalid retrieval command received from HMI + + + Valid retrieval command received from HMI + + + Invalid warehouse adjustment command received from HMI + + + Valid warehouse adjustment command received from HMI + + + Invalid fire control command received from HMI + + + Valid fire control command received from HMI + + + Safety door not closed properly + + + HMI emergency stop shielded + + + Z-axis stopping + + + Please manually detach the hoist from the battery + + + Whole station power off triggered + + + Station control stopping + + + Station control starting + + + Station control emergency stopping + + + Station control alarm resetting + + + Please lift the battery and move it to the photo position + + + After manually lifting the battery, press the storage ready OK button + + + Invalid station start command received from HMI + + + Invalid station close command received from HMI + + + Please place the battery in the designated position + + + Please manually confirm the battery removal OK to complete the removal + + + Hoist spring line reached warning times + + + Hoist spring line reached warning times + + + X-axis standby position setting error + + + X-axis vehicle guide pick/place position setting error + + + X-axis photo end position setting error + + + X-axis vehicle battery pick/place position setting error + + + X-axis position 1 data setting error + + + X-axis position 2 data setting error + + + X-axis position 3 data setting error + + + X-axis position 4 data setting error + + + X-axis position 5 data setting error + + + X-axis position 6 data setting error + + + X-axis position 7 data setting error + + + X-axis position 8 data setting error + + + Y-axis standby position setting error + + + Y-axis vehicle guide pick/place position setting error + + + Y-axis photo end position setting error + + + Y-axis vehicle battery pick position setting error + + + Y-axis position 1 battery pick/place position setting error + + + Y-axis position 2 battery pick/place position setting error + + + Y-axis position 3 battery pick/place position setting error + + + Y-axis position 4 battery pick/place position setting error + + + Y-axis position 5 battery pick/place position setting error + + + Y-axis position 6 battery pick/place position setting error + + + Y-axis position 7 battery pick/place position setting error + + + Y-axis position 8 battery pick/place position setting error + + + Z-axis standby position setting error + + + Z-axis dynamic vehicle battery pick position setting error + + + Z-axis vehicle battery pick position setting error + + + Z-axis ground pick/place position setting error + + + Z-axis position 1 battery pick/place position setting error + + + Z-axis position 2 battery pick/place position setting error + + + Z-axis position 3 battery pick/place position setting error + + + Z-axis position 4 battery pick/place position setting error + + + Z-axis position 5 battery pick/place position setting error + + + Z-axis position 6 battery pick/place position setting error + + + Z-axis position 7 battery pick/place position setting error + + + Z-axis position 8 battery pick/place position setting error + + + Vehicle front/rear direction out of calibration range, please readjust the vehicle + + + Vehicle left/right direction out of calibration range, please readjust the vehicle + + + Vehicle angle direction out of calibration range, please readjust the vehicle + + + Station offline + + + Submodule error + + + X-axis servo drive warning + + + Y-axis servo drive warning + + + Z-axis servo drive warning + + + Laser axis servo drive warning + + + Laser scanning timeout + + + Laser data acquisition error + + + Laser width acquisition error + + + Vehicle angle out of limits, please readjust the vehicle + + + Vehicle left/right position out of limits, please readjust the vehicle + + + Vehicle front/rear position out of limits, please readjust the vehicle + + + Invalid storage command: manual mode + + + Invalid storage command: not in storage/retrieval process + + + Invalid storage command: storage compartment must have no battery memory + + + Invalid storage command: storage compartment sensors must not detect anything + + + Invalid storage command: hoist material sensors must detect everything + + + Invalid storage command: X-axis current position must be within channel limits + + + Invalid storage command: Z-axis must be in standby position + + + Invalid storage command: incorrect position number entered + + + Invalid retrieval command: manual mode + + + Invalid retrieval command: not in storage/retrieval process + + + Invalid retrieval command: retrieval compartment must have battery memory + + + Invalid retrieval command: retrieval compartment sensors must detect everything + + + Invalid retrieval command: hoist material sensors must detect nothing + + + Invalid retrieval command: hoist must have no battery memory + + + Invalid retrieval command: incorrect position number entered + + + Invalid retrieval command: robot must be fully inside the battery compartment + + + Invalid battery swap command: hoist must have no battery memory + + + Invalid battery swap command: hoist material sensors must detect nothing + + + Invalid battery swap command: placing position must have no battery memory + + + Invalid battery swap command: placing position sensors must detect nothing + + + Invalid battery swap command: no tasks should be in progress + + + Invalid battery swap command: must be in local mode + + + Invalid battery swap command: retrieving position must have battery memory + + + Invalid battery swap command: retrieving position sensors must detect everything + + + Invalid battery swap command: retrieving position must have no battery memory + + + Invalid battery swap command: retrieving position sensors must detect nothing + + + Invalid transfer command: hoist must have no battery memory + + + Invalid transfer command: hoist material sensors must detect nothing + + + Invalid transfer command: retrieving position must have battery memory + + + Invalid transfer command: retrieving position sensors must detect everything + + + Invalid transfer command: placing position must have no battery memory + + + Invalid transfer command: placing position sensors must detect nothing + + + Invalid transfer command: no tasks should be in progress + + + Invalid transfer command: must be in local mode + + + Invalid fire control transfer command: fire handling position must have battery memory + + + Invalid fire control transfer command: hoist must have no battery memory + + + Invalid fire control transfer command: hoist material sensors must detect nothing + + + Invalid fire control transfer command: entry radar not detected + + + Invalid fire control transfer command: exit radar not detected + + + Invalid fire control transfer command: no tasks should be in progress + + + Invalid fire control transfer command: must be in local mode + + + Preheating conditions not met: X-axis should be enabled + + + Preheating conditions not met: Y-axis should be enabled + + + Preheating conditions not met: Z-axis should be enabled + + + Invalid remote battery swap command: hoist must have no battery memory + + + Invalid remote battery swap command: hoist material sensors must detect nothing + + + Invalid remote battery swap command: no tasks should be in progress + + + Invalid remote battery swap command: must be in remote mode + + + Invalid remote battery swap command: placing position must have no battery memory + + + Invalid remote battery swap command: placing position sensors must detect nothing + + + Invalid remote battery swap command: retrieving position must have battery memory + + + Invalid remote battery swap command: retrieving position sensors must detect everything + + + Invalid remote battery swap command: retrieving position must have no battery memory + + + Invalid remote battery swap command: retrieving position sensors must detect nothing + + + Invalid remote battery swap command: retrieving position sensors must detect nothing + + + Invalid remote battery swap command: station control sent incorrect position number + + + Invalid remote transfer command: hoist must have no battery memory + + + Invalid remote transfer command: hoist material sensors must detect nothing + + + Invalid remote transfer command: retrieving position must have battery memory + + + Invalid remote transfer command: retrieving position sensors must detect everything + + + Invalid remote transfer command: placing position must have no battery memory + + + Invalid remote transfer command: placing position sensors must detect nothing + + + Invalid remote transfer command: no tasks should be in progress + + + Invalid remote transfer command: must be in remote mode + + + Invalid remote transfer command: station control sent incorrect position number + + + Invalid remote fire control transfer command: fire handling position must have battery memory + + + Invalid remote fire control transfer command: hoist must have no battery memory + + + Invalid remote fire control transfer command: hoist material sensors must detect nothing + + + Invalid remote fire control transfer command: entry radar not detected + + + Invalid remote fire control transfer command: exit radar not detected + + + Invalid remote fire control transfer command: no tasks should be in progress + + + Invalid remote fire control transfer command: must be in remote mode + + + Invalid remote fire control transfer command: station control sent incorrect position number + + + Single point laser calibration failed + + + + X-axis servo JOG+ interlock alarm + + + X-axis servo JOG- interlock alarm + + + X-axis servo positive limit alarm + + + X-axis servo negative limit alarm + + + X-axis servo soft limit alarm + + + X-axis servo communication error + + + X-axis servo enable lost + + + X-axis servo home position lost + + + X-axis mechanical jam or brake not released or circuit error + + + X-axis external encoder error + + + X-axis external encoder runaway + + + X-axis external encoder following error alarm + + + X-axis servo should be in standby position + + + X-axis servo should be in vehicle guide pick/place position + + + X-axis servo should be in vehicle battery standard pick/place position + + + X-axis servo should be in position 1 battery pick/place position + + + X-axis servo should be in position 2 battery pick/place position + + + X-axis servo should be in position 3 battery pick/place position + + + X-axis servo should be in position 4 battery pick/place position + + + X-axis servo should be in position 5 battery pick/place position + + + X-axis servo should be in position 6 battery pick/place position + + + X-axis servo should be in position 7 battery pick/place position + + + X-axis servo should be in position 8 battery pick/place position + + + Y-axis servo JOG+ interlock alarm + + + Y-axis servo JOG- interlock alarm + + + Y-axis servo positive limit alarm + + + Y-axis servo negative limit alarm + + + Y-axis servo soft limit alarm + + + Y-axis servo communication error + + + Y-axis servo enable lost + + + Y-axis servo home position lost + + + Y-axis mechanical jam or brake not released or circuit error + + + + Y-axis error (process object); process axis alarm code: %(WATCH1)d process subdivision code: %(WATCH2)d + + + Y-axis external encoder error + + + Y-axis external encoder runaway + + + Y-axis external encoder following error alarm + + + Y-axis servo should be in standby position + + + Y-axis servo should be in vehicle guide pick/place position + + + Y-axis servo should be in vehicle battery standard pick/place position + + + Y-axis servo should be in position 1 battery pick/place position + + + Y-axis servo should be in position 2 battery pick/place position + + + Y-axis servo should be in position 3 battery pick/place position + + + Y-axis servo should be in position 4 battery pick/place position + + + Y-axis servo should be in position 5 battery pick/place position + + + Y-axis servo should be in position 6 battery pick/place position + + + Y-axis servo should be in position 7 battery pick/place position + + + Y-axis servo should be in position 8 battery pick/place position + + + Z-axis servo JOG+ interlock alarm + + + Z-axis servo JOG- interlock alarm + + + Z-axis servo lower limit alarm + + + Z-axis servo upper limit alarm + + + Z-axis servo soft limit alarm + + + Z-axis servo communication error + + + Z-axis servo enable lost + + + Z-axis servo home position lost + + + Z-axis mechanical jam or brake not released or circuit error + + + Z-axis servo should be in standby position + + + Z-axis servo should be in guide pick/place position + + + Z-axis servo should be in vehicle battery standard pick/place position + + + Z-axis servo should be in ground pick/place position + + + Z-axis servo should be in position 1 battery pick/place position + + + Z-axis servo should be in position 2 battery pick/place position + + + Z-axis servo should be in position 3 battery pick/place position + + + Z-axis servo should be in position 4 battery pick/place position + + + Z-axis servo should be in position 5 battery pick/place position + + + Z-axis servo should be in position 6 battery pick/place position + + + Z-axis servo should be in position 7 battery pick/place position + + + Z-axis servo should be in position 8 battery pick/place position + + + Laser servo JOG+ interlock alarm + + + Laser servo JOG- interlock alarm + + + Laser servo lower limit alarm + + + Laser servo upper limit alarm + + + Laser servo soft limit alarm + + + Laser servo communication error + + + Laser servo enable lost + + + Laser servo home position lost + + + Laser axis mechanical jam or brake not released or circuit error + + + Laser servo should be in standby position + + + Laser servo should be in scan start position + + + Laser servo should be in scan end position + + + + Y axis error (process object); Process axis alarm code: %(WATCH1)d Process subdivision code: %(WATCH2)d + + + Laser servo drive anomaly; Drive fault code: %(WATCH1)d + + + Laser servo process object error; Process axis alarm code: %(WATCH1)d Process subdivision code: %(WATCH2)d + + + X axis to standby point condition: Z axis in standby position + + + X axis to standby point condition: No battery on the lifting tool when the car is not completely inside the battery compartment + + + X axis to vehicle guide pick-and-place position condition: Z axis in standby position + + + X axis to vehicle battery pick-and-place position condition: Z axis should be in standby position + + + X axis to vehicle battery pick-and-place position condition: No battery on the lifting tool when the car is not completely inside the battery compartment + + + X axis to positive channel position condition: Z axis in standby position + + + X axis to negative channel position condition: Z axis in standby position + + + X axis to position 1 condition: Z axis in standby + + + X axis to position 1 condition: Car completely inside the battery compartment + + + X axis to position 1 condition: Lifting tool has a battery, rack 1 has no battery memory and no induction + + + X axis to position 1 condition: Lifting tool has a battery, Y axis on rack 1 + + + X axis to position 2 condition: Z axis in standby + + + X axis to position 2 condition: Car completely inside the battery compartment + + + X axis to position 2 condition: Lifting tool has a battery, rack 2 has no battery memory and no induction + + + X axis to position 2 condition: Lifting tool has a battery, Y axis on rack 2 + + + X axis to position 3 condition: Z axis in standby + + + X axis to position 3 condition: Car completely inside the battery compartment + + + X axis to position 3 condition: Lifting tool has a battery, rack 3 has no battery memory and no induction + + + X axis to position 3 condition: Lifting tool has a battery, Y axis on rack 3 + + + X axis to position 4 condition: Z axis in standby + + + X axis to position 4 condition: Car completely inside the battery compartment + + + X axis to position 4 condition: Lifting tool has a battery, rack 4 has no battery memory and no induction + + + X axis to position 4 condition: Lifting tool has a battery, Y axis on rack 4 + + + X axis to position 5 condition: Z axis in standby + + + X axis to position 5 condition: Car completely inside the battery compartment + + + X axis to position 5 condition: Lifting tool has a battery, rack 5 has no battery memory and no induction + + + X axis to position 5 condition: Lifting tool has a battery, Y axis on rack 5 + + + X axis to position 6 condition: Z axis in standby + + + X axis to position 6 condition: Car completely inside the battery compartment + + + X axis to position 6 condition: Lifting tool has a battery, rack 6 has no battery memory and no induction + + + X axis to position 6 condition: Lifting tool has a battery, Y axis on rack 6 + + + X axis to position 7 condition: Z axis in standby + + + X axis to position 7 condition: Car completely inside the battery compartment + + + X axis to position 7 condition: Lifting tool has a battery, rack 7 has no battery memory and no induction + + + X axis to position 7 condition: Lifting tool has a battery, Y axis on rack 7 + + + X axis to position 8 condition: Z axis in standby + + + X axis to position 8 condition: Car completely inside the battery compartment + + + X axis to position 8 condition: Lifting tool has a battery, rack 8 has no battery memory and no induction + + + X axis to position 8 condition: Lifting tool has a battery, Y axis on rack 8 + + + Y axis to standby point condition: Z axis in standby + + + Y axis to standby point condition: Gantry car completely inside the cabin, X axis in standby position or X axis negative position or X axis positive position or no battery on the lifting tool + + + Y axis to standby point condition: Gantry car not completely inside the cabin, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to standby point condition: Sliding door open + + + Y axis to standby point condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to vehicle guide pick-and-place position condition: Z axis in standby + + + Y axis to vehicle guide pick-and-place position condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to vehicle guide pick-and-place position condition: Sliding door open + + + Y axis to vehicle guide pick-and-place position condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to vehicle battery pick-up position condition: Z axis in standby position + + + Y axis to vehicle battery pick-up position condition: X axis in standby position or X axis negative position or X axis positive position and no battery on the lifting tool + + + Y axis to vehicle battery pick-up position condition: Sliding door open + + + Y axis to vehicle battery pick-up position condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 1 condition: Z axis in standby + + + Y axis to position 1 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 1 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 1 condition: Sliding door open + + + Y axis to position 1 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 2 condition: Z axis in standby + + + Y axis to position 2 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 2 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 2 condition: Sliding door open + + + Y axis to position 2 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 3 condition: Z axis in standby + + + Y axis to position 3 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 3 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 3 condition: Sliding door open + + + Y axis to position 3 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 4 condition: Z axis in standby + + + Y axis to position 4 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 4 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 4 condition: Sliding door open + + + Y axis to position 4 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 5 condition: Z axis in standby + + + Y axis to position 5 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 5 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 5 condition: Sliding door open + + + Y axis to position 5 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 6 condition: Z axis in standby + + + Y axis to position 6 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 6 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 6 condition: Sliding door open + + + Y axis to position 6 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 7 condition: Z axis in standby + + + Y axis to position 7 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 7 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 7 condition: Sliding door open + + + Y axis to position 7 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Y axis to position 8 condition: Z axis in standby + + + Y axis to position 8 condition: Completely inside the battery compartment, X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 8 condition: X axis in standby position or X axis negative position or X axis positive position + + + Y axis to position 8 condition: Sliding door open + + + Y axis to position 8 condition: Lifting tool without battery or lifting tool with battery and laser axis in standby position or start position or end position + + + Z axis to standby point condition: Push rod fully retracted or extended + + + Z axis to standby point condition: Current battery not charging + + + Z axis to dynamic car battery pick-up position condition: XY axes both at guide pick-and-place position or XY axes both at vehicle pick-up position + + + Z axis to dynamic car battery pick-up position condition: Push rod fully retracted or extended + + + Z axis to vehicle pick-and-place position condition: XY axes both at guide pick-and-place position or XY axes both at vehicle pick-up position + + + Z axis to vehicle pick-and-place position condition: Push rod fully retracted or extended + + + Z axis to ground pick-and-place position condition: XY axes both at guide pick-and-place position or XY axes both at vehicle pick-up position + + + Z axis to ground pick-and-place position condition: Push rod fully retracted or extended + + + Z axis to position 1 condition: X axis at rack 1 position + + + Z axis to position 1 condition: Push rod fully retracted or extended + + + Z axis to position 1 condition: Y axis at rack 1 position + + + Z axis to position 2 condition: X axis at rack 2 position + + + Z axis to position 2 condition: Push rod fully retracted or extended + + + Z axis to position 2 condition: Y axis at rack 2 position + + + Z axis to position 3 condition: X axis at rack 3 position + + + Z axis to position 3 condition: Push rod fully retracted or extended + + + Z axis to position 3 condition: Y axis at rack 3 position + + + Z axis to position 4 condition: X axis at rack 4 position + + + Z axis to position 4 condition: Push rod fully retracted or extended + + + Z axis to position 4 condition: Y axis at rack 4 position + + + Z axis to position 5 condition: X axis at rack 5 position + + + Z axis to position 5 condition: Push rod fully retracted or extended + + + Z axis to position 5 condition: Y axis at rack 5 position + + + Z axis to position 6 condition: X axis at rack 6 position + + + Z axis to position 6 condition: Push rod fully retracted or extended + + + Z axis to position 6 condition: Y axis at rack 6 position + + + Z axis to position 7 condition: X axis at rack 7 position + + + Z axis to position 7 condition: Push rod fully retracted or extended + + + Z axis to position 7 condition: Y axis at rack 7 position + + + Z axis to position 8 condition: X axis at rack 8 position + + + Z axis to position 8 condition: Push rod fully retracted or extended + + + Z axis to position 8 condition: Y axis at rack 8 position + + + X axis JOG- condition: Z axis in standby position or JOG speed less than 20 + + + X axis JOG- condition: Push rod retracted or JOG speed less than 50 + + + X axis JOG- condition: Gantry in sliding door area or JOG speed less than 20 + + + X axis JOG- condition: Sliding door open or JOG speed less than 50 + + + X axis JOG+ condition: Z axis in standby position or JOG speed less than 20 + + + X axis JOG+ condition: Push rod retracted or JOG speed less than 50 + + + X axis JOG+ condition: Gantry in sliding door area or JOG speed less than 20 + + + X axis JOG+ condition: Sliding door open or JOG speed less than 50 + + + Y axis JOG- condition: Z axis in standby position or JOG speed less than 20 + + + Y axis JOG- condition: Push rod retracted or JOG speed less than 50 + + + Y axis JOG- condition: Gantry in sliding door area, X axis in safety channel or JOG speed less than 20 + + + Y axis JOG- condition: Sliding door open or JOG speed less than 50 + + + Y axis JOG+ condition: Z axis in standby position or JOG speed less than 20 + + + Y axis JOG+ condition: Push rod retracted or JOG speed less than 50 + + + Y axis JOG+ condition: Gantry in sliding door area, X axis in safety channel or JOG speed less than 20 + + + Y axis JOG+ condition: Sliding door open or JOG speed less than 50 + + + Z axis lift condition: Battery pack charging, lifting battery prohibited + + + Z axis descent condition: When lifting tool has no battery, material induction must not be detected + + + Z axis descent condition: Anti-loosening sensor on lifting tool not detected + + + Laser axis to standby point condition: Lifting tool without battery or lifting tool battery not in the middle of the sliding door + + + Laser axis to start position condition: Lifting tool without battery or lifting tool battery not in the middle of the sliding door + + + Laser axis to end position condition: Lifting tool without battery or lifting tool battery not in the middle of the sliding door + + + Lifter Pusher 1 Jaw Pusher Extension Timeout Alarm + + + Lifter Pusher 2 Jaw Pusher Extension Timeout Alarm + + + Lifter Pusher 1 Jaw Pusher Retraction Timeout Alarm + + + Lifter Pusher 2 Jaw Pusher Retraction Timeout Alarm + + + Lifter Pusher 1 Jaw Pusher Should Be Extended + + + Lifter Pusher 2 Jaw Pusher Should Be Extended + + + Lifter Pusher 1 Jaw Pusher Should Be Retracted + + + Lifter Pusher 2 Jaw Pusher Should Be Retracted + + + Lifter Pusher 1 Jaw Pusher Extension Limited + + + Lifter Pusher 2 Jaw Pusher Extension Limited + + + Lifter Pusher 1 Jaw Pusher Retraction Limited + + + Lifter Pusher 2 Jaw Pusher Retraction Limited + + + Lifter Pusher 1 Jaw Pusher Extension and Retraction Detected Simultaneously + + + Lifter Pusher 2 Jaw Pusher Extension and Retraction Detected Simultaneously + + + Lifter Pusher Jaw Pusher Retraction Limited + + + Lifter Pusher Jaw Pusher Retraction Limited: 2. Wire Rope Should Not Be Under Battery Weight + + + Lifter Pusher Jaw Pusher Retraction Limited: 3. Lifter Should Have No Battery Memory + + + Lifter Pusher Jaw Pusher Retraction Limited: 4. Z-axis Should Not Be In Motion + + + Emergency Stop Button Action Fault + + + Smoke Sensor Fault + + + Charging Pile AC Input Circuit Breaker Fault (System Power Supply Circuit Breaker) + + + DC Bus Positive Output Contactor Refusal/Malfunction Fault + + + DC Bus Negative Output Contactor Refusal/Malfunction Fault + + + DC Bus Positive Output Fuse Fault + + + DC Bus Negative Output Fuse Fault + + + Charging Interface Electromagnetic Lock Fault + + + Charging Pile Fan Fault + + + Surge Protector Fault + + + Insulation Monitoring Alarm + + + Insulation Monitoring Fault + + + Battery Polarity Reverse Fault + + + Vehicle Control Guidance Fault During Charging + + + Charging Pile Overtemperature Fault + + + Charging Interface Overtemperature Fault + + + Charging Gun Not In Place Alarm + + + BMS Communication Fault + + + Charging Pile Input Overvoltage Fault + + + Charging Pile Input Undervoltage Fault + + + DC Bus Output Overvoltage Fault + + + DC Bus Output Undervoltage Fault + + + DC Bus Output Overcurrent Fault + + + Access Control Fault + + + Positive DC Output Contactor Sticking Fault + + + Negative DC Output Contactor Sticking Fault + + + Discharge Circuit Fault + + + Charging Pile AC Input Contactor Refusal/Malfunction Fault + + + Charging Pile AC Input Contactor Sticking Fault + + + Auxiliary Power Supply Fault + + + Module Output Reverse Fault + + + Charging Gun Overtemperature Alarm + + + Charging Pile Overtemperature Alarm + + + Electric Meter Communication Abnormal + + + Electric Meter Power Abnormal + + + Water Immersion Alarm + + + Reverse Power Alarm + + + Single Battery Voltage Below Lower Limit + + + Single Battery Voltage Above Upper Limit + + + Input Voltage Too High; Main Unit Input Voltage Too High + + + Input Voltage Too Low; Main Unit Input Voltage Too Low + + + MCU Voltage Too High; Main Unit MCU Voltage Too High + + + MCU Voltage Too Low; Main Unit MCU Voltage Too Low + + + Backup Power Undervoltage + + + System Running Abnormal; Main Unit Program Running Abnormal + + + Storage Read/Write Abnormal; Main Unit Storage System Cannot Read/Write Properly + + + Hardware Fault; Device IC Components (Non-Sensor) Fault + + + Sensor Fault; Device Sensor Fault + + + Offline Fault; Main Unit and Device Communication Lost + + + Fire Extinguisher Feedback Fault; Fire Extinguisher Feedback Detected When Not Activated + + + Fire Extinguisher Activation Failure; No Activation Current and Voltage Detected When Fire Extinguisher Activated + + + Fire Extinguisher Activation No Feedback; No Fire Extinguisher Feedback Detected After Activation + + + Communication Fault; Detector Offline + + + Main Power Fault; 220V Power Supply Abnormal + + + Backup Power Fault; Lead-Acid Battery Power Supply Abnormal + + + Loop Fault; Alarm Two-Wire Loop Short Circuit + + + Component Fault; Relay Module Fault + + + Input Fault; Module Input Line Fault + + + Output Fault; Module Output Line Fault + + + Maze Cleaning Fault; Detector Maze Needs Cleaning + + + 24V Output Fault; Loop Board 24V Output Fault + + + Sound and Light Short Circuit Fault; Sound and Light Device Short Circuit Fault + + + Sound and Light Open Circuit Fault; Sound and Light Device Open Circuit Fault + + + System Fault; System Fault Detection Test + + + Loop Board Communication Fault; Main Board and Loop Board Communication Abnormal + + + Light Key Board Communication Fault; Main Board and Light Key Board Communication Abnormal + + + Control Panel Communication Fault; Main Board and Expansion Board Communication Abnormal + + + Gas Extinguishing Loop Fault; Gas Extinguishing Two-Wire Loop Short Circuit + + + Light Source Fault; Gas Release Alarm Fault + + + Pressure Switch Open Circuit Fault; Loop Board YK+YK- Open Circuit Fault + + + Solenoid Valve Short Circuit Fault; Loop Board DC+DC- Short Circuit Fault + + + Solenoid Valve Open Circuit Fault; Loop Board DC+DC- Open Circuit Fault + + + Sub-Control Valve Fault + + + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs new file mode 100644 index 0000000..88548e7 --- /dev/null +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.Designer.cs @@ -0,0 +1,3329 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_EquipAlarmRecordController_zh { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_EquipAlarmRecordController_zh() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.EquipAlarmRecordController.zh", typeof(Controllers_EquipAlarmRecordController_zh).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆伸出超时报警. + /// + internal static string _1000000_吊具推杆1夹爪推杆伸出超时报警 { + get { + return ResourceManager.GetString("1000000:吊具推杆1夹爪推杆伸出超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆伸出超时报警. + /// + internal static string _1000001_吊具推杆2夹爪推杆伸出超时报警 { + get { + return ResourceManager.GetString("1000001:吊具推杆2夹爪推杆伸出超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆缩回超时报警. + /// + internal static string _1000020_吊具推杆1夹爪推杆缩回超时报警 { + get { + return ResourceManager.GetString("1000020:吊具推杆1夹爪推杆缩回超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆缩回超时报警. + /// + internal static string _1000021_吊具推杆2夹爪推杆缩回超时报警 { + get { + return ResourceManager.GetString("1000021:吊具推杆2夹爪推杆缩回超时报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆应在伸出位置. + /// + internal static string _1000040_吊具推杆1夹爪推杆应在伸出位置 { + get { + return ResourceManager.GetString("1000040:吊具推杆1夹爪推杆应在伸出位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆应在伸出位置. + /// + internal static string _1000041_吊具推杆2夹爪推杆应在伸出位置 { + get { + return ResourceManager.GetString("1000041:吊具推杆2夹爪推杆应在伸出位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆应在缩回位置. + /// + internal static string _1000060_吊具推杆1夹爪推杆应在缩回位置 { + get { + return ResourceManager.GetString("1000060:吊具推杆1夹爪推杆应在缩回位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆应在缩回位置. + /// + internal static string _1000061_吊具推杆2夹爪推杆应在缩回位置 { + get { + return ResourceManager.GetString("1000061:吊具推杆2夹爪推杆应在缩回位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆伸出受限. + /// + internal static string _1000080_吊具推杆1夹爪推杆伸出受限 { + get { + return ResourceManager.GetString("1000080:吊具推杆1夹爪推杆伸出受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆伸出受限. + /// + internal static string _1000081_吊具推杆2夹爪推杆伸出受限 { + get { + return ResourceManager.GetString("1000081:吊具推杆2夹爪推杆伸出受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆缩回受限. + /// + internal static string _1000100_吊具推杆1夹爪推杆缩回受限 { + get { + return ResourceManager.GetString("1000100:吊具推杆1夹爪推杆缩回受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆缩回受限. + /// + internal static string _1000101_吊具推杆2夹爪推杆缩回受限 { + get { + return ResourceManager.GetString("1000101:吊具推杆2夹爪推杆缩回受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1夹爪推杆伸出缩回同时检测到. + /// + internal static string _1000120_吊具推杆1夹爪推杆伸出缩回同时检测到 { + get { + return ResourceManager.GetString("1000120:吊具推杆1夹爪推杆伸出缩回同时检测到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2夹爪推杆伸出缩回同时检测到. + /// + internal static string _1000121_吊具推杆2夹爪推杆伸出缩回同时检测到 { + get { + return ResourceManager.GetString("1000121:吊具推杆2夹爪推杆伸出缩回同时检测到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆夹爪推杆缩回受限. + /// + internal static string _1000140_吊具推杆夹爪推杆缩回受限 { + get { + return ResourceManager.GetString("1000140:吊具推杆夹爪推杆缩回受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安全PLC没有运行. + /// + internal static string _200000_安全PLC没有运行 { + get { + return ResourceManager.GetString("200000:安全PLC没有运行", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 有急停触发. + /// + internal static string _200001_有急停触发 { + get { + return ResourceManager.GetString("200001:有急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 主控柜急停触发. + /// + internal static string _200002_主控柜急停触发 { + get { + return ResourceManager.GetString("200002:主控柜急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 换电通道急停触发. + /// + internal static string _200003_换电通道急停触发 { + get { + return ResourceManager.GetString("200003:换电通道急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 机器人急停触发. + /// + internal static string _200004_机器人急停触发 { + get { + return ResourceManager.GetString("200004:机器人急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控急停触发. + /// + internal static string _200005_站控急停触发 { + get { + return ResourceManager.GetString("200005:站控急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 控制室HMI急停触发. + /// + internal static string _200020_控制室HMI急停触发 { + get { + return ResourceManager.GetString("200020:控制室HMI急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池仓HMI急停触发. + /// + internal static string _200021_电池仓HMI急停触发 { + get { + return ResourceManager.GetString("200021:电池仓HMI急停触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 未选择HMI急停接入点. + /// + internal static string _200040_未选择HMI急停接入点 { + get { + return ResourceManager.GetString("200040:未选择HMI急停接入点", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安全门被打开. + /// + internal static string _200041_安全门被打开 { + get { + return ResourceManager.GetString("200041:安全门被打开", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 主控柜IO模块通讯异常. + /// + internal static string _200042_主控柜IO模块通讯异常 { + get { + return ResourceManager.GetString("200042:主控柜IO模块通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具远程IO模块通讯异常. + /// + internal static string _200043_吊具远程IO模块通讯异常 { + get { + return ResourceManager.GetString("200043:吊具远程IO模块通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 机器人远程IO模块通讯异常. + /// + internal static string _200044_机器人远程IO模块通讯异常 { + get { + return ResourceManager.GetString("200044:机器人远程IO模块通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴编码器飞车. + /// + internal static string _200046_Y轴编码器飞车 { + get { + return ResourceManager.GetString("200046:Y轴编码器飞车", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴编码器通讯异常. + /// + internal static string _200047_Y轴编码器通讯异常 { + get { + return ResourceManager.GetString("200047:Y轴编码器通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴跟随误差报警. + /// + internal static string _200050_Y轴跟随误差报警 { + get { + return ResourceManager.GetString("200050:Y轴跟随误差报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴编码器异常. + /// + internal static string _200051_Y轴编码器异常 { + get { + return ResourceManager.GetString("200051:Y轴编码器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴编码器通讯异常. + /// + internal static string _200052_X轴编码器通讯异常 { + get { + return ResourceManager.GetString("200052:X轴编码器通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1#电池仓感应器1异常. + /// + internal static string _200060_1_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200060:1#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 动作结束后停机. + /// + internal static string _200060_动作结束后停机 { + get { + return ResourceManager.GetString("200060:动作结束后停机", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2#电池仓感应器1异常. + /// + internal static string _200061_2_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200061:2#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3#电池仓感应器1异常. + /// + internal static string _200062_3_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200062:3#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4#电池仓感应器1异常. + /// + internal static string _200063_4_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200063:4#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5#电池仓感应器1异常. + /// + internal static string _200064_5_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200064:5#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 6#电池仓感应器1异常. + /// + internal static string _200065_6_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200065:6#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 7#电池仓感应器1异常. + /// + internal static string _200066_7_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200066:7#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 8#电池仓感应器1异常. + /// + internal static string _200067_8_电池仓感应器1异常 { + get { + return ResourceManager.GetString("200067:8#电池仓感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1#电池仓感应器2异常. + /// + internal static string _200080_1_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200080:1#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2#电池仓感应器2异常. + /// + internal static string _200081_2_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200081:2#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3#电池仓感应器2异常. + /// + internal static string _200082_3_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200082:3#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4#电池仓感应器2异常. + /// + internal static string _200083_4_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200083:4#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5#电池仓感应器2异常. + /// + internal static string _200084_5_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200084:5#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 6#电池仓感应器2异常. + /// + internal static string _200085_6_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200085:6#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 7#电池仓感应器2异常. + /// + internal static string _200086_7_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200086:7#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 8#电池仓感应器2异常. + /// + internal static string _200087_8_电池仓感应器2异常 { + get { + return ResourceManager.GetString("200087:8#电池仓感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 入口雷达感应异常. + /// + internal static string _200100_入口雷达感应异常 { + get { + return ResourceManager.GetString("200100:入口雷达感应异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 出口雷达感应异常. + /// + internal static string _200101_出口雷达感应异常 { + get { + return ResourceManager.GetString("200101:出口雷达感应异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 移门开门超时. + /// + internal static string _200103_移门开门超时 { + get { + return ResourceManager.GetString("200103:移门开门超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 移门关门超时. + /// + internal static string _200104_移门关门超时 { + get { + return ResourceManager.GetString("200104:移门关门超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 移门开门感应器没有都感应到. + /// + internal static string _200105_移门开门感应器没有都感应到 { + get { + return ResourceManager.GetString("200105:移门开门感应器没有都感应到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 移门开门和关门感应器都感应到. + /// + internal static string _200106_移门开门和关门感应器都感应到 { + get { + return ResourceManager.GetString("200106:移门开门和关门感应器都感应到", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 检测到任务未执行完成. + /// + internal static string _200112_检测到任务未执行完成 { + get { + return ResourceManager.GetString("200112:检测到任务未执行完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 初始化检测吊具上有电池记忆. + /// + internal static string _200113_初始化检测吊具上有电池记忆 { + get { + return ResourceManager.GetString("200113:初始化检测吊具上有电池记忆", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴不在待机位. + /// + internal static string _200114_X轴不在待机位 { + get { + return ResourceManager.GetString("200114:X轴不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴不在待机位. + /// + internal static string _200115_Y轴不在待机位 { + get { + return ResourceManager.GetString("200115:Y轴不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴不在待机位. + /// + internal static string _200116_Z轴不在待机位 { + get { + return ResourceManager.GetString("200116:Z轴不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆1不在待机位. + /// + internal static string _200117_吊具推杆1不在待机位 { + get { + return ResourceManager.GetString("200117:吊具推杆1不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具推杆2不在待机位. + /// + internal static string _200120_吊具推杆2不在待机位 { + get { + return ResourceManager.GetString("200120:吊具推杆2不在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具感应器异常. + /// + internal static string _200121_吊具感应器异常 { + get { + return ResourceManager.GetString("200121:吊具感应器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具感应器1异常. + /// + internal static string _200122_吊具感应器1异常 { + get { + return ResourceManager.GetString("200122:吊具感应器1异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具感应器2异常. + /// + internal static string _200123_吊具感应器2异常 { + get { + return ResourceManager.GetString("200123:吊具感应器2异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具感应器3异常. + /// + internal static string _200124_吊具感应器3异常 { + get { + return ResourceManager.GetString("200124:吊具感应器3异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具感应器4异常. + /// + internal static string _200125_吊具感应器4异常 { + get { + return ResourceManager.GetString("200125:吊具感应器4异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴位置点位设置错误. + /// + internal static string _200126_X轴位置点位设置错误 { + get { + return ResourceManager.GetString("200126:X轴位置点位设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴位置点位设置错误. + /// + internal static string _200127_Y轴位置点位设置错误 { + get { + return ResourceManager.GetString("200127:Y轴位置点位设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴位置点位设置错误. + /// + internal static string _200130_Z轴位置点位设置错误 { + get { + return ResourceManager.GetString("200130:Z轴位置点位设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 机器人当前位置不能启动移仓任务. + /// + internal static string _200132_机器人当前位置不能启动移仓任务 { + get { + return ResourceManager.GetString("200132:机器人当前位置不能启动移仓任务", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 机器人当前位置不能启动消防任务. + /// + internal static string _200133_机器人当前位置不能启动消防任务 { + get { + return ResourceManager.GetString("200133:机器人当前位置不能启动消防任务", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴复判感应器异常. + /// + internal static string _200134_Y轴复判感应器异常 { + get { + return ResourceManager.GetString("200134:Y轴复判感应器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 相机程序未运行. + /// + internal static string _200135_相机程序未运行 { + get { + return ResourceManager.GetString("200135:相机程序未运行", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 相机拍照超时. + /// + internal static string _200136_相机拍照超时 { + get { + return ResourceManager.GetString("200136:相机拍照超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 相机偏移值超限. + /// + internal static string _200137_相机偏移值超限 { + get { + return ResourceManager.GetString("200137:相机偏移值超限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 相机拍照失败. + /// + internal static string _200140_相机拍照失败 { + get { + return ResourceManager.GetString("200140:相机拍照失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴编码器清零失败. + /// + internal static string _200141_Y轴编码器清零失败 { + get { + return ResourceManager.GetString("200141:Y轴编码器清零失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具到位感应使Z轴下降受限. + /// + internal static string _200143_吊具到位感应使Z轴下降受限 { + get { + return ResourceManager.GetString("200143:吊具到位感应使Z轴下降受限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控通讯协议版本错误. + /// + internal static string _200320_站控通讯协议版本错误 { + get { + return ResourceManager.GetString("200320:站控通讯协议版本错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 钢丝绳1松弛报警. + /// + internal static string _200340_钢丝绳1松弛报警 { + get { + return ResourceManager.GetString("200340:钢丝绳1松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 钢丝绳2松弛报警. + /// + internal static string _200341_钢丝绳2松弛报警 { + get { + return ResourceManager.GetString("200341:钢丝绳2松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 钢丝绳3松弛报警. + /// + internal static string _200342_钢丝绳3松弛报警 { + get { + return ResourceManager.GetString("200342:钢丝绳3松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 钢丝绳4松弛报警. + /// + internal static string _200343_钢丝绳4松弛报警 { + get { + return ResourceManager.GetString("200343:钢丝绳4松弛报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴应该在待机位正负限制之内. + /// + internal static string _200360_X轴应该在待机位正负限制之内 { + get { + return ResourceManager.GetString("200360:X轴应该在待机位正负限制之内", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光轴原点感应异常. + /// + internal static string _200361_激光轴原点感应异常 { + get { + return ResourceManager.GetString("200361:激光轴原点感应异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴待机位复盘感应比对异常. + /// + internal static string _200362_Y轴待机位复盘感应比对异常 { + get { + return ResourceManager.GetString("200362:Y轴待机位复盘感应比对异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1#电池仓状态记忆异常. + /// + internal static string _200380_1_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200380:1#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2#电池仓状态记忆异常. + /// + internal static string _200381_2_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200381:2#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3#电池仓状态记忆异常. + /// + internal static string _200382_3_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200382:3#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4#电池仓状态记忆异常. + /// + internal static string _200383_4_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200383:4#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5#电池仓状态记忆异常. + /// + internal static string _200384_5_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200384:5#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 6#电池仓状态记忆异常. + /// + internal static string _200385_6_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200385:6#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 7#电池仓状态记忆异常. + /// + internal static string _200386_7_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200386:7#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 8#电池仓状态记忆异常. + /// + internal static string _200387_8_电池仓状态记忆异常 { + get { + return ResourceManager.GetString("200387:8#电池仓状态记忆异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 主控柜IO模块未配置报警. + /// + internal static string _200401_主控柜IO模块未配置报警 { + get { + return ResourceManager.GetString("200401:主控柜IO模块未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光轴未配置报警. + /// + internal static string _200402_激光轴未配置报警 { + get { + return ResourceManager.GetString("200402:激光轴未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴未配置报警. + /// + internal static string _200403_X轴未配置报警 { + get { + return ResourceManager.GetString("200403:X轴未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴未配置报警. + /// + internal static string _200404_Y轴未配置报警 { + get { + return ResourceManager.GetString("200404:Y轴未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴编码器未配置报警. + /// + internal static string _200405_X轴编码器未配置报警 { + get { + return ResourceManager.GetString("200405:X轴编码器未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站型未配置报警. + /// + internal static string _200406_站型未配置报警 { + get { + return ResourceManager.GetString("200406:站型未配置报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆未按照正常方向驶入或出口雷达被异常触发. + /// + internal static string _200407_车辆未按照正常方向驶入或出口雷达被异常触发 { + get { + return ResourceManager.GetString("200407:车辆未按照正常方向驶入或出口雷达被异常触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 钢丝绳断裂. + /// + internal static string _200410_钢丝绳断裂 { + get { + return ResourceManager.GetString("200410:钢丝绳断裂", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 主控室烟感报警. + /// + internal static string _300000_主控室烟感报警 { + get { + return ResourceManager.GetString("300000:主控室烟感报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 液位预警. + /// + internal static string _300001_液位预警 { + get { + return ResourceManager.GetString("300001:液位预警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 液位报警. + /// + internal static string _300002_液位报警 { + get { + return ResourceManager.GetString("300002:液位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1号电池仓电池未放好. + /// + internal static string _300100_1号电池仓电池未放好 { + get { + return ResourceManager.GetString("300100:1号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2号电池仓电池未放好. + /// + internal static string _300101_2号电池仓电池未放好 { + get { + return ResourceManager.GetString("300101:2号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3号电池仓电池未放好. + /// + internal static string _300102_3号电池仓电池未放好 { + get { + return ResourceManager.GetString("300102:3号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4号电池仓电池未放好. + /// + internal static string _300103_4号电池仓电池未放好 { + get { + return ResourceManager.GetString("300103:4号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5号电池仓电池未放好. + /// + internal static string _300104_5号电池仓电池未放好 { + get { + return ResourceManager.GetString("300104:5号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 6号电池仓电池未放好. + /// + internal static string _300105_6号电池仓电池未放好 { + get { + return ResourceManager.GetString("300105:6号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 7号电池仓电池未放好. + /// + internal static string _300106_7号电池仓电池未放好 { + get { + return ResourceManager.GetString("300106:7号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 8号电池仓电池未放好. + /// + internal static string _300107_8号电池仓电池未放好 { + get { + return ResourceManager.GetString("300107:8号电池仓电池未放好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1号电池仓被非法放入电池. + /// + internal static string _300120_1号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300120:1号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2号电池仓被非法放入电池. + /// + internal static string _300121_2号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300121:2号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3号电池仓被非法放入电池. + /// + internal static string _300122_3号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300122:3号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4号电池仓被非法放入电池. + /// + internal static string _300123_4号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300123:4号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5号电池仓被非法放入电池. + /// + internal static string _300124_5号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300124:5号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 6号电池仓被非法放入电池. + /// + internal static string _300125_6号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300125:6号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 7号电池仓被非法放入电池. + /// + internal static string _300126_7号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300126:7号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 8号电池仓被非法放入电池. + /// + internal static string _300127_8号电池仓被非法放入电池 { + get { + return ResourceManager.GetString("300127:8号电池仓被非法放入电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HMI心跳丢失. + /// + internal static string _400000_HMI心跳丢失 { + get { + return ResourceManager.GetString("400000:HMI心跳丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PLC Modbus服务器指令异常. + /// + internal static string _400001_PLC_Modbus服务器指令异常 { + get { + return ResourceManager.GetString("400001:PLC Modbus服务器指令异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控心跳异常. + /// + internal static string _400002_站控心跳异常 { + get { + return ResourceManager.GetString("400002:站控心跳异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 相机通讯异常. + /// + internal static string _400003_相机通讯异常 { + get { + return ResourceManager.GetString("400003:相机通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 设备运行次数已达到设定保养次数预警. + /// + internal static string _400004_设备运行次数已达到设定保养次数预警 { + get { + return ResourceManager.GetString("400004:设备运行次数已达到设定保养次数预警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 设备运行次数已达到设定保养次数报警. + /// + internal static string _400005_设备运行次数已达到设定保养次数报警 { + get { + return ResourceManager.GetString("400005:设备运行次数已达到设定保养次数报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴未做轴扭力点检或扭力点检NG. + /// + internal static string _400180_X轴未做轴扭力点检或扭力点检NG { + get { + return ResourceManager.GetString("400180:X轴未做轴扭力点检或扭力点检NG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴未做轴扭力点检或扭力点检NG. + /// + internal static string _400181_Y轴未做轴扭力点检或扭力点检NG { + get { + return ResourceManager.GetString("400181:Y轴未做轴扭力点检或扭力点检NG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴未做轴扭力点检或扭力点检NG. + /// + internal static string _400182_Z轴未做轴扭力点检或扭力点检NG { + get { + return ResourceManager.GetString("400182:Z轴未做轴扭力点检或扭力点检NG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安全门屏蔽中. + /// + internal static string _700000_安全门屏蔽中 { + get { + return ResourceManager.GetString("700000:安全门屏蔽中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 空跑中. + /// + internal static string _700001_空跑中 { + get { + return ResourceManager.GetString("700001:空跑中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的初始化命令. + /// + internal static string _700002_收到站控无效的初始化命令 { + get { + return ResourceManager.GetString("700002:收到站控无效的初始化命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的初始化命令. + /// + internal static string _700003_收到站控有效的初始化命令 { + get { + return ResourceManager.GetString("700003:收到站控有效的初始化命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的启动命令. + /// + internal static string _700004_收到站控无效的启动命令 { + get { + return ResourceManager.GetString("700004:收到站控无效的启动命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的启动命令. + /// + internal static string _700005_收到站控有效的启动命令 { + get { + return ResourceManager.GetString("700005:收到站控有效的启动命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的复位命令. + /// + internal static string _700006_收到站控无效的复位命令 { + get { + return ResourceManager.GetString("700006:收到站控无效的复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的复位命令. + /// + internal static string _700007_收到站控有效的复位命令 { + get { + return ResourceManager.GetString("700007:收到站控有效的复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的暂停命令. + /// + internal static string _700010_收到站控无效的暂停命令 { + get { + return ResourceManager.GetString("700010:收到站控无效的暂停命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的暂停命令. + /// + internal static string _700011_收到站控有效的暂停命令 { + get { + return ResourceManager.GetString("700011:收到站控有效的暂停命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的程序复位命令. + /// + internal static string _700012_收到站控无效的程序复位命令 { + get { + return ResourceManager.GetString("700012:收到站控无效的程序复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的程序复位命令. + /// + internal static string _700013_收到站控有效的程序复位命令 { + get { + return ResourceManager.GetString("700013:收到站控有效的程序复位命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的强制换电完成命令. + /// + internal static string _700014_收到站控无效的强制换电完成命令 { + get { + return ResourceManager.GetString("700014:收到站控无效的强制换电完成命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的强制换电完成命令. + /// + internal static string _700015_收到站控有效的强制换电完成命令 { + get { + return ResourceManager.GetString("700015:收到站控有效的强制换电完成命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的切换手动模式命令. + /// + internal static string _700016_收到站控无效的切换手动模式命令 { + get { + return ResourceManager.GetString("700016:收到站控无效的切换手动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的切换手动模式命令. + /// + internal static string _700017_收到站控有效的切换手动模式命令 { + get { + return ResourceManager.GetString("700017:收到站控有效的切换手动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的切换自动模式命令. + /// + internal static string _700020_收到站控无效的切换自动模式命令 { + get { + return ResourceManager.GetString("700020:收到站控无效的切换自动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的切换自动模式命令. + /// + internal static string _700021_收到站控有效的切换自动模式命令 { + get { + return ResourceManager.GetString("700021:收到站控有效的切换自动模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的切换远程模式命令. + /// + internal static string _700022_收到站控无效的切换远程模式命令 { + get { + return ResourceManager.GetString("700022:收到站控无效的切换远程模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的切换远程模式命令. + /// + internal static string _700023_收到站控有效的切换远程模式命令 { + get { + return ResourceManager.GetString("700023:收到站控有效的切换远程模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的切换本地模式命令. + /// + internal static string _700024_收到站控无效的切换本地模式命令 { + get { + return ResourceManager.GetString("700024:收到站控无效的切换本地模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的切换本地模式命令. + /// + internal static string _700025_收到站控有效的切换本地模式命令 { + get { + return ResourceManager.GetString("700025:收到站控有效的切换本地模式命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的换电命令. + /// + internal static string _700026_收到站控无效的换电命令 { + get { + return ResourceManager.GetString("700026:收到站控无效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的换电命令. + /// + internal static string _700027_收到站控有效的换电命令 { + get { + return ResourceManager.GetString("700027:收到站控有效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的入库命令. + /// + internal static string _700030_收到站控无效的入库命令 { + get { + return ResourceManager.GetString("700030:收到站控无效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的入库命令. + /// + internal static string _700031_收到站控有效的入库命令 { + get { + return ResourceManager.GetString("700031:收到站控有效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的出库命令. + /// + internal static string _700032_收到站控无效的出库命令 { + get { + return ResourceManager.GetString("700032:收到站控无效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的出库命令. + /// + internal static string _700033_收到站控有效的出库命令 { + get { + return ResourceManager.GetString("700033:收到站控有效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的调库命令. + /// + internal static string _700034_收到站控无效的调库命令 { + get { + return ResourceManager.GetString("700034:收到站控无效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的调库命令. + /// + internal static string _700035_收到站控有效的调库命令 { + get { + return ResourceManager.GetString("700035:收到站控有效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控无效的消防命令. + /// + internal static string _700036_收到站控无效的消防命令 { + get { + return ResourceManager.GetString("700036:收到站控无效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到站控有效的消防命令. + /// + internal static string _700037_收到站控有效的消防命令 { + get { + return ResourceManager.GetString("700037:收到站控有效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到远程断箱变命令. + /// + internal static string _700040_收到远程断箱变命令 { + get { + return ResourceManager.GetString("700040:收到远程断箱变命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到远程断换电断路器命令. + /// + internal static string _700041_收到远程断换电断路器命令 { + get { + return ResourceManager.GetString("700041:收到远程断换电断路器命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到远程关闭所有灯. + /// + internal static string _700042_收到远程关闭所有灯 { + get { + return ResourceManager.GetString("700042:收到远程关闭所有灯", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到远程关闭换电通道照明. + /// + internal static string _700043_收到远程关闭换电通道照明 { + get { + return ResourceManager.GetString("700043:收到远程关闭换电通道照明", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到远程关闭控制室照明. + /// + internal static string _700044_收到远程关闭控制室照明 { + get { + return ResourceManager.GetString("700044:收到远程关闭控制室照明", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到远程开启排风启动命令. + /// + internal static string _700045_收到远程开启排风启动命令 { + get { + return ResourceManager.GetString("700045:收到远程开启排风启动命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效的换电命令. + /// + internal static string _700046_收到HMI无效的换电命令 { + get { + return ResourceManager.GetString("700046:收到HMI无效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI有效的换电命令. + /// + internal static string _700047_收到HMI有效的换电命令 { + get { + return ResourceManager.GetString("700047:收到HMI有效的换电命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效的入库命令. + /// + internal static string _700050_收到HMI无效的入库命令 { + get { + return ResourceManager.GetString("700050:收到HMI无效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI有效的入库命令. + /// + internal static string _700051_收到HMI有效的入库命令 { + get { + return ResourceManager.GetString("700051:收到HMI有效的入库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效的出库命令. + /// + internal static string _700052_收到HMI无效的出库命令 { + get { + return ResourceManager.GetString("700052:收到HMI无效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI有效的出库命令. + /// + internal static string _700053_收到HMI有效的出库命令 { + get { + return ResourceManager.GetString("700053:收到HMI有效的出库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效的调库命令. + /// + internal static string _700054_收到HMI无效的调库命令 { + get { + return ResourceManager.GetString("700054:收到HMI无效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI有效的调库命令. + /// + internal static string _700055_收到HMI有效的调库命令 { + get { + return ResourceManager.GetString("700055:收到HMI有效的调库命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效的消防命令. + /// + internal static string _700056_收到HMI无效的消防命令 { + get { + return ResourceManager.GetString("700056:收到HMI无效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI有效的消防命令. + /// + internal static string _700057_收到HMI有效的消防命令 { + get { + return ResourceManager.GetString("700057:收到HMI有效的消防命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安全门未关好. + /// + internal static string _700060_安全门未关好 { + get { + return ResourceManager.GetString("700060:安全门未关好", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HMI急停已屏蔽. + /// + internal static string _700061_HMI急停已屏蔽 { + get { + return ResourceManager.GetString("700061:HMI急停已屏蔽", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴停止中. + /// + internal static string _700062_Z轴停止中 { + get { + return ResourceManager.GetString("700062:Z轴停止中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 请手动将吊具脱离电池. + /// + internal static string _700063_请手动将吊具脱离电池 { + get { + return ResourceManager.GetString("700063:请手动将吊具脱离电池", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 整站断电触发. + /// + internal static string _700064_整站断电触发 { + get { + return ResourceManager.GetString("700064:整站断电触发", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控停止中. + /// + internal static string _700065_站控停止中 { + get { + return ResourceManager.GetString("700065:站控停止中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控启动中. + /// + internal static string _700066_站控启动中 { + get { + return ResourceManager.GetString("700066:站控启动中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控急停中. + /// + internal static string _700067_站控急停中 { + get { + return ResourceManager.GetString("700067:站控急停中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 站控报警复位中. + /// + internal static string _700070_站控报警复位中 { + get { + return ResourceManager.GetString("700070:站控报警复位中", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效开站命令. + /// + internal static string _700073_收到HMI无效开站命令 { + get { + return ResourceManager.GetString("700073:收到HMI无效开站命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 收到HMI无效闭站命令. + /// + internal static string _700074_收到HMI无效闭站命令 { + get { + return ResourceManager.GetString("700074:收到HMI无效闭站命令", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 请人员将电池放在指定位置. + /// + internal static string _700075_请人员将电池放在指定位置 { + get { + return ResourceManager.GetString("700075:请人员将电池放在指定位置", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具弹簧线达到预警次数. + /// + internal static string _700077_吊具弹簧线达到预警次数 { + get { + return ResourceManager.GetString("700077:吊具弹簧线达到预警次数", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 吊具弹簧线达到预警次数. + /// + internal static string _700080_吊具弹簧线达到预警次数 { + get { + return ResourceManager.GetString("700080:吊具弹簧线达到预警次数", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴待机位位置设置错误. + /// + internal static string _700100_X轴待机位位置设置错误 { + get { + return ResourceManager.GetString("700100:X轴待机位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴车辆引导取放位位置设置错误. + /// + internal static string _700101_X轴车辆引导取放位位置设置错误 { + get { + return ResourceManager.GetString("700101:X轴车辆引导取放位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴拍照结束位位置设置错误. + /// + internal static string _700102_X轴拍照结束位位置设置错误 { + get { + return ResourceManager.GetString("700102:X轴拍照结束位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴车辆取放电池位置设置错误. + /// + internal static string _700103_X轴车辆取放电池位置设置错误 { + get { + return ResourceManager.GetString("700103:X轴车辆取放电池位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴1号仓位数据设置错误. + /// + internal static string _700105_X轴1号仓位数据设置错误 { + get { + return ResourceManager.GetString("700105:X轴1号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴2号仓位数据设置错误. + /// + internal static string _700106_X轴2号仓位数据设置错误 { + get { + return ResourceManager.GetString("700106:X轴2号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴3号仓位数据设置错误. + /// + internal static string _700107_X轴3号仓位数据设置错误 { + get { + return ResourceManager.GetString("700107:X轴3号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴4号仓位数据设置错误. + /// + internal static string _700110_X轴4号仓位数据设置错误 { + get { + return ResourceManager.GetString("700110:X轴4号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴5号仓位数据设置错误. + /// + internal static string _700111_X轴5号仓位数据设置错误 { + get { + return ResourceManager.GetString("700111:X轴5号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴6号仓位数据设置错误. + /// + internal static string _700112_X轴6号仓位数据设置错误 { + get { + return ResourceManager.GetString("700112:X轴6号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴7号仓位数据设置错误. + /// + internal static string _700113_X轴7号仓位数据设置错误 { + get { + return ResourceManager.GetString("700113:X轴7号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴8号仓位数据设置错误. + /// + internal static string _700114_X轴8号仓位数据设置错误 { + get { + return ResourceManager.GetString("700114:X轴8号仓位数据设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴待机位位置设置错误. + /// + internal static string _700140_Y轴待机位位置设置错误 { + get { + return ResourceManager.GetString("700140:Y轴待机位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴车辆引导取放位位置设置错误. + /// + internal static string _700141_Y轴车辆引导取放位位置设置错误 { + get { + return ResourceManager.GetString("700141:Y轴车辆引导取放位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴拍照结束位位置设置错误. + /// + internal static string _700142_Y轴拍照结束位位置设置错误 { + get { + return ResourceManager.GetString("700142:Y轴拍照结束位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴取车电池位位置设置错误. + /// + internal static string _700143_Y轴取车电池位位置设置错误 { + get { + return ResourceManager.GetString("700143:Y轴取车电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴1号仓取放电池位位置设置错误. + /// + internal static string _700145_Y轴1号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700145:Y轴1号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴2号仓取放电池位位置设置错误. + /// + internal static string _700146_Y轴2号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700146:Y轴2号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴3号仓取放电池位位置设置错误. + /// + internal static string _700147_Y轴3号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700147:Y轴3号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴4号仓取放电池位位置设置错误. + /// + internal static string _700150_Y轴4号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700150:Y轴4号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴5号仓取放电池位位置设置错误. + /// + internal static string _700151_Y轴5号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700151:Y轴5号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴6号仓取放电池位位置设置错误. + /// + internal static string _700152_Y轴6号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700152:Y轴6号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴7号仓取放电池位位置设置错误. + /// + internal static string _700153_Y轴7号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700153:Y轴7号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴8号仓取放电池位位置设置错误. + /// + internal static string _700154_Y轴8号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700154:Y轴8号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴待机位位置设置错误. + /// + internal static string _700180_Z轴待机位位置设置错误 { + get { + return ResourceManager.GetString("700180:Z轴待机位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴动态取车电池位位置设置错误. + /// + internal static string _700181_Z轴动态取车电池位位置设置错误 { + get { + return ResourceManager.GetString("700181:Z轴动态取车电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴车辆取电池位位置设置错误. + /// + internal static string _700183_Z轴车辆取电池位位置设置错误 { + get { + return ResourceManager.GetString("700183:Z轴车辆取电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴取放地面位置设置错误. + /// + internal static string _700184_Z轴取放地面位置设置错误 { + get { + return ResourceManager.GetString("700184:Z轴取放地面位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴1号仓取放电池位位置设置错误. + /// + internal static string _700185_Z轴1号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700185:Z轴1号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴2号仓取放电池位位置设置错误. + /// + internal static string _700186_Z轴2号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700186:Z轴2号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴3号仓取放电池位位置设置错误. + /// + internal static string _700187_Z轴3号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700187:Z轴3号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴4号仓取放电池位位置设置错误. + /// + internal static string _700190_Z轴4号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700190:Z轴4号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴5号仓取放电池位位置设置错误. + /// + internal static string _700191_Z轴5号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700191:Z轴5号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴6号仓取放电池位位置设置错误. + /// + internal static string _700192_Z轴6号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700192:Z轴6号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴7号仓取放电池位位置设置错误. + /// + internal static string _700193_Z轴7号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700193:Z轴7号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴8号仓取放电池位位置设置错误. + /// + internal static string _700194_Z轴8号仓取放电池位位置设置错误 { + get { + return ResourceManager.GetString("700194:Z轴8号仓取放电池位位置设置错误", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 有站点掉线. + /// + internal static string _700223_有站点掉线 { + get { + return ResourceManager.GetString("700223:有站点掉线", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 有子模块异常. + /// + internal static string _700224_有子模块异常 { + get { + return ResourceManager.GetString("700224:有子模块异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服驱动警告. + /// + internal static string _700225_X伺服驱动警告 { + get { + return ResourceManager.GetString("700225:X伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服驱动警告. + /// + internal static string _700226_Y伺服驱动警告 { + get { + return ResourceManager.GetString("700226:Y伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服驱动警告. + /// + internal static string _700227_Z伺服驱动警告 { + get { + return ResourceManager.GetString("700227:Z伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光轴伺服驱动警告. + /// + internal static string _700230_激光轴伺服驱动警告 { + get { + return ResourceManager.GetString("700230:激光轴伺服驱动警告", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光扫描超时. + /// + internal static string _700231_激光扫描超时 { + get { + return ResourceManager.GetString("700231:激光扫描超时", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光数据采集异常. + /// + internal static string _700232_激光数据采集异常 { + get { + return ResourceManager.GetString("700232:激光数据采集异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光宽度采集异常. + /// + internal static string _700233_激光宽度采集异常 { + get { + return ResourceManager.GetString("700233:激光宽度采集异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单点激光标定失败. + /// + internal static string _700420_单点激光标定失败 { + get { + return ResourceManager.GetString("700420:单点激光标定失败", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服JOG+互锁报警. + /// + internal static string _800000_X伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800000:X伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服JOG-互锁报警. + /// + internal static string _800001_X伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800001:X伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服正限位报警. + /// + internal static string _800002_X伺服正限位报警 { + get { + return ResourceManager.GetString("800002:X伺服正限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服负限位报警. + /// + internal static string _800003_X伺服负限位报警 { + get { + return ResourceManager.GetString("800003:X伺服负限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服软限位报警. + /// + internal static string _800004_X伺服软限位报警 { + get { + return ResourceManager.GetString("800004:X伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服通讯异常. + /// + internal static string _800005_X伺服通讯异常 { + get { + return ResourceManager.GetString("800005:X伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服使能丢失. + /// + internal static string _800006_X伺服使能丢失 { + get { + return ResourceManager.GetString("800006:X伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服原点丢失. + /// + internal static string _800007_X伺服原点丢失 { + get { + return ResourceManager.GetString("800007:X伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴机械卡住或刹车未打开或电路异常. + /// + internal static string _800010_X轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800010:X轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服驱动异常;驱动器故障代码:%(WATCH1)d. + /// + internal static string _800011_X伺服驱动异常_驱动器故障代码___WATCH1_d { + get { + return ResourceManager.GetString("800011:X伺服驱动异常;驱动器故障代码:%(WATCH1)d", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴外置编码器异常. + /// + internal static string _800013_X轴外置编码器异常 { + get { + return ResourceManager.GetString("800013:X轴外置编码器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴外置编码器飞车. + /// + internal static string _800014_X轴外置编码器飞车 { + get { + return ResourceManager.GetString("800014:X轴外置编码器飞车", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X轴外置编码器跟随误差报警. + /// + internal static string _800015_X轴外置编码器跟随误差报警 { + get { + return ResourceManager.GetString("800015:X轴外置编码器跟随误差报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在待机位. + /// + internal static string _800020_X伺服应该在待机位 { + get { + return ResourceManager.GetString("800020:X伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在车辆引导取放位. + /// + internal static string _800021_X伺服应该在车辆引导取放位 { + get { + return ResourceManager.GetString("800021:X伺服应该在车辆引导取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在车电池标准取放位. + /// + internal static string _800022_X伺服应该在车电池标准取放位 { + get { + return ResourceManager.GetString("800022:X伺服应该在车电池标准取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在1号仓取放电池位. + /// + internal static string _800025_X伺服应该在1号仓取放电池位 { + get { + return ResourceManager.GetString("800025:X伺服应该在1号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在2号仓取放电池位. + /// + internal static string _800026_X伺服应该在2号仓取放电池位 { + get { + return ResourceManager.GetString("800026:X伺服应该在2号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在3号仓取放电池位. + /// + internal static string _800027_X伺服应该在3号仓取放电池位 { + get { + return ResourceManager.GetString("800027:X伺服应该在3号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在4号仓取放电池位. + /// + internal static string _800030_X伺服应该在4号仓取放电池位 { + get { + return ResourceManager.GetString("800030:X伺服应该在4号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在5号仓取放电池位. + /// + internal static string _800031_X伺服应该在5号仓取放电池位 { + get { + return ResourceManager.GetString("800031:X伺服应该在5号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在6号仓取放电池位. + /// + internal static string _800032_X伺服应该在6号仓取放电池位 { + get { + return ResourceManager.GetString("800032:X伺服应该在6号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在7号仓取放电池位. + /// + internal static string _800033_X伺服应该在7号仓取放电池位 { + get { + return ResourceManager.GetString("800033:X伺服应该在7号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X伺服应该在8号仓取放电池位. + /// + internal static string _800034_X伺服应该在8号仓取放电池位 { + get { + return ResourceManager.GetString("800034:X伺服应该在8号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服JOG+互锁报警. + /// + internal static string _800060_Y伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800060:Y伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服JOG-互锁报警. + /// + internal static string _800061_Y伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800061:Y伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服正限位报警. + /// + internal static string _800062_Y伺服正限位报警 { + get { + return ResourceManager.GetString("800062:Y伺服正限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服负限位报警. + /// + internal static string _800063_Y伺服负限位报警 { + get { + return ResourceManager.GetString("800063:Y伺服负限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服软限位报警. + /// + internal static string _800064_Y伺服软限位报警 { + get { + return ResourceManager.GetString("800064:Y伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服通讯异常. + /// + internal static string _800065_Y伺服通讯异常 { + get { + return ResourceManager.GetString("800065:Y伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服使能丢失. + /// + internal static string _800066_Y伺服使能丢失 { + get { + return ResourceManager.GetString("800066:Y伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服原点丢失. + /// + internal static string _800067_Y伺服原点丢失 { + get { + return ResourceManager.GetString("800067:Y伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴机械卡住或刹车未打开或电路异常. + /// + internal static string _800070_Y轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800070:Y轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴外置编码器异常. + /// + internal static string _800073_Y轴外置编码器异常 { + get { + return ResourceManager.GetString("800073:Y轴外置编码器异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴外置编码器飞车. + /// + internal static string _800074_Y轴外置编码器飞车 { + get { + return ResourceManager.GetString("800074:Y轴外置编码器飞车", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y轴外置编码器跟随误差报警. + /// + internal static string _800075_Y轴外置编码器跟随误差报警 { + get { + return ResourceManager.GetString("800075:Y轴外置编码器跟随误差报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在待机位. + /// + internal static string _800080_Y伺服应该在待机位 { + get { + return ResourceManager.GetString("800080:Y伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在车辆引导取放位. + /// + internal static string _800081_Y伺服应该在车辆引导取放位 { + get { + return ResourceManager.GetString("800081:Y伺服应该在车辆引导取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在车电池标准取放位. + /// + internal static string _800082_Y伺服应该在车电池标准取放位 { + get { + return ResourceManager.GetString("800082:Y伺服应该在车电池标准取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在1号仓取放电池位. + /// + internal static string _800085_Y伺服应该在1号仓取放电池位 { + get { + return ResourceManager.GetString("800085:Y伺服应该在1号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在2号仓取放电池位. + /// + internal static string _800086_Y伺服应该在2号仓取放电池位 { + get { + return ResourceManager.GetString("800086:Y伺服应该在2号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在3号仓取放电池位. + /// + internal static string _800087_Y伺服应该在3号仓取放电池位 { + get { + return ResourceManager.GetString("800087:Y伺服应该在3号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在4号仓取放电池位. + /// + internal static string _800090_Y伺服应该在4号仓取放电池位 { + get { + return ResourceManager.GetString("800090:Y伺服应该在4号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在5号仓取放电池位. + /// + internal static string _800091_Y伺服应该在5号仓取放电池位 { + get { + return ResourceManager.GetString("800091:Y伺服应该在5号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在6号仓取放电池位. + /// + internal static string _800092_Y伺服应该在6号仓取放电池位 { + get { + return ResourceManager.GetString("800092:Y伺服应该在6号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在7号仓取放电池位. + /// + internal static string _800093_Y伺服应该在7号仓取放电池位 { + get { + return ResourceManager.GetString("800093:Y伺服应该在7号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Y伺服应该在8号仓取放电池位. + /// + internal static string _800094_Y伺服应该在8号仓取放电池位 { + get { + return ResourceManager.GetString("800094:Y伺服应该在8号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服JOG+互锁报警. + /// + internal static string _800120_Z伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800120:Z伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服JOG-互锁报警. + /// + internal static string _800121_Z伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800121:Z伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服下限位报警. + /// + internal static string _800122_Z伺服下限位报警 { + get { + return ResourceManager.GetString("800122:Z伺服下限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服上限位报警. + /// + internal static string _800123_Z伺服上限位报警 { + get { + return ResourceManager.GetString("800123:Z伺服上限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服软限位报警. + /// + internal static string _800124_Z伺服软限位报警 { + get { + return ResourceManager.GetString("800124:Z伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服通讯异常. + /// + internal static string _800125_Z伺服通讯异常 { + get { + return ResourceManager.GetString("800125:Z伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服使能丢失. + /// + internal static string _800126_Z伺服使能丢失 { + get { + return ResourceManager.GetString("800126:Z伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服原点丢失. + /// + internal static string _800127_Z伺服原点丢失 { + get { + return ResourceManager.GetString("800127:Z伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z轴机械卡住或刹车未打开或电路异常. + /// + internal static string _800130_Z轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800130:Z轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在待机位. + /// + internal static string _800140_Z伺服应该在待机位 { + get { + return ResourceManager.GetString("800140:Z伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在引导取放位. + /// + internal static string _800141_Z伺服应该在引导取放位 { + get { + return ResourceManager.GetString("800141:Z伺服应该在引导取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在车电池标准取放位. + /// + internal static string _800142_Z伺服应该在车电池标准取放位 { + get { + return ResourceManager.GetString("800142:Z伺服应该在车电池标准取放位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在地面取放电池位. + /// + internal static string _800144_Z伺服应该在地面取放电池位 { + get { + return ResourceManager.GetString("800144:Z伺服应该在地面取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在1号仓取放电池位. + /// + internal static string _800145_Z伺服应该在1号仓取放电池位 { + get { + return ResourceManager.GetString("800145:Z伺服应该在1号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在2号仓取放电池位. + /// + internal static string _800146_Z伺服应该在2号仓取放电池位 { + get { + return ResourceManager.GetString("800146:Z伺服应该在2号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在3号仓取放电池位. + /// + internal static string _800147_Z伺服应该在3号仓取放电池位 { + get { + return ResourceManager.GetString("800147:Z伺服应该在3号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在4号仓取放电池位. + /// + internal static string _800150_Z伺服应该在4号仓取放电池位 { + get { + return ResourceManager.GetString("800150:Z伺服应该在4号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在5号仓取放电池位. + /// + internal static string _800151_Z伺服应该在5号仓取放电池位 { + get { + return ResourceManager.GetString("800151:Z伺服应该在5号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在6号仓取放电池位. + /// + internal static string _800152_Z伺服应该在6号仓取放电池位 { + get { + return ResourceManager.GetString("800152:Z伺服应该在6号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在7号仓取放电池位. + /// + internal static string _800153_Z伺服应该在7号仓取放电池位 { + get { + return ResourceManager.GetString("800153:Z伺服应该在7号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Z伺服应该在8号仓取放电池位. + /// + internal static string _800154_Z伺服应该在8号仓取放电池位 { + get { + return ResourceManager.GetString("800154:Z伺服应该在8号仓取放电池位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服JOG+互锁报警. + /// + internal static string _800180_激光伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800180:激光伺服JOG+互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服JOG-互锁报警. + /// + internal static string _800181_激光伺服JOG_互锁报警 { + get { + return ResourceManager.GetString("800181:激光伺服JOG-互锁报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服下限位报警. + /// + internal static string _800182_激光伺服下限位报警 { + get { + return ResourceManager.GetString("800182:激光伺服下限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服上限位报警. + /// + internal static string _800183_激光伺服上限位报警 { + get { + return ResourceManager.GetString("800183:激光伺服上限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服软限位报警. + /// + internal static string _800184_激光伺服软限位报警 { + get { + return ResourceManager.GetString("800184:激光伺服软限位报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服通讯异常. + /// + internal static string _800185_激光伺服通讯异常 { + get { + return ResourceManager.GetString("800185:激光伺服通讯异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服使能丢失. + /// + internal static string _800186_激光伺服使能丢失 { + get { + return ResourceManager.GetString("800186:激光伺服使能丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服原点丢失. + /// + internal static string _800187_激光伺服原点丢失 { + get { + return ResourceManager.GetString("800187:激光伺服原点丢失", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光轴机械卡住或刹车未打开或电路异常. + /// + internal static string _800190_激光轴机械卡住或刹车未打开或电路异常 { + get { + return ResourceManager.GetString("800190:激光轴机械卡住或刹车未打开或电路异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服驱动异常;驱动器故障代码:%(WATCH1)d. + /// + internal static string _800191_激光伺服驱动异常_驱动器故障代码___WATCH1_d { + get { + return ResourceManager.GetString("800191:激光伺服驱动异常;驱动器故障代码:%(WATCH1)d", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服工艺对象报错;工艺轴报警代码:%(WATCH1)d工艺细分代码:%(WATCH2)d. + /// + internal static string _800192_激光伺服工艺对象报错_工艺轴报警代码___WATCH1_d工艺细分代码___WATCH2_d { + get { + return ResourceManager.GetString("800192:激光伺服工艺对象报错;工艺轴报警代码:%(WATCH1)d工艺细分代码:%(WATCH2)d", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服应该在待机位. + /// + internal static string _800200_激光伺服应该在待机位 { + get { + return ResourceManager.GetString("800200:激光伺服应该在待机位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服应该在扫描开始位. + /// + internal static string _800201_激光伺服应该在扫描开始位 { + get { + return ResourceManager.GetString("800201:激光伺服应该在扫描开始位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 激光伺服应该在扫描结束位. + /// + internal static string _800202_激光伺服应该在扫描结束位 { + get { + return ResourceManager.GetString("800202:激光伺服应该在扫描结束位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BMS通信故障. + /// + internal static string BMS通信故障 { + get { + return ResourceManager.GetString("BMS通信故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电中车辆控制导引故障. + /// + internal static string 充电中车辆控制导引故障 { + get { + return ResourceManager.GetString("充电中车辆控制导引故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电接口电磁锁故障. + /// + internal static string 充电接口电磁锁故障 { + get { + return ResourceManager.GetString("充电接口电磁锁故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电接口过温故障. + /// + internal static string 充电接口过温故障 { + get { + return ResourceManager.GetString("充电接口过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪未归位告警. + /// + internal static string 充电枪未归位告警 { + get { + return ResourceManager.GetString("充电枪未归位告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电枪过温告警. + /// + internal static string 充电枪过温告警 { + get { + return ResourceManager.GetString("充电枪过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩交流输入接触器据动/误动故障. + /// + internal static string 充电桩交流输入接触器据动_误动故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器据动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩交流输入接触器粘连故障. + /// + internal static string 充电桩交流输入接触器粘连故障 { + get { + return ResourceManager.GetString("充电桩交流输入接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩交流输入断路器故障(系统供电断路器). + /// + internal static string 充电桩交流输入断路器故障_系统供电断路器_ { + get { + return ResourceManager.GetString("充电桩交流输入断路器故障(系统供电断路器)", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩输入电压欠压故障. + /// + internal static string 充电桩输入电压欠压故障 { + get { + return ResourceManager.GetString("充电桩输入电压欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩输入电压过压故障. + /// + internal static string 充电桩输入电压过压故障 { + get { + return ResourceManager.GetString("充电桩输入电压过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩过温告警. + /// + internal static string 充电桩过温告警 { + get { + return ResourceManager.GetString("充电桩过温告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩过温故障. + /// + internal static string 充电桩过温故障 { + get { + return ResourceManager.GetString("充电桩过温故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 充电桩风扇故障. + /// + internal static string 充电桩风扇故障 { + get { + return ResourceManager.GetString("充电桩风扇故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 分控阀故障. + /// + internal static string 分控阀故障 { + get { + return ResourceManager.GetString("分控阀故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体蓄电池电压越上限. + /// + internal static string 单体蓄电池电压越上限 { + get { + return ResourceManager.GetString("单体蓄电池电压越上限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 单体蓄电池电压越下限. + /// + internal static string 单体蓄电池电压越下限 { + get { + return ResourceManager.GetString("单体蓄电池电压越下限", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 备电欠压. + /// + internal static string 备电欠压 { + get { + return ResourceManager.GetString("备电欠压", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 急停按钮动作故障. + /// + internal static string 急停按钮动作故障 { + get { + return ResourceManager.GetString("急停按钮动作故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 模块输出反接. + /// + internal static string 模块输出反接 { + get { + return ResourceManager.GetString("模块输出反接", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 正极直流输出接触器粘连故障. + /// + internal static string 正极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("正极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 水浸告警. + /// + internal static string 水浸告警 { + get { + return ResourceManager.GetString("水浸告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 泄放回路故障. + /// + internal static string 泄放回路故障 { + get { + return ResourceManager.GetString("泄放回路故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 烟感故障. + /// + internal static string 烟感故障 { + get { + return ResourceManager.GetString("烟感故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电池极性反接故障. + /// + internal static string 电池极性反接故障 { + get { + return ResourceManager.GetString("电池极性反接故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电表电度异常. + /// + internal static string 电表电度异常 { + get { + return ResourceManager.GetString("电表电度异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 电表通信异常. + /// + internal static string 电表通信异常 { + get { + return ResourceManager.GetString("电表通信异常", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线正极输出 接触器拒动/误动故障. + /// + internal static string 直流母线正极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线正极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线正级输出 熔断器故障. + /// + internal static string 直流母线正级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线正级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线负极输出 接触器拒动/误动故障. + /// + internal static string 直流母线负极输出_接触器拒动_误动故障 { + get { + return ResourceManager.GetString("直流母线负极输出 接触器拒动/误动故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线负级输出 熔断器故障. + /// + internal static string 直流母线负级输出_熔断器故障 { + get { + return ResourceManager.GetString("直流母线负级输出 熔断器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出欠压故障. + /// + internal static string 直流母线输出欠压故障 { + get { + return ResourceManager.GetString("直流母线输出欠压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出过压故障. + /// + internal static string 直流母线输出过压故障 { + get { + return ResourceManager.GetString("直流母线输出过压故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 直流母线输出过流故障. + /// + internal static string 直流母线输出过流故障 { + get { + return ResourceManager.GetString("直流母线输出过流故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测告警. + /// + internal static string 绝缘监测告警 { + get { + return ResourceManager.GetString("绝缘监测告警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 绝缘监测故障. + /// + internal static string 绝缘监测故障 { + get { + return ResourceManager.GetString("绝缘监测故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 负极直流输出接触器粘连故障. + /// + internal static string 负极直流输出接触器粘连故障 { + get { + return ResourceManager.GetString("负极直流输出接触器粘连故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 辅助电源故障. + /// + internal static string 辅助电源故障 { + get { + return ResourceManager.GetString("辅助电源故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 逆功率报警. + /// + internal static string 逆功率报警 { + get { + return ResourceManager.GetString("逆功率报警", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 避雷器故障. + /// + internal static string 避雷器故障 { + get { + return ResourceManager.GetString("避雷器故障", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 门禁故障. + /// + internal static string 门禁故障 { + get { + return ResourceManager.GetString("门禁故障", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx new file mode 100644 index 0000000..e984a74 --- /dev/null +++ b/WebStarter/Resources/Controllers.EquipAlarmRecordController.zh.resx @@ -0,0 +1,2014 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, + PublicKeyToken=b77a5c561934e089 + + + + + 火灾报警,请逃生 + + + 安全PLC没有运行 + + + 有急停触发 + + + 主控柜急停触发 + + + 换电通道急停触发 + + + 机器人急停触发 + + + 站控急停触发 + + + 控制室HMI急停触发 + + + 电池仓HMI急停触发 + + + 未选择HMI急停接入点 + + + 安全门被打开 + + + 主控柜IO模块通讯异常 + + + 吊具远程IO模块通讯异常 + + + 机器人远程IO模块通讯异常 + + + 行车进入移门干涉区报警,JOG速度最大20 + + + Y轴编码器飞车 + + + Y轴编码器通讯异常 + + + Y轴跟随误差报警 + + + Y轴编码器异常 + + + X轴编码器通讯异常 + + + 动作结束后停机 + + + 1#电池仓感应器1异常 + + + 2#电池仓感应器1异常 + + + 3#电池仓感应器1异常 + + + 4#电池仓感应器1异常 + + + 5#电池仓感应器1异常 + + + 6#电池仓感应器1异常 + + + 7#电池仓感应器1异常 + + + 8#电池仓感应器1异常 + + + 1#电池仓感应器2异常 + + + 2#电池仓感应器2异常 + + + 3#电池仓感应器2异常 + + + 4#电池仓感应器2异常 + + + 5#电池仓感应器2异常 + + + 6#电池仓感应器2异常 + + + 7#电池仓感应器2异常 + + + 8#电池仓感应器2异常 + + + 入口雷达感应异常 + + + 出口雷达感应异常 + + + 三级报警触发,请排查故障后继续 + + + 移门开门超时 + + + 移门关门超时 + + + 移门开门感应器没有都感应到 + + + 移门开门和关门感应器都感应到 + + + 整站预热未完成,禁止换电 + + + 整站加热未完成,禁止换电 + + + Y轴工艺对象报错,需要重启PLC + + + 检测到任务未执行完成 + + + 初始化检测吊具上有电池记忆 + + + X轴不在待机位 + + + Y轴不在待机位 + + + Z轴不在待机位 + + + 吊具推杆1不在待机位 + + + 吊具推杆2不在待机位 + + + 吊具感应器异常 + + + 吊具感应器1异常 + + + 吊具感应器2异常 + + + 吊具感应器3异常 + + + 吊具感应器4异常 + + + X轴位置点位设置错误 + + + Y轴位置点位设置错误 + + + Z轴位置点位设置错误 + + + 推杆不是缩回状态,吊具不能初始化 + + + 机器人当前位置不能启动移仓任务 + + + 机器人当前位置不能启动消防任务 + + + Y轴复判感应器异常 + + + 相机程序未运行 + + + 相机拍照超时 + + + 相机偏移值超限 + + + 相机拍照失败 + + + Y轴编码器清零失败 + + + 防松传感器感应到,Z轴下降受限 + + + 吊具到位感应使Z轴下降受限 + + + 系统配置未OK,请配置系统 + + + 站控通讯协议版本错误 + + + 钢丝绳1松弛报警 + + + 钢丝绳2松弛报警 + + + 钢丝绳3松弛报警 + + + 钢丝绳4松弛报警 + + + X轴应该在待机位正负限制之内 + + + 激光轴原点感应异常 + + + Y轴待机位复盘感应比对异常 + + + 1#电池仓状态记忆异常 + + + 2#电池仓状态记忆异常 + + + 3#电池仓状态记忆异常 + + + 4#电池仓状态记忆异常 + + + 5#电池仓状态记忆异常 + + + 6#电池仓状态记忆异常 + + + 7#电池仓状态记忆异常 + + + 8#电池仓状态记忆异常 + + + Z轴扭力超限,请检查车辆是否未解锁或车辆底托卡死 + + + 主控柜IO模块未配置报警 + + + 激光轴未配置报警 + + + X轴未配置报警 + + + Y轴未配置报警 + + + X轴编码器未配置报警 + + + 站型未配置报警 + + + 车辆未按照正常方向驶入或出口雷达被异常触发 + + + 钢丝绳断裂 + + + 主控室烟感报警 + + + 液位预警 + + + 液位报警 + + + 钢丝绳1达到寿命总次数,请及时更换备件 + + + 钢丝绳2达到寿命总次数,请及时更换备件 + + + 钢丝绳3达到寿命总次数,请及时更换备件 + + + 钢丝绳4达到寿命总次数,请及时更换备件 + + + 推杆1达到寿命总次数,请及时更换备件 + + + 推杆2达到寿命总次数,请及时更换备件 + + + 弹簧电线达到寿命总次数,请及时更换备件 + + + 1号电池仓电池未放好 + + + 2号电池仓电池未放好 + + + 3号电池仓电池未放好 + + + 4号电池仓电池未放好 + + + 5号电池仓电池未放好 + + + 6号电池仓电池未放好 + + + 7号电池仓电池未放好 + + + 8号电池仓电池未放好 + + + 1号电池仓被非法放入电池 + + + 2号电池仓被非法放入电池 + + + 3号电池仓被非法放入电池 + + + 4号电池仓被非法放入电池 + + + 5号电池仓被非法放入电池 + + + 6号电池仓被非法放入电池 + + + 7号电池仓被非法放入电池 + + + 8号电池仓被非法放入电池 + + + HMI心跳丢失 + + + PLC Modbus服务器指令异常 + + + 站控心跳异常 + + + 相机通讯异常 + + + 设备运行次数已达到设定保养次数预警 + + + 设备运行次数已达到设定保养次数报警 + + + 钢丝绳1达到寿命预警次数,请准备备件 + + + 钢丝绳2达到寿命预警次数,请准备备件 + + + 钢丝绳3达到寿命预警次数,请准备备件 + + + 钢丝绳4达到寿命预警次数,请准备备件 + + + 推杆1达到寿命预警次数,请准备备件 + + + 推杆2达到寿命预警次数,请准备备件 + + + 弹簧线达到寿命预警次数,请准备备件 + + + 钢丝绳1达到保养提示次数,请及时保养 + + + 钢丝绳2达到保养提示次数,请及时保养 + + + 钢丝绳3达到保养提示次数,请及时保养 + + + 钢丝绳4达到保养提示次数,请及时保养 + + + 推杆1达到保养提示次数,请及时保养 + + + 推杆2达到保养提示次数,请及时保养 + + + 弹簧线达到保养提示次数,请及时保养 + + + X轴未做轴扭力点检或扭力点检NG + + + Y轴未做轴扭力点检或扭力点检NG + + + Z轴未做轴扭力点检或扭力点检NG + + + 安全门屏蔽中 + + + + 空跑中 + + + 收到站控无效的初始化命令 + + + 收到站控有效的初始化命令 + + + 收到站控无效的启动命令 + + + 收到站控有效的启动命令 + + + 收到站控无效的复位命令 + + + 收到站控有效的复位命令 + + + 收到站控无效的暂停命令 + + + 收到站控有效的暂停命令 + + + 收到站控无效的程序复位命令 + + + 收到站控有效的程序复位命令 + + + 收到站控无效的强制换电完成命令 + + + 收到站控有效的强制换电完成命令 + + + 收到站控无效的切换手动模式命令 + + + 收到站控有效的切换手动模式命令 + + + 收到站控无效的切换自动模式命令 + + + 收到站控有效的切换自动模式命令 + + + 收到站控无效的切换远程模式命令 + + + 收到站控有效的切换远程模式命令 + + + 收到站控无效的切换本地模式命令 + + + 收到站控有效的切换本地模式命令 + + + 收到站控无效的换电命令 + + + 收到站控有效的换电命令 + + + 收到站控无效的入库命令 + + + 收到站控有效的入库命令 + + + 收到站控无效的出库命令 + + + 收到站控有效的出库命令 + + + 收到站控无效的调库命令 + + + 收到站控有效的调库命令 + + + 收到站控无效的消防命令 + + + 收到站控有效的消防命令 + + + 收到远程断箱变命令 + + + 收到远程断换电断路器命令 + + + 收到远程关闭所有灯 + + + 收到远程关闭换电通道照明 + + + 收到远程关闭控制室照明 + + + 收到远程开启排风启动命令 + + + 收到HMI无效的换电命令 + + + 收到HMI有效的换电命令 + + + 收到HMI无效的入库命令 + + + 收到HMI有效的入库命令 + + + 收到HMI无效的出库命令 + + + 收到HMI有效的出库命令 + + + 收到HMI无效的调库命令 + + + 收到HMI有效的调库命令 + + + 收到HMI无效的消防命令 + + + 收到HMI有效的消防命令 + + + 安全门未关好 + + + HMI急停已屏蔽 + + + Z轴停止中 + + + 请手动将吊具脱离电池 + + + 整站断电触发 + + + 站控停止中 + + + 站控启动中 + + + 站控急停中 + + + 站控报警复位中 + + + 请人员将电池吊起,并运行到拍照位置 + + + 人工吊好电池后,请按下入库准备OK + + + 收到HMI无效开站命令 + + + 收到HMI无效闭站命令 + + + 请人员将电池放在指定位置 + + + 请人工确认出仓ok,完成出仓 + + + 吊具弹簧线达到预警次数 + + + 吊具弹簧线达到预警次数 + + + X轴待机位位置设置错误 + + + X轴车辆引导取放位位置设置错误 + + + X轴拍照结束位位置设置错误 + + + X轴车辆取放电池位置设置错误 + + + X轴1号仓位数据设置错误 + + + X轴2号仓位数据设置错误 + + + X轴3号仓位数据设置错误 + + + X轴4号仓位数据设置错误 + + + X轴5号仓位数据设置错误 + + + X轴6号仓位数据设置错误 + + + X轴7号仓位数据设置错误 + + + X轴8号仓位数据设置错误 + + + Y轴待机位位置设置错误 + + + Y轴车辆引导取放位位置设置错误 + + + Y轴拍照结束位位置设置错误 + + + Y轴取车电池位位置设置错误 + + + Y轴1号仓取放电池位位置设置错误 + + + Y轴2号仓取放电池位位置设置错误 + + + Y轴3号仓取放电池位位置设置错误 + + + Y轴4号仓取放电池位位置设置错误 + + + Y轴5号仓取放电池位位置设置错误 + + + Y轴6号仓取放电池位位置设置错误 + + + Y轴7号仓取放电池位位置设置错误 + + + Y轴8号仓取放电池位位置设置错误 + + + Z轴待机位位置设置错误 + + + Z轴动态取车电池位位置设置错误 + + + Z轴车辆取电池位位置设置错误 + + + Z轴取放地面位置设置错误 + + + Z轴1号仓取放电池位位置设置错误 + + + Z轴2号仓取放电池位位置设置错误 + + + Z轴3号仓取放电池位位置设置错误 + + + Z轴4号仓取放电池位位置设置错误 + + + Z轴5号仓取放电池位位置设置错误 + + + Z轴6号仓取放电池位位置设置错误 + + + Z轴7号仓取放电池位位置设置错误 + + + Z轴8号仓取放电池位位置设置错误 + + + 车辆前后方向超出标定范围,请重新调整车辆 + + + 车辆左右方向超出标定范围,请重新调整车辆 + + + 车辆角度方向超出标定范围,请重新调整车辆 + + + 有站点掉线 + + + 有子模块异常 + + + X伺服驱动警告 + + + Y伺服驱动警告 + + + Z伺服驱动警告 + + + 激光轴伺服驱动警告 + + + 激光扫描超时 + + + 激光数据采集异常 + + + 激光宽度采集异常 + + + 车辆角度超限,请重新调整车辆 + + + 车辆左右位置超限,请重新调整车辆 + + + 车辆前后位置超限,请重新调整车辆 + + + 无效入仓命令:手动状态 + + + 无效入仓命令:不在出入库流程中 + + + 无效入仓命令:入库仓要没有电池记忆 + + + 无效入仓命令:入库仓感应器要都没感应到 + + + 无效入仓命令:吊具有料感应器要都感应到 + + + 无效入仓命令:X轴当前位置要在通道正负限位之间 + + + 无效入仓命令:Z轴要在待机位 + + + 无效入仓命令:输入的仓位号错误 + + + 无效出仓命令:手动状态 + + + 无效出仓命令:不在出入库流程中 + + + 无效出仓命令:出库仓要有电池记忆 + + + 无效出仓命令:出库仓感应器要都感应到 + + + 无效出仓命令:吊具有料感应器要都没感应到 + + + 无效出仓命令:吊具要没有电池记忆 + + + 无效出仓命令:输入的仓位号错误 + + + 无效出仓命令:机器人应该完全在电池仓内 + + + 无效换电命令:吊具要没有电池记忆 + + + 无效换电命令:吊具有料感应器要都感应不到 + + + 无效换电命令:放仓位要没有电池记忆 + + + 无效换电命令:放仓位感应要都感应不到 + + + 无效换电命令:当前不能有任务在执行 + + + 无效换电命令:要在本地模式 + + + 无效换电命令:取仓位要有电池记忆 + + + 无效换电命令:取仓位感应要都感应到 + + + 无效换电命令:取仓位要没有电池记忆 + + + 无效换电命令:取仓位感应要都感应不到 + + + 无效移仓命令:吊具要没有电池记忆 + + + 无效移仓命令:吊具有料感应器要都感应不到 + + + 无效移仓命令:取仓位要有电池记忆 + + + 无效移仓命令:取仓位感应要都感应到 + + + 无效移仓命令:放仓位要没有电池记忆 + + + 无效移仓命令:放仓位感应要都感应不到 + + + 无效移仓命令:当前不能有任务在执行 + + + 无效移仓命令:要在本地模式 + + + 无效消防移仓命令:消防搬运仓位要有电池记忆 + + + 无效消防移仓命令:吊具要没有电池记忆 + + + 无效消防移仓命令:吊具有料感应要都感应不到 + + + 无效消防移仓命令:入口雷达感应不到 + + + 无效消防移仓命令:出口雷达感应不到 + + + 无效消防移仓命令:当前不能有任务在执行 + + + 无效消防移仓命令:要在本地模式 + + + 预热条件不满足:X轴应该有使能 + + + 预热条件不满足:Y轴应该有使能 + + + 预热条件不满足:Z轴应该有使能 + + + 无效远程换电命令:吊具要没有电池记忆 + + + 无效远程换电命令:吊具有料感应器要都感应不到 + + + 无效远程换电命令:当前不能有任务在执行 + + + 无效远程换电命令:要在远程模式 + + + 无效远程换电命令:放仓位要没有电池记忆 + + + 无效远程换电命令:放仓位感应要都感应不到 + + + 无效远程换电命令:取仓位要有电池记忆 + + + 无效远程换电命令:取仓位感应要都感应到 + + + 无效远程换电命令:取仓位要没有电池记忆 + + + 无效远程换电命令:取仓位感应要都感应不到 + + + 无效远程换电命令:取仓位感应要都感应不到 + + + 无效远程换电命令:站控发送仓位号不对 + + + 无效远程移仓命令:吊具要没有电池记忆 + + + 无效远程移仓命令:吊具有料感应器要都感应不到 + + + 无效远程移仓命令:取仓位要有电池记忆 + + + 无效远程移仓命令:取仓位感应要都感应到 + + + 无效远程移仓命令:放仓位要没有电池记忆 + + + 无效远程移仓命令:放仓位感应要都感应不到 + + + 无效远程移仓命令:当前不能有任务在执行 + + + 无效远程移仓命令:要在远程模式 + + + 无效远程移仓命令:站控发送仓位号不对 + + + 无效远程消防移仓命令:消防搬运仓位要有电池记忆 + + + 无效远程消防移仓命令:吊具要没有电池记忆 + + + 无效远程消防移仓命令:吊具有料感应要都感应不到 + + + 无效远程消防移仓命令:入口雷达感应不到 + + + 无效远程消防移仓命令:出口雷达感应不到 + + + 无效远程消防移仓命令:当前不能有任务在执行 + + + 无效远程消防移仓命令:要在远程模式 + + + 无效远程消防移仓命令:站控发送仓位号不对 + + + 单点激光标定失败 + + + X伺服JOG+互锁报警 + + + X伺服JOG-互锁报警 + + + X伺服正限位报警 + + + X伺服负限位报警 + + + X伺服软限位报警 + + + X伺服通讯异常 + + + X伺服使能丢失 + + + X伺服原点丢失 + + + X轴机械卡住或刹车未打开或电路异常 + + + X伺服驱动异常;驱动器故障代码:%(WATCH1)d + + + X轴外置编码器异常 + + + X轴外置编码器飞车 + + + X轴外置编码器跟随误差报警 + + + X伺服应该在待机位 + + + X伺服应该在车辆引导取放位 + + + X伺服应该在车电池标准取放位 + + + X伺服应该在1号仓取放电池位 + + + X伺服应该在2号仓取放电池位 + + + X伺服应该在3号仓取放电池位 + + + X伺服应该在4号仓取放电池位 + + + X伺服应该在5号仓取放电池位 + + + X伺服应该在6号仓取放电池位 + + + X伺服应该在7号仓取放电池位 + + + X伺服应该在8号仓取放电池位 + + + Y伺服JOG+互锁报警 + + + Y伺服JOG-互锁报警 + + + Y伺服正限位报警 + + + Y伺服负限位报警 + + + Y伺服软限位报警 + + + Y伺服通讯异常 + + + Y伺服使能丢失 + + + Y伺服原点丢失 + + + Y轴机械卡住或刹车未打开或电路异常 + + + + Y轴错误(工艺对象);工艺轴报警代码:%(WATCH1)d工艺细分代码:%(WATCH2)d + + + Y轴外置编码器异常 + + + Y轴外置编码器飞车 + + + Y轴外置编码器跟随误差报警 + + + Y伺服应该在待机位 + + + Y伺服应该在车辆引导取放位 + + + Y伺服应该在车电池标准取放位 + + + Y伺服应该在1号仓取放电池位 + + + Y伺服应该在2号仓取放电池位 + + + Y伺服应该在3号仓取放电池位 + + + Y伺服应该在4号仓取放电池位 + + + Y伺服应该在5号仓取放电池位 + + + Y伺服应该在6号仓取放电池位 + + + Y伺服应该在7号仓取放电池位 + + + Y伺服应该在8号仓取放电池位 + + + Z伺服JOG+互锁报警 + + + Z伺服JOG-互锁报警 + + + Z伺服下限位报警 + + + Z伺服上限位报警 + + + Z伺服软限位报警 + + + Z伺服通讯异常 + + + Z伺服使能丢失 + + + Z伺服原点丢失 + + + Z轴机械卡住或刹车未打开或电路异常 + + + + Z伺服应该在待机位 + + + Z伺服应该在引导取放位 + + + Z伺服应该在车电池标准取放位 + + + Z伺服应该在地面取放电池位 + + + Z伺服应该在1号仓取放电池位 + + + Z伺服应该在2号仓取放电池位 + + + Z伺服应该在3号仓取放电池位 + + + Z伺服应该在4号仓取放电池位 + + + Z伺服应该在5号仓取放电池位 + + + Z伺服应该在6号仓取放电池位 + + + Z伺服应该在7号仓取放电池位 + + + Z伺服应该在8号仓取放电池位 + + + 激光伺服JOG+互锁报警 + + + 激光伺服JOG-互锁报警 + + + 激光伺服下限位报警 + + + 激光伺服上限位报警 + + + 激光伺服软限位报警 + + + 激光伺服通讯异常 + + + 激光伺服使能丢失 + + + 激光伺服原点丢失 + + + 激光轴机械卡住或刹车未打开或电路异常 + + + 激光伺服应该在待机位 + + + 激光伺服应该在扫描开始位 + + + 激光伺服应该在扫描结束位 + + + + + Y轴错误(工艺对象);工艺轴报警代码:%(WATCH1)d工艺细分代码:%(WATCH2)d + + + 激光伺服驱动异常;驱动器故障代码:%(WATCH1)d + + + 激光伺服工艺对象报错;工艺轴报警代码:%(WATCH1)d工艺细分代码:%(WATCH2)d + + + X轴去待机点条件:Z轴在待机位 + + + X轴去待机点条件:行车不完全在电池舱内时,吊具无电池 + + + X轴去车辆引导取放位条件:Z轴在待机位 + + + X轴去车辆电池取放位条件:Z轴应在待机位 + + + X轴去车辆电池取放位条件:行车不完全在电池舱内时,吊具无电池 + + + X轴去通道正位条件:Z轴在待机位 + + + X轴去通道负位条件:Z轴在待机位 + + + X轴去仓位1条件:Z轴在待机 + + + X轴去仓位1条件:行车完全在电池舱内 + + + X轴去仓位1条件:吊具有电池,1号电池架无电池记忆且无感应 + + + X轴去仓位1条件:吊具有电池,Y轴在1号电池架 + + + X轴去仓位2条件:Z轴在待机 + + + X轴去仓位2条件:行车完全在电池舱内 + + + X轴去仓位2条件:吊具有电池,2号电池架无电池记忆且无感应 + + + X轴去仓位2条件:吊具有电池,Y轴在2号电池架 + + + X轴去仓位3条件:Z轴在待机 + + + X轴去仓位3条件:行车完全在电池舱内 + + + X轴去仓位3条件:吊具有电池,3号电池架无电池记忆且无感应 + + + X轴去仓位3条件:吊具有电池,Y轴在3号电池架 + + + X轴去仓位4条件:Z轴在待机 + + + X轴去仓位4条件:行车完全在电池舱内 + + + X轴去仓位4条件:吊具有电池,4号电池架无电池记忆且无感应 + + + X轴去仓位4条件:吊具有电池,Y轴在4号电池架 + + + X轴去仓位5条件:Z轴在待机 + + + X轴去仓位5条件:行车完全在电池舱内 + + + X轴去仓位5条件:吊具有电池,5号电池架无电池记忆且无感应 + + + X轴去仓位5条件:吊具有电池,Y轴在5号电池架 + + + X轴去仓位6条件:Z轴在待机 + + + X轴去仓位6条件:行车完全在电池舱内 + + + X轴去仓位6条件:吊具有电池,6号电池架无电池记忆且无感应 + + + X轴去仓位6条件:吊具有电池,Y轴在6号电池架 + + + X轴去仓位7条件:Z轴在待机 + + + X轴去仓位7条件:行车完全在电池舱内 + + + X轴去仓位7条件:吊具有电池,7号电池架无电池记忆且无感应 + + + X轴去仓位7条件:吊具有电池,Y轴在7号电池架 + + + X轴去仓位8条件:Z轴在待机 + + + X轴去仓位8条件:行车完全在电池舱内 + + + X轴去仓位8条件:吊具有电池,8号电池架无电池记忆且无感应 + + + X轴去仓位8条件:吊具有电池,Y轴在8号电池架 + + + Y轴去待机点条件:Z轴在待机 + + + Y轴去待机点条件:桁车完全在舱内,X轴在待机位或X轴通道位置负或X轴通道位置正或吊具无电池 + + + Y轴去待机点条件:桁车不完全在舱内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去待机点条件:移门打开 + + + Y轴去待机点条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去车辆引导取放位条件:Z轴在待机 + + + Y轴去车辆引导取放位条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去车辆引导取放位条件:移门打开 + + + Y轴去车辆引导取放位条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去车辆取车电池位条件:Z轴在待机位 + + + Y轴去车辆取车电池位条件:X轴在待机位或X轴通道位置负或X轴通道位置正且吊具无电池 + + + Y轴去车辆取车电池位条件:移门打开 + + + Y轴去车辆取车电池位条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位1条件:Z轴在待机 + + + Y轴去仓位1条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位1条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位1条件:移门打开 + + + Y轴去仓位1条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位2条件:Z轴在待机 + + + Y轴去仓位2条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位2条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位2条件:移门打开 + + + Y轴去仓位2条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位3条件:Z轴在待机 + + + Y轴去仓位3条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位3条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位3条件:移门打开 + + + Y轴去仓位3条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位4条件:Z轴在待机 + + + Y轴去仓位4条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位4条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位4条件:移门打开 + + + Y轴去仓位4条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位5条件:Z轴在待机 + + + Y轴去仓位5条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位5条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位5条件:移门打开 + + + Y轴去仓位5条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位6条件:Z轴在待机 + + + Y轴去仓位6条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位6条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位6条件:移门打开 + + + Y轴去仓位6条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位7条件:Z轴在待机 + + + Y轴去仓位7条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位7条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位7条件:移门打开 + + + Y轴去仓位7条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Y轴去仓位8条件:Z轴在待机 + + + Y轴去仓位8条件:完全在电池仓内,X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位8条件:X轴在待机位或X轴通道位置负或X轴通道位置正 + + + Y轴去仓位8条件:移门打开 + + + Y轴去仓位8条件:吊具没有电池 或 吊具有电池且激光轴在待机位或开始位或结束位 + + + Z轴去待机点条件:推杆完全缩回或伸出 + + + Z轴去待机点条件:当前电池不在充电中 + + + Z轴去动态取车电池位条件:XY轴同时在引导取放位 或 XY轴同时车辆取车电池位 + + + Z轴去动态取车电池位条件:推杆完全缩回或伸出 + + + Z轴去车辆取放位条件:XY轴同时在引导取放位 或 XY轴同时车辆取车电池位 + + + Z轴去车辆取放位条件:推杆完全缩回或伸出 + + + Z轴去地面取放位条件:XY轴同时在引导取放位 或 XY轴同时车辆取车电池位 + + + Z轴去地面取放位条件:推杆完全缩回或伸出 + + + Z轴去仓位1条件:X轴都在1电池架位置 + + + Z轴去仓位1条件:推杆完全缩回或伸出 + + + Z轴去仓位1条件:Y轴都在1电池架位置 + + + Z轴去仓位2条件:X轴都在2电池架位置 + + + Z轴去仓位2条件:推杆完全缩回或伸出 + + + Z轴去仓位2条件:Y轴都在2电池架位置 + + + Z轴去仓位3条件:X轴都在3电池架位置 + + + Z轴去仓位3条件:推杆完全缩回或伸出 + + + Z轴去仓位3条件:Y轴都在3电池架位置 + + + Z轴去仓位4条件:X轴都在4电池架位置 + + + Z轴去仓位4条件:推杆完全缩回或伸出 + + + Z轴去仓位4条件:Y轴都在4电池架位置 + + + Z轴去仓位5条件:X轴都在5电池架位置 + + + Z轴去仓位5条件:推杆完全缩回或伸出 + + + Z轴去仓位5条件:Y轴都在5电池架位置 + + + Z轴去仓位6条件:X轴都在6电池架位置 + + + Z轴去仓位6条件:推杆完全缩回或伸出 + + + Z轴去仓位6条件:Y轴都在6电池架位置 + + + Z轴去仓位7条件:X轴都在7电池架位置 + + + Z轴去仓位7条件:推杆完全缩回或伸出 + + + Z轴去仓位7条件:Y轴都在7电池架位置 + + + Z轴去仓位8条件:X轴都在8电池架位置 + + + Z轴去仓位8条件:推杆完全缩回或伸出 + + + Z轴去仓位8条件:Y轴都在8电池架位置 + + + X轴JOG-条件-:Z轴在待机位 或者 JOG速度小于20 + + + X轴JOG-条件-:推杆缩回 或者 JOG速度小于50 + + + X轴JOG-条件-:桁车在移门区 或者 JOG速度小于20 + + + X轴JOG-条件-:移门打开 或者 JOG速度小于50 + + + X轴JOG+条件:Z轴在待机位 或者 JOG速度小于20 + + + X轴JOG+条件:推杆缩回 或 JOG速度小于50 + + + X轴JOG+条件:桁车在移门区 或者 JOG速度小于20 + + + X轴JOG+条件:移门打开 或者 JOG速度小于50 + + + Y轴JOG-条件:Z轴在待机位 或者 JOG速度小于20 + + + Y轴JOG-条件:推杆缩回 或者 JOG速度小于50 + + + Y轴JOG-条件:桁车在移门区时,X轴在安全通道内 或者 JOG速度小于20 + + + Y轴JOG-条件:移门打开 或者 JOG速度小于50 + + + Y轴JOG+条件:Z轴在待机位 或者 JOG速度小于20 + + + Y轴JOG+条件:推杆缩回 或者 JOG速度小于50 + + + Y轴JOG+条件:桁车在移门区时,X轴在安全通道内 或者 JOG速度小于20 + + + Y轴JOG+条件:移门打开 或者 JOG速度小于50 + + + Z轴提升条件:电池包充电中,禁止提升电池 + + + Z轴下降条件:吊具没有电池时,吊具有料感应要感应不到 + + + Z轴下降条件:吊具防松传感器没有感应到 + + + 激光轴去待机点条件:吊具无电池或吊具电池不在移门中间 + + + 激光轴去开始位条件:吊具无电池或吊具电池不在移门中间 + + + 激光轴去结束位条件:吊具无电池或吊具电池不在移门中间 + + + 吊具推杆1夹爪推杆伸出超时报警 + + + 吊具推杆2夹爪推杆伸出超时报警 + + + 吊具推杆1夹爪推杆缩回超时报警 + + + 吊具推杆2夹爪推杆缩回超时报警 + + + 吊具推杆1夹爪推杆应在伸出位置 + + + 吊具推杆2夹爪推杆应在伸出位置 + + + 吊具推杆1夹爪推杆应在缩回位置 + + + 吊具推杆2夹爪推杆应在缩回位置 + + + 吊具推杆1夹爪推杆伸出受限 + + + 吊具推杆2夹爪推杆伸出受限 + + + 吊具推杆1夹爪推杆缩回受限 + + + 吊具推杆2夹爪推杆缩回受限 + + + 吊具推杆1夹爪推杆伸出缩回同时检测到 + + + 吊具推杆2夹爪推杆伸出缩回同时检测到 + + + 吊具推杆夹爪推杆缩回受限 + + + 吊具推杆夹爪推杆缩回受限:2.钢丝绳应该不受电池重力 + + + 吊具推杆夹爪推杆缩回受限:3.吊具要没有电池记忆 + + + 吊具推杆夹爪推杆缩回受限:4.Z轴要不在运动中 + + + 急停按钮动作故障 + + + 烟感故障 + + + 充电桩交流输入断路器故障(系统供电断路器) + + + 直流母线正极输出 接触器拒动/误动故障 + + + 直流母线负极输出 接触器拒动/误动故障 + + + 直流母线正级输出 熔断器故障 + + + 直流母线负级输出 熔断器故障 + + + 充电接口电磁锁故障 + + + 充电桩风扇故障 + + + 避雷器故障 + + + 绝缘监测告警 + + + 绝缘监测故障 + + + 电池极性反接故障 + + + 充电中车辆控制导引故障 + + + 充电桩过温故障 + + + 充电接口过温故障 + + + 充电枪未归位告警 + + + BMS通信故障 + + + 充电桩输入电压过压故障 + + + 充电桩输入电压欠压故障 + + + 直流母线输出过压故障 + + + 直流母线输出欠压故障 + + + 直流母线输出过流故障 + + + 门禁故障 + + + 正极直流输出接触器粘连故障 + + + 负极直流输出接触器粘连故障 + + + 泄放回路故障 + + + 充电桩交流输入接触器据动/误动故障 + + + 充电桩交流输入接触器粘连故障 + + + 辅助电源故障 + + + 模块输出反接 + + + 充电枪过温告警 + + + 充电桩过温告警 + + + 电表通信异常 + + + 电表电度异常 + + + 水浸告警 + + + 逆功率报警 + + + 单体蓄电池电压越下限 + + + 单体蓄电池电压越上限 + + + 输入电压过高;主机输入电压过高 + + + 输入电压过低;主机输入电压过低 + + + MCU 电压过高;主机 MCU 电压过高 + + + MCU 电压过低;主机 MCU 电压过低 + + + 备电欠压 + + + 运行异常(系统);主机程序运行异常 + + + 存储读取异常(系统);主机的存储系统无法正常读取和写入 + + + 硬件故障;设备的 IC 器件(非传感器) 存在故障 + + + 传感器故障;设备的传感器存在故障 + + + 离线故障;主机和设备通信丢失 + + + 灭火器反馈故障;未启动灭火器时, 检测到灭火器的反馈 + + + 灭火器启动失败;启动灭火器时,未检测到启动电流和启动电压 + + + 灭火器启动无反馈;启动灭火器后,未检测到灭火器反馈 + + + 通信故障;探测器掉线 + + + 主电故障;220V 供电异常 + + + 备电故障;铅酸电池供电异常 + + + 回路故障;报警二总线回路短路 + + + 部件故障;中继模块故障 + + + 输入故障;模块输入线故障 + + + 输出故障;模块输出线故障 + + + 迷宫清洗故障;探测器迷宫需要清洗 + + + 输出 24V 故障;回路板 24V 输出故障 + + + 声光短路故障;声光设备短路故障 + + + 声光开路故障;声光设备断路故障 + + + 系统故障;系统故障检测测试 + + + 回路板通信故障;主板和回路板通信异常 + + + 灯键板通信故障;主板和灯键板通信异常 + + + 控制盘通信故障;主板和扩展板通信异常 + + + 气体灭火回路故障;气灭二总线回路短路 + + + 光源故障;气体释放警报器故障 + + + 压力开关开路故障;回路板 YK+YK-开路故障 + + + 电磁阀短路故障;回路板 DC+DC-短路故障 + + + 电磁阀开路故障;回路板 DC+DC-开路故障 + + + 分控阀故障 + + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.SwapMonitorController.en.Designer.cs b/WebStarter/Resources/Controllers.SwapMonitorController.en.Designer.cs new file mode 100644 index 0000000..41f3d16 --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapMonitorController.en.Designer.cs @@ -0,0 +1,197 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_SwapMonitorController_en { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_SwapMonitorController_en() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.SwapMonitorController.en", typeof(Controllers_SwapMonitorController_en).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Cloud Platform Vehicle Authentication. + /// + internal static string CloudPlatformAuth { + get { + return ResourceManager.GetString("CloudPlatformAuth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Idle. + /// + internal static string Idle { + get { + return ResourceManager.GetString("Idle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Installation Completed. + /// + internal static string InstallationCompleted { + get { + return ResourceManager.GetString("InstallationCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Battery Installed. + /// + internal static string NewBatteryInstalled { + get { + return ResourceManager.GetString("NewBatteryInstalled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Battery Moved. + /// + internal static string NewBatteryMoved { + get { + return ResourceManager.GetString("NewBatteryMoved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Old Battery Removed. + /// + internal static string OldBatteryRemoved { + get { + return ResourceManager.GetString("OldBatteryRemoved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Old Battery Stored. + /// + internal static string OldBatteryStored { + get { + return ResourceManager.GetString("OldBatteryStored", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RFID Scan Completed. + /// + internal static string RFIDScanCompleted { + get { + return ResourceManager.GetString("RFIDScanCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Swapping. + /// + internal static string StartSwapping { + get { + return ResourceManager.GetString("StartSwapping", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Swapping Completed (Vehicle Departed). + /// + internal static string SwappingCompleted { + get { + return ResourceManager.GetString("SwappingCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Swapping Failed (Vehicle Departed). + /// + internal static string SwappingFailed { + get { + return ResourceManager.GetString("SwappingFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Arrived (Entrance Radar Detected Vehicle Entering). + /// + internal static string VehicleArrived { + get { + return ResourceManager.GetString("VehicleArrived", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle In Position. + /// + internal static string VehicleInPosition { + get { + return ResourceManager.GetString("VehicleInPosition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Locked. + /// + internal static string VehicleLocked { + get { + return ResourceManager.GetString("VehicleLocked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Unlocked. + /// + internal static string VehicleUnlocked { + get { + return ResourceManager.GetString("VehicleUnlocked", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.SwapMonitorController.en.resx b/WebStarter/Resources/Controllers.SwapMonitorController.en.resx new file mode 100644 index 0000000..7a86621 --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapMonitorController.en.resx @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + Idle + + + Vehicle Arrived (Entrance Radar Detected Vehicle Entering) + + + RFID Scan Completed + + + Cloud Platform Vehicle Authentication + + + Vehicle In Position + + + Vehicle Unlocked + + + Start Swapping + + + Old Battery Removed + + + Old Battery Stored + + + New Battery Moved + + + New Battery Installed + + + Installation Completed + + + Vehicle Locked + + + Swapping Completed (Vehicle Departed) + + + Swapping Failed (Vehicle Departed) + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.SwapMonitorController.zh.Designer.cs b/WebStarter/Resources/Controllers.SwapMonitorController.zh.Designer.cs new file mode 100644 index 0000000..e970d2b --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapMonitorController.zh.Designer.cs @@ -0,0 +1,197 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_SwapMonitorController_zh { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_SwapMonitorController_zh() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.SwapMonitorController.zh", typeof(Controllers_SwapMonitorController_zh).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to 云平台车辆认证. + /// + internal static string CloudPlatformAuth { + get { + return ResourceManager.GetString("CloudPlatformAuth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 空闲. + /// + internal static string Idle { + get { + return ResourceManager.GetString("Idle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安装完成. + /// + internal static string InstallationCompleted { + get { + return ResourceManager.GetString("InstallationCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安装新电池完成. + /// + internal static string NewBatteryInstalled { + get { + return ResourceManager.GetString("NewBatteryInstalled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 搬运新电池完成. + /// + internal static string NewBatteryMoved { + get { + return ResourceManager.GetString("NewBatteryMoved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 拆旧电池完成. + /// + internal static string OldBatteryRemoved { + get { + return ResourceManager.GetString("OldBatteryRemoved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 入库旧电池完成. + /// + internal static string OldBatteryStored { + get { + return ResourceManager.GetString("OldBatteryStored", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to rfid扫描完成. + /// + internal static string RFIDScanCompleted { + get { + return ResourceManager.GetString("RFIDScanCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 开始换电. + /// + internal static string StartSwapping { + get { + return ResourceManager.GetString("StartSwapping", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 换电完成(车辆驶离). + /// + internal static string SwappingCompleted { + get { + return ResourceManager.GetString("SwappingCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 换电失败(车辆驶离). + /// + internal static string SwappingFailed { + get { + return ResourceManager.GetString("SwappingFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆到站(入口雷达检测到车辆驶入). + /// + internal static string VehicleArrived { + get { + return ResourceManager.GetString("VehicleArrived", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆到位. + /// + internal static string VehicleInPosition { + get { + return ResourceManager.GetString("VehicleInPosition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆上锁. + /// + internal static string VehicleLocked { + get { + return ResourceManager.GetString("VehicleLocked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆解锁. + /// + internal static string VehicleUnlocked { + get { + return ResourceManager.GetString("VehicleUnlocked", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.SwapMonitorController.zh.resx b/WebStarter/Resources/Controllers.SwapMonitorController.zh.resx new file mode 100644 index 0000000..9924726 --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapMonitorController.zh.resx @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 空闲 + + + 车辆到站(入口雷达检测到车辆驶入) + + + rfid扫描完成 + + + 云平台车辆认证 + + + 车辆到位 + + + 车辆解锁 + + + 开始换电 + + + 拆旧电池完成 + + + 入库旧电池完成 + + + 搬运新电池完成 + + + 安装新电池完成 + + + 安装完成 + + + 车辆上锁 + + + 换电完成(车辆驶离) + + + 换电失败(车辆驶离) + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.SwapOrderStepController.en.Designer.cs b/WebStarter/Resources/Controllers.SwapOrderStepController.en.Designer.cs new file mode 100644 index 0000000..498f94c --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapOrderStepController.en.Designer.cs @@ -0,0 +1,179 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_SwapOrderStepController_en { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_SwapOrderStepController_en() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.SwapOrderStepController.en", typeof(Controllers_SwapOrderStepController_en).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to RFID Scan Completed. + /// + internal static string rfid扫描完成 { + get { + return ResourceManager.GetString("rfid扫描完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cloud Platform Vehicle Authentication. + /// + internal static string 云平台车辆认证 { + get { + return ResourceManager.GetString("云平台车辆认证", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Old Battery Stored. + /// + internal static string 入库旧电池完成 { + get { + return ResourceManager.GetString("入库旧电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Installation Completed. + /// + internal static string 安装完成 { + get { + return ResourceManager.GetString("安装完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Battery Installed. + /// + internal static string 安装新电池完成 { + get { + return ResourceManager.GetString("安装新电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Swapping. + /// + internal static string 开始换电 { + get { + return ResourceManager.GetString("开始换电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Old Battery Removed. + /// + internal static string 拆旧电池完成 { + get { + return ResourceManager.GetString("拆旧电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Battery Moved. + /// + internal static string 搬运新电池完成 { + get { + return ResourceManager.GetString("搬运新电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Idle. + /// + internal static string 空闲 { + get { + return ResourceManager.GetString("空闲", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Locked. + /// + internal static string 车辆上锁 { + get { + return ResourceManager.GetString("车辆上锁", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle In Position. + /// + internal static string 车辆到位 { + get { + return ResourceManager.GetString("车辆到位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Arrived (Entrance Radar Detected Vehicle Entering). + /// + internal static string 车辆到站_入口雷达检测到车辆驶入_ { + get { + return ResourceManager.GetString("车辆到站(入口雷达检测到车辆驶入)", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vehicle Unlocked. + /// + internal static string 车辆解锁 { + get { + return ResourceManager.GetString("车辆解锁", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.SwapOrderStepController.en.resx b/WebStarter/Resources/Controllers.SwapOrderStepController.en.resx new file mode 100644 index 0000000..0f4c23d --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapOrderStepController.en.resx @@ -0,0 +1,67 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + Idle + + + Vehicle Arrived (Entrance Radar Detected Vehicle Entering) + + + RFID Scan Completed + + + Cloud Platform Vehicle Authentication + + + Vehicle In Position + + + Vehicle Unlocked + + + Start Swapping + + + Old Battery Removed + + + Old Battery Stored + + + New Battery Moved + + + New Battery Installed + + + Installation Completed + + + Vehicle Locked + + + Swapping Completed (Vehicle Departed) + + + Swapping Failed (Vehicle Departed) + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.SwapOrderStepController.zh.Designer.cs b/WebStarter/Resources/Controllers.SwapOrderStepController.zh.Designer.cs new file mode 100644 index 0000000..cf36666 --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapOrderStepController.zh.Designer.cs @@ -0,0 +1,179 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_SwapOrderStepController_zh { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_SwapOrderStepController_zh() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.SwapOrderStepController.zh", typeof(Controllers_SwapOrderStepController_zh).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to rfid扫描完成. + /// + internal static string rfid扫描完成 { + get { + return ResourceManager.GetString("rfid扫描完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 云平台车辆认证. + /// + internal static string 云平台车辆认证 { + get { + return ResourceManager.GetString("云平台车辆认证", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 入库旧电池完成. + /// + internal static string 入库旧电池完成 { + get { + return ResourceManager.GetString("入库旧电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安装完成. + /// + internal static string 安装完成 { + get { + return ResourceManager.GetString("安装完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 安装新电池完成. + /// + internal static string 安装新电池完成 { + get { + return ResourceManager.GetString("安装新电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 开始换电. + /// + internal static string 开始换电 { + get { + return ResourceManager.GetString("开始换电", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 拆旧电池完成. + /// + internal static string 拆旧电池完成 { + get { + return ResourceManager.GetString("拆旧电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 搬运新电池完成. + /// + internal static string 搬运新电池完成 { + get { + return ResourceManager.GetString("搬运新电池完成", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 空闲. + /// + internal static string 空闲 { + get { + return ResourceManager.GetString("空闲", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆上锁. + /// + internal static string 车辆上锁 { + get { + return ResourceManager.GetString("车辆上锁", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆到位. + /// + internal static string 车辆到位 { + get { + return ResourceManager.GetString("车辆到位", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆到站(入口雷达检测到车辆驶入). + /// + internal static string 车辆到站_入口雷达检测到车辆驶入_ { + get { + return ResourceManager.GetString("车辆到站(入口雷达检测到车辆驶入)", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 车辆解锁. + /// + internal static string 车辆解锁 { + get { + return ResourceManager.GetString("车辆解锁", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.SwapOrderStepController.zh.resx b/WebStarter/Resources/Controllers.SwapOrderStepController.zh.resx new file mode 100644 index 0000000..65d63b6 --- /dev/null +++ b/WebStarter/Resources/Controllers.SwapOrderStepController.zh.resx @@ -0,0 +1,67 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 空闲 + + + 车辆到站(入口雷达检测到车辆驶入) + + + rfid扫描完成 + + + 云平台车辆认证 + + + 车辆到位 + + + 车辆解锁 + + + 开始换电 + + + 拆旧电池完成 + + + 入库旧电池完成 + + + 搬运新电池完成 + + + 安装新电池完成 + + + 安装完成 + + + 车辆上锁 + + + 换电完成(车辆驶离) + + + 换电失败(车辆驶离) + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.System.SysConfigController.en.Designer.cs b/WebStarter/Resources/Controllers.System.SysConfigController.en.Designer.cs new file mode 100644 index 0000000..9ba5b97 --- /dev/null +++ b/WebStarter/Resources/Controllers.System.SysConfigController.en.Designer.cs @@ -0,0 +1,116 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_System_SysConfigController_en { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_System_SysConfigController_en() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.System.SysConfigController.en", typeof(Controllers_System_SysConfigController_en).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Indonesia. + /// + internal static string AreaName { + get { + return ResourceManager.GetString("AreaName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Administrator. + /// + internal static string Principal { + get { + return ResourceManager.GetString("Principal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indonesia. + /// + internal static string StationCity { + get { + return ResourceManager.GetString("StationCity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Can line power station operating system. + /// + internal static string StationName { + get { + return ResourceManager.GetString("StationName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Indonesia. + /// + internal static string StationProvince { + get { + return ResourceManager.GetString("StationProvince", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type A. + /// + internal static string StationType { + get { + return ResourceManager.GetString("StationType", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.System.SysConfigController.en.resx b/WebStarter/Resources/Controllers.System.SysConfigController.en.resx new file mode 100644 index 0000000..0cb1bf3 --- /dev/null +++ b/WebStarter/Resources/Controllers.System.SysConfigController.en.resx @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Indonesia + + + Indonesia + + + Can line power station operating system + + + Indonesia + + + Type A + + + Administrator + + \ No newline at end of file diff --git a/WebStarter/Resources/Controllers.System.SysConfigController.zh.Designer.cs b/WebStarter/Resources/Controllers.System.SysConfigController.zh.Designer.cs new file mode 100644 index 0000000..b627b8b --- /dev/null +++ b/WebStarter/Resources/Controllers.System.SysConfigController.zh.Designer.cs @@ -0,0 +1,116 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WebStarter.Resources { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // 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", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Controllers_System_SysConfigController_zh { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Controllers_System_SysConfigController_zh() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebStarter.Resources.Controllers.System.SysConfigController.zh", typeof(Controllers_System_SysConfigController_zh).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to 印度尼西亚. + /// + internal static string AreaName { + get { + return ResourceManager.GetString("AreaName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 管理员. + /// + internal static string Principal { + get { + return ResourceManager.GetString("Principal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 印度尼西亚. + /// + internal static string StationCity { + get { + return ResourceManager.GetString("StationCity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 能翊行电站操作系统. + /// + internal static string StationName { + get { + return ResourceManager.GetString("StationName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 印度尼西亚. + /// + internal static string StationProvince { + get { + return ResourceManager.GetString("StationProvince", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A类型. + /// + internal static string StationType { + get { + return ResourceManager.GetString("StationType", resourceCulture); + } + } + } +} diff --git a/WebStarter/Resources/Controllers.System.SysConfigController.zh.resx b/WebStarter/Resources/Controllers.System.SysConfigController.zh.resx new file mode 100644 index 0000000..7c274b7 --- /dev/null +++ b/WebStarter/Resources/Controllers.System.SysConfigController.zh.resx @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + 印度尼西亚 + + + 印度尼西亚 + + + 能翊行电站操作系统 + + + 印度尼西亚 + + + A类型 + + + 管理员 + + \ No newline at end of file diff --git a/WebStarter/WebStarter.csproj b/WebStarter/WebStarter.csproj index 8d5c4fb..b4ebf9f 100644 --- a/WebStarter/WebStarter.csproj +++ b/WebStarter/WebStarter.csproj @@ -60,4 +60,75 @@ + + + + ResXFileCodeGenerator + Controllers.SysConfigController.en.Designer.cs + + + ResXFileCodeGenerator + Controllers.SysConfigController.zh.Designer.cs + + + ResXFileCodeGenerator + Controllers.SwapOrderStepController.en.Designer.cs + + + ResXFileCodeGenerator + Controllers.SwapOrderStepController.zh.Designer.cs + + + ResXFileCodeGenerator + Controllers.EquipAlarmRecordController.en.Designer.cs + + + ResXFileCodeGenerator + Controllers.EquipAlarmRecordController.zh.Designer.cs + + + + + + True + True + Controllers.SwapMonitorController.en.resx + + + True + True + Controllers.SwapMonitorController.zh.resx + + + True + True + Controllers.System.SysConfigController.en.resx + + + True + True + Controllers.System.SysConfigController.zh.resx + + + True + True + Controllers.SwapOrderStepController.en.resx + + + True + True + Controllers.SwapOrderStepController.zh.resx + + + True + True + Controllers.EquipAlarmRecordController.en.resx + + + True + True + Controllers.EquipAlarmRecordController.zh.resx + + +