Skip to content
This repository has been archived by the owner on Jul 11, 2018. It is now read-only.

Commit

Permalink
BasicHUD-1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroliu committed Jun 26, 2015
1 parent b81983b commit 97cd248
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 11 deletions.
8 changes: 6 additions & 2 deletions BasicHUD/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The following sections are defined:

## Configured Formats

IThe displayed text can be:
The displayed text can be:

* A fixed string.
* A string containing {variables}
Expand Down Expand Up @@ -187,7 +187,11 @@ if (($hud = $this->getServer()->getPluginManager()->getPlugin("BasicHUD")) !== n
* An empty vars.php yields an empty function (saving a comparison)
* Constant vars are calculated once.
* Fixed bug around permissions (to change formats)
* Added translation (but not for bearing to avoid the translation overhead)
* Added translation (but not for bearing to avoid the translation overhead)
* New {vars}:
* {tps}
* {NL}
* {10SPACE}, {20SPACE}, {30SPACE}, {40SPACE}, {50SPACE}
* 1.0.3: First public release
* Added a "use" permission.
* More correct use of permission
Expand Down
7 changes: 7 additions & 0 deletions BasicHUD/resources/messages/messages.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
; messages.ini
"%1%-mode"=""
"Adventure"=""
"Available formats: %1%"=""
"Creative"=""
"HUD is OFF"=""
"HUD is ON"=""
"HUD using format %1%"=""
"Spectator"=""
"Survival"=""
"Switching to format %1%"=""
"Turning off HUD"=""
"Turning on HUD"=""
"You can only do this in-game"=""
"You do not have permission to do that."=""
14 changes: 7 additions & 7 deletions BasicHUD/resources/messages/spa.ini
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
; spa.ini
"%1%-mode"="modo-%1%"
"Adventure"="Aventura"
"Available formats: %1%"="Formats disponibles: %1%"
"Creative"="Creativo"
"HUD is OFF"="HUD deshabilitado"
"HUD is ON"="HUD habilitado"
"HUD using format %1%"="Usando formato %1%"
"Spectator"="Espectador"
"Survival"="Supervivencia"
"Switching to format %1%"="Cambiando a formato %1%"
"Turning off HUD"="Des-habilitando HUD"
"Turning on HUD"="Habilitando HUD"
"#%1%-mode"="modo-%1%"
"You can only do this in-game"="Esto sólo se puede hacer dentro del juego"
"You do not have permission to do that."="No tiene permiso para hacer eso."
"#* EconomyAPI or"="* EconomyAPI ó"
"#* GoldStd"="* GoldStd"
"#* MassiveEconomy"="* MassiveEconomy"
"#* PocketMoney"="* PocketMoney"
"#. Please install one of the following:"=". Por favor instale uno de los siguientes:"
"#Adventure"="Aventura"
"#Available sub-commands for %1%"="Subcomandos disponibles para %1%"
"#Creative"="Creativo"
"#Description: "="Descripción: "
"#Enable %1% features"="Activando %1% módulos"
"#Enabled one feature"="Activando un módulo"
Expand All @@ -23,12 +27,8 @@
"#NO features enabled"="NO módulos activados"
"#No help for %1%"="No hay ayuda para %1%"
"#No sub-command specified"="No sub-comando proporcionado"
"#Spectator"="Espectador"
"#Survival"="Supervivencia"
"#Unknown feature \"%1%\" ignored."="Módulo \"%1%\" desconocido, ignorando..."
"#Unknown sub-command %2% (try /%1% help)"="Sub-comando %2% desconocido. (Pruebe /%1% help)"
"#Usage: "="Uso: "
"#Using money API from %1%"="Usando el API de economí de %1%"
"#You are not allowed to do this"="No esta autorizado a hacer esto"
"#You can only do this in-game"="Esto sólo se puede hacer dentro del juego"
"#You do not have permission to do that."="No tiene permiso para hacer eso."
1 change: 1 addition & 0 deletions BasicHUD/src/aliuly/hud/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
common
4 changes: 2 additions & 2 deletions BasicHUD/src/aliuly/hud/Main.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
use pocketmine\command\CommandExecutor;
use pocketmine\command\CommandSender;
use pocketmine\command\Command;
use aliuly\common\mc;
use aliuly\common\MPMU;
use aliuly\hud\common\mc;
use aliuly\hud\common\MPMU;

interface Formatter {
static public function formatString(Main $plugin,$format,Player $player);
Expand Down

0 comments on commit 97cd248

Please sign in to comment.