Files
Cleaner/src/Language.h
T
2024-10-31 12:59:20 +08:00

74 lines
4.6 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#pragma once
#include "Global.h"
std::string en_US = R"(
cleaner.info.prefix=§e§l[Cleaner] §r
cleaner.command.cleaner=Cleaner admin command.
cleaner.command.despawnSuccess=Successfully despawned %1$s entities.
cleaner.command.error.noTarget=No targets matched the selector.
cleaner.command.error.playerOnly=This command can only be executed by players!
cleaner.command.tps.output=Current server real-time TPS %1$s §r, average TPS %2$s.
cleaner.command.mspt.output=Current server MSPT %1$s.
cleaner.command.clean.output=Clean task successfully initiated!
cleaner.command.voteclean=Initiate entity clean vote.
cleaner.command.despawntime=Despawn time for items set to %1$s game ticks.
cleaner.output.count1=The system will automatically clean server entities in %1$s seconds!
cleaner.output.count2=Attention! The system will automatically clean server entities in %1$s seconds!
cleaner.output.finish=Cleaning complete! A total of %1$s entities have been cleaned this time.
cleaner.output.opClean=Admin has enabled server entity cleaning.
cleaner.output.reload=Cleaner mod reloaded. Some configurations may require a server restart to take effect.
cleaner.output.triggerAutoCleanCount=Too many server entities detected! There are %1$s cleanable entities currently on the server. Auto-clean program has been activated.
cleaner.output.triggerAutoCleanTps=Low TPS detected! Server average TPS %1$s\nClean program has been initiated.
cleaner.vote.cooldown=Vote cleaning cooldown...
cleaner.vote.cancel=Vote canceled!
cleaner.vote.confirmNo=Think again
cleaner.vote.confirmOk=Initiate vote
cleaner.vote.confirmTubtitle=Do you want to initiate a clean vote?
cleaner.vote.accept=You have agreed to entity cleaning.
cleaner.vote.deny=You have declined entity cleaning.
cleaner.vote.no=Deny
cleaner.vote.ok=Agree
cleaner.vote.subtitle=%1$s lunched a clean vote.\n\n Do you agree to clean server entities now?
cleaner.vote.timeout=Vote has expired!
cleaner.vote.succeed=Vote cleaning successful!
cleaner.vote.failed=Vote cleaning did not passed!
cleaner.vote.title=Vote Cleaning
cleaner.vote.voted=You have been voted!
cleaner.vote.voteMessage=%1$s lunched a clean vote. If you agree cleaning entities but did not received a form, please type command /voteclean to vote.
)";
std::string zh_CN = R"(
cleaner.info.prefix=§e§l[Cleaner] §r
cleaner.command.cleaner=Cleaner管理员命令
cleaner.command.despawnSuccess= %1$s
cleaner.command.error.noTarget=
cleaner.command.error.playerOnly=
cleaner.command.tps.output=TPS %1$s §rTPS %2$s
cleaner.command.mspt.output=MSPT %1$s
cleaner.command.clean.output=
cleaner.command.voteclean=
cleaner.command.despawntime= %1$s
cleaner.output.count1= %1$s
cleaner.output.count2= %1$s
cleaner.output.finish= %1$s
cleaner.output.opClean=
cleaner.output.reload=Cleaner插件
cleaner.output.triggerAutoCleanCount= %1$s
cleaner.output.triggerAutoCleanTps=TPS过低TPS %1$s\n系统已启动清理程序
cleaner.vote.cooldown=...
cleaner.vote.cancel=
cleaner.vote.confirmNo=
cleaner.vote.confirmOk=
cleaner.vote.confirmTubtitle=
cleaner.vote.accept=
cleaner.vote.deny=
cleaner.vote.no=
cleaner.vote.ok=
cleaner.vote.subtitle=%1$s \n\n你是否同意现在清理服务器实体
cleaner.vote.timeout=
cleaner.vote.succeed=
cleaner.vote.failed=
cleaner.vote.title=
cleaner.vote.voted=
cleaner.vote.voteMessage=%1$s /voteclean
)";