mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-25 20:56:28 +00:00
Add some text to language file
This commit is contained in:
parent
b8f5299995
commit
e297a29adb
@ -36,6 +36,8 @@ public final class Language {
|
|||||||
public String Client_login = "[Dispatch] Client {ip} logged in as {uid}";
|
public String Client_login = "[Dispatch] Client {ip} logged in as {uid}";
|
||||||
public String Username_not_found = "Username not found.";
|
public String Username_not_found = "Username not found.";
|
||||||
public String Username_not_found_create_failed = "Username not found, create failed.";
|
public String Username_not_found_create_failed = "Username not found, create failed.";
|
||||||
|
public String Create_resources_folder = "Creating resources folder...";
|
||||||
|
public String Place_copy = "Place a copy of 'BinOutput' and 'ExcelBinOutput' in the resources folder.";
|
||||||
|
|
||||||
// Command
|
// Command
|
||||||
public String No_command_specified = "No command specified.";
|
public String No_command_specified = "No command specified.";
|
||||||
|
@ -176,15 +176,15 @@ public final class Utils {
|
|||||||
|
|
||||||
// Check for resources folder.
|
// Check for resources folder.
|
||||||
if(!fileExists(resourcesFolder)) {
|
if(!fileExists(resourcesFolder)) {
|
||||||
logger.info("Creating resources folder...");
|
logger.info(Grasscutter.getLanguage().Create_resources_folder);
|
||||||
logger.info("Place a copy of 'BinOutput' and 'ExcelBinOutput' in the resources folder.");
|
logger.info(Grasscutter.getLanguage().Place_copy);
|
||||||
createFolder(resourcesFolder); exit = true;
|
createFolder(resourcesFolder); exit = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for BinOutput + ExcelBinOuput.
|
// Check for BinOutput + ExcelBinOuput.
|
||||||
if(!fileExists(resourcesFolder + "BinOutput") ||
|
if(!fileExists(resourcesFolder + "BinOutput") ||
|
||||||
!fileExists(resourcesFolder + "ExcelBinOutput")) {
|
!fileExists(resourcesFolder + "ExcelBinOutput")) {
|
||||||
logger.info("Place a copy of 'BinOutput' and 'ExcelBinOutput' in the resources folder.");
|
logger.info(Grasscutter.getLanguage().Place_copy);
|
||||||
exit = true;
|
exit = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user