Commit 3d5d7ae7 张东亮

翻译

1 个父辈 d45702e0
......@@ -148,7 +148,7 @@ namespace DeviceLibrary
LogUtil.info(JsonHelper.SerializeObject(operation));
if (RobotManage.InoutDebugMode)
return true;
Operation resultOperation = HttpHelper.Post(GetPostApi(), operation, 5000);
Operation resultOperation = HttpHelper.Post(GetPostApi(), operation, 5000,true);
if (resultOperation == null)
{
......@@ -164,12 +164,12 @@ namespace DeviceLibrary
LogUtil.info($"SendStoreState success,posid:{posid}, storeStatus:{storeStatus}");
ResultProcess(resultOperation);
//if (storeStatus == StoreStatus.OutStoreEnd ||
// storeStatus == StoreStatus.OutStoreBoxEnd ||
// storeStatus == StoreStatus.InStoreEnd)
//{
// this.storeStatus = StoreStatus.StoreOnline;
//}
if (storeStatus == StoreStatus.OutStoreEnd ||
storeStatus == StoreStatus.OutStoreBoxEnd ||
storeStatus == StoreStatus.InStoreEnd)
{
this.storeStatus = StoreStatus.StoreOnline;
}
}
return true;
}
......@@ -290,6 +290,7 @@ namespace DeviceLibrary
}
int getthtime = 0;
int laststatus = 0;
public static string ServerCommStr = "";
public void SendLineStatus()
{
if (RobotManage.InoutDebugMode)
......@@ -329,6 +330,7 @@ namespace DeviceLibrary
{
LogUtil.info(StoreName + "TimerProcess[" + span.TotalMilliseconds + "]");
}
ServerCommStr = $"Send:{JsonHelper.SerializeObject(lineOperation)}\r\n Recv:{JsonHelper.SerializeObject(resultOperation)}";
}
}
public int queueTaskCount = -1;
......
......@@ -8,9 +8,10 @@ using System.Threading.Tasks;
namespace DeviceLibrary
{
partial class ServerCommunication
public partial class ServerCommunication
{
Dictionary<string, string> AgvStatus() {
Dictionary<string, string> AgvStatus()
{
Dictionary<string, string> status = new Dictionary<string, string>();
status["X16"] = IOManager.GetDIValue("", 0, 16).Equals(IO_VALUE.HIGH) ? "1" : "0";
status["X27"] = IOManager.GetDIValue("", 0, 27).Equals(IO_VALUE.HIGH) ? "1" : "0";
......@@ -27,7 +28,7 @@ namespace DeviceLibrary
{
bool v;
//紧急料口 1开门 0关门
if (YDataCheck(dataMap, "Y10", out v)|| YDataCheck(dataMap, "Y11", out v))
if (YDataCheck(dataMap, "Y10", out v) || YDataCheck(dataMap, "Y11", out v))
{
if (v)
RobotManage.mainMachine.SingleDoor.ToHigh(null);
......@@ -35,7 +36,7 @@ namespace DeviceLibrary
RobotManage.mainMachine.SingleDoor.ToLow(null);
}
//折叠门 1开门 0关门
if (YDataCheck(dataMap, "Y15", out v)|| YDataCheck(dataMap, "Y14", out v))
if (YDataCheck(dataMap, "Y15", out v) || YDataCheck(dataMap, "Y14", out v))
{
if (v)
RobotManage.mainMachine.StringDoorOpen(null);
......@@ -60,7 +61,8 @@ namespace DeviceLibrary
}
}
Dictionary<string, int> LastSingnalSeq = new Dictionary<string, int>();
bool YDataCheck(Dictionary<string, string> dataMap, string key, out bool value) {
bool YDataCheck(Dictionary<string, string> dataMap, string key, out bool value)
{
value = false;
if (!dataMap.TryGetValue(key, out string v))
return false;
......@@ -82,7 +84,7 @@ namespace DeviceLibrary
v = v.Trim().ToLower();
LogUtil.info($"YDataCheck:{key},value:{v}");
if (v == "open")
{
{
value = true;
return true;
}
......
......@@ -39,6 +39,7 @@ namespace TheMachine
this.tp = new System.Windows.Forms.TableLayoutPanel();
this.cb_usefixpos = new System.Windows.Forms.CheckBox();
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.uC_SetUserPassword1 = new TheMachine.UC_SetUserPassword();
this.tp.SuspendLayout();
this.SuspendLayout();
......@@ -47,10 +48,10 @@ namespace TheMachine
//
this.chbAutoRun.AutoSize = true;
this.tp.SetColumnSpan(this.chbAutoRun, 2);
this.chbAutoRun.Location = new System.Drawing.Point(10, 214);
this.chbAutoRun.Location = new System.Drawing.Point(10, 175);
this.chbAutoRun.Margin = new System.Windows.Forms.Padding(10);
this.chbAutoRun.Name = "chbAutoRun";
this.chbAutoRun.Size = new System.Drawing.Size(174, 32);
this.chbAutoRun.Size = new System.Drawing.Size(104, 19);
this.chbAutoRun.TabIndex = 1;
this.chbAutoRun.Text = "开机自启动";
this.chbAutoRun.UseVisualStyleBackColor = true;
......@@ -59,10 +60,10 @@ namespace TheMachine
//
this.cb_tempsensorport.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_tempsensorport.FormattingEnabled = true;
this.cb_tempsensorport.Location = new System.Drawing.Point(276, 6);
this.cb_tempsensorport.Location = new System.Drawing.Point(161, 6);
this.cb_tempsensorport.Margin = new System.Windows.Forms.Padding(6);
this.cb_tempsensorport.Name = "cb_tempsensorport";
this.cb_tempsensorport.Size = new System.Drawing.Size(121, 35);
this.cb_tempsensorport.Size = new System.Drawing.Size(121, 23);
this.cb_tempsensorport.TabIndex = 2;
this.cb_tempsensorport.Tag = "not";
//
......@@ -73,7 +74,7 @@ namespace TheMachine
this.label_tempsensor.Location = new System.Drawing.Point(10, 10);
this.label_tempsensor.Margin = new System.Windows.Forms.Padding(10);
this.label_tempsensor.Name = "label_tempsensor";
this.label_tempsensor.Size = new System.Drawing.Size(250, 28);
this.label_tempsensor.Size = new System.Drawing.Size(135, 15);
this.label_tempsensor.TabIndex = 3;
this.label_tempsensor.Text = "温湿度控制器端口:";
this.label_tempsensor.TextAlign = System.Drawing.ContentAlignment.TopRight;
......@@ -81,7 +82,7 @@ namespace TheMachine
// button_positiontool
//
this.tp.SetColumnSpan(this.button_positiontool, 2);
this.button_positiontool.Location = new System.Drawing.Point(10, 106);
this.button_positiontool.Location = new System.Drawing.Point(10, 80);
this.button_positiontool.Margin = new System.Windows.Forms.Padding(10);
this.button_positiontool.Name = "button_positiontool";
this.button_positiontool.Size = new System.Drawing.Size(181, 36);
......@@ -94,10 +95,10 @@ namespace TheMachine
//
this.lbl_hmdstate.AutoSize = true;
this.tp.SetColumnSpan(this.lbl_hmdstate, 2);
this.lbl_hmdstate.Location = new System.Drawing.Point(10, 58);
this.lbl_hmdstate.Location = new System.Drawing.Point(10, 45);
this.lbl_hmdstate.Margin = new System.Windows.Forms.Padding(10);
this.lbl_hmdstate.Name = "lbl_hmdstate";
this.lbl_hmdstate.Size = new System.Drawing.Size(124, 28);
this.lbl_hmdstate.Size = new System.Drawing.Size(67, 15);
this.lbl_hmdstate.TabIndex = 5;
this.lbl_hmdstate.Tag = "not";
this.lbl_hmdstate.Text = "当前状态";
......@@ -132,17 +133,17 @@ namespace TheMachine
this.tp.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tp.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tp.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tp.Size = new System.Drawing.Size(540, 256);
this.tp.Size = new System.Drawing.Size(310, 204);
this.tp.TabIndex = 6;
//
// cb_usefixpos
//
this.cb_usefixpos.AutoSize = true;
this.tp.SetColumnSpan(this.cb_usefixpos, 2);
this.cb_usefixpos.Location = new System.Drawing.Point(10, 162);
this.cb_usefixpos.Location = new System.Drawing.Point(10, 136);
this.cb_usefixpos.Margin = new System.Windows.Forms.Padding(10);
this.cb_usefixpos.Name = "cb_usefixpos";
this.cb_usefixpos.Size = new System.Drawing.Size(202, 32);
this.cb_usefixpos.Size = new System.Drawing.Size(119, 19);
this.cb_usefixpos.TabIndex = 6;
this.cb_usefixpos.Text = "启用校准库位";
this.cb_usefixpos.UseVisualStyleBackColor = true;
......@@ -158,6 +159,14 @@ namespace TheMachine
this.button1.Visible = false;
this.button1.Click += new System.EventHandler(this.button1_Click_1);
//
// label1
//
this.label1.Location = new System.Drawing.Point(16, 325);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(989, 397);
this.label1.TabIndex = 9;
this.label1.Text = "label1";
//
// uC_SetUserPassword1
//
this.uC_SetUserPassword1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
......@@ -166,10 +175,12 @@ namespace TheMachine
this.uC_SetUserPassword1.Name = "uC_SetUserPassword1";
this.uC_SetUserPassword1.Size = new System.Drawing.Size(405, 272);
this.uC_SetUserPassword1.TabIndex = 8;
this.uC_SetUserPassword1.Tag = "not";
//
// SettingControl
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.Controls.Add(this.label1);
this.Controls.Add(this.uC_SetUserPassword1);
this.Controls.Add(this.button1);
this.Controls.Add(this.tp);
......@@ -194,5 +205,6 @@ namespace TheMachine
private System.Windows.Forms.CheckBox cb_usefixpos;
private System.Windows.Forms.Button button1;
private UC_SetUserPassword uC_SetUserPassword1;
private System.Windows.Forms.Label label1;
}
}
......@@ -117,7 +117,7 @@ namespace TheMachine
{
if (!Visible)
return;
label1.Text = ServerCommunication.ServerCommStr;
lbl_hmdstate.Text = crc.GetString(L.current_status, "当前状态:");
if (!HumitureController.IsRun)
{
......
......@@ -224,6 +224,15 @@
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<None Include="resources\en-US.lngres">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="resources\ja-JP.lngres">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="resources\zh-CN.lngres">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
......@@ -246,6 +255,7 @@
<Content Include="icon.ico" />
<Content Include="更新记录.txt" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
......
using OnlineStore;
using OnlineStore.Common;
using OnlineStore.LoadCSVLibrary;
using System;
using System.Collections.Generic;
using System.ComponentModel;
......@@ -12,13 +13,36 @@ using System.Windows.Forms;
namespace TheMachine
{
using crc = OnlineStore.CodeResourceControl;
public partial class UC_SetUserPassword : UserControl
{
public UC_SetUserPassword()
{
InitializeComponent();
crc.GetLanguageEvent += Crc_GetLanguageEvent;
OnlineStore.CodeResourceControl.LanguageProcess(this);
crc.LanguageChangeEvent += Crc_LanguageChangeEvent;
}
private string Crc_GetLanguageEvent()
{
return ConfigHelper.Config.Get("Device_Default_Language", "zh-CN");
}
private void Crc_LanguageChangeEvent(object sender, EventArgs e)
{
if (!this.Created)
return;
OnlineStore.CodeResourceControl.LanguageProcess(this);
this.Invoke((EventHandler)delegate
{
});
}
private void button_ok_Click(object sender, EventArgs e)
{
if (textBox_oldpwd.Text != Setting_Init.User_AdminPassword)
......
key 中文 Chinese
AboutBox1_AboutBox1_Text MIMO_PLUS
AboutBox1_tableLayoutPanel_labelCompanyName_Text 上海挚锦科技有限公司 Neotel Technology Co., Ltd
AboutBox1_tableLayoutPanel_okButton_Text 确定 OK
Form1_btn_run_Text 启动 Start
Form1_btn_stop_Text 停止 Stop
Form1_tabc_tab_io__IOControls_btn_flipclose_Text 翻版托盘合拢 Flap Close
Form1_tabc_tab_io__IOControls_btn_flipopen_Text 翻版托盘打开 Flap Open
Form1_tabc_tab_io__IOControls_btn_linerev_Text 线体反转 Line Reversal
Form1_tabc_tab_io__IOControls_btn_linerun_Text 线体正转 Line Corotation
Form1_tabc_tab_io__IOControls_btn_linestop_Text 线体停止 Line Stop
Form1_tabc_tab_io__IOControls_btn_ngdooropen_Text 单料门打开 NG Door Open
Form1_tabc_tab_io__IOControls_btn_ngdoorclose_Text 单料门关闭 NG Door Close
Form1_tabc_tab_io__IOControls_btn_stringdooropen_Text 折叠门打开 The folding door opens
Form1_tabc_tab_io__IOControls_btn_stringdoorclose_Text 折叠门关闭 The folding door closes
Form1_tabc_tab_setting__SettingControl_tp_button_positiontool_Text 库位定位辅助工具 Location Positioning Wtool
Form1_tabc_tab_setting__SettingControl_tp_cb_usefixpos_Text 启用校准库位 Calibration Location ON
Form1_tabc_tab_setting__SettingControl_tp_chbAutoRun_Text 开机自启动 Auto Power On
Form1_tabc_tab_setting__SettingControl_tp_label_tempsensor_Text 温湿度控制器端口: Temperature And Humidity Controller Port:
Form1_tabc_tab_store__uc_boxdebug_groupInout_btn_autoinout_Text 自动库位测试 Location Autotest
Form1_tabc_tab_store__uc_boxdebug_groupInout_btnInStore_Text 入库测试 Storage Test
Form1_tabc_tab_store__uc_boxdebug_groupInout_btnOutStore_Text 出库测试 Retrieval Test
Form1_tabc_tab_store__uc_boxdebug_groupInout_cb_inoutdebugmode_Text 出入库调试模式 Storage/Retrieval Debug Mode
Form1_tabc_tab_store__uc_boxdebug_groupInout_Text 料仓操作 SMD BOX Operation
Form1_tabc_tabP1_pnl_btn_IgnoreX09_Text 忽略X30错误,并继续运行 Skip x30 error.
Form1_tabc_tabP1_pnl_btn_PauseBuzzer_Text 本次暂停警报器响声 Alarm is paused.
Form1_tabc_tabP1_pnl_btn_releasestring_Text 安全释放料串 Stacker is released.
Form1_tabc_tabP1_pnl_cb_EnableBuzzer_Text 使用蜂鸣器 Enable buzzer.
Form1_tabc_tabP1_pnl_cb_IgnoreGratingSignal_Text 忽略安全光栅 Skip safety light curtain.
Form1_tabc_tabP1_pnl_cb_IgnoreSafecheck_Text 忽略安全检查(含安全光栅) Skip safety check including safety light curtain.
Form1_tabc_tabP1_pnl_groupBox1_Text 运行状态 Running Status
Form1_tabc_tabP1_Text 信息 Info.
FrmCodeDecode_btnAn_Text 变暗 darken
FrmCodeDecode_btnbarCode_Text 一维码识别 One dimensional code recognition
FrmCodeDecode_btnCameraImage_Text 相机获取图片 camera image
FrmCodeDecode_btnClearLog_Text 清理日志 Clear log
FrmCodeDecode_btnCopyN_Text 复制名称 Copy Name
FrmCodeDecode_btnDCode_Text 二维码识别 Qr code recognition
FrmCodeDecode_btnErZhi_Text 二值化 binaryzation 
FrmCodeDecode_btnExit_Text 退出 Exit
FrmCodeDecode_btnGray_Text 图像转灰 Turning grey
FrmCodeDecode_btnLearn_Text 学习 learn
FrmCodeDecode_btnLight_Text 提亮 brighten
FrmCodeDecode_btnScanTest_Text 新算法解码 New algorithm decoding
FrmCodeDecode_btnSelImage_Text 打开本地图片 Open local image
FrmCodeDecode_chbUseParam_Text 使用参数 operation parameter
FrmCodeDecode_label1_Text 图片路径 Image path
FrmCodeDecode_label2_Text 相机列表: Camera list:
FrmCodeDecode_label3_Text 条码类型: Bar code type:
FrmCodeDecode_label4_Text 参数路径 Parameters of the path
FrmCodeDecode_lblCount_Text 条码数量: Barcode number:
FrmCodeDecode_Text 二维码识别 Qr code recognition
FrmCodeLearn_btnClearLog_Text 清理日志 Clear log
FrmCodeLearn_btnDelOld_Text 删除旧参数 Delete old parameter
FrmCodeLearn_btnExit_Text 退出 Exit
FrmCodeLearn_btnOpen_Text 开始学习 start to learn
FrmCodeLearn_btnSelImage_Text 打开本地图片 Open local image
FrmCodeLearn_btnStop_Text 结束学习 End of learning
FrmCodeLearn_chbHalcon_Text Halcon获取图片 Halcon Get photo
FrmCodeLearn_chbTest_Text 学习结束自动识别测试 Automatic identification test
FrmCodeLearn_chbUseCamera_Text 相机获取实时图片 camera image
FrmCodeLearn_label1_Text 相机: camera:
FrmCodeLearn_label2_Text 类型: Type:
FrmCodeLearn_label3_Text 参数路径 Parameters of the path
FrmCodeLearn_label4_Text 图片路径 Image path
FrmCodeLearn_lblCount_Text 条码数量: Barcode number:
FrmCodeLearn_Text 条码参数学习 Bar code parameter learning
menuStrip1_关于ToolStripMenuItem_Text 关于 About
menuStrip1_设备操作ToolStripMenuItem_Text 设备操作 Operation
menuStrip1_语言toolStripMenuItem_Text 语言 Language
设备操作ToolStripMenuItem_二维码识别调试ToolStripMenuItem_Text 二维码识别调试 QR code recognition debugging
设备操作ToolStripMenuItem_退出ToolStripMenuItem_Text 退出 Exit
table_datetime 时间 Time
table_info 信息 Info.
table_module 模块 Module
table_step 步骤 Step
IOControl_groupBox1_btnCloseDO_Text 关闭 OFF
IOControl_groupBox1_btnOpenDo_Text 打开 ON
IOControl_groupBox1_label14_Text 地址: Adress:
IOControl_groupBox1_label5_Text 定时(ms): Timing
IOControl_groupBox1_Text DO写入 DO Writing
IOControl_groupBox3_Text DI列表 DI List
IOControl_groupBox4_Text DO列表 DO List
FrmPositionTool_FrmPositionTool_Text 升降轴位置测试 Up Down Axis Position Test
FrmPositionTool_groupBox6_btnClear_Text 清理 Clear
FrmPositionTool_groupBox6_btnExit_Text 退出 Exit
FrmPositionTool_groupBox6_groupBox1_btnHomeMove_Text 原点返回 Return To Origin
FrmPositionTool_groupBox6_groupBox1_btnServoOff_Text 关闭伺服 OFF
FrmPositionTool_groupBox6_groupBox1_btnServoOn_Text 打开伺服 ON
FrmPositionTool_groupBox6_groupBox1_label2_Text 检测信号地址: Detect Signal Address:
FrmPositionTool_groupBox6_groupBox1_Text 设备信息 Equipment Info.
FrmPositionTool_groupBox6_groupBox2_btnAbsMove_Text 开始运动 Start Motion
FrmPositionTool_groupBox6_groupBox2_btnOpenFolder_Text 打开文件夹 Open
FrmPositionTool_groupBox6_groupBox2_btnSdStop_Text 停止 Stop
FrmPositionTool_groupBox6_groupBox2_ioStatusControl1_label1_Text 检测信号 Signal Detection
FrmPositionTool_groupBox6_groupBox2_label13_Text 目标位置: Set Location
FrmPositionTool_groupBox6_groupBox2_label3_Text 保存文件名称: Nane:
FrmPositionTool_groupBox6_groupBox2_label4_Text 库位高点偏移量: Location High Point Offset:
FrmPositionTool_groupBox6_groupBox2_label5_Text 库位低点偏移量: Location Low Point Offset:
FrmPositionTool_groupBox6_groupBox2_label7_Text 实际位置: Acutual Location
FrmPositionTool_groupBox6_groupBox2_label8_Text 移动速度: Movement Speed
FrmPositionTool_groupBox6_groupBox2_Text 位置信息 Position Info.
FrmPositionTool_serv_state 伺服状态 Servo Status
AxisMoveControl_groupAxis_groupBox2_groupBox2_Text 轴状态监控 Axis Status Monitoring
AxisMoveControl_groupAxis_groupBox2_label2_Text 实际加速度: Acceleration:
AxisMoveControl_groupAxis_groupBox2_label4_Text 回原状态: Back To Origin Status:
AxisMoveControl_groupAxis_groupBox2_label50_Text 规划模式: Set Mode:
AxisMoveControl_groupAxis_groupBox2_label52_Text 规划位置: Set Position:
AxisMoveControl_groupAxis_groupBox2_label53_Text 规划速度: Set Velocity
AxisMoveControl_groupAxis_groupBox2_label55_Text 实际位置: Actual Location:
AxisMoveControl_groupAxis_groupBox2_label56_Text 实际速度: Actual Velocity:
AxisMoveControl_groupAxis_groupBox2_lblALM_Text 报警 Alarm
AxisMoveControl_groupAxis_groupBox2_lblBUSY_Text 忙碌 Busy
AxisMoveControl_groupAxis_groupBox2_lblEMG_Text 急停 E-Stop
AxisMoveControl_groupAxis_groupBox2_lblINP_Text 到位 On Position
AxisMoveControl_groupAxis_groupBox2_lblNEL_Text 负极限 Minus Limit
AxisMoveControl_groupAxis_groupBox2_lblORG_Text 原点 Origin
AxisMoveControl_groupAxis_groupBox2_lblPEL_Text 正极限 Plus Limit
AxisMoveControl_groupAxis_groupBox2_lblSvOn_Text 伺服 Servo
AxisMoveControl_groupAxis_groupBox2_lblWARN_Text 警告 Caution
AxisMoveControl_groupAxis_groupBox2_Text 轴状态监控 Axis Status Monitoring
AxisMoveControl_groupAxis_panel1_btnAddMove_Text 点动+ Count +
AxisMoveControl_groupAxis_panel1_btnAxisAMove_Text 绝对运动 Absolute Motion
AxisMoveControl_groupAxis_panel1_btnAxisReturnHome_Text 原点返回 Return
AxisMoveControl_groupAxis_panel1_btnAxisRMove_Text 相对运动 Relative Motion
AxisMoveControl_groupAxis_panel1_btnAxisStop_Text 停止运动 Stop
AxisMoveControl_groupAxis_panel1_btnAxisVMove_Text 匀速运动 Uniform Motion
AxisMoveControl_groupAxis_panel1_btnCloseAxis_Text 关闭伺服 Servo OFF
AxisMoveControl_groupAxis_panel1_btnComAlarmClear_Text 清除报警 Clear Alarm
AxisMoveControl_groupAxis_panel1_btnDelMove_Text 点动- Count -
AxisMoveControl_groupAxis_panel1_btnOpenAxis_Text 打开伺服 Servo ON
AxisMoveControl_groupAxis_panel1_btnReadPosition_Text 读取位置 Read Location
AxisMoveControl_groupAxis_panel1_label1_Text 点动速度: Count Velocity
AxisMoveControl_groupAxis_panel1_label45_Text 端口号: Port:
AxisMoveControl_groupAxis_panel1_label46_Text 地址: Address:
AxisMoveControl_groupAxis_panel1_label47_Text 目标速度: Set Velocity
AxisMoveControl_groupAxis_panel1_label48_Text 目标位置: Set Location
AxisMoveControl_groupAxis_panel1_label49_Text AC伺服: AC Servo:
AxisMoveControl_groupAxis_panel1_label8_Text 实时位置: Live Location
AxisMoveControl_groupAxis_panel1_linkLabel1_Text 复制 Copy
AxisMoveControl_groupAxis_Text 伺服运动 Servo Motion
AxisMoveControl_status_monitor 状态监控 Condition Monitoring
UC_SetUserPassword_groupBox1_Text 管理密码设置 Manage password settings
UC_SetUserPassword_groupBox1_label_oldpwd_Text 旧密码: Old password:
UC_SetUserPassword_groupBox1_label_newpwd_Text 新密码: New password:
UC_SetUserPassword_groupBox1_label_newpwd2_Text 重复新密码: Repeat the new password:
UC_SetUserPassword_groupBox1_button_ok_Text 确认修改 Confirm the modification
AGV_OnPosition AGV到位检测(预留) AGV On Position Detection
Airpressure_Check 气压检测 Pressure Detection
airpressure_not_enough 气压不足 Air pressure is insufficient.
Alarm_Buzzer 报警蜂鸣器 Buzzer
Alarm_Led 故障指示灯 Reel Detection on Gripper
AutoRun_Single 自动启动 Autostart
autotest_inout_equipment 出入库测试 In Out Test
autotest_msg_01 自动出入库过程会再料盘送至出口后自动停止. Auto retrieval will stop when the reel arrived the
autotest_msg_02 确定开始自动库位测试?\n请确保料仓库位全部为空. Please make sure that the Locations are all empty before start the location autotest.
back_safedoor_not_close 后侧防护门没有关闭 Back Protective Door is not closed.
BackDoorClose_Check 后侧防护门关闭 Back protective door is closed.
Batch_Axis 上料提升机构 Feeding Part
Batch_DetectDownMM 接触料盘后下降mm Fall mm  after the reel is detected.
Batch_OutPlateDownMM 出库时每盘料补偿mm Add mm during retrieval process.
Batch_OutStoreDownMM 出库时初始下降mm Fall mm  during retrieval's initial stage.
Batch_P1 上料提升机构待机点P1 Standby Point p1
Batch_P2 上料提升机构上料高点P2 Feeding Part Feeding High Point p2
Batch_PoToMM 上料提升机构高度转换系数 Feeding Part Height Conversion Coefficient
before_FrmPositionTool_stopmuchine ライブラリキャリブレーションプログラムを実行する前に、マシンを停止する必要があります
begin_close_string_door 开始关闭料串门 Stacker door is closing.
begin_open_string_door 开始打开料串门 Stacker door is opening.
begin_singlein 开始单盘入库 Single reel storage begins.
Camera_Led 相机光源开启 Camera Light Source ON
cant_find_storeposfile 找不到库位配置文件 No location configuration file.
Clamp_Axis 取料机构 Clamp Axis
Clamp_Axis_interference_01 翻板门不在垂直端,不允许下降取料轴 Clamp Axis cannot be down when the flap door is not in the vertical side.
Clamp_Axis_interference_02 上料定位臂不在避让端,不允许下降取料轴 Clamp Axis cannot be down when the arm is not in the avoidant side.
Clamp_Axis_interference_03 翻板门不在垂直端,不允许下降取料轴 Clamp Axis cannot be down when the flap door is not in the vertical side.
Clamp_Axis_running_cant_singlein 取料机构运转中,无法单盘入库 Single reel storage cannot be processed when clamp axis is in operation.
clamp_equipment 取放料机构 Clamp Axis
Clamp_P1 取料机构待机点P1 Clamp Axis Standby Point p1
Clamp_P2 取料机构料串取料P2 Clamp Axis Retrieval p2
Clamp_P3 取料机构单料口8mm放料P3 Clamp Axis Single 8mm Reel Retrieval Door p3
Clamp_PoToMM 取料机构高度转换系数 Clamp Axis Height Conversion Coefficient
Clamping_Relax 夹爪气缸放松端 Clamping Jaw Air Cylinder Loosening Side
Clamping_Work 夹爪气缸夹紧端 Clamping Jaw Air Cylinder Compression Side
close_singledoor 关闭单料门 Close single reel door.
Comp_Axis 压紧机构 Compression Axis
Comp_P1 压紧机构待机点P1 Compression Axis Standby Point p1
Comp_P2 压紧机构8mm盘压紧点P2 Compression Axis 8mm Reel Compression Point p2
Comp_PH_MM 压紧机构库位高点偏移MM Compression Axis Location High Point Offset MM
Comp_PL_MM 压紧机构压紧点偏移mm Compression Axis Compression Point Offset mm
Comp_PoToMM 压紧机构每毫米脉冲 Compression Axis Pulse (ms)
ConfigControl_btnSavePos_Text 全部保存 Save All
ConfigControl_groupBox3_Text 点位列表 Location List
connect_fail 未成功连接 Connection failed.
current_status 当前状态: Status:
detect_signal 检测信号 Signal Detection
detect_string 感应到料串 Stacter is detected
device_initializing 设备加载中,请稍后... Loading…
device_isrunning_cant_exit 机器尚在运行,不能退出,请先停止运行. Please stop running before exit.
Device_Led 设备照明开启 Light ON
device_pause 暂停运行 Pause
device_resume 恢复运行 Restart
device_suddenstop_cant_start 急停中,无法启动 The SMD BOX cannot be turned on during E-Stop.
disable_config_mode 关闭配置模式 Configuration Modo Off
DoorSafe_Disable 门禁功能屏蔽 Access Function Shielding
empty_reel 空料串 Empty Stacker.
enable_config_mode 启用配置模式 Configuration Modo On
free 空闲中 Available
full_reel 满料串 Full Stacker.
humidity 湿度 Humidity
temp 温度 Temperature
ignored 已忽略 Skip
imageIsNull 获取二维码图片为空 Get the two-dimensional code picture is empty
in_store_detect_material 放料后料叉X30上任然检测到物料,请检查. Gripper x30 detected a material during the storage process. Please check the inside.
in_store_ng 入库NG Storage failed.
in_store_nothave_position 入库未找到库位 No location.
in_suddenstop 急停中 In the E-Stop process.
InOut_Axis 进出机构 In/Out Axis
InOut_P1 进出机构待机点P1 In Out Axis Standby Point p1
InOut_P2 进出机构单料口P2 In Out Axis Single Reel Retrieval Door p2
InOut_P3 进出机构料串放料P3 In Out Axis Stacker releasing p3
InOutAxis_Position_P3 进出轴库位点取料点P3 In Out Axis Retrieval Position p3
instore_reel 入库料串 Store Stacker
iocard_init_fail IO板卡初始化失败 IO card  failed to initialize.
IOSingle_TimerOut IO信号超时时间(秒) IO Signal Timeout (s)
Laser_Location 激光对位检测 Laser Counterpoint Detection
LastTrayAddHeight 最后一盘料补充高度mm Last Reel's Added Height mm
left_safedoor_not_close 左侧防护门没有关闭 Left Protective Door is not closed.
LeftDoorClose_Check 左侧防护门关闭 Left protective door is closed.
LineRev 进料线体反转 Supply Line Changeover
LineRun 进料线体正转 Supply Line Corotation
Middle_Axis 旋转机构 Rotating Axis
Middle_Axis_interference_01 进出轴不在待机点时无法移动旋转轴 Rotating Axis cannot be moved when the In Out Axis is not on the standby point.
Middle_P1 旋转机构待机点P1 Rotating Axis Standby Point p1
Middle_P2 旋转机构单料口P2 Rotating Axis Single Reel Retrieval Door p2
Middle_P3 旋转机构料串P3 Rotating Axis Stacker p3
FlipDoorLength 翻转托盘行程 Flip the pallet travel
StringDoorLength 折叠门行程 Folding door travel
InOut_P4 进出机构13/15寸料串放料P4 13/15 inch string discharge P4
InOut_P5 进出机构13/15寸单料口P5 13/15 inch single port P5
monitor_config_load_fail 加载监控相机配置文件失败: Monitor configuration file load failed:
monitor_config_not_exist 找不到监控相机配置文件 No monitor configuration file.
monitor_open_fail 监控相机打开失败 Monitor open failed.
motion_alarm 运动报警 Motion Alarm
ngdoor 单料口: Single Reel Retrieval Door:
NGDoor_Close 单料口门下降端 Single Reel Retrieval Door Down Side
NGDoor_Open 单料口门上升端 Single Reel Retrieval Door Up Side
ngdoor_reel_out 单盘出库 Single Reel Retrieval
NGDoor_Tray_Check 单料口料盘检测 Single Reel Detection
NitrogenValve 氮气阀门开启 Nitrogen Valve ON
no_info_reel 无信息料盘出库 Retrieve the reel without information.
no_string 当前没有料串 No stacker.
not_detect_airpressure 未检测到气压信号. No air pressure signal detected.
not_detect_reel_code 未识别到有效二维码 No vaild QR code.
not_detect_reel_height 未检测到盘宽 No width detetcted.
not_in_single_prosses 当前没有在等待单盘入库: No single reel storage.
open_debug_mode 打开配置模式 Configuration Modo On
out_store_detect_material 取料前料叉X30检测到有物料无法继续,请检查. Retrieval is stop because gripper x30 detected a material. Please check the inside.
out_store_not_detect_material 取料前料叉X30检测到有物料无法继续,请检查. Retrieval is stop because gripper x30 didn't detect a material. Please check the inside.
out_store_wait_ngdoor_ready 等待单料口空闲. Single Reel Retrieval Door is in use.
out_store_wait_string_ready 等待料串准备好放料. Matrial will be released when the stacker is ready.
please_take_ngdoor_reel 等待取走单口料盘 Please take the reel.
posnum 库位号 Location No.
reel_ining 入库中 Retrieval is being processed.
reel_not_onposition_cant_manual_in 料盘没有到位,无法手动入库 Manual retrieval could not be executed when the reel is not on position.
reel_outting 出库中 Storage is being processed.
reel_wait_in_store 料盘等待入库 The reel is waiting to be stored.
ReelFlipDoor_Home 料口翻板旋转 Flap Rotation
ReelFlipDoor_L_Home 料口翻板旋转端(左侧) Flap Rotating Side (Left)
ReelFlipDoor_L_Work 料口翻板水平端(左侧) Flap Horizontal Side (Right)
ReelFlipDoor_R_Home 料口翻板旋转端(右侧) Flap Rotating Side (Right)
ReelFlipDoor_R_Work 料口翻板水平端(右侧) Flap Horizontal Side (Right)
ReelFlipDoor_Work 料口翻板水平 Flap Horizont
Reset_BTN 复位 Reset
StringDoor_Axis_Break 上料机构折叠门刹车 Feeding mechanism folding door brake
reset_equipment 重置 Reset
reset_press 按下复位按钮. Please press the reset buttom.
reset_press_with_sudden 急停未解除,按下复位按钮尝试复位安全继电器. The E-Stop is going on. Please press the reset buttom to reset safety relay.
right_safedoor_not_close 右侧防护门没有关闭 Right Protective Door is not closed.
RightDoorClose_Check 右侧防护门关闭 Right protective door is closed.
Run_Led 自动指示灯 Auto Indicating Lamp
runbtn_press 按下启动按钮,开始启动. Please press the run buttom.
runbtn_press_with_sudden 急停中,按下启动按钮,无法启动. The equipment cannot run during E-Stop process.
SafetyLight_is_block 安全光栅被遮挡 Safety Light Curtain is covered.
SafetyLightCurtains 安全光栅 Safety Light Curtain
safty_release_string 安全释放料串 Stacker is released
safty_releaseed_string 料串已是释放状态 Stacker is released.
safty_releaseing_string 正在执行料串释放 Stacker is being released.
scan_code_timeout 扫码超时 Scan timeout.
scanning_code 扫码中 Scanning
selCamera 请先选择相机 Please select camera
selImage 请先选择图片 Please select picture
Standby_Led 待机指示灯 Standby Indicating Lamp
start 启动 Start
start_auto_test 自动库位测试 Location Autotest
start_device_first 请先启动料仓! Please turn on the SMD BOX first!
stop_auto_test 停止自动库位测试 Stop location autotest
stop_inout_test 停止自动库位测试! Stop location autotest!
store_busy_cant_manual_out 料仓正在出入库中,无法手动出库 Manual retrieval could not be executed during the storage/retrieval process.
store_inout_debug_mode 进出库调试模式 In Out Debug Mode
store_manage_equipment 进出库调度 Store Management
store_running_cant_inout 料串无法释放,料仓正在出入库中. Stacker cannot be released during storage/retrieval process.
StorePosControl_btnSavePos_Text 保存 Save
StorePosControl_groupBox3_Text 点位列表 Location List
string_begin_release 开始释放料串 Stacker is being releasing.
string_full_takeout 料串已满请取出 Please take the full stacker.
string_inout_equipment 料串进出机构 Stacker In Out Axis
string_not_onposition 回原时X09,X10信号异常,料串可能不在正确位置,请检查. X09,X10 signal error. The stacker might be in wrong position. Please check the SMD BOX.
string_not_onposition_01 料串尚未到位无法关门X09=High The door cannot be closed when the stacker is not on position.
string_prepare 料串准备中 Stacker is being prepared.
string_ready_for_get 料串取料准备就绪 Stacker is prepared to be taken.
string_ready_for_put 料串放料准备就绪 Stacker is prepared to be released.
string_releasing 料串释放中 Stacker is being released.
StringBack_Check 进料线体末端料串检测 Back Stacker Detection
StringDoor_Close 上料机构折叠门关闭端 Folding Door OFF Side
StringDoor_Open 上料机构折叠门打开端 Folding Door ON Side
StringFix_Bottom 进料线体料串固定下降端 Stacker Positioning Down Side
StringFix_Top 进料线体料串固定上升端 Stacker Positioning Up Side
StringFront_Check 进料线体前端料串检测 Front Stacker Detection
StringPosChecker_Home 上料定位旋转气缸避让端 Rotating Cylinder Avoidant Side
StringPosChecker_Work 上料定位旋转气缸定位端 Rotating Cylinder Positioning Side
SuddenStop_BTN 急停 E-Stop
sureDelete 确定删除文件: Make sure to delete the file:
system_is_running 系统正在运行. The system is running.
system_need_reset 系统需要重置 The system need to be reset.
system_pause 系统暂停 Pause
system_running_cantmove システムが動作しており、手動でサーボを製御することはできません。
tab_axis 伺服调试 Servo Debugging
tab_io IO调试 IO Debugging
tab_log 日志 Log
tab_setting 相关设置 Related Setting
tab_store 库位调试 Location debugging
taking_code 取料中 Retrieving
tempnhum_sensor_init_fail 温湿度传感器初始化失败,端口: Temperature and humidity sensor failed to initialize, port:
tips 提示 Remind
title 提示 Notice
transfer_equipment 出入库机构 Transfer Axis
tray_detect_reel_01 料叉传感器X30感应到有料,请人工确认 Gripper sensor X30 detected a material. Please check the inside.
TrayCheck 上料定位料盘检测 Positioning Reel Test
TrayCheck_Fixture 料叉机构料盘检测 Reel Detection
UpDown_Axis 升降机构 Up Down Axis
UpDown_Axis_interference_01 进出轴不在待机点时无法移动升降轴 Up Down Axis cannot be moved when the In Out Axis is not on the standby point.
UpDown_P1 升降轴待机点P1 Up Down Axis Standby Point p1
UpDown_P2 升降轴单料口高点P2 Up Down Axis Single Reel Retrieval Door High Point p2
UpDown_P3 升降轴单料口低点P3 Up Down Axis Single Reel Retrieval Door Low Point p2
UpDown_P4 升降轴料串放料高点P3 Rotating Axis Releasing High Point p3
UpDown_P5 升降轴料串放料低点P4 Rotating Axis Releasing Low Point p3
UpDownAxis_IHPosition_P3 升降轴库位入料高点P3 Up Down Axis High Position p1
UpDownAxis_ILPosition_P4 升降轴库位入料低点P4 Up Down Axis Low Position p1
wait 等待 Waiting
wait_detect_reel_height 等待料盘测高 No height detetcted.
wait_put_reel_into_ngdoor 等待阻挡物离开光栅 the cover of the safety light curtain is waiting to be removed.
wait_reel_transfer 单料口等待料盘离开. Please take the reel.
wait_server_response_pos 等待服务器返回库位 Waiting the server return to location.
wait_server_response_pos_timeout 服务器返回库位超时 Server return to location timeout.
wait_string_take 等待料串被取走 Please take the stacker.
wait_stringdoor_close 等待关门折叠门 Folding door is waiting to be closed.
wait_user_select_pos 等待手动选择入库库位 Waiting for manual selection for location.
WidthCheck_13 13寸料盘检测 13-in Reel Detection
WidthCheck_15 15寸料盘检测 15-in Reel Detection
WidthCheck_7 7寸料盘检测 7-in Reel Detection
x29_higt_has_reel 系统启动X29检测到有无信息料盘,等待取走单料口料盘 Reel without information detected by sensor. Please take the reel.
x29_low_no_reel 传感器X29未检测到单料口料盘. No single reel detecte by sensor.
XAxis_Position_P2 旋转轴位置P2 Rotating Axis Position
Res0001 设备未启动 The equipment is not started.
Res0002 料仓忙碌中,无法启动 Cannot start when the Tower is busy.
Res0003 入库料盘没有准备好,无法启动 Cannot start when the storage reel is not ready.
Res0004 收到出库任务,但料叉上有料,无法启动,请检查 Retrieval task received. Cannot start because of the material on the gripper. Please check.
Res0005 传感器X29未检测到单料口料盘 Sensor does not detect the reel in the single reel retrieval door.
Res0008 服务器连接异常 Server connection error
Res0009 料串正在上升 The stacker is rising.
Res0010 料串正在下降 The stacker is falling.
Res0011 请先选择运动轴 Please select the axis.
Res0012 警告 Caution
Res0013 请先输入正确的速度 Please enter the correct speed.
Res0014 错误码: Error Code:
Res0015 伺服尚未使能 Servo is disabled.
Res0016 伺服警报状态中 In servo alarm state
Res0017 无法操作 Unable to operate.
Res0020 升降轴位置调试: Updown-Axis Debug Location
l_flipDoor_no_work 左侧翻板水平信号未亮 The left flap horizontal signal is not lit
r_flipDoor_no_work 右侧翻板水平信号未亮 The right flap horizontal signal is not lit
reel_not_in_right_status 料盘放置异常 The reel is placed abnormally
\ No newline at end of file
key 中文 日语
AboutBox1_AboutBox1_Text MIMO_PLUS
AboutBox1_tableLayoutPanel_labelCompanyName_Text 上海挚锦科技有限公司 Neotel
AboutBox1_tableLayoutPanel_okButton_Text 确定 はい
Form1_btn_run_Text 启动 起動
Form1_btn_stop_Text 停止 中止
Form1_tabc_tab_io__IOControls_btn_flipclose_Text 翻版托盘合拢 パレット閉め
Form1_tabc_tab_io__IOControls_btn_flipopen_Text 翻版托盘打开 パレット開き
Form1_tabc_tab_io__IOControls_btn_linerev_Text 线体反转 ライン反転
Form1_tabc_tab_io__IOControls_btn_linerun_Text 线体正转 ライン正転
Form1_tabc_tab_io__IOControls_btn_linestop_Text 线体停止 ライン停止
Form1_tabc_tab_io__IOControls_btn_ngdooropen_Text 单料门打开 NGドアが開きます
Form1_tabc_tab_io__IOControls_btn_ngdoorclose_Text 单料门关闭 NGドアが閉じています
Form1_tabc_tab_io__IOControls_btn_stringdooropen_Text 折叠门打开 折れ戸が開きます
Form1_tabc_tab_io__IOControls_btn_stringdoorclose_Text 折叠门关闭 折り畳み式のドアが閉まります
Form1_tabc_tab_setting__SettingControl_tp_button_positiontool_Text 库位定位辅助工具 補助装置
Form1_tabc_tab_setting__SettingControl_tp_cb_usefixpos_Text 启用校准库位 校正スロットアン
Form1_tabc_tab_setting__SettingControl_tp_chbAutoRun_Text 开机自启动 自動起動
Form1_tabc_tab_setting__SettingControl_tp_label_tempsensor_Text 温湿度控制器端口: 温湿度制御装置
Form1_tabc_tab_store__uc_boxdebug_groupInout_btn_autoinout_Text 自动库位测试 スロット自動検知
Form1_tabc_tab_store__uc_boxdebug_groupInout_btnInStore_Text 入库测试 入庫テスト
Form1_tabc_tab_store__uc_boxdebug_groupInout_btnOutStore_Text 出库测试 出庫テスト
Form1_tabc_tab_store__uc_boxdebug_groupInout_cb_inoutdebugmode_Text 出入库调试模式 入出庫デバッグモード
Form1_tabc_tab_store__uc_boxdebug_groupInout_Text 料仓操作 材料タワー操作
Form1_tabc_tabP1_pnl_btn_IgnoreX09_Text 忽略X30错误,并继续运行 実行続き
Form1_tabc_tabP1_pnl_btn_PauseBuzzer_Text 本次暂停警报器响声 アラームを停止します。
Form1_tabc_tabP1_pnl_btn_releasestring_Text 安全释放料串 リール運搬ユニット放出終わり
Form1_tabc_tabP1_pnl_cb_EnableBuzzer_Text 使用蜂鸣器 ブザーを起動します。
Form1_tabc_tabP1_pnl_cb_IgnoreGratingSignal_Text 忽略安全光栅 ライトカーテンを無視する
Form1_tabc_tabP1_pnl_cb_IgnoreSafecheck_Text 忽略安全检查(含安全光栅) セーフティチックを無視する(ライトカーテン含み)
Form1_tabc_tabP1_pnl_groupBox1_Text 运行状态 実行状況
Form1_tabc_tabP1_Text 信息 情報
FrmCodeDecode_btnAn_Text 变暗 暗く
FrmCodeDecode_btnbarCode_Text 一维码识别 バーコード識別
FrmCodeDecode_btnCameraImage_Text 相机获取图片 カメラから画像
FrmCodeDecode_btnClearLog_Text 清理日志 クリア日誌
FrmCodeDecode_btnCopyN_Text 复制名称 コピー
FrmCodeDecode_btnDCode_Text 二维码识别 QRコード識別
FrmCodeDecode_btnErZhi_Text 二值化 二値化
FrmCodeDecode_btnExit_Text 退出 やめる
FrmCodeDecode_btnGray_Text 图像转灰 灰色に
FrmCodeDecode_btnLearn_Text 学习 勉強
FrmCodeDecode_btnLight_Text 提亮 明るく
FrmCodeDecode_btnScanTest_Text 新算法解码 新アルゴリズムデコード
FrmCodeDecode_btnSelImage_Text 打开本地图片 ローカル画像
FrmCodeDecode_chbUseParam_Text 使用参数 パラメータ演算
FrmCodeDecode_label1_Text 图片路径 画像パス
FrmCodeDecode_label2_Text 相机列表: カメラリスト:
FrmCodeDecode_label3_Text 条码类型: バーコードタイプ:
FrmCodeDecode_label4_Text 参数路径 パスパラメータ
FrmCodeDecode_lblCount_Text 条码数量: バーコード数:
FrmCodeDecode_Text 二维码识别 QRコード識別
FrmCodeLearn_btnClearLog_Text 清理日志 クリア日誌
FrmCodeLearn_btnDelOld_Text 删除旧参数 歴史パラメータの削除
FrmCodeLearn_btnExit_Text 退出 やめる
FrmCodeLearn_btnOpen_Text 开始学习 勉強終了
FrmCodeLearn_btnSelImage_Text 打开本地图片 ローカル画像
FrmCodeLearn_btnStop_Text 结束学习 勉強開始
FrmCodeLearn_chbHalcon_Text Halcon获取图片 Halconから画像
FrmCodeLearn_chbTest_Text 学习结束自动识别测试 勉強終了すると識別テストが自動に起動します。
FrmCodeLearn_chbUseCamera_Text 相机获取实时图片 カメラから画像
FrmCodeLearn_label1_Text 相机: カメラ:
FrmCodeLearn_label2_Text 类型: タイプ:
FrmCodeLearn_label3_Text 参数路径 パラメータパス
FrmCodeLearn_label4_Text 图片路径 画像パス
FrmCodeLearn_lblCount_Text 条码数量: バーコード数:
FrmCodeLearn_Text 条码参数学习 バーコードパラメータを学ぶ
menuStrip1_关于ToolStripMenuItem_Text 关于 詳しい情報
menuStrip1_设备操作ToolStripMenuItem_Text 设备操作 操作
menuStrip1_语言toolStripMenuItem_Text 语言 言語
设备操作ToolStripMenuItem_二维码识别调试ToolStripMenuItem_Text 二维码识别调试 識別バーコードのデバッグ
设备操作ToolStripMenuItem_退出ToolStripMenuItem_Text 退出 終了
table_datetime 时间 時間
table_info 信息 情報
table_module 模块 モジュラ
table_step 步骤 手順
IOControl_groupBox1_btnCloseDO_Text 关闭 オフ
IOControl_groupBox1_btnOpenDo_Text 打开 アン
IOControl_groupBox1_label14_Text 地址: アドラス:
IOControl_groupBox1_label5_Text 定时(ms): 定時(ms):
IOControl_groupBox1_Text DO写入 DO入力
IOControl_groupBox3_Text DI列表 DIリスト
IOControl_groupBox4_Text DO列表 DOリスト
FrmPositionTool_FrmPositionTool_Text 升降轴位置测试 昇降軸検知
FrmPositionTool_groupBox6_btnClear_Text 清理 解放
FrmPositionTool_groupBox6_btnExit_Text 退出 退出
FrmPositionTool_groupBox6_groupBox1_btnHomeMove_Text 原点返回 原点回帰
FrmPositionTool_groupBox6_groupBox1_btnServoOff_Text 关闭伺服 オフ
FrmPositionTool_groupBox6_groupBox1_btnServoOn_Text 打开伺服 アン
FrmPositionTool_groupBox6_groupBox1_label2_Text 检测信号地址: 信号アドレス:
FrmPositionTool_groupBox6_groupBox1_Text 设备信息 設備情報
FrmPositionTool_groupBox6_groupBox2_btnAbsMove_Text 开始运动 稼働開始
FrmPositionTool_groupBox6_groupBox2_btnOpenFolder_Text 打开文件夹 開く
FrmPositionTool_groupBox6_groupBox2_btnSdStop_Text 停止 停止
FrmPositionTool_groupBox6_groupBox2_ioStatusControl1_label1_Text 检测信号 信号検知
FrmPositionTool_groupBox6_groupBox2_label13_Text 目标位置: 目標位置:
FrmPositionTool_groupBox6_groupBox2_label3_Text 保存文件名称: 名:
FrmPositionTool_groupBox6_groupBox2_label4_Text 库位高点偏移量: 高位ブレ差
FrmPositionTool_groupBox6_groupBox2_label5_Text 库位低点偏移量: 低位ブレ差
FrmPositionTool_groupBox6_groupBox2_label7_Text 实际位置: 実際位置:
FrmPositionTool_groupBox6_groupBox2_label8_Text 移动速度: 移動速度
FrmPositionTool_groupBox6_groupBox2_Text 位置信息 位置情報
FrmPositionTool_serv_state 伺服状态 サーボ状態
AxisMoveControl_groupAxis_groupBox2_groupBox2_Text 轴状态监控 軸状態:
AxisMoveControl_groupAxis_groupBox2_label2_Text 实际加速度: 加速
AxisMoveControl_groupAxis_groupBox2_label4_Text 回原状态: 原点回帰状態:
AxisMoveControl_groupAxis_groupBox2_label50_Text 规划模式: 予定モード:
AxisMoveControl_groupAxis_groupBox2_label52_Text 规划位置: 予定位置:
AxisMoveControl_groupAxis_groupBox2_label53_Text 规划速度: 予定速度:
AxisMoveControl_groupAxis_groupBox2_label55_Text 实际位置: 実位置:
AxisMoveControl_groupAxis_groupBox2_label56_Text 实际速度: 実速度:
AxisMoveControl_groupAxis_groupBox2_lblALM_Text 报警 警報
AxisMoveControl_groupAxis_groupBox2_lblBUSY_Text 忙碌 実行中
AxisMoveControl_groupAxis_groupBox2_lblEMG_Text 急停 急停
AxisMoveControl_groupAxis_groupBox2_lblINP_Text 到位 待機中
AxisMoveControl_groupAxis_groupBox2_lblNEL_Text 负极限 下極限
AxisMoveControl_groupAxis_groupBox2_lblORG_Text 原点 原点
AxisMoveControl_groupAxis_groupBox2_lblPEL_Text 正极限 上極限
AxisMoveControl_groupAxis_groupBox2_lblSvOn_Text 伺服 サーボ
AxisMoveControl_groupAxis_groupBox2_lblWARN_Text 警告 注意
AxisMoveControl_groupAxis_groupBox2_Text 轴状态监控 軸状態:
AxisMoveControl_groupAxis_panel1_btnAddMove_Text 点动+ カウンタ+
AxisMoveControl_groupAxis_panel1_btnAxisAMove_Text 绝对运动 絶対運動
AxisMoveControl_groupAxis_panel1_btnAxisReturnHome_Text 原点返回 原点回帰
AxisMoveControl_groupAxis_panel1_btnAxisRMove_Text 相对运动 相対運動
AxisMoveControl_groupAxis_panel1_btnAxisStop_Text 停止运动 稼働停止
AxisMoveControl_groupAxis_panel1_btnAxisVMove_Text 匀速运动 等速運動
AxisMoveControl_groupAxis_panel1_btnCloseAxis_Text 关闭伺服 サーボを閉める
AxisMoveControl_groupAxis_panel1_btnComAlarmClear_Text 清除报警 アラームを削除する
AxisMoveControl_groupAxis_panel1_btnDelMove_Text 点动- カウンター
AxisMoveControl_groupAxis_panel1_btnOpenAxis_Text 打开伺服 サーボを起動
AxisMoveControl_groupAxis_panel1_btnReadPosition_Text 读取位置 位置の読み込み
AxisMoveControl_groupAxis_panel1_label1_Text 点动速度: カウンタ速度:
AxisMoveControl_groupAxis_panel1_label45_Text 端口号: ポート:
AxisMoveControl_groupAxis_panel1_label46_Text 地址: アドレス:
AxisMoveControl_groupAxis_panel1_label47_Text 目标速度: 目標速度:
AxisMoveControl_groupAxis_panel1_label48_Text 目标位置: 目標位置:
AxisMoveControl_groupAxis_panel1_label49_Text AC伺服: ACサーボ
AxisMoveControl_groupAxis_panel1_label8_Text 实时位置: リアルタイム位置:
AxisMoveControl_groupAxis_panel1_linkLabel1_Text 复制 コピー
AxisMoveControl_groupAxis_Text 伺服运动 サーボ稼働
AxisMoveControl_status_monitor 状态监控 状態確認
UC_SetUserPassword_groupBox1_Text 管理密码设置 パスワード設定を管理する
UC_SetUserPassword_groupBox1_label_oldpwd_Text 旧密码: 古いパスワード:
UC_SetUserPassword_groupBox1_label_newpwd_Text 新密码: 新しいパスワード:
UC_SetUserPassword_groupBox1_label_newpwd2_Text 重复新密码: 新しいパスワードを繰り返します:
UC_SetUserPassword_groupBox1_button_ok_Text 确认修改 変更を確認する
AGV_OnPosition AGV到位检测(预留) 折り戸ライトカーテン
Airpressure_Check 气压检测 エアテスト
airpressure_not_enough 气压不足 エア不足
Alarm_Buzzer 报警蜂鸣器 ブザー
Alarm_Led 故障指示灯 故障表示灯
AutoRun_Single 自动启动 自動起動
autotest_inout_equipment 出入库测试 入出庫テスト
autotest_msg_01 自动出入库过程会再料盘送至出口后自动停止. 自動出入庫はリールが材料取り口に着くと自動停止します。
autotest_msg_02 确定开始自动库位测试?\n请确保料仓库位全部为空. 自動スロット検知を開始する前に、材料タワーの在庫数を0にして下さい。
back_safedoor_not_close 后侧防护门没有关闭 後ろ側防護扉は開かれた状態です。
BackDoorClose_Check 后侧防护门关闭 後ろ側防護扉を閉める
Batch_Axis 上料提升机构 放出上昇部
Batch_DetectDownMM 接触料盘后下降mm リールに当たったとmm下降
Batch_OutPlateDownMM 出库时每盘料补偿mm 出庫に各リールはmm追加
Batch_OutStoreDownMM 出库时初始下降mm 出庫初期化にmm下降
Batch_P1 上料提升机构待机点P1 放出上昇部待機点P1
Batch_P2 上料提升机构上料高点P2 放出上昇部高位P1
Batch_PoToMM 上料提升机构高度转换系数 放出上昇部高さの転換係数
before_FrmPositionTool_stopmuchine ライブラリキャリブレーションプログラムを実行する前に、マシンを停止する必要があります
begin_close_string_door 开始关闭料串门 リール運搬ユニットのドアを閉じていきます。
begin_open_string_door 开始打开料串门 リール運搬ユニットのドアを開けていきます。
begin_singlein 开始单盘入库 単一のリールを入庫していきます。
Camera_Led 相机光源开启 カメラ光源アン
cant_find_storeposfile 找不到库位配置文件 設定ファイル無し
Clamp_Axis 取料机构 材料取り軸
Clamp_Axis_interference_01 翻板门不在垂直端,不允许下降取料轴 反転板は垂直端にではない場合、材料取り軸を下降しなくて下さい。
Clamp_Axis_interference_02 上料定位臂不在避让端,不允许下降取料轴 アームロボットは退避端にではない場合、材料取り軸を下降しなくて下さい。
Clamp_Axis_interference_03 翻板门不在垂直端,不允许下降取料轴 反転板は垂直端にではない場合、材料取り軸を下降しなくて下さい。
Clamp_Axis_running_cant_singlein 取料机构运转中,无法单盘入库 材料取り中では単一のリールを出庫できません。
clamp_equipment 取放料机构 材料の投入と放出部
Clamp_P1 取料机构待机点P1 取り部待機点P1
Clamp_P2 取料机构料串取料P2 取り部リール運搬ユニット放出P1
Clamp_P3 取料机构单料口8mm放料P3 取り口8mm放出P3
Clamp_PoToMM 取料机构高度转换系数 取り部高さの転換係数
Clamping_Relax 夹爪气缸放松端 シリンダー緩み端
Clamping_Work 夹爪气缸夹紧端 シリンダー圧着端
close_singledoor 关闭单料门 材料取り口ドアを閉めます。
Comp_Axis 压紧机构 圧着軸
Comp_P1 压紧机构待机点P1 圧着軸待機点P1
Comp_P2 压紧机构8mm盘压紧点P2 圧着軸8mm圧着点P2
Comp_PH_MM 压紧机构库位高点偏移MM 圧着軸スロット高位からMMブレ
Comp_PL_MM 压紧机构压紧点偏移mm 圧着軸圧着点からmmブレ
Comp_PoToMM 压紧机构每毫米脉冲 圧着軸パルス/ミリ秒
ConfigControl_btnSavePos_Text 全部保存 すべて保存
ConfigControl_groupBox3_Text 点位列表 点位リスト
connect_fail 未成功连接 連携失敗
current_status 当前状态: 状況:
detect_signal 检测信号 信号検知
detect_string 感应到料串 リール運搬ユニットが検知しました。
device_initializing 设备加载中,请稍后... ローディング
device_isrunning_cant_exit 机器尚在运行,不能退出,请先停止运行. 現行作業を停止して下さい。
Device_Led 设备照明开启 ライトアン
device_pause 暂停运行 一時停止
device_resume 恢复运行 再起動
device_suddenstop_cant_start 急停中,无法启动 急停中では起動出来ないです。
disable_config_mode 关闭配置模式 設定モードを閉じます
DoorSafe_Disable 门禁功能屏蔽 アクセス機能遮蔽
empty_reel 空料串 開きリール運搬ユニット
enable_config_mode 启用配置模式 設定モードを開ける
free 空闲中 待ち中
full_reel 满料串 満 載 リール運搬ユニット
humidity 湿度 湿度
temp 温度 温度
ignored 已忽略 続き
imageIsNull 获取二维码图片为空 ヌルQRコード
in_store_detect_material 入库后料叉X30上任然检测到物料,请检查. グリッパーX30で材料はまだ検出されていますので出庫を停止しました。実情を確認して下さい。
in_store_ng 入库NG 入庫失敗
in_store_nothave_position 入库未找到库位 スロット無し
in_suddenstop 急停中 急停中
InOut_Axis 进出机构 出入り軸
InOut_P1 进出机构待机点P1 出入り軸待機点P1
InOut_P2 进出机构单料口P2 出入り軸材料取り口P2
InOut_P3 进出机构料串放料P3 出入り軸リール運搬ユニットP3
InOut_P4 进出机构13/15寸料串放料P4 13/15インチストリング排出P4
InOut_P5 进出机构13/15寸单料口P5 13/15インチシングルポートP5
InOutAxis_Position_P3 进出轴库位点取料点P3 出入り軸スロット材料取り口低位P4
instore_reel 入库料串 リール運搬ユニットを入庫します。
iocard_init_fail IO板卡初始化失败 IO初期化失敗
IOSingle_TimerOut IO信号超时时间(秒) IOタイムアウト秒数
Laser_Location 激光对位检测 レザー対位検知
LastTrayAddHeight 最后一盘料补充高度mm 末リールの補充高さ(mm)
left_safedoor_not_close 左侧防护门没有关闭 左側防護扉は開かれた状態です。
LeftDoorClose_Check 左侧防护门关闭 左側防護扉を閉める
LineRev 进料线体反转 逆転
LineRun 进料线体正转 正転
Middle_Axis 旋转机构 回転軸
Middle_Axis_interference_01 进出轴不在待机点时无法移动旋转轴 出入り軸は待機点にではない場合、回転軸を移動できません。
Middle_P1 旋转机构待机点P1 回転軸待機点P1
Middle_P2 旋转机构单料口P2 回転軸材料取り口P2
Middle_P3 旋转机构料串P3 回転軸リール運搬ユニットP3
FlipDoorLength 翻转托盘行程 パレットの移動を反転させる
StringDoorLength 折叠门行程 折れ戸の走行長さ
monitor_config_load_fail 加载监控相机配置文件失败: モニターカメラフェイル読み込み失敗
monitor_config_not_exist 找不到监控相机配置文件 モニターカメラ設定フェイル無し
monitor_open_fail 监控相机打开失败 モニターカメラ起動失敗
motion_alarm 运动报警 稼働アラーム
ngdoor 单料口: 材料取り口:
NGDoor_Close 单料口门下降端 材料取り口ドア下降端
NGDoor_Open 单料口门上升端 材料取り口ドア上昇端
ngdoor_reel_out 单盘出库 単一のリールを出庫します。
NGDoor_Tray_Check 单料口料盘检测 材料取り口リール検知
NitrogenValve 氮气阀门开启 窒素弁アン
no_info_reel 无信息料盘出库 情報無きリールを出庫します。
no_string 当前没有料串 リール運搬ユニット無し
not_detect_airpressure 未检测到气压信号. エア信号無し
not_detect_reel_code 未识别到有效二维码 バーコードは無効です。
not_detect_reel_height 未检测到盘宽 リールサイズ不明
not_in_single_prosses 当前没有在等待单盘入库: 単一のリールの入庫作業無し
open_debug_mode 打开配置模式 設定モードを開ける
out_store_detect_material 出库时料叉X30检测到有物料无法继续,请检查. グリッパーX30で材料を検出しましたので、出庫を停止しました。実情を確認して下さい。
out_store_not_detect_material 出库时料叉X30没有检测到有物料无法继续,请检查. 材料はまだ検出されていますので、出庫を停止しました。実情を確認して下さい。
out_store_wait_ngdoor_ready 等待单料口空闲. 材料取り口は使用中
out_store_wait_string_ready 等待料串准备好放料. リール運搬ユニット準備中
please_take_ngdoor_reel 等待取走单口料盘 引取り待ち中
posnum 库位号 スロット番号
reel_ining 入库中 入庫中
reel_not_onposition_cant_manual_in 料盘没有到位,无法手动入库 リールが準備出来るまで、手動出庫が出来ません。
reel_outting 出库中 出庫中
reel_wait_in_store 料盘等待入库 入庫待ち中
ReelFlipDoor_Home 料口翻板旋转 反転板回転端
ReelFlipDoor_L_Home 料口翻板旋转端(左侧) 反転板回転端(左側)
ReelFlipDoor_L_Work 料口翻板水平端(左侧) 反転板水平端(左側)
ReelFlipDoor_R_Home 料口翻板旋转端(右侧) 反転板回転端(右側)
ReelFlipDoor_R_Work 料口翻板水平端(右侧) 反転板水平端(右側)
ReelFlipDoor_Work 料口翻板水平 反転板水平端
StringDoor_Axis_Break 上料机构折叠门刹车 送り機構折れ戸ブレーキ
Reset_BTN 复位 リセット
reset_equipment 重置 リセット
reset_press 按下复位按钮. リセットボダンを押して下さい。
reset_press_with_sudden 急停未解除,按下复位按钮尝试复位安全继电器. 急停中、リセットボダンを押し、継電器をリセットして下さい。
right_safedoor_not_close 右侧防护门没有关闭 右側防護扉は開かれた状態です。
RightDoorClose_Check 右侧防护门关闭 右側防護扉を閉める
Run_Led 自动指示灯 自動表示灯
runbtn_press 按下启动按钮,开始启动. 起動
runbtn_press_with_sudden 急停中,按下启动按钮,无法启动. 急停中、起動ボダンを押して下さい。
SafetyLight_is_block 安全光栅被遮挡 ライトカーテンが被られました。
SafetyLightCurtains 安全光栅 ライトカーテン
safty_release_string 安全释放料串 リール運搬ユニットを放出しました。
safty_releaseed_string 料串已是释放状态 リール運搬ユニット放出終わり
safty_releaseing_string 正在执行料串释放 リール運搬ユニット放出中
scan_code_timeout 扫码超时 タイムアウト
scanning_code 扫码中 読み込み中
selCamera 请先选择相机 カメラを選択して下さい。
selImage 请先选择图片 画像を選択して下さい。
Standby_Led 待机指示灯 待機表示灯
start 启动 起動
start_auto_test 自动库位测试 自動スロット検知
start_device_first 请先启动料仓! 材料タワーを起動して下さい!
stop_auto_test 停止自动库位测试 自動スロット検知を停止する。
stop_inout_test 停止自动库位测试! 自動スロット検知停止!
store_busy_cant_manual_out 料仓正在出入库中,无法手动出库 出入庫中では手動出庫作業を実行出来ないです。
store_inout_debug_mode 进出库调试模式 入出庫デバッグモード
store_manage_equipment 进出库调度 入出庫管理
store_running_cant_inout 料串无法释放,料仓正在出入库中. 入出庫中ではリール運搬ユニットを放出できません。
StorePosControl_btnSavePos_Text 保存 保存
StorePosControl_groupBox3_Text 点位列表 点位リスト
string_begin_release 开始释放料串 リール運搬ユニットを放出していきます。
string_full_takeout 料串已满请取出 満載リール運搬ユニットを引き取って下さい。
string_inout_equipment 料串进出机构 リール運搬ユニットの入出庫部
string_not_onposition 回原时X09,X10信号异常,料串可能不在正确位置,请检查. 原点回帰にX09,X10の信号が異常になったので、リール運搬ユニットは間違い位置におる可能です。材料タワーを確認して下さい。
string_not_onposition_01 料串尚未到位无法关门X09=High リール運搬ユニットを準備中ので、ドアを閉じれません。X09=High
string_prepare 料串准备中 準備中
string_ready_for_get 料串取料准备就绪 引取り準備出来
string_ready_for_put 料串放料准备就绪 放出準備出来
string_releasing 料串释放中 リール運搬ユニット放出中
StringBack_Check 进料线体末端料串检测 末端リール運搬ユニット検知
StringDoor_Close 上料机构折叠门关闭端 折り戸の閉まり端
StringDoor_Open 上料机构折叠门打开端 折り戸の開き端
StringFix_Bottom 进料线体料串固定下降端 リール運搬ユニットの固定下降端
StringFix_Top 进料线体料串固定上升端 リール運搬ユニットの固定上昇端
StringFront_Check 进料线体前端料串检测 前端リール運搬ユニット検知
StringPosChecker_Home 上料定位旋转气缸避让端 定位回転シリンダー定退避端
StringPosChecker_Work 上料定位旋转气缸定位端 定位回転シリンダー定位端
SuddenStop_BTN 急停 非常停止
sureDelete 确定删除文件: 削除ファイル:
system_is_running 系统正在运行. 実行中
system_need_reset 系统需要重置 システムをリセットしてください。
system_pause 系统暂停 システム停止
system_running_cantmove システムが動作しており、手動でサーボを製御することはできません。
tab_axis 伺服调试 サーボのデバッグ
tab_io IO调试 IOデバッグ
tab_log 日志 日誌
tab_setting 相关设置 関連設定
tab_store 库位调试 スロットのデバッグ
taking_code 取料中 出庫中
tempnhum_sensor_init_fail 温湿度传感器初始化失败,端口: 温度・湿度センサー初期化失敗、ポート:
tips 提示 通知
title 提示 通知
transfer_equipment 出入库机构 入出庫輸送部
tray_detect_reel_01 料叉传感器X30感应到有料,请人工确认 グリッパーセンサーX30で材料が検出され、材料タワーを確認して下さい。
TrayCheck 上料定位料盘检测 定位リール検知
TrayCheck_Fixture 料叉机构料盘检测 グリッパー部リール検知
UpDown_Axis 升降机构 昇降軸
UpDown_Axis_interference_01 进出轴不在待机点时无法移动升降轴 出入り軸は待機点にではない場合、昇降軸を移動できません。
UpDown_P1 升降轴待机点P1 昇降軸待機点P1
UpDown_P2 升降轴单料口高点P2 昇降軸材料取り口高位P2
UpDown_P3 升降轴单料口低点P3 昇降軸材料取り口低位P3
UpDown_P4 升降轴料串放料高点P3 昇降軸放出高位P3
UpDown_P5 升降轴料串放料低点P4 昇降軸放出低位P4
UpDownAxis_IHPosition_P3 升降轴库位入料高点P3 昇降軸スロット材料入り口高位P3
UpDownAxis_ILPosition_P4 升降轴库位入料低点P4 昇降軸スロット材料入り口低位P4
wait 等待 待ち中
wait_detect_reel_height 等待料盘测高 リールの高さは確認中です。
wait_put_reel_into_ngdoor 等待阻挡物离开光栅 ライトカーテンの被り物を取って下さい。
wait_reel_transfer 单料口等待料盘离开. リールを引き取ってください。
wait_server_response_pos 等待服务器返回库位 サーバーはスロットに回帰する待ち中です。
wait_server_response_pos_timeout 服务器返回库位超时 サーバーはスロットに回帰する待ち中です。
wait_string_take 等待料串被取走 引取り待ち中
wait_stringdoor_close 等待关门折叠门 折り戸閉め待ち中
wait_user_select_pos 等待手动选择入库库位 スロットの手動選択の待ち中
WidthCheck_13 13寸料盘检测 13-inリール検知
WidthCheck_15 15寸料盘检测 15-inリール検知
WidthCheck_7 7寸料盘检测 7-inリール検知
x29_higt_has_reel 系统启动X29检测到有无信息料盘,等待取走单料口料盘 センサーで情報無きリールが検出され、リールを引き取って下さい。
x29_low_no_reel 传感器X29未检测到单料口料盘. センサーで材料取り口にリールを検出されません。
XAxis_Position_P2 旋转轴位置P2 回転軸位置P2
Res0001 设备未启动 設備未起動
Res0002 料仓忙碌中,无法启动 設備がビジー状態のため、起動できません。
Res0003 入库料盘没有准备好,无法启动 入庫リールが準備できず、起動できません。
Res0004 收到出库任务,但料叉上有料,无法启动,请检查 出庫任務を受けました。フォークに材料があり起動しません、ご確認ください。
Res0005 传感器X29未检测到单料口料盘 センサーは材料取り口リールを検出しません。
Res0008 服务器连接异常 サーバー接続異常
Res0009 料串正在上升 リール運搬ユニットが上昇中。
Res0010 料串正在下降 リール運搬ユニットが下降中。
Res0011 请先选择运动轴 軸を選んでください。
Res0012 警告 注意
Res0013 请先输入正确的速度 正しいスビードを入力してください。
Res0014 错误码: エラーコード:
Res0015 伺服尚未使能 サーボ停止中
Res0016 伺服警报状态中 サーボアラーム状態
Res0017 无法操作 動作不能
Res0020 升降轴位置调试: 昇降軸位置デバック  昇降軸位置デバック
Res0021 请输入正确的速度 正しい速度を入力してください正しい速度を入力してください
l_flipDoor_no_work 左侧翻板水平信号未亮 左フラップ水平信号が点灯していない
r_flipDoor_no_work 右侧翻板水平信号未亮 右フラップ水平信号が点灯しない
reel_not_in_right_status 料盘放置异常 リールが異常に配置されている
\ No newline at end of file
key 中文 中文
AboutBox1_AboutBox1_Text MIMO_PLUS MIMO_PLUS
AboutBox1_tableLayoutPanel_labelCompanyName_Text 上海挚锦科技有限公司 上海挚锦科技有限公司
AboutBox1_tableLayoutPanel_okButton_Text 确定 确定
Form1_btn_stop_Text 停止 停止
Form1_btn_run_Text 启动 启动
Form1_tabc_tabP1_Text 信息 信息
Form1_tabc_tabP1_pnl_groupBox1_Text 运行状态 运行状态
Form1_tabc_tabP1_pnl_btn_releasestring_Text 安全释放料串 安全释放料串
Form1_tabc_tabP1_pnl_cb_IgnoreSafecheck_Text 忽略安全检查(含安全光栅) 忽略安全检查(含安全光栅)
Form1_tabc_tabP1_pnl_cb_IgnoreGratingSignal_Text 忽略安全光栅 忽略安全光栅
Form1_tabc_tabP1_pnl_cb_EnableBuzzer_Text 使用蜂鸣器 使用蜂鸣器
Form1_tabc_tabP1_pnl_btn_IgnoreX09_Text 忽略X30错误,并继续运行 忽略X30错误,并继续运行
Form1_tabc_tabP1_pnl_btn_PauseBuzzer_Text 本次暂停警报器响声 本次暂停警报器响声
Form1_tabc_tab_io__IOControls_btn_stringdooropen_Text 折叠门打开 折叠门打开
Form1_tabc_tab_io__IOControls_btn_stringdoorclose_Text 折叠门关闭 折叠门关闭
Form1_tabc_tab_setting__SettingControl_tp_cb_usefixpos_Text 启用校准库位 启用校准库位
Form1_tabc_tab_io__IOControls_btn_flipclose_Text 翻版托盘合拢 翻版托盘合拢
Form1_tabc_tab_io__IOControls_btn_flipopen_Text 翻版托盘打开 翻版托盘打开
Form1_tabc_tab_io__IOControls_btn_linerev_Text 线体反转 线体反转
Form1_tabc_tab_io__IOControls_btn_linestop_Text 线体停止 线体停止
Form1_tabc_tab_io__IOControls_btn_linerun_Text 线体正转 线体正转
Form1_tabc_tab_io__IOControls_btn_ngdooropen_Text 单料门打开 单料门打开
Form1_tabc_tab_io__IOControls_btn_ngdoorclose_Text 单料门关闭 单料门关闭
Form1_tabc_tab_setting__SettingControl_tp_label_tempsensor_Text 温湿度控制器端口: 温湿度控制器端口:
Form1_tabc_tab_setting__SettingControl_tp_chbAutoRun_Text 开机自启动 开机自启动
Form1_tabc_tab_setting__SettingControl_tp_button_positiontool_Text 库位定位辅助工具 库位定位辅助工具
Form1_tabc_tab_store__uc_boxdebug_groupInout_Text 料仓操作 料仓操作
Form1_tabc_tab_store__uc_boxdebug_groupInout_cb_inoutdebugmode_Text 出入库调试模式 出入库调试模式
Form1_tabc_tab_store__uc_boxdebug_groupInout_btn_autoinout_Text 自动库位测试 自动库位测试
Form1_tabc_tab_store__uc_boxdebug_groupInout_btnInStore_Text 入库测试 入库测试
Form1_tabc_tab_store__uc_boxdebug_groupInout_btnOutStore_Text 出库测试 出库测试
FrmCodeDecode_btnAn_Text 变暗 变暗
FrmCodeDecode_btnbarCode_Text 一维码识别 一维码识别
FrmCodeDecode_btnCameraImage_Text 相机获取图片 相机获取图片
FrmCodeDecode_btnClearLog_Text 清理日志 清理日志
FrmCodeDecode_btnCopyN_Text 复制名称 复制名称
FrmCodeDecode_Text 二维码识别 二维码识别
FrmCodeDecode_btnErZhi_Text 二值化 二值化
FrmCodeDecode_btnExit_Text 退出 退出
FrmCodeDecode_btnGray_Text 图像转灰 图像转灰
FrmCodeDecode_btnLearn_Text 学习 学习
FrmCodeDecode_btnLight_Text 提亮 提亮
FrmCodeDecode_btnScanTest_Text 新算法解码 新算法解码
FrmCodeDecode_btnSelImage_Text 打开本地图片 打开本地图片
FrmCodeDecode_chbUseParam_Text 使用参数 使用参数
FrmCodeDecode_label1_Text 图片路径 图片路径
FrmCodeDecode_label2_Text 相机列表: 相机列表:
FrmCodeDecode_label3_Text 条码类型: 条码类型:
FrmCodeDecode_label4_Text 参数路径 参数路径
FrmCodeDecode_lblCount_Text 条码数量: 条码数量:
FrmCodeDecode_btnDCode_Text 二维码识别 二维码识别
FrmCodeLearn_btnClearLog_Text 清理日志 清理日志
FrmCodeLearn_btnDelOld_Text 删除旧参数 删除旧参数
FrmCodeLearn_btnExit_Text 退出 退出
FrmCodeLearn_btnOpen_Text 开始学习 开始学习
FrmCodeLearn_btnSelImage_Text 打开本地图片 打开本地图片
FrmCodeLearn_btnStop_Text 结束学习 结束学习
FrmCodeLearn_chbHalcon_Text Halcon获取图片 Halcon获取图片
FrmCodeLearn_chbTest_Text 学习结束自动识别测试 学习结束自动识别测试
FrmCodeLearn_chbUseCamera_Text 相机获取实时图片 相机获取实时图片
FrmCodeLearn_label1_Text 相机: 相机:
FrmCodeLearn_label2_Text 类型: 类型:
FrmCodeLearn_label3_Text 参数路径 参数路径
FrmCodeLearn_label4_Text 图片路径 图片路径
FrmCodeLearn_lblCount_Text 条码数量: 条码数量:
FrmCodeLearn_Text 条码参数学习 条码参数学习
menuStrip1_关于ToolStripMenuItem_Text 关于 关于
menuStrip1_设备操作ToolStripMenuItem_Text 设备操作 设备操作
menuStrip1_语言toolStripMenuItem_Text 语言 语言
设备操作ToolStripMenuItem_二维码识别调试ToolStripMenuItem_Text 二维码识别调试 二维码识别调试
设备操作ToolStripMenuItem_退出ToolStripMenuItem_Text 退出 退出
table_datetime 时间 时间
table_info 信息 信息
table_module 模块 模块
table_step 步骤 步骤
IOControl_groupBox4_Text DO列表 DO列表
IOControl_groupBox3_Text DI列表 DI列表
IOControl_groupBox1_Text DO写入 DO写入
IOControl_groupBox1_btnOpenDo_Text 打开 打开
IOControl_groupBox1_btnCloseDO_Text 关闭 关闭
IOControl_groupBox1_label14_Text 地址: 地址:
IOControl_groupBox1_label5_Text 定时(ms): 定时(ms):
FrmPositionTool_FrmPositionTool_Text 升降轴位置测试 升降轴位置测试
FrmPositionTool_groupBox6_groupBox2_Text 位置信息 位置信息
FrmPositionTool_groupBox6_groupBox2_label5_Text 库位低点偏移量: 库位低点偏移量:
FrmPositionTool_groupBox6_groupBox2_label4_Text 库位高点偏移量: 库位高点偏移量:
FrmPositionTool_groupBox6_groupBox2_btnOpenFolder_Text 打开文件夹 打开文件夹
FrmPositionTool_groupBox6_groupBox2_label8_Text 移动速度: 移动速度:
FrmPositionTool_groupBox6_groupBox2_ioStatusControl1_label1_Text 检测信号 检测信号
FrmPositionTool_groupBox6_groupBox2_btnAbsMove_Text 开始运动 开始运动
FrmPositionTool_groupBox6_groupBox2_label3_Text 保存文件名称: 保存文件名称:
FrmPositionTool_groupBox6_groupBox2_label7_Text 实际位置: 实际位置:
FrmPositionTool_groupBox6_groupBox2_label13_Text 目标位置: 目标位置:
FrmPositionTool_groupBox6_groupBox2_btnSdStop_Text 停止 停止
FrmPositionTool_groupBox6_groupBox1_Text 设备信息 设备信息
FrmPositionTool_groupBox6_groupBox1_btnHomeMove_Text 原点返回 原点返回
FrmPositionTool_groupBox6_groupBox1_btnServoOn_Text 打开伺服 打开伺服
FrmPositionTool_groupBox6_groupBox1_btnServoOff_Text 关闭伺服 关闭伺服
FrmPositionTool_groupBox6_groupBox1_label2_Text 检测信号地址: 检测信号地址:
FrmPositionTool_groupBox6_btnExit_Text 退出 退出
FrmPositionTool_groupBox6_btnClear_Text 清理 清理
AxisMoveControl_groupAxis_Text 伺服运动 伺服运动
AxisMoveControl_groupAxis_groupBox2_Text 轴状态监控 轴状态监控
AxisMoveControl_groupAxis_groupBox2_groupBox2_Text 轴状态监控 轴状态监控
AxisMoveControl_groupAxis_groupBox2_label4_Text 回原状态: 回原状态:
AxisMoveControl_groupAxis_groupBox2_label2_Text 实际加速度: 实际加速度:
AxisMoveControl_groupAxis_groupBox2_lblINP_Text 到位 到位
AxisMoveControl_groupAxis_groupBox2_lblBUSY_Text 忙碌 忙碌
AxisMoveControl_groupAxis_groupBox2_lblNEL_Text 负极限 负极限
AxisMoveControl_groupAxis_groupBox2_lblORG_Text 原点 原点
AxisMoveControl_groupAxis_groupBox2_lblPEL_Text 正极限 正极限
AxisMoveControl_groupAxis_groupBox2_lblSvOn_Text 伺服 伺服
AxisMoveControl_groupAxis_groupBox2_lblEMG_Text 急停 急停
AxisMoveControl_groupAxis_groupBox2_lblWARN_Text 警告 警告
AxisMoveControl_groupAxis_groupBox2_lblALM_Text 报警 报警
AxisMoveControl_groupAxis_groupBox2_label53_Text 规划速度: 规划速度:
AxisMoveControl_groupAxis_groupBox2_label56_Text 实际速度: 实际速度:
AxisMoveControl_groupAxis_groupBox2_label55_Text 实际位置: 实际位置:
AxisMoveControl_groupAxis_groupBox2_label52_Text 规划位置: 规划位置:
AxisMoveControl_groupAxis_groupBox2_label50_Text 规划模式: 规划模式:
AxisMoveControl_groupAxis_panel1_linkLabel1_Text 复制 复制
AxisMoveControl_groupAxis_panel1_btnComAlarmClear_Text 清除报警 清除报警
AxisMoveControl_groupAxis_panel1_btnAxisStop_Text 停止运动 停止运动
AxisMoveControl_groupAxis_panel1_btnAxisReturnHome_Text 原点返回 原点返回
AxisMoveControl_groupAxis_panel1_btnDelMove_Text 点动- 点动-
AxisMoveControl_groupAxis_panel1_btnOpenAxis_Text 打开伺服 打开伺服
AxisMoveControl_groupAxis_panel1_btnCloseAxis_Text 关闭伺服 关闭伺服
AxisMoveControl_groupAxis_panel1_btnAddMove_Text 点动+ 点动+
AxisMoveControl_groupAxis_panel1_label1_Text 点动速度: 点动速度:
AxisMoveControl_groupAxis_panel1_label47_Text 目标速度: 目标速度:
AxisMoveControl_groupAxis_panel1_btnReadPosition_Text 读取位置 读取位置
AxisMoveControl_groupAxis_panel1_btnAxisVMove_Text 匀速运动 匀速运动
AxisMoveControl_groupAxis_panel1_label8_Text 实时位置: 实时位置:
AxisMoveControl_groupAxis_panel1_btnAxisRMove_Text 相对运动 相对运动
AxisMoveControl_groupAxis_panel1_btnAxisAMove_Text 绝对运动 绝对运动
AxisMoveControl_groupAxis_panel1_label49_Text AC伺服: AC伺服:
AxisMoveControl_groupAxis_panel1_label46_Text 地址: 地址:
AxisMoveControl_groupAxis_panel1_label48_Text 目标位置: 目标位置:
AxisMoveControl_groupAxis_panel1_label45_Text 端口号: 端口号:
AxisMoveControl_status_monitor 状态监控 状态监控
UC_SetUserPassword_groupBox1_Text 管理密码设置 管理密码设置
UC_SetUserPassword_groupBox1_label_oldpwd_Text 旧密码: 旧密码:
UC_SetUserPassword_groupBox1_label_newpwd_Text 新密码: 新密码:
UC_SetUserPassword_groupBox1_label_newpwd2_Text 重复新密码: 重复新密码:
UC_SetUserPassword_groupBox1_button_ok_Text 确认修改 确认修改
SuddenStop_BTN 急停 急停
Reset_BTN 复位 复位
AutoRun_Single 自动启动 自动启动
Airpressure_Check 气压检测 气压检测
SafetyLightCurtains 安全光栅 安全光栅
LeftDoorClose_Check 左侧防护门关闭 左侧防护门关闭
RightDoorClose_Check 右侧防护门关闭 右侧防护门关闭
BackDoorClose_Check 后侧防护门关闭 后侧防护门关闭
AGV_OnPosition AGV到位检测(预留) 折叠门安全光栅
StringFront_Check 进料线体前端料串检测 进料线体前端料串检测
StringBack_Check 进料线体末端料串检测 进料线体末端料串检测
StringFix_Top 进料线体料串固定上升端 进料线体料串固定上升端
StringFix_Bottom 进料线体料串固定下降端 进料线体料串固定下降端
TrayCheck 上料定位料盘检测 上料定位料盘检测
StringPosChecker_Work 上料定位旋转气缸定位端 上料定位旋转气缸定位端
StringPosChecker_Home 上料定位旋转气缸避让端 上料定位旋转气缸避让端
StringDoor_Open 上料机构折叠门打开端 上料机构折叠门打开端
StringDoor_Close 上料机构折叠门关闭端 上料机构折叠门关闭端
WidthCheck_7 7寸料盘检测 7寸料盘检测
WidthCheck_13 13寸料盘检测 13寸料盘检测
WidthCheck_15 15寸料盘检测 15寸料盘检测
ReelFlipDoor_R_Home 料口翻板旋转端(右侧) 料口翻板旋转端(右侧)
ReelFlipDoor_R_Work 料口翻板水平端(右侧) 料口翻板水平端(右侧)
Clamping_Work 夹爪气缸夹紧端 夹爪气缸夹紧端
Clamping_Relax 夹爪气缸放松端 夹爪气缸放松端
ReelFlipDoor_L_Home 料口翻板旋转端(左侧) 料口翻板旋转端(左侧)
ReelFlipDoor_L_Work 料口翻板水平端(左侧) 料口翻板水平端(左侧)
NGDoor_Open 单料口门上升端 单料口门上升端
NGDoor_Close 单料口门下降端 单料口门下降端
NGDoor_Tray_Check 单料口料盘检测 单料口料盘检测
TrayCheck_Fixture 料叉机构料盘检测 料叉机构料盘检测
Laser_Location 激光对位检测 激光对位检测
Run_Led 自动指示灯 自动指示灯
Alarm_Led 故障指示灯 故障指示灯
Standby_Led 待机指示灯 待机指示灯
Alarm_Buzzer 报警蜂鸣器 报警蜂鸣器
DoorSafe_Disable 门禁功能屏蔽 门禁功能屏蔽
Device_Led 设备照明开启 设备照明开启
Camera_Led 相机光源开启 相机光源开启
NitrogenValve 氮气阀门开启 氮气阀门开启
LineRun 进料线体正转 进料线体正转
LineRev 进料线体反转 进料线体反转
ReelFlipDoor_Home 料口翻板旋转 料口翻板旋转
ReelFlipDoor_Work 料口翻板水平 料口翻板水平
StringDoor_Axis_Break 上料机构折叠门刹车 上料机构折叠门刹车
XAxis_Position_P2 旋转轴位置P2 旋转轴位置P2
UpDownAxis_IHPosition_P3 升降轴库位入料高点P3 升降轴库位入料高点P3
UpDownAxis_ILPosition_P4 升降轴库位入料低点P4 升降轴库位入料低点P4
InOutAxis_Position_P3 进出轴库位点取料点P3 进出轴库位点取料点P3
tab_io IO调试 IO调试
tab_axis 伺服调试 伺服调试
ConfigControl_btnSavePos_Text 全部保存 全部保存
ConfigControl_groupBox3_Text 点位列表 点位列表
tab_store 库位调试 库位调试
StorePosControl_btnSavePos_Text 保存 保存
StorePosControl_groupBox3_Text 点位列表 点位列表
tab_setting 相关设置 相关设置
IOSingle_TimerOut IO信号超时时间(秒) IO信号超时时间(秒)
LastTrayAddHeight 最后一盘料补充高度mm 最后一盘料补充高度mm
Middle_P1 旋转机构待机点P1 旋转机构待机点P1
Middle_P2 旋转机构单料口P2 旋转机构单料口P2
Middle_P3 旋转机构料串P3 旋转机构料串P3
UpDown_P1 升降轴待机点P1 升降轴待机点P1
UpDown_P2 升降轴单料口高点P2 升降轴单料口高点P2
UpDown_P3 升降轴单料口低点P3 升降轴单料口低点P3
UpDown_P4 升降轴料串放料高点P3 升降轴料串放料高点P3
UpDown_P5 升降轴料串放料低点P4 升降轴料串放料低点P4
InOut_P1 进出机构待机点P1 进出机构待机点P1
InOut_P2 进出机构7寸单料口P2 进出机构7寸单料口P2
InOut_P3 进出机构7寸料串放料P3 进出机构7寸料串放料P3
InOut_P4 进出机构13/15寸料串放料P4 进出机构13/15寸料串放料P4
InOut_P5 进出机构13/15寸单料口P5 进出机构13/15寸单料口P5
Comp_P1 压紧机构待机点P1 压紧机构待机点P1
FlipDoorLength 翻转托盘行程 翻转托盘行程
StringDoorLength 折叠门行程 折叠门行程
Comp_P2 压紧机构8mm盘压紧点P2 压紧机构8mm盘压紧点P2
Comp_PoToMM 压紧机构每毫米脉冲 压紧机构每毫米脉冲
Comp_PH_MM 压紧机构库位高点偏移MM 压紧机构库位高点偏移MM
Comp_PL_MM 压紧机构压紧点偏移mm 压紧机构压紧点偏移mm
Batch_P1 上料提升机构待机点P1 上料提升机构待机点P1
Batch_P2 上料提升机构上料高点P2 上料提升机构上料高点P2
Batch_PoToMM 上料提升机构高度转换系数 上料提升机构高度转换系数
Batch_DetectDownMM 接触料盘后下降mm 接触料盘后下降mm
Batch_OutStoreDownMM 出库时初始下降mm 出库时初始下降mm
Batch_OutPlateDownMM 出库时每盘料补偿mm 出库时每盘料补偿mm
Clamp_P1 取料机构待机点P1 取料机构待机点P1
Clamp_P2 取料机构料串取料P2 取料机构料串取料P2
Clamp_P3 取料机构单料口8mm放料P3 取料机构单料口8mm放料P3
Clamp_PoToMM 取料机构高度转换系数 取料机构高度转换系数
Middle_Axis 旋转机构 旋转机构
UpDown_Axis 升降机构 升降机构
InOut_Axis 进出机构 进出机构
Comp_Axis 压紧机构 压紧机构
Batch_Axis 上料提升机构 上料提升机构
Clamp_Axis 取料机构 取料机构
device_initializing 设备加载中,请稍后... 设备加载中,请稍后...
enable_config_mode 启用配置模式 启用配置模式
safty_release_string 安全释放料串 安全释放料串
current_status 当前状态: 当前状态:
connect_fail 未成功连接 未成功连接
disable_config_mode 关闭配置模式 关闭配置模式
open_debug_mode 打开配置模式 打开配置模式
runbtn_press 按下启动按钮,开始启动. 按下启动按钮,开始启动.
transfer_equipment 出入库机构 出入库机构
out_store_detect_material 取料前料叉X30检测到有物料无法继续,请检查. 取料前料叉X30检测到有物料无法继续,请检查.
out_store_not_detect_material 取料前料叉X30没有检测到有物料无法继续,请检查. 出库时料叉X30没有检测到有物料无法继续,请检查.
out_store_wait_string_ready 等待料串准备好放料. 等待料串准备好放料.
out_store_wait_ngdoor_ready 等待单料口空闲. 等待单料口空闲.
in_store_detect_material 放料后料叉X30上任然检测到物料,请检查. 入库后料叉X30上任然检测到物料,请检查.
in_store_ng 入库NG 入库NG
posnum 库位号 库位号
wait_reel_transfer 单料口等待料盘离开. 单料口等待料盘离开.
reset_press 按下复位按钮. 按下复位按钮.
reset_press_with_sudden 急停未解除,按下复位按钮尝试复位安全继电器. 急停未解除,按下复位按钮尝试复位安全继电器.
system_is_running 系统正在运行. 系统正在运行.
runbtn_press_with_sudden 急停中,按下启动按钮,无法启动. 急停中,按下启动按钮,无法启动.
wait 等待 等待
not_detect_airpressure 未检测到气压信号. 未检测到气压信号.
string_inout_equipment 料串进出机构 料串进出机构
clamp_equipment 取放料机构 取放料机构
store_manage_equipment 进出库调度 进出库调度
reset_equipment 重置 重置
autotest_inout_equipment 出入库测试 出入库测试
Clamp_Axis_interference_01 翻板门不在垂直端,不允许下降取料轴 翻板门不在垂直端,不允许下降取料轴
Clamp_Axis_interference_02 上料定位臂不在避让端,不允许下降取料轴 上料定位臂不在避让端,不允许下降取料轴
Clamp_Axis_interference_03 翻板门不在垂直端,不允许下降取料轴 翻板门不在垂直端,不允许下降取料轴
Middle_Axis_interference_01 进出轴不在待机点时无法移动旋转轴 进出轴不在待机点时无法移动旋转轴
UpDown_Axis_interference_01 进出轴不在待机点时无法移动升降轴 进出轴不在待机点时无法移动升降轴
x29_low_no_reel 传感器X29未检测到单料口料盘. 传感器未检测到单料口料盘.
x29_higt_has_reel 系统启动X29检测到有无信息料盘,等待取走单料口料盘 系统启动检测到有无信息料盘,等待取走单料口料盘
wait_put_reel_into_ngdoor 等待阻挡物离开光栅 等待阻挡物离开光栅
ignored 已忽略 已忽略
SafetyLight_is_block 安全光栅被遮挡 安全光栅被遮挡
left_safedoor_not_close 左侧防护门没有关闭 左侧防护门没有关闭
right_safedoor_not_close 右侧防护门没有关闭 右侧防护门没有关闭
back_safedoor_not_close 后侧防护门没有关闭 后侧防护门没有关闭
system_pause 系统暂停 系统暂停
in_suddenstop 急停中 急停中
system_need_reset 系统需要重置 系统需要重置
store_inout_debug_mode 进出库调试模式 进出库调试模式
airpressure_not_enough 气压不足 气压不足
motion_alarm 运动报警 运动报警
not_detect_reel_height 未检测到盘宽 未检测到盘宽
wait_detect_reel_height 等待料盘测高 等待料盘测高
not_detect_reel_code 未识别到有效二维码 未识别到有效二维码
scan_code_timeout 扫码超时 扫码超时
wait_user_select_pos 等待手动选择入库库位 等待手动选择入库库位
wait_server_response_pos_timeout 服务器返回库位超时 服务器返回库位超时
wait_server_response_pos 等待服务器返回库位 等待服务器返回库位
reel_wait_in_store 料盘等待入库 料盘等待入库
please_take_ngdoor_reel 等待取走单口料盘 等待取走单口料盘
free 空闲中 空闲中
ngdoor 单料口: 单料口:
scanning_code 扫码中 扫码中
taking_code 取料中 取料中
no_info_reel 无信息料盘出库 无信息料盘出库
ngdoor_reel_out 单盘出库 单盘出库
reel_outting 出库中 出库中
reel_ining 入库中 入库中
no_string 当前没有料串 当前没有料串
detect_string 感应到料串 感应到料串
wait_stringdoor_close 等待关门折叠门 等待关门折叠门
string_ready_for_get 料串取料准备就绪 料串取料准备就绪
string_ready_for_put 料串放料准备就绪 料串放料准备就绪
wait_string_take 等待料串被取走 等待料串被取走
empty_reel 空料串 空料串
full_reel 满料串 满料串
instore_reel 入库料串 入库料串
string_prepare 料串准备中 料串准备中
string_releasing 料串释放中 料串释放中
cant_find_storeposfile 找不到库位配置文件 找不到库位配置文件
iocard_init_fail IO板卡初始化失败 IO板卡初始化失败
tempnhum_sensor_init_fail 温湿度传感器初始化失败,端口: 温湿度传感器初始化失败,端口:
tab_log 日志 日志
device_suddenstop_cant_start 急停中,无法启动 急停中,无法启动
device_resume 恢复运行 恢复运行
device_pause 暂停运行 暂停运行
start 启动 启动
device_isrunning_cant_exit 机器尚在运行,不能退出,请先停止运行. 机器尚在运行,不能退出,请先停止运行.
safty_releaseed_string 料串已是释放状态 料串已是释放状态
safty_releaseing_string 正在执行料串释放 正在执行料串释放
detect_signal 检测信号 检测信号
FrmPositionTool_serv_state 伺服状态 伺服状态
humidity 湿度 湿度
temp 温度 温度
reel_not_onposition_cant_manual_in 料盘没有到位,无法手动入库 料盘没有到位,无法手动入库
start_device_first 请先启动料仓! 请先启动料仓!
store_busy_cant_manual_out 料仓正在出入库中,无法手动出库 料仓正在出入库中,无法手动出库
stop_auto_test 停止自动库位测试 停止自动库位测试
start_auto_test 自动库位测试 自动库位测试
autotest_msg_01 自动出入库过程会再料盘送至出口后自动停止. 自动出入库过程会再料盘送至出口后自动停止.
autotest_msg_02 确定开始自动库位测试?\n请确保料仓库位全部为空. 确定开始自动库位测试?\n请确保料仓库位全部为空.
stop_inout_test 停止自动库位测试! 停止自动库位测试!
monitor_config_not_exist 找不到监控相机配置文件 找不到监控相机配置文件
monitor_config_load_fail 加载监控相机配置文件失败: 加载监控相机配置文件失败:
monitor_open_fail 监控相机打开失败 监控相机打开失败
begin_singlein 开始单盘入库 开始单盘入库
Clamp_Axis_running_cant_singlein 取料机构运转中,无法单盘入库 取料机构运转中,无法单盘入库
string_begin_release 开始释放料串 开始释放料串
string_begin_release 开始释放料串 开始释放料串
store_running_cant_inout 料串无法释放,料仓正在出入库中. 料串无法释放,料仓正在出入库中.
close_singledoor 关闭单料门 关闭单料门
not_in_single_prosses 当前没有在等待单盘入库: 当前没有在等待单盘入库:
begin_open_string_door 开始打开料串门 开始打开料串门
string_not_onposition_01 料串尚未到位无法关门X09=High 料串尚未到位无法关门X09=High
begin_close_string_door 开始关闭料串门 开始关闭料串门
string_full_takeout 料串已满请取出 料串已满请取出
in_store_nothave_position 入库未找到库位 入库未找到库位
string_not_onposition 回原时X09,X10信号异常,料串可能不在正确位置,请检查. 回原时X09,X10信号异常,料串可能不在正确位置,请检查.
tray_detect_reel_01 料叉传感器X30感应到有料,请人工确认 料叉传感器X30感应到有料,请人工确认
system_running_cantmove 系统正在运行,不能手动控制伺服
before_FrmPositionTool_stopmuchine 运行库位校准程序前,需要先停止料仓的运行
selCamera 请先选择相机 请先选择相机
selImage 请先选择图片 请先选择图片
title 提示 提示
imageIsNull 获取二维码图片为空 获取二维码图片为空
sureDelete 确定删除文件: 确定删除文件:
l_flipDoor_no_work 左侧翻板水平信号未亮 左侧翻板水平信号未亮
r_flipDoor_no_work 右侧翻板水平信号未亮 右侧翻板水平信号未亮
reel_not_in_right_status 料盘放置异常 料盘放置异常
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!