-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update v0.12.1
- Loading branch information
Showing
10 changed files
with
59 additions
and
55 deletions.
There are no files selected for viewing
Submodule SDK-GMLIB
updated
51 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#pragma once | ||
#include "Global.h" | ||
#include <iostream> | ||
|
||
std::string defaultConfig = R"({ | ||
"language": "en_US" | ||
})"; | ||
struct Config { | ||
int version = 1; | ||
|
||
std::string language = "zh_CN"; | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
#pragma once | ||
#include "Global.h" | ||
|
||
std::string defaultLanguage_en_US = R"({ | ||
"freecamera.command.desc": "Enable or disable freecamera mode.", | ||
"freecamera.command.enabled": "Freecamera mode enabled", | ||
"freecamera.command.disabled": "Freecamera mode disabled", | ||
"freecamera.command.console": "This command can only execute by players.", | ||
"error.protocolMismatch.info":"You are running on an unsupport protocol version! This may result in crash!", | ||
"error.protocolMismatch.version":"Support protocol %1$s, current protocol %2$s." | ||
})"; | ||
std::string en_US = R"( | ||
freecamera.command.desc=Enable or disable freecamera mode. | ||
freecamera.command.enabled=Freecamera mode enabled. | ||
freecamera.command.disabled=Freecamera mode disabled. | ||
freecamera.command.console=This command can only execute by players. | ||
error.protocolMismatch.info=You are running on an unsupport protocol version! This may result in crash! | ||
error.protocolMismatch.version=Support protocol %1$s, current protocol %2$s. | ||
)"; | ||
|
||
std::string defaultLanguage_zh_CN = R"({ | ||
"freecamera.command.desc": "开启或关闭自由视角模式", | ||
"freecamera.command.enabled": "自由视角模式已启用", | ||
"freecamera.command.disabled": "自由视角模式已禁用", | ||
"freecamera.command.console": "该命令只能由玩家执行", | ||
"error.protocolMismatch.info":"此插件正在不兼容的版本协议上运行!这可能造成服务器崩溃。", | ||
"error.protocolMismatch.version":"此插件支持版本协议 %1$s,服务器版本协议 %2$s。" | ||
})"; | ||
std::string zh_CN = R"( | ||
freecamera.command.desc=开启或关闭自由视角模式。 | ||
freecamera.command.enabled=自由视角模式已启用。 | ||
freecamera.command.disabled=自由视角模式已禁用。 | ||
freecamera.command.console=该命令只能由玩家执行。 | ||
error.protocolMismatch.info=此插件正在不兼容的版本协议上运行!这可能造成服务器崩溃。 | ||
error.protocolMismatch.version=此插件支持版本协议 %1$s,服务器版本协议 %2$s。 | ||
)"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters