Remove % translation prefixes dotted around all over the place

This commit is contained in:
Dylan K. Taylor
2021-08-15 20:03:38 +01:00
parent 39cdf23bd5
commit 039c59856d
40 changed files with 83 additions and 83 deletions

View File

@ -40,8 +40,8 @@ class KillCommand extends VanillaCommand{
public function __construct(string $name){
parent::__construct(
$name,
"%" . KnownTranslationKeys::POCKETMINE_COMMAND_KILL_DESCRIPTION,
"%" . KnownTranslationKeys::POCKETMINE_COMMAND_KILL_USAGE,
KnownTranslationKeys::POCKETMINE_COMMAND_KILL_DESCRIPTION,
KnownTranslationKeys::POCKETMINE_COMMAND_KILL_USAGE,
["suicide"]
);
$this->setPermission(implode(";", [DefaultPermissionNames::COMMAND_KILL_SELF, DefaultPermissionNames::COMMAND_KILL_OTHER]));