tradução para português do evento de salário

o texto em inglês estava com alguns erros. os erros foram corrigidos. adicionado tradução para português.
This commit is contained in:
Lunovox 2020-03-25 16:26:59 -03:00
parent 7458eb139c
commit a6b6a61805
3 changed files with 15 additions and 3 deletions

View file

@ -63,6 +63,12 @@ You can not install this 'ATM' too far from a 'Dispensing Machine'!=Você não p
The ATM will only run %02d seconds after it is installed!=O Caixa Eletrônico só vai funcionar %02d segundos depois de instalado!
PUBLIC ATM - Account of '%s':=CAIXA ELETRÔNICO - Conta de '%s':
#------- payday.lua ---------------------------------------------------------------------------
CITY HALL=PREFEITURA
Only players with this privilege will receive a daily payment.=Somente jogadores com esse privilégio receberão um pagamento diário.
Your Strongbox is full! %2d items weren't added in your bank account.=O seu cofre está cheio! %2d itens não foram adicionados à sua conta bancária.
The city hall deposited the %2d° salary in your bank account!=A prefeitura depositou o %2d° salário em sua conta bancária!
#------- commands.lua ---------------------------------------------------------------------------
checkstrongbox=checacofre
Lets you check the contents of another players strongbox.=Permite verificar o conteúdo do cofre de outro jogador.

View file

@ -63,6 +63,12 @@ You can not install this 'ATM' too far from a 'Dispensing Machine'!=Você não p
The ATM will only run %02d seconds after it is installed!=O Caixa Eletrônico só vai funcionar %02d segundos depois de instalado!
PUBLIC ATM - Account of '%s':=CAIXA ELETRÔNICO - Conta de '%s':
#------- payday.lua ---------------------------------------------------------------------------
CITY HALL=PREFEITURA
Only players with this privilege will receive a daily payment.=Somente jogadores com esse privilégio receberão um pagamento diário.
Your Strongbox is full! %2d items weren't added in your bank account.=O seu cofre está cheio! %2d itens não foram adicionados à sua conta bancária.
The city hall deposited the %2d° salary in your bank account!=A prefeitura depositou o %2d° salário em sua conta bancária!
#------- commands.lua ---------------------------------------------------------------------------
checkstrongbox=checacofre
Lets you check the contents of another players strongbox.=Permite verificar o conteúdo do cofre de outro jogador.

View file

@ -1,5 +1,5 @@
minetest.register_privilege("salary", {
description=modMinerTrade.translate("Only players with this privilege received a daily payment."),
description=modMinerTrade.translate("Only players with this privilege will receive a daily payment."),
give_to_singleplayer=false,
})
@ -32,14 +32,14 @@ minetest.after(3.5, function()
minetest.chat_send_player(
playername,
core.colorize("#00ff00", "["..modMinerTrade.translate("CITY HALL").."]: ")
..modMinerTrade.translate("Your Strongbox is full! %2d items weren't added in your back account."):format(leftover:get_count())
..modMinerTrade.translate("Your Strongbox is full! %2d items weren't added in your bank account."):format(leftover:get_count())
)
minetest.sound_play("sfx_alert", {object=player, max_hear_distance=5.0,})
else
minetest.chat_send_player(
playername,
core.colorize("#00ff00", "["..modMinerTrade.translate("CITY HALL").."]: ")
..modMinerTrade.translate("The city hall deposited your %2d° salary in your bank account!"):format(dc)
..modMinerTrade.translate("The city hall deposited the %2d° salary in your bank account!"):format(dc)
)
minetest.sound_play("sfx_cash_register", {object=player, max_hear_distance=5.0,})
end