mirror of
https://e.coding.net/circlecloud/AuthMe.git
synced 2024-12-21 06:38:55 +00:00
fix login language error...
Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
parent
347defcfda
commit
41c940c9d6
@ -92,7 +92,7 @@ public class DataManager {
|
||||
} catch (final Exception e) {
|
||||
}
|
||||
}
|
||||
ConsoleLogger.info("AutoPurgeDatabase : Remove " + i + " AntiXRayData Files");
|
||||
ConsoleLogger.info("自动清理数据库: 移除 " + i + " 个 AntiXRayData 文件");
|
||||
}
|
||||
|
||||
public synchronized void purgeDat(final List<String> cleared) {
|
||||
@ -105,8 +105,8 @@ public class DataManager {
|
||||
continue;
|
||||
}
|
||||
try {
|
||||
playerFile = new File(
|
||||
plugin.getServer().getWorldContainer() + File.separator + Settings.defaultWorld + File.separator + "players" + File.separator + player.getUniqueId() + ".dat");
|
||||
playerFile = new File(plugin.getServer().getWorldContainer() + File.separator + Settings.defaultWorld + File.separator + "players" + File.separator + player.getUniqueId()
|
||||
+ ".dat");
|
||||
} catch (final Exception ignore) {
|
||||
}
|
||||
if (playerFile != null && playerFile.exists()) {
|
||||
@ -122,7 +122,7 @@ public class DataManager {
|
||||
} catch (final Exception ignore) {
|
||||
}
|
||||
}
|
||||
ConsoleLogger.info("AutoPurgeDatabase : Remove " + i + " .dat Files");
|
||||
ConsoleLogger.info("自动清理数据库: 移除 " + i + " 个 .dat 文件");
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@ -148,7 +148,7 @@ public class DataManager {
|
||||
} catch (final Exception e) {
|
||||
}
|
||||
}
|
||||
ConsoleLogger.info("AutoPurgeDatabase : Remove " + i + " EssentialsFiles");
|
||||
ConsoleLogger.info("自动清理数据库: 移除 " + i + " 个 EssentialsFiles 文件");
|
||||
}
|
||||
|
||||
public synchronized void purgeLimitedCreative(final List<String> cleared) {
|
||||
@ -178,7 +178,7 @@ public class DataManager {
|
||||
} catch (final Exception e) {
|
||||
}
|
||||
}
|
||||
ConsoleLogger.info("AutoPurgeDatabase : Remove " + i + " LimitedCreative Survival, Creative and Adventure files");
|
||||
ConsoleLogger.info("自动清理数据库: 移除 " + i + " 个 LimitedCreative Survival, Creative and Adventure 文件");
|
||||
}
|
||||
|
||||
public synchronized void purgePermissions(final List<String> cleared, final Permission permission) {
|
||||
@ -193,7 +193,7 @@ public class DataManager {
|
||||
} catch (final Exception e) {
|
||||
}
|
||||
}
|
||||
ConsoleLogger.info("AutoPurgeDatabase : Remove " + i + " Permissions");
|
||||
ConsoleLogger.info("自动清理数据库: 移除 " + i + " 个 Permissions 文件");
|
||||
}
|
||||
|
||||
public void run() {
|
||||
|
@ -32,30 +32,19 @@ public class Messages {
|
||||
}
|
||||
|
||||
public void send(final CommandSender sender, final String msg) {
|
||||
String loc = msgcfg.getMessage(msg);
|
||||
if (loc == null || loc.isEmpty()) {
|
||||
loc = "错误的语言文件 " + msg + " ; 请联系管理员升级语言文件";
|
||||
ConsoleLogger.showError("错误的语言文件 " + msg + " 请检查您的配置文件" + msgcfg.getName() + " !");
|
||||
}
|
||||
for (final String l : loc.split("&n")) {
|
||||
final String[] loc = send(msg);
|
||||
for (final String l : loc) {
|
||||
sender.sendMessage(l);
|
||||
}
|
||||
}
|
||||
|
||||
public String[] send(final String msg) {
|
||||
final String s = msgcfg.getMessage(msg);
|
||||
if (s == null || s.isEmpty()) {
|
||||
String loc = msgcfg.getMessage(msg);
|
||||
if (loc == null || loc.isEmpty()) {
|
||||
loc = "错误的语言文件 " + msg + " ; 请联系管理员升级语言文件";
|
||||
ConsoleLogger.showError("错误的语言文件 " + msg + " 请检查您的配置文件" + msgcfg.getName() + " !");
|
||||
final String[] loc = new String[1];
|
||||
loc[0] = "错误的语言文件 " + msg + " ; 请联系管理员升级语言文件";
|
||||
return (loc);
|
||||
}
|
||||
final int i = s.split("&n").length;
|
||||
final String[] loc = new String[i];
|
||||
if (loc.length == 0) {
|
||||
loc[0] = "错误的语言文件 " + msg + " ; 请联系管理员升级语言文件";
|
||||
}
|
||||
return loc;
|
||||
return loc.split("&n");
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user