Skip to content

Commit 769a33f

Browse files
authored
Fix incorrect translation identifiers during stage creation (#721)
1 parent 8ba4199 commit 769a33f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/funkin/editors/stage/StageCreationScreen.hx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class StageCreationScreen extends UISubstateWindow {
4040
var stageInfo:UIText;
4141
add(stageInfo = new UIText(windowSpr.x + 20, windowSpr.y + 30 + 16, 0, translate("title"), 28));
4242

43-
add(stageNameTextBox = new UITextBox(stageInfo.x, stageInfo.y + stageInfo.height + 36, translate("stage-name")));
44-
addLabelOn(stageNameTextBox, translate("stage-name"));
43+
add(stageNameTextBox = new UITextBox(stageInfo.x, stageInfo.y + stageInfo.height + 36, translate("stageName")));
44+
addLabelOn(stageNameTextBox, translate("stageName"));
4545

46-
add(stagePathTextBox = new UITextBox(stageNameTextBox.x + 320 + 26, stageNameTextBox.y, translate("stage-path")));
47-
addLabelOn(stagePathTextBox, translate("stage-path"));
46+
add(stagePathTextBox = new UITextBox(stageNameTextBox.x + 320 + 26, stageNameTextBox.y, translate("stagePath")));
47+
addLabelOn(stagePathTextBox, translate("stagePath"));
4848

4949
add(saveButton = new UIButton(windowSpr.x + windowSpr.bWidth - 20 - 125, windowSpr.y + windowSpr.bHeight - 16 - 32, TU.translate("editor.saveClose"), function() {
5050
saveStageInfo();

0 commit comments

Comments
 (0)