From a6b6a618058f7299ec2a7fece80bef1da2bfefc2 Mon Sep 17 00:00:00 2001 From: Lunovox Date: Wed, 25 Mar 2020 16:26:59 -0300 Subject: [PATCH] =?UTF-8?q?tradu=C3=A7=C3=A3o=20para=20portugu=C3=AAs=20do?= =?UTF-8?q?=20evento=20de=20sal=C3=A1rio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit o texto em inglês estava com alguns erros. os erros foram corrigidos. adicionado tradução para português. --- locale/minertrade.pt.tr | 6 ++++++ locale/pt.txt | 6 ++++++ payday.lua | 6 +++--- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/locale/minertrade.pt.tr b/locale/minertrade.pt.tr index 83fa97d..b88a306 100644 --- a/locale/minertrade.pt.tr +++ b/locale/minertrade.pt.tr @@ -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. diff --git a/locale/pt.txt b/locale/pt.txt index 83fa97d..b88a306 100644 --- a/locale/pt.txt +++ b/locale/pt.txt @@ -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. diff --git a/payday.lua b/payday.lua index cd534bb..4f1861f 100644 --- a/payday.lua +++ b/payday.lua @@ -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