Skip to content

Commit cdd4017

Browse files
OctoFlareDevBentroen
authored andcommitted
Removed .gitignore files
1 parent 5b3ae74 commit cdd4017

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/control_draw/control_draw.gml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1568,7 +1568,7 @@ function control_draw() {
15681568
else show_menu_ext("settingsp", 29, 19, icon(icons.INFORMATION) + "歌曲信息......|" + "歌曲数据......|-|" + "首选项......")
15691569
}
15701570
if (draw_tab("帮助")) {
1571-
show_menu_ext("help", 109 - 30 * isplayer, 19, icon(icons.HELP) + "教程视频|\\|Part 1: Composing note block music|Part 2: Opening MIDI files|Part 3: Importing songs into Minecraft|Part 4: Editing songs made in Minecraft |-|F1$观看所有|/|-|" + icon(icons.INTERNET) + "Website......|GitHub......|Minecraft Forums 帖子......|Minecraft Wiki 页面......|-|更新历史......|关于......")
1571+
show_menu_ext("help", 109 - 30 * isplayer, 19, icon(icons.HELP) + "教程视频|\\|Part 1: Composing note block music|Part 2: Opening MIDI files|Part 3: Importing songs into Minecraft|Part 4: Editing songs made in Minecraft |-|F1$观看所有|/|-|" + icon(icons.INTERNET) + "官方网站......|GitHub......|Minecraft Forums 帖子......|Minecraft Wiki 页面......|-|更新历史......|关于......")
15721572
}
15731573
}
15741574

scripts/draw_window_about/draw_window_about.gml

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,17 @@ function draw_window_about() {
7676
draw_set_halign(fa_left)
7777
// End credits box
7878

79-
if (draw_button2(x1 + 36, y1 + 380, 72, "Website...", false)) {
79+
if (draw_button2(x1 + 36, y1 + 380, 72, condstr(language != 1, "Website...", "官方网站"), false)) {
8080
open_url(link_github)
8181
}
82-
if (draw_button2(x1 + 112, y1 + 380, 72, "GitHub...", false)) {
82+
if (draw_button2(x1 + 112, y1 + 380, 72, condstr(language != 1, "GitHub...", "Github"), false)) {
8383
open_url(link_website)
8484
}
85-
if (draw_button2(x1 + 188, y1 + 380, 72, "Discord...", false)) {
85+
if (draw_button2(x1 + 188, y1 + 380, 72, condstr(language != 1, "Discord...", "Discord"), false)) {
8686
open_url(link_discord)
8787
}
8888

89-
if (draw_button2(x1 + 580 - 72 - 8, y1 + 380, 72, "OK", false) && (windowopen = 1 || theme != 3)) {
89+
if (draw_button2(x1 + 580 - 72 - 8, y1 + 380, 72, condstr(language != 1, "OK", "确定"), false) && (windowopen = 1 || theme != 3)) {
9090
windowclose = 1
9191
}
9292
if (array_length(text_mouseover) = 0) window_set_cursor(cr_default)

0 commit comments

Comments
 (0)