mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 02:08:21 +00:00
More langs :D
This commit is contained in:
@ -89,7 +89,7 @@ class BaseLang{
|
||||
$baseText = $this->parseTranslation( $baseText !== null ? $baseText : $str);
|
||||
|
||||
foreach($params as $i => $p){
|
||||
$baseText = str_replace("{%$i}", $this->parseTranslation($p), $baseText);
|
||||
$baseText = str_replace("{%$i}", $this->parseTranslation((string) $p), $baseText);
|
||||
}
|
||||
|
||||
return $baseText;
|
||||
|
@ -183,3 +183,64 @@ commands.setworldspawn.usage=/setworldspawn [<x> <y> <z>]
|
||||
commands.setworldspawn.success=Set the world spawn point to ({%0}, {%1}, {%2})
|
||||
|
||||
|
||||
# -------------------- PocketMine language files, only for console --------------------
|
||||
|
||||
pocketmine.data.playerNotFound=Player data not found for "{%0}", creating new profile
|
||||
pocketmine.data.playerCorrupted=Corrupted data found for "{%0}", creating new profile
|
||||
pocketmine.data.playerOld=Old Player data found for "{%0}", upgrading profile
|
||||
pocketmine.data.saveError=Could not save player "{%0}": {%1}
|
||||
|
||||
pocketmine.level.notFound=Level "{%0}" not found
|
||||
pocketmine.level.loadError=Could not load level "{%0}": {%1}
|
||||
pocketmine.level.generationError=Could not generate level "{%0}": {%1}
|
||||
pocketmine.level.tickError=Could not tick level "{%0}": {%1}
|
||||
pocketmine.level.chunkUnloadError=Error while unloading a chunk: {%0}
|
||||
pocketmine.level.backgroundGeneration=Spawn terrain for level "{%0}" is being generated in the background
|
||||
pocketmine.level.defaultError=No default level has been loaded
|
||||
pocketmine.level.preparing=Preparing level "{%0}"
|
||||
pocketmine.level.unloading=Unloading level "{%0}"
|
||||
|
||||
pocketmine.server.start=Starting Minecraft: PE server version {%0}
|
||||
pocketmine.server.networkError=[Network] Stopped interface {%0} due to {%1}
|
||||
pocketmine.server.networkStart=Opening server on {%0}:{%1}
|
||||
pocketmine.server.info=This server is running {%0} version {%1} "{%2}" (API {%3})
|
||||
pocketmine.server.license={%0} is distributed under the LGPL License
|
||||
pocketmine.server.tickOverload=Can't keep up! Is the server overloaded?
|
||||
pocketmine.server.startFinished=Done ({%0}s)! For help, type "help" or "?"
|
||||
pocketmine.server.defaultGameMode=Default game type: {%0}
|
||||
pocketmine.server.query.start=Starting GS4 status listener
|
||||
pocketmine.server.query.info=Setting query port to {%0}
|
||||
pocketmine.server.query.running=Query running on {%0}:{%1}
|
||||
|
||||
pocketmine.command.alias.illegal=Could not register alias {%0} because it contains illegal characters
|
||||
pocketmine.command.alias.notFound=Could not register alias {%0} because it contains commands that do not exist: {%1}
|
||||
pocketmine.command.exception=Unhandled exception executing command '{%0}' in {%1}: {%2}
|
||||
|
||||
pocketmine.crash.create=An unrecoverable error has occurred and the server has crashed. Creating a crash dump
|
||||
pocketmine.crash.error=Could not create crash dump: {%0}
|
||||
pocketmine.crash.submit=Please upload the "{%0}" file to the Crash Archive and submit the link to the Bug Reporting page. Give as much info as you can.
|
||||
pocketmine.crash.archive=The crash dump has been automatically submitted to the Crash Archive. You can view it on {%0} or use the ID #{%1}.
|
||||
|
||||
pocketmine.debug.enable=LevelDB support enabled
|
||||
|
||||
pocketmine.player.invalidMove={%0} moved wrongly!
|
||||
pocketmine.player.logIn={%0}[/{%1}:{%2}] logged in with entity id {%3} at ({%4}, {%5}, {%6}, {%7})
|
||||
pocketmine.player.logOut={%0}[/{%1}:{%2}] logged out due to {%3}
|
||||
pocketmine.player.invalidEntity={%0} tried to attack an invalid entity
|
||||
|
||||
pocketmine.plugin.load=Loading {%0}
|
||||
pocketmine.plugin.enable=Enabling {%0}
|
||||
pocketmine.plugin.disable=Disabling {%0}
|
||||
pocketmine.plugin.restrictedName=Restricted name
|
||||
pocketmine.plugin.incompatibleAPI=Incompatible API version
|
||||
pocketmine.plugin.unknownDependency=Unknown dependency
|
||||
pocketmine.plugin.circularDependency=Circular dependency detected
|
||||
pocketmine.plugin.genericLoadError=Could not load plugin '{%0}'
|
||||
pocketmine.plugin.spacesDiscouraged=Plugin '{%0}' uses spaces in its name, this is discouraged
|
||||
pocketmine.plugin.loadError=Could not load plugin '{%0}': {%1}
|
||||
pocketmine.plugin.duplicateError=Could not load plugin '{%0}': plugin exists
|
||||
pocketmine.plugin.fileError=Could not load '{%0}' in folder '{%1}': {%2}
|
||||
pocketmine.plugin.commandError=Could not load command {%0} for plugin {%1}
|
||||
pocketmine.plugin.aliasError=Could not load alias {%0} for plugin {%1}
|
||||
pocketmine.plugin.deprecatedEvent=Plugin '{%0}' has registered a listener for '{%1}' on method '{%2}', but the event is Deprecated.
|
||||
pocketmine.plugin.eventError="Could not pass event '{%0}' to '{%1}': {%2} on {%3}
|
||||
|
Reference in New Issue
Block a user