From 2f975686cbb3fbaab615d5de8c21daff6a548c45 Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Wed, 4 Nov 2020 23:32:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B9=8B=E5=89=8D=E6=9B=B4=E6=94=B9=E6=96=87?= =?UTF-8?q?=E6=9C=AC=E5=8F=98=E9=87=8F=E5=90=8D=E5=BF=98=E4=BA=86=E6=94=B9?= =?UTF-8?q?=E5=BC=95=E7=94=A8=E5=90=8D=E5=AF=BC=E8=87=B4=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E5=A4=8D=E5=88=B6/=E7=B2=98=E8=B4=B4=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E4=BC=9A=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parts/scenes/customGame.lua | 4 ++-- parts/scenes/custom_field.lua | 4 ++-- parts/scenes/custom_mission.lua | 4 ++-- parts/scenes/custom_sequence.lua | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/parts/scenes/customGame.lua b/parts/scenes/customGame.lua index 2f0c740e..2a1b6a93 100644 --- a/parts/scenes/customGame.lua +++ b/parts/scenes/customGame.lua @@ -42,7 +42,7 @@ function keyDown.customGame(key) str=str.."!"..copyBoard().."!" if #MISSION>0 then str=str..copyMission()end sys.setClipboardText(str.."!") - LOG.print(text.copySuccess,COLOR.green) + LOG.print(text.exportSuccess,COLOR.green) elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then local str=sys.getClipboardText() local p1,p2,p3,p4,p5--ptr* @@ -70,7 +70,7 @@ function keyDown.customGame(key) break end end - LOG.print(text.pasteSuccess,COLOR.green) + LOG.print(text.importSuccess,COLOR.green) return end LOG.print(text.dataCorrupted,COLOR.red) diff --git a/parts/scenes/custom_field.lua b/parts/scenes/custom_field.lua index e017560d..13f83899 100644 --- a/parts/scenes/custom_field.lua +++ b/parts/scenes/custom_field.lua @@ -115,13 +115,13 @@ function keyDown.custom_field(key) end elseif key=="c"and kb.isDown("lctrl","rctrl")or key=="cC"then sys.setClipboardText("Techmino Field:"..copyBoard(S.page)) - LOG.print(text.copySuccess,COLOR.green) + LOG.print(text.exportSuccess,COLOR.green) elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then local str=sys.getClipboardText() local p=string.find(str,":")--ptr* if p then str=sub(str,p+1)end if pasteBoard(str,S.page)then - LOG.print(text.pasteSuccess,COLOR.green) + LOG.print(text.importSuccess,COLOR.green) else LOG.print(text.dataCorrupted,COLOR.red) end diff --git a/parts/scenes/custom_mission.lua b/parts/scenes/custom_mission.lua index d7281e99..a742ffb0 100644 --- a/parts/scenes/custom_mission.lua +++ b/parts/scenes/custom_mission.lua @@ -72,14 +72,14 @@ function keyDown.custom_mission(key) elseif key=="c"and kb.isDown("lctrl","rctrl")or key=="cC"then if #MISSION>0 then sys.setClipboardText("Techmino Target:"..copyMission()) - LOG.print(text.copySuccess,COLOR.green) + LOG.print(text.exportSuccess,COLOR.green) end elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then local str=sys.getClipboardText() local p=string.find(str,":")--ptr* if p then str=sub(str,p+1)end if pasteMission(str)then - LOG.print(text.pasteSuccess,COLOR.green) + LOG.print(text.importSuccess,COLOR.green) else LOG.print(text.dataCorrupted,COLOR.red) end diff --git a/parts/scenes/custom_sequence.lua b/parts/scenes/custom_sequence.lua index f0b3b52c..a50ebc07 100644 --- a/parts/scenes/custom_sequence.lua +++ b/parts/scenes/custom_sequence.lua @@ -74,14 +74,14 @@ function keyDown.custom_sequence(key) elseif key=="c"and kb.isDown("lctrl","rctrl")or key=="cC"then if #BAG>0 then sys.setClipboardText("Techmino SEQ:"..copySequence()) - LOG.print(text.copySuccess,COLOR.green) + LOG.print(text.exportSuccess,COLOR.green) end elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then local str=sys.getClipboardText() local p=string.find(str,":")--ptr* if p then str=sub(str,p+1)end if pasteSequence(str)then - LOG.print(text.pasteSuccess,COLOR.green) + LOG.print(text.importSuccess,COLOR.green) else LOG.print(text.dataCorrupted,COLOR.red) end