Skip to content

Commit cc4b211

Browse files
committed
Fix translation consistency
1 parent 3218fc1 commit cc4b211

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/draw_window_minecraft/draw_window_minecraft.gml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,11 +356,11 @@ function draw_window_minecraft() {
356356
if (language != 1) draw_text_dynamic(x1 + 45, yy + 32, "There are " + string(block_outside) + " blocks outside the 2 octave range.")
357357
else draw_text_dynamic(x1 + 45, yy + 32, "" + string(block_outside) + " 个方块在 2 八度范围外。")
358358
}
359-
if (draw_button2(x1 + 45, yy + 50, 80, condstr(language != 1, "Select lower", "框选下限外音符"), 0, 1)) {
359+
if (draw_button2(x1 + 45, yy + 50, 80, condstr(language != 1, "Select lower", "选择过低音符"), 0, 1)) {
360360
select_outside(true, false)
361361
windowclose = 1
362362
}
363-
if (draw_button2(x1 + 135, yy + 50, 80, condstr(language != 1, "Select higher", "框选上限外音符"), 0, 1)) {
363+
if (draw_button2(x1 + 135, yy + 50, 80, condstr(language != 1, "Select higher", "选择过高音符"), 0, 1)) {
364364
select_outside(false, true)
365365
windowclose = 1
366366
}
@@ -379,7 +379,7 @@ function draw_window_minecraft() {
379379
}
380380
}
381381
}
382-
if (draw_button2(x1 + 335, yy + 50, 120, condstr(language != 1, "Save resource pack", "TRANSLATE"), 0, 1)) {
382+
if (draw_button2(x1 + 335, yy + 50, 120, condstr(language != 1, "Save resource pack", "保存资源包"), 0, 1)) {
383383
datapack_getextranotes()
384384
}
385385
} else {

0 commit comments

Comments
 (0)