国际化
This commit is contained in:
parent
6053b23fce
commit
03324543a3
@ -6,8 +6,6 @@ import org.jcnc.jnotepad.component.module.vbox.components.CmdTerminalBox;
|
||||
import org.jcnc.jnotepad.component.module.vbox.components.DebugBox;
|
||||
import org.jcnc.jnotepad.component.module.vbox.components.RunBox;
|
||||
|
||||
import static org.jcnc.jnotepad.common.constants.TextConstants.*;
|
||||
|
||||
/**
|
||||
* 底部Run,Debug,Cmd面板
|
||||
*
|
||||
@ -35,13 +33,13 @@ public class BuildPanel extends TabPane {
|
||||
runBox = new RunBox();
|
||||
debugBox = new DebugBox();
|
||||
|
||||
Tab runTab = new Tab(RUN,runBox);
|
||||
Tab runTab = new Tab("运行",runBox);
|
||||
runTab.setClosable(false);
|
||||
|
||||
Tab buildTab = new Tab(BUILD, debugBox);
|
||||
Tab buildTab = new Tab("构建", debugBox);
|
||||
buildTab.setClosable(false);
|
||||
|
||||
Tab cmdTab = new Tab(TERMINAL,cmdTerminalBox);
|
||||
Tab cmdTab = new Tab("终端",cmdTerminalBox);
|
||||
cmdTab.setClosable(false);
|
||||
this.getTabs().addAll(runTab,buildTab,cmdTab);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user