mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-17 19:50:18 +00:00
Merge branch 'release/3.2'
This commit is contained in:
Submodule src/pocketmine/lang/locale updated: 91e77ffbce...66c4713589
@@ -93,7 +93,7 @@ class SetupWizard{
|
||||
}
|
||||
|
||||
private function showLicense() : bool{
|
||||
$this->message($this->lang->get("welcome_to_pocketmine"));
|
||||
$this->message($this->lang->translateString("welcome_to_pocketmine", [\pocketmine\NAME]));
|
||||
echo <<<LICENSE
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
@@ -104,7 +104,7 @@ class SetupWizard{
|
||||
LICENSE;
|
||||
$this->writeLine();
|
||||
if(strtolower($this->getInput($this->lang->get("accept_license"), "n", "y/N")) !== "y"){
|
||||
$this->error($this->lang->get("you_have_to_accept_the_license"));
|
||||
$this->error($this->lang->translateString("you_have_to_accept_the_license", [\pocketmine\NAME]));
|
||||
sleep(5);
|
||||
|
||||
return false;
|
||||
@@ -221,7 +221,7 @@ LICENSE;
|
||||
private function endWizard(){
|
||||
$this->message($this->lang->get("you_have_finished"));
|
||||
$this->message($this->lang->get("pocketmine_plugins"));
|
||||
$this->message($this->lang->get("pocketmine_will_start"));
|
||||
$this->message($this->lang->translateString("pocketmine_will_start", [\pocketmine\NAME]));
|
||||
|
||||
$this->writeLine();
|
||||
$this->writeLine();
|
||||
|
Reference in New Issue
Block a user