mirror of https://github.com/buggins/dlangide.git
Changed the UI options and added english terms
This commit is contained in:
parent
a92a253481
commit
4f69a40530
|
@ -29,7 +29,7 @@ class NewFolderDialog : Dialog {
|
||||||
|
|
||||||
this(IDEFrame parent, Project currentProject, ProjectFolder folder) {
|
this(IDEFrame parent, Project currentProject, ProjectFolder folder) {
|
||||||
super(UIString.fromId("OPTION_NEW_SOURCE_FILE"c), parent.window,
|
super(UIString.fromId("OPTION_NEW_SOURCE_FILE"c), parent.window,
|
||||||
DialogFlag.Modal | DialogFlag.Resizable | DialogFlag.Popup, 800, 0);
|
DialogFlag.Modal | DialogFlag.Popup, 800, 0);
|
||||||
layoutWidth = FILL_PARENT;
|
layoutWidth = FILL_PARENT;
|
||||||
_ide = parent;
|
_ide = parent;
|
||||||
_icon = "dlangui-logo1";
|
_icon = "dlangui-logo1";
|
||||||
|
@ -59,7 +59,7 @@ class NewFolderDialog : Dialog {
|
||||||
TextWidget { text: NAME }
|
TextWidget { text: NAME }
|
||||||
EditLine { id: fileName; text: "newfolder"; layoutWidth: fill }
|
EditLine { id: fileName; text: "newfolder"; layoutWidth: fill }
|
||||||
CheckBox { id: makePackage }
|
CheckBox { id: makePackage }
|
||||||
TextWidget { text: MAKE_PACKAGE}
|
TextWidget { text: OPTION_MAKE_PACKAGE}
|
||||||
}
|
}
|
||||||
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 }
|
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 }
|
||||||
}
|
}
|
||||||
|
|
|
@ -197,6 +197,7 @@ OPTION_GDC_EXECUTABLE=GDC executable
|
||||||
OPTION_LANGUAGE=Language
|
OPTION_LANGUAGE=Language
|
||||||
OPTION_LDC2_EXECUTABLE=LDC2 executable
|
OPTION_LDC2_EXECUTABLE=LDC2 executable
|
||||||
OPTION_LDMD2_EXECUTABLE=LDMD2 executable
|
OPTION_LDMD2_EXECUTABLE=LDMD2 executable
|
||||||
|
OPTION_MAKE_PACKAGE=Create package.d
|
||||||
OPTION_MODULE_NAME=Module name
|
OPTION_MODULE_NAME=Module name
|
||||||
OPTION_NEW_PROJECT=New project
|
OPTION_NEW_PROJECT=New project
|
||||||
OPTION_NEW_SOURCE_FILE=New source file
|
OPTION_NEW_SOURCE_FILE=New source file
|
||||||
|
|
Loading…
Reference in New Issue