Correção de Bug e melhora de tradução

This commit is contained in:
Lunovox 2022-06-08 02:48:08 -03:00
parent da051a0c61
commit 6cd4c51749
6 changed files with 302 additions and 289 deletions

View file

@ -3,6 +3,45 @@ minetest.register_privilege("salary", {
--give_to_singleplayer=false, --give_to_singleplayer=false,
}) })
modMinerTrade.salary = {
isEnabled = function()
if modMinerTrade.salary.enabled == nil then
modMinerTrade.salary.enabled = (minetest.settings:get_bool("minertrade.salary.enabled") ~= false)
minetest.settings:set_bool("minertrade.salary.enabled", modMinerTrade.salary.enabled)
end
return modMinerTrade.salary.enabled
end,
--value = tonumber(minetest.settings:get("minertrade.salary.value") or 1),
getValue = function()
if modMinerTrade.salary.value == nil then
modMinerTrade.salary.value = minetest.settings:get("minertrade.salary.value")
if modMinerTrade.salary.value == nil
or type(tonumber(modMinerTrade.salary.value)) ~= "number"
or tonumber(modMinerTrade.salary.value) < 1
then
modMinerTrade.salary.value = 1
minetest.settings:set("minertrade.salary.value", modMinerTrade.salary.value)
end
end
return tonumber(modMinerTrade.salary.value)
end,
--intervalcheck = tonumber(minetest.settings:get("minertrade.salary.intervalcheck") or 60),
getIntervalCheck = function()
if modMinerTrade.salary.intervalcheck == nil then
modMinerTrade.salary.intervalcheck = minetest.settings:get("minertrade.salary.intervalcheck")
if modMinerTrade.salary.intervalcheck == nil
or type(tonumber(modMinerTrade.salary.intervalcheck)) ~= "number"
or tonumber(modMinerTrade.salary.intervalcheck) < 1
or tonumber(modMinerTrade.salary.intervalcheck) > (60*60*24)
then
modMinerTrade.salary.intervalcheck = 60
minetest.settings:set("minertrade.salary.intervalcheck", modMinerTrade.salary.intervalcheck)
end
end
return tonumber(modMinerTrade.salary.intervalcheck)
end,
}
minetest.after(3.5, function() minetest.after(3.5, function()
if modMinerTrade.salary.isEnabled() then if modMinerTrade.salary.isEnabled() then
modMinerTrade.salary.timer = 0 modMinerTrade.salary.timer = 0
@ -13,23 +52,10 @@ minetest.after(3.5, function()
local players = minetest.get_connected_players() local players = minetest.get_connected_players()
if #players >= 1 then if #players >= 1 then
if modMinerTrade.bank.last_pay ~= minetest.get_day_count() then if modMinerTrade.bank.last_pay ~= minetest.get_day_count() then
--[[
modMinerTrade.debug(
"api_payday.lua >>> "
.."modMinerTrade.bank.last_pay = "..modMinerTrade.bank.last_pay
.." | minetest.get_day_count() = "..minetest.get_day_count()
)
--]]
modMinerTrade.bank.last_pay = minetest.get_day_count() modMinerTrade.bank.last_pay = minetest.get_day_count()
for _, player in ipairs(players) do for _, player in ipairs(players) do
local playername = player:get_player_name() local playername = player:get_player_name()
if minetest.get_player_privs(playername).salary then if minetest.get_player_privs(playername).salary then
--[[
modMinerTrade.debug(
"api_payday.lua >>> "
.."modMinerTrade.isExistAcount("..playername..") = "..dump(modMinerTrade.isExistAcount(playername))
)
--]]
if modMinerTrade.isExistAcount(playername) then if modMinerTrade.isExistAcount(playername) then
local value = modMinerTrade.salary.getValue() local value = modMinerTrade.salary.getValue()
local description = modMinerTrade.translate("The city hall deposited the %2d° salary in your bank account!"):format(minetest.get_day_count()) local description = modMinerTrade.translate("The city hall deposited the %2d° salary in your bank account!"):format(minetest.get_day_count())

View file

@ -1,70 +1,11 @@
modMinerTrade = { modMinerTrade = {
modName = minetest.get_current_modname(), modName = minetest.get_current_modname(),
modPath = minetest.get_modpath(minetest.get_current_modname()), modPath = minetest.get_modpath(minetest.get_current_modname()),
save_compressed = (minetest.settings:get("minertrade.save_compressed") ~= "false"), save_compressed = (minetest.settings:get_bool("minertrade.save_compressed") ~= false),
--delayConstruct = 300,
getDelayToUse = function()
if modMinerTrade.delay_to_use == nil then
modMinerTrade.delay_to_use = minetest.settings:get("minertrade.delay_to_use")
if modMinerTrade.delay_to_use == nil
or type(tonumber(modMinerTrade.delay_to_use)) ~= "number"
or tonumber(modMinerTrade.delay_to_use) < 1
then
modMinerTrade.delay_to_use = 300 -- 300 = 5 minutes
minetest.settings:set("minertrade.delay_to_use", modMinerTrade.delay_to_use)
end
end
return tonumber(modMinerTrade.delay_to_use)
end,
bank = { bank = {
accounts = 0, accounts = 0,
last_pay = 0, last_pay = 0,
player = { }, player = { },
}, },
salary = {
isEnabled = function()
if modMinerTrade.salary.enabled == nil then
modMinerTrade.salary.enabled = minetest.settings:get("minertrade.salary.enabled")
if modMinerTrade.salary.enabled == nil
or (
modMinerTrade.salary.enabled ~= "true"
and modMinerTrade.salary.enabled ~= "false"
)
then
modMinerTrade.salary.enabled = true
minetest.settings:set_bool("minertrade.salary.enabled", modMinerTrade.salary.enabled)
end
end
return modMinerTrade.salary.enabled
end,
--value = tonumber(minetest.settings:get("minertrade.salary.value") or 1),
getValue = function()
if modMinerTrade.salary.value == nil then
modMinerTrade.salary.value = minetest.settings:get("minertrade.salary.value")
if modMinerTrade.salary.value == nil
or type(tonumber(modMinerTrade.salary.value)) ~= "number"
or tonumber(modMinerTrade.salary.value) < 1
then
modMinerTrade.salary.value = 1
minetest.settings:set("minertrade.salary.value", modMinerTrade.salary.value)
end
end
return tonumber(modMinerTrade.salary.value)
end,
--intervalcheck = tonumber(minetest.settings:get("minertrade.salary.intervalcheck") or 60),
getIntervalCheck = function()
if modMinerTrade.salary.intervalcheck == nil then
modMinerTrade.salary.intervalcheck = minetest.settings:get("minertrade.salary.intervalcheck")
if modMinerTrade.salary.intervalcheck == nil
or type(tonumber(modMinerTrade.salary.intervalcheck)) ~= "number"
or tonumber(modMinerTrade.salary.intervalcheck) < 1
or tonumber(modMinerTrade.salary.intervalcheck) > (60*60*24)
then
modMinerTrade.salary.intervalcheck = 60
minetest.settings:set("minertrade.salary.intervalcheck", modMinerTrade.salary.intervalcheck)
end
end
return tonumber(modMinerTrade.salary.intervalcheck)
end,
}
} }

View file

@ -52,6 +52,20 @@ modMinerTrade.doBankLoad = function()
end end
end end
modMinerTrade.getDelayToUse = function()
if modMinerTrade.delay_to_use == nil then
modMinerTrade.delay_to_use = minetest.settings:get("minertrade.delay_to_use")
if modMinerTrade.delay_to_use == nil
or type(tonumber(modMinerTrade.delay_to_use)) ~= "number"
or tonumber(modMinerTrade.delay_to_use) < 1
then
modMinerTrade.delay_to_use = 300 -- 300 = 5 minutes
minetest.settings:set("minertrade.delay_to_use", modMinerTrade.delay_to_use)
end
end
return tonumber(modMinerTrade.delay_to_use)
end
modMinerTrade.canInteract = function(playername) modMinerTrade.canInteract = function(playername)
--local clickername = clicker:get_player_name() --local clickername = clicker:get_player_name()
if minetest.get_player_privs(playername).mayor then if minetest.get_player_privs(playername).mayor then
@ -899,9 +913,13 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
local thisBalance = modMinerTrade.getBalance(accountname) local thisBalance = modMinerTrade.getBalance(accountname)
if txtValue <= thisBalance then if txtValue <= thisBalance then
modMinerTrade.addBalance(txtBeneficiary, txtValue) modMinerTrade.addBalance(txtBeneficiary, txtValue)
modMinerTrade.addStatement(txtBeneficiary, txtValue, txtReason) modMinerTrade.addStatement(txtBeneficiary, txtValue,
modMinerTrade.translate("The '%s' say: '%s'"):format(playername, txtReason)
)
modMinerTrade.addBalance(accountname, 0 - txtValue) modMinerTrade.addBalance(accountname, 0 - txtValue)
modMinerTrade.addStatement(accountname, 0 - txtValue, txtReason) modMinerTrade.addStatement(accountname, 0 - txtValue,
modMinerTrade.translate("The '%s' say to '%s': '%s'"):format(playername, txtBeneficiary, txtReason)
)
local objProof = modMinerTrade.getProofStack(playername, accountname, txtBeneficiary, txtValue, txtReason) local objProof = modMinerTrade.getProofStack(playername, accountname, txtBeneficiary, txtValue, txtReason)
local invPlayer = player:get_inventory() local invPlayer = player:get_inventory()

View file

@ -7,11 +7,11 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-06 17:26-0300\n" "POT-Creation-Date: 2022-06-08 02:40-0300\n"
"PO-Revision-Date: 2022-05-18 11:16-0300\n" "PO-Revision-Date: 2022-05-18 11:16-0300\n"
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n" "Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: pt_BR\n" "Language: pt\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
@ -32,23 +32,23 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT" msgid "ACCEPT"
msgstr "ACEITAR" msgstr "ACEITAR"
#: item_atm.lua:319 #: item_atm.lua:333
msgid "ACCOUNT CREATED" msgid "ACCOUNT CREATED"
msgstr "CONTA CRIADA" msgstr "CONTA CRIADA"
#: item_atm.lua:911 item_atm.lua:917 item_atm.lua:1063 item_atm.lua:1094 #: item_atm.lua:929 item_atm.lua:935 item_atm.lua:1081 item_atm.lua:1112
msgid "ATM" msgid "ATM"
msgstr "CAIXA ELETRÔNICO" msgstr "CAIXA ELETRÔNICO"
#: item_atm.lua:610 #: item_atm.lua:624
msgid "ATM entrance" msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico" msgstr "Entrada do Caixa Eletrônico"
#: item_atm.lua:194 #: item_atm.lua:208
msgid "Account Holder" msgid "Account Holder"
msgstr "Correntista" msgstr "Correntista"
#: item_atm.lua:938 #: item_atm.lua:956
#, lua-format #, lua-format
msgid "Account holder '%s' cannot be a beneficiary of itself." msgid "Account holder '%s' cannot be a beneficiary of itself."
msgstr "O titular da conta '%s' não pode ser beneficiário de si mesmo." msgstr "O titular da conta '%s' não pode ser beneficiário de si mesmo."
@ -57,28 +57,28 @@ msgstr "O titular da conta '%s' não pode ser beneficiário de si mesmo."
msgid "Allows you to access the bank account of the credit card owner anywhere in the world." msgid "Allows you to access the bank account of the credit card owner anywhere in the world."
msgstr "Permite acessar a conta bancária do titular do cartão de crédito em qualquer lugar do mundo." msgstr "Permite acessar a conta bancária do titular do cartão de crédito em qualquer lugar do mundo."
#: item_atm.lua:311 item_atm.lua:347 item_atm.lua:435 item_atm.lua:475 #: item_atm.lua:325 item_atm.lua:361 item_atm.lua:449 item_atm.lua:489
#: item_atm.lua:592 item_atm.lua:640 #: item_atm.lua:606 item_atm.lua:654
msgid "BACK" msgid "BACK"
msgstr "VOLTAR" msgstr "VOLTAR"
#: item_atm.lua:266 #: item_atm.lua:280
msgid "BALANCE" msgid "BALANCE"
msgstr "SALDO" msgstr "SALDO"
#: item_atm.lua:323 item_atm.lua:481 item_atm.lua:646 #: item_atm.lua:337 item_atm.lua:495 item_atm.lua:660
msgid "BALANCES" msgid "BALANCES"
msgstr "SALDOS" msgstr "SALDOS"
#: item_atm.lua:450 item_minercash.lua:237 #: item_atm.lua:464 item_minercash.lua:237
msgid "BANK CHECK" msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO" msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:598 #: item_atm.lua:612
msgid "BANK DEPOSIT" msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO" msgstr "DEPÓSITO BANCÁRIO"
#: item_atm.lua:667 #: item_atm.lua:681
msgid "BENEFICIARY NAME" msgid "BENEFICIARY NAME"
msgstr "NOME DO BENEFICIÁRIO" msgstr "NOME DO BENEFICIÁRIO"
@ -94,15 +94,15 @@ msgstr "NOTA AZUL"
msgid "Basic craftable minercash with gold and steel." msgid "Basic craftable minercash with gold and steel."
msgstr "Minercash básico criado apenas com ouro e aço." msgstr "Minercash básico criado apenas com ouro e aço."
#: item_atm.lua:195 #: item_atm.lua:209
msgid "Beneficiary" msgid "Beneficiary"
msgstr "Beneficiário" msgstr "Beneficiário"
#: api_payday.lua:41 #: api_payday.lua:67
msgid "CITY HALL" msgid "CITY HALL"
msgstr "PREFEITURA" msgstr "PREFEITURA"
#: item_atm.lua:279 item_minercash.lua:275 #: item_atm.lua:293 item_minercash.lua:275
msgid "CREDIT CARD" msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO" msgstr "CARTÃO DE CRÉDITO"
@ -135,11 +135,11 @@ msgstr "Cliente Oferece"
msgid "Customer Receive" msgid "Customer Receive"
msgstr "Cliente Recebe" msgstr "Cliente Recebe"
#: item_atm.lua:274 #: item_atm.lua:288
msgid "DEPOSITS" msgid "DEPOSITS"
msgstr "DEPÓSITOS" msgstr "DEPÓSITOS"
#: item_atm.lua:503 item_atm.lua:692 #: item_atm.lua:517 item_atm.lua:706
msgid "DETAILS" msgid "DETAILS"
msgstr "DETALHES" msgstr "DETALHES"
@ -157,12 +157,12 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n" "MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online." "* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:690 #: item_atm.lua:704
#, fuzzy #, fuzzy
msgid "DO TRANSFER" msgid "DO TRANSFER"
msgstr "TRANSFERIR" msgstr "TRANSFERIR"
#: item_atm.lua:973 item_atm.lua:1052 #: item_atm.lua:991 item_atm.lua:1070
msgid "Deposit and Withdraw your minercash into your bank account." msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária." msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
@ -176,7 +176,7 @@ msgstr "Dispensa Concluida!"
msgid "Dispensing Machine of '%s'." msgid "Dispensing Machine of '%s'."
msgstr "Maquina Dispensadora de '%s'." msgstr "Maquina Dispensadora de '%s'."
#: item_atm.lua:192 #: item_atm.lua:206
msgid "Document Type" msgid "Document Type"
msgstr "Tipo de Documento" msgstr "Tipo de Documento"
@ -201,8 +201,8 @@ msgstr ""
"MESA DE ESCAMBO\n" "MESA DE ESCAMBO\n"
"* Faz trocas seguras jogador a jogador sem a necessidade de colocar seu itens no chão." "* Faz trocas seguras jogador a jogador sem a necessidade de colocar seu itens no chão."
#: item_atm.lua:285 item_atm.lua:312 item_atm.lua:348 item_atm.lua:436 #: item_atm.lua:299 item_atm.lua:326 item_atm.lua:362 item_atm.lua:450
#: item_atm.lua:476 item_atm.lua:593 item_atm.lua:641 #: item_atm.lua:490 item_atm.lua:607 item_atm.lua:655
msgid "EXIT" msgid "EXIT"
msgstr "SAIR" msgstr "SAIR"
@ -216,7 +216,7 @@ msgstr "Equivale a %02d minercash."
msgid "Equivalent to as much minercash as your creator wants.." msgid "Equivalent to as much minercash as your creator wants.."
msgstr "Equivalente a tanto minercash quanto seu criador quiser." msgstr "Equivalente a tanto minercash quanto seu criador quiser."
#: item_atm.lua:321 #: item_atm.lua:335
msgid "FINANCIAL TRANSACTIONS" msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS" msgstr "TRANSAÇÕES FINANCEIRAS"
@ -224,11 +224,11 @@ msgstr "TRANSAÇÕES FINANCEIRAS"
msgid "GREEN MINERMONEY" msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE" msgstr "NOTA VERDE"
#: item_atm.lua:280 #: item_atm.lua:294
msgid "LOANS" msgid "LOANS"
msgstr "EMPRÉSTIMOS" msgstr "EMPRÉSTIMOS"
#: item_atm.lua:446 #: item_atm.lua:460
msgid "MINERCASH" msgid "MINERCASH"
msgstr "MINERCASH" msgstr "MINERCASH"
@ -240,11 +240,11 @@ msgstr "MINERMOEDA"
msgid "Make an announcement about what this machine will do" msgid "Make an announcement about what this machine will do"
msgstr "Faça um anúncio sobre o que esta máquina dispensará" msgstr "Faça um anúncio sobre o que esta máquina dispensará"
#: item_atm.lua:317 #: item_atm.lua:331
msgid "NAME OF BANKING ACCOUNT HOLDER" msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO" msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:362 #: item_atm.lua:376
msgid "N°" msgid "N°"
msgstr "N°" msgstr "N°"
@ -273,17 +273,17 @@ msgstr "Abrir"
msgid "Opening '%s' with data bank!" msgid "Opening '%s' with data bank!"
msgstr "Abrindo '%s' com dados do banco!" msgstr "Abrindo '%s' com dados do banco!"
#: item_atm.lua:972 item_atm.lua:1051 #: item_atm.lua:990 item_atm.lua:1069
msgid "PUBLIC ATM" msgid "PUBLIC ATM"
msgstr "CAIXA ELETRÔNICO PÚBLICO" msgstr "CAIXA ELETRÔNICO PÚBLICO"
#: item_atm.lua:297 item_atm.lua:409 item_atm.lua:465 item_atm.lua:581 #: item_atm.lua:311 item_atm.lua:423 item_atm.lua:479 item_atm.lua:595
#: item_atm.lua:630 #: item_atm.lua:644
#, lua-format #, lua-format
msgid "Player '%s' is not an account holder of this bank." msgid "Player '%s' is not an account holder of this bank."
msgstr "O jogador '%s' não é titular de conta deste banco." msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:685 #: item_atm.lua:699
#, fuzzy #, fuzzy
msgid "REASON OF TRANSFER" msgid "REASON OF TRANSFER"
msgstr "MOTIVO DA TRANSFERÊNCIA" msgstr "MOTIVO DA TRANSFERÊNCIA"
@ -292,7 +292,7 @@ msgstr "MOTIVO DA TRANSFERÊNCIA"
msgid "RED MINERMONEY" msgid "RED MINERMONEY"
msgstr "NOTA VERMELHA" msgstr "NOTA VERMELHA"
#: item_atm.lua:188 #: item_atm.lua:202
#, lua-format #, lua-format
msgid "Reason: %s" msgid "Reason: %s"
msgstr "Rasão: %s" msgstr "Rasão: %s"
@ -301,19 +301,19 @@ msgstr "Rasão: %s"
msgid "Received (Your Profit)" msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)" msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:193 #: item_atm.lua:207
msgid "Responsible Player" msgid "Responsible Player"
msgstr "Jogador Responsável" msgstr "Jogador Responsável"
#: item_atm.lua:441 #: item_atm.lua:455
msgid "SELECT BANK WITHDRAWAL METHOD" msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO" msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:281 #: item_atm.lua:295
msgid "SETTINGS" msgid "SETTINGS"
msgstr "CONFIGURAÇÕES" msgstr "CONFIGURAÇÕES"
#: item_atm.lua:267 item_atm.lua:357 #: item_atm.lua:281 item_atm.lua:371
msgid "STATEMENT" msgid "STATEMENT"
msgstr "EXTRATO" msgstr "EXTRATO"
@ -326,7 +326,7 @@ msgstr "Salvar o anúncio"
msgid "Saving data bank in the file '%s'!" msgid "Saving data bank in the file '%s'!"
msgstr "Salvando dados bancários no arquivo '%s'!" msgstr "Salvando dados bancários no arquivo '%s'!"
#: item_atm.lua:353 #: item_atm.lua:367
msgid "Select a bank statement to view transaction details!" msgid "Select a bank statement to view transaction details!"
msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!" msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!"
@ -338,20 +338,20 @@ msgstr "Inventario atual do vendedor"
msgid "Stock to Offer" msgid "Stock to Offer"
msgstr "Estoque a Oferetar" msgstr "Estoque a Oferetar"
#: item_atm.lua:390 #: item_atm.lua:404
msgid "TOTAL" msgid "TOTAL"
msgstr "TOTAL" msgstr "TOTAL"
#: item_atm.lua:413 #: item_atm.lua:427
msgid "TRANSACTION DETAILS" msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO" msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:185 item_atm.lua:192 #: item_atm.lua:199 item_atm.lua:206
#, fuzzy #, fuzzy
msgid "TRANSFER PROOF" msgid "TRANSFER PROOF"
msgstr "COMPROVANTE DE TRANSFERÊNCIA" msgstr "COMPROVANTE DE TRANSFERÊNCIA"
#: item_atm.lua:276 #: item_atm.lua:290
msgid "TRANSFERS" msgid "TRANSFERS"
msgstr "TRANSFERÊNCIAS" msgstr "TRANSFERÊNCIAS"
@ -365,7 +365,17 @@ msgstr "O parâmetro '%s' deve ser do tipo de STRING não vazia!"
msgid "The '%s' parameter must be of the position type (x,y,z)!" msgid "The '%s' parameter must be of the position type (x,y,z)!"
msgstr "O parâmetro '%s' deve ser do tipo de POSITION (x,y,z)!" msgstr "O parâmetro '%s' deve ser do tipo de POSITION (x,y,z)!"
#: item_atm.lua:1096 #: item_atm.lua:921
#, lua-format
msgid "The '%s' say to '%s': '%s'"
msgstr "Correntista '%s' disse para '%s': '%s'"
#: item_atm.lua:917
#, lua-format
msgid "The '%s' say: '%s'"
msgstr "Correntista '%s' disse: '%s'"
#: item_atm.lua:1114
#, lua-format #, lua-format
msgid "The ATM will only run %02d seconds after it is installed!" msgid "The ATM will only run %02d seconds after it is installed!"
msgstr "O Caixa Eletrônico só vai funcionar %02d segundos depois de instalado!" msgstr "O Caixa Eletrônico só vai funcionar %02d segundos depois de instalado!"
@ -392,22 +402,22 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer" msgid "The Machine Offer"
msgstr "Máquina Oferece" msgstr "Máquina Oferece"
#: item_atm.lua:919 #: item_atm.lua:937
#, lua-format #, lua-format
msgid "The Transfer Proof was left on the floor because '%s' inventory has no free space." msgid "The Transfer Proof was left on the floor because '%s' inventory has no free space."
msgstr "A prova de transferência foi deixada no chão porque o inventário '%s' não tem espaço livre." msgstr "A prova de transferência foi deixada no chão porque o inventário '%s' não tem espaço livre."
#: item_atm.lua:931 #: item_atm.lua:949
#, lua-format #, lua-format
msgid "The bank account holder '%s' does not have enough balance to make this requested transfer." msgid "The bank account holder '%s' does not have enough balance to make this requested transfer."
msgstr "O titular da conta bancária '%s' não tem saldo suficiente para fazer esta transferência solicitada." msgstr "O titular da conta bancária '%s' não tem saldo suficiente para fazer esta transferência solicitada."
#: item_atm.lua:945 #: item_atm.lua:963
#, fuzzy, lua-format #, fuzzy, lua-format
msgid "The beneficiary '%s' does not have a current account with this bank." msgid "The beneficiary '%s' does not have a current account with this bank."
msgstr "O jogador '%s' não é titular de conta deste banco." msgstr "O jogador '%s' não é titular de conta deste banco."
#: api_payday.lua:35 #: api_payday.lua:61
#, lua-format #, lua-format
msgid "The city hall deposited the %2d° salary in your bank account!" msgid "The city hall deposited the %2d° salary in your bank account!"
msgstr "A prefeitura depositou o %2d° salário em sua conta bancária!" msgstr "A prefeitura depositou o %2d° salário em sua conta bancária!"
@ -421,58 +431,58 @@ msgstr "A dispensa não pode ser feita. Verifique se você ofereceu o que a Maqu
msgid "The file '%s' is not in table format!" msgid "The file '%s' is not in table format!"
msgstr "O arquivo '%s' não esta no formato de tabela!" msgstr "O arquivo '%s' não esta no formato de tabela!"
#: item_atm.lua:852 #: item_atm.lua:866
#, lua-format #, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash." msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "O valor máximo que você pode sacar é: %02d minercash." msgstr "O valor máximo que você pode sacar é: %02d minercash."
#: item_atm.lua:958 #: item_atm.lua:976
#, fuzzy, lua-format #, fuzzy, lua-format
msgid "There is no account holder '%s' in this bank." msgid "There is no account holder '%s' in this bank."
msgstr "O jogador '%s' não é titular de conta deste banco." msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:198 #: item_atm.lua:212
#, fuzzy #, fuzzy
msgid "Transfer Reason" msgid "Transfer Reason"
msgstr "Motivo da Transferência" msgstr "Motivo da Transferência"
#: item_atm.lua:656 item_atm.lua:884 #: item_atm.lua:670 item_atm.lua:898
msgid "Transfer for undeclared reason!" msgid "Transfer for undeclared reason!"
msgstr "Transferência por rasão não declarada!" msgstr "Transferência por rasão não declarada!"
#: item_atm.lua:912 #: item_atm.lua:930
msgid "Transfer successful!" msgid "Transfer successful!"
msgstr "Sucesso de transferência!" msgstr "Sucesso de transferência!"
#: item_atm.lua:362 item_atm.lua:496 item_atm.lua:676 #: item_atm.lua:376 item_atm.lua:510 item_atm.lua:690
msgid "VALUE" msgid "VALUE"
msgstr "VALOR" msgstr "VALOR"
#: item_atm.lua:197 #: item_atm.lua:211
msgid "Value" msgid "Value"
msgstr "Valor" msgstr "Valor"
#: item_atm.lua:362 #: item_atm.lua:376
msgid "WHEN" msgid "WHEN"
msgstr "QUANDO" msgstr "QUANDO"
#: item_atm.lua:501 #: item_atm.lua:515
msgid "WITHDRAWAL" msgid "WITHDRAWAL"
msgstr "SAQUE" msgstr "SAQUE"
#: item_atm.lua:275 #: item_atm.lua:289
msgid "WITHDRAWALS" msgid "WITHDRAWALS"
msgstr "SAQUES" msgstr "SAQUES"
#: item_atm.lua:196 #: item_atm.lua:210
msgid "When" msgid "When"
msgstr "Quando" msgstr "Quando"
#: item_atm.lua:451 #: item_atm.lua:465
msgid "Withdrawals in bank check." msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário." msgstr "Saque em Cheque Bancário."
#: item_atm.lua:447 #: item_atm.lua:461
msgid "Withdrawals in minercash." msgid "Withdrawals in minercash."
msgstr "Saque em minercash." msgstr "Saque em minercash."
@ -480,11 +490,11 @@ msgstr "Saque em minercash."
msgid "Without enough space in Dispensing Machine to receive the seller's item. (Please, empty the receiving box!)" msgid "Without enough space in Dispensing Machine to receive the seller's item. (Please, empty the receiving box!)"
msgstr "Sem espaço suficiente na Maquina Dispensadora para receber o item do vendedor. (Por favor, esvazie a caixa de recebimento!)" msgstr "Sem espaço suficiente na Maquina Dispensadora para receber o item do vendedor. (Por favor, esvazie a caixa de recebimento!)"
#: item_atm.lua:659 #: item_atm.lua:673
msgid "Write the 'beneficiary player name' and the 'value in minercash' that want to transfer!" msgid "Write the 'beneficiary player name' and the 'value in minercash' that want to transfer!"
msgstr "Escreva o 'nome do jogador beneficiário' e o 'valor em minercash' que deseja transferir!" msgstr "Escreva o 'nome do jogador beneficiário' e o 'valor em minercash' que deseja transferir!"
#: item_atm.lua:488 #: item_atm.lua:502
msgid "Write the value that want to withdrawal!" msgid "Write the value that want to withdrawal!"
msgstr "Digite o valor que deseja sacar!" msgstr "Digite o valor que deseja sacar!"
@ -492,7 +502,7 @@ msgstr "Digite o valor que deseja sacar!"
msgid "YELLOW MINERMONEY" msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA" msgstr "NOTA AMARELA"
#: item_atm.lua:603 #: item_atm.lua:617
msgid "YOUR BALANCE" msgid "YOUR BALANCE"
msgstr "SEU SALDO" msgstr "SEU SALDO"
@ -504,25 +514,25 @@ msgstr "Você pode ganhar algum dinheiro com isso."
msgid "You can not change your own machine!" msgid "You can not change your own machine!"
msgstr "Você não pode trocar na sua própria maquina!" msgstr "Você não pode trocar na sua própria maquina!"
#: item_atm.lua:1064 #: item_atm.lua:1082
msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!" msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!"
msgstr "Você não pode instalar este 'Caixa Eletrônico' muito longe de uma 'Máquina Dispensadora'!" msgstr "Você não pode instalar este 'Caixa Eletrônico' muito longe de uma 'Máquina Dispensadora'!"
#: item_atm.lua:555 #: item_atm.lua:569
#, lua-format #, lua-format
msgid "You deposited %02d x '%s'!" msgid "You deposited %02d x '%s'!"
msgstr "Você depositou %02d x '%s'!" msgstr "Você depositou %02d x '%s'!"
#: item_atm.lua:842 #: item_atm.lua:856
msgid "You don't have space in your inventory to withdraw so much minercash." msgid "You don't have space in your inventory to withdraw so much minercash."
msgstr "Você não tem espaço em seu inventário para retirar tanto minercash." msgstr "Você não tem espaço em seu inventário para retirar tanto minercash."
#: item_atm.lua:295 item_atm.lua:463 item_atm.lua:578 item_atm.lua:628 #: item_atm.lua:309 item_atm.lua:477 item_atm.lua:592 item_atm.lua:642
#, lua-format #, lua-format
msgid "You have %02d minercash." msgid "You have %02d minercash."
msgstr "Você tem %02d minercash." msgstr "Você tem %02d minercash."
#: item_atm.lua:831 #: item_atm.lua:845
#, lua-format #, lua-format
msgid "You have withdrawn %02d minercash from your bank account." msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária." msgstr "Você sacou %02d minercash de sua conta bancária."
@ -535,7 +545,7 @@ msgstr "Você Precisa"
msgid "You offer" msgid "You offer"
msgstr "Você Oferece" msgstr "Você Oferece"
#: item_atm.lua:617 #: item_atm.lua:631
msgid "Your Inventory" msgid "Your Inventory"
msgstr "Seu inventário" msgstr "Seu inventário"
@ -543,7 +553,7 @@ msgstr "Seu inventário"
msgid "Your inventory" msgid "Your inventory"
msgstr "Seu inventário" msgstr "Seu inventário"
#: item_atm.lua:1115 #: item_atm.lua:1133
msgid "atm" msgid "atm"
msgstr "caixaeletronico" msgstr "caixaeletronico"
@ -562,4 +572,3 @@ msgstr "mesadetroca"
#: item_minercash.lua:30 #: item_minercash.lua:30
msgid "minercoin" msgid "minercoin"
msgstr "minermoeda" msgstr "minermoeda"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-06 17:26-0300\n" "POT-Creation-Date: 2022-06-08 02:40-0300\n"
"PO-Revision-Date: 2022-05-18 11:16-0300\n" "PO-Revision-Date: 2022-05-18 11:16-0300\n"
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n" "Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
"Language-Team: \n" "Language-Team: \n"
@ -32,23 +32,23 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT" msgid "ACCEPT"
msgstr "ACEITAR" msgstr "ACEITAR"
#: item_atm.lua:319 #: item_atm.lua:333
msgid "ACCOUNT CREATED" msgid "ACCOUNT CREATED"
msgstr "CONTA CRIADA" msgstr "CONTA CRIADA"
#: item_atm.lua:911 item_atm.lua:917 item_atm.lua:1063 item_atm.lua:1094 #: item_atm.lua:929 item_atm.lua:935 item_atm.lua:1081 item_atm.lua:1112
msgid "ATM" msgid "ATM"
msgstr "CAIXA ELETRÔNICO" msgstr "CAIXA ELETRÔNICO"
#: item_atm.lua:610 #: item_atm.lua:624
msgid "ATM entrance" msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico" msgstr "Entrada do Caixa Eletrônico"
#: item_atm.lua:194 #: item_atm.lua:208
msgid "Account Holder" msgid "Account Holder"
msgstr "Correntista" msgstr "Correntista"
#: item_atm.lua:938 #: item_atm.lua:956
#, lua-format #, lua-format
msgid "Account holder '%s' cannot be a beneficiary of itself." msgid "Account holder '%s' cannot be a beneficiary of itself."
msgstr "O titular da conta '%s' não pode ser beneficiário de si mesmo." msgstr "O titular da conta '%s' não pode ser beneficiário de si mesmo."
@ -57,28 +57,28 @@ msgstr "O titular da conta '%s' não pode ser beneficiário de si mesmo."
msgid "Allows you to access the bank account of the credit card owner anywhere in the world." msgid "Allows you to access the bank account of the credit card owner anywhere in the world."
msgstr "Permite acessar a conta bancária do titular do cartão de crédito em qualquer lugar do mundo." msgstr "Permite acessar a conta bancária do titular do cartão de crédito em qualquer lugar do mundo."
#: item_atm.lua:311 item_atm.lua:347 item_atm.lua:435 item_atm.lua:475 #: item_atm.lua:325 item_atm.lua:361 item_atm.lua:449 item_atm.lua:489
#: item_atm.lua:592 item_atm.lua:640 #: item_atm.lua:606 item_atm.lua:654
msgid "BACK" msgid "BACK"
msgstr "VOLTAR" msgstr "VOLTAR"
#: item_atm.lua:266 #: item_atm.lua:280
msgid "BALANCE" msgid "BALANCE"
msgstr "SALDO" msgstr "SALDO"
#: item_atm.lua:323 item_atm.lua:481 item_atm.lua:646 #: item_atm.lua:337 item_atm.lua:495 item_atm.lua:660
msgid "BALANCES" msgid "BALANCES"
msgstr "SALDOS" msgstr "SALDOS"
#: item_atm.lua:450 item_minercash.lua:237 #: item_atm.lua:464 item_minercash.lua:237
msgid "BANK CHECK" msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO" msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:598 #: item_atm.lua:612
msgid "BANK DEPOSIT" msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO" msgstr "DEPÓSITO BANCÁRIO"
#: item_atm.lua:667 #: item_atm.lua:681
msgid "BENEFICIARY NAME" msgid "BENEFICIARY NAME"
msgstr "NOME DO BENEFICIÁRIO" msgstr "NOME DO BENEFICIÁRIO"
@ -94,15 +94,15 @@ msgstr "NOTA AZUL"
msgid "Basic craftable minercash with gold and steel." msgid "Basic craftable minercash with gold and steel."
msgstr "Minercash básico criado apenas com ouro e aço." msgstr "Minercash básico criado apenas com ouro e aço."
#: item_atm.lua:195 #: item_atm.lua:209
msgid "Beneficiary" msgid "Beneficiary"
msgstr "Beneficiário" msgstr "Beneficiário"
#: api_payday.lua:41 #: api_payday.lua:67
msgid "CITY HALL" msgid "CITY HALL"
msgstr "PREFEITURA" msgstr "PREFEITURA"
#: item_atm.lua:279 item_minercash.lua:275 #: item_atm.lua:293 item_minercash.lua:275
msgid "CREDIT CARD" msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO" msgstr "CARTÃO DE CRÉDITO"
@ -135,11 +135,11 @@ msgstr "Cliente Oferece"
msgid "Customer Receive" msgid "Customer Receive"
msgstr "Cliente Recebe" msgstr "Cliente Recebe"
#: item_atm.lua:274 #: item_atm.lua:288
msgid "DEPOSITS" msgid "DEPOSITS"
msgstr "DEPÓSITOS" msgstr "DEPÓSITOS"
#: item_atm.lua:503 item_atm.lua:692 #: item_atm.lua:517 item_atm.lua:706
msgid "DETAILS" msgid "DETAILS"
msgstr "DETALHES" msgstr "DETALHES"
@ -157,12 +157,12 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n" "MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online." "* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:690 #: item_atm.lua:704
#, fuzzy #, fuzzy
msgid "DO TRANSFER" msgid "DO TRANSFER"
msgstr "TRANSFERIR" msgstr "TRANSFERIR"
#: item_atm.lua:973 item_atm.lua:1052 #: item_atm.lua:991 item_atm.lua:1070
msgid "Deposit and Withdraw your minercash into your bank account." msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária." msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
@ -176,7 +176,7 @@ msgstr "Dispensa Concluida!"
msgid "Dispensing Machine of '%s'." msgid "Dispensing Machine of '%s'."
msgstr "Maquina Dispensadora de '%s'." msgstr "Maquina Dispensadora de '%s'."
#: item_atm.lua:192 #: item_atm.lua:206
msgid "Document Type" msgid "Document Type"
msgstr "Tipo de Documento" msgstr "Tipo de Documento"
@ -201,8 +201,8 @@ msgstr ""
"MESA DE ESCAMBO\n" "MESA DE ESCAMBO\n"
"* Faz trocas seguras jogador a jogador sem a necessidade de colocar seu itens no chão." "* Faz trocas seguras jogador a jogador sem a necessidade de colocar seu itens no chão."
#: item_atm.lua:285 item_atm.lua:312 item_atm.lua:348 item_atm.lua:436 #: item_atm.lua:299 item_atm.lua:326 item_atm.lua:362 item_atm.lua:450
#: item_atm.lua:476 item_atm.lua:593 item_atm.lua:641 #: item_atm.lua:490 item_atm.lua:607 item_atm.lua:655
msgid "EXIT" msgid "EXIT"
msgstr "SAIR" msgstr "SAIR"
@ -216,7 +216,7 @@ msgstr "Equivale a %02d minercash."
msgid "Equivalent to as much minercash as your creator wants.." msgid "Equivalent to as much minercash as your creator wants.."
msgstr "Equivalente a tanto minercash quanto seu criador quiser." msgstr "Equivalente a tanto minercash quanto seu criador quiser."
#: item_atm.lua:321 #: item_atm.lua:335
msgid "FINANCIAL TRANSACTIONS" msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS" msgstr "TRANSAÇÕES FINANCEIRAS"
@ -224,11 +224,11 @@ msgstr "TRANSAÇÕES FINANCEIRAS"
msgid "GREEN MINERMONEY" msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE" msgstr "NOTA VERDE"
#: item_atm.lua:280 #: item_atm.lua:294
msgid "LOANS" msgid "LOANS"
msgstr "EMPRÉSTIMOS" msgstr "EMPRÉSTIMOS"
#: item_atm.lua:446 #: item_atm.lua:460
msgid "MINERCASH" msgid "MINERCASH"
msgstr "MINERCASH" msgstr "MINERCASH"
@ -240,11 +240,11 @@ msgstr "MINERMOEDA"
msgid "Make an announcement about what this machine will do" msgid "Make an announcement about what this machine will do"
msgstr "Faça um anúncio sobre o que esta máquina dispensará" msgstr "Faça um anúncio sobre o que esta máquina dispensará"
#: item_atm.lua:317 #: item_atm.lua:331
msgid "NAME OF BANKING ACCOUNT HOLDER" msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO" msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:362 #: item_atm.lua:376
msgid "N°" msgid "N°"
msgstr "N°" msgstr "N°"
@ -273,17 +273,17 @@ msgstr "Abrir"
msgid "Opening '%s' with data bank!" msgid "Opening '%s' with data bank!"
msgstr "Abrindo '%s' com dados do banco!" msgstr "Abrindo '%s' com dados do banco!"
#: item_atm.lua:972 item_atm.lua:1051 #: item_atm.lua:990 item_atm.lua:1069
msgid "PUBLIC ATM" msgid "PUBLIC ATM"
msgstr "CAIXA ELETRÔNICO PÚBLICO" msgstr "CAIXA ELETRÔNICO PÚBLICO"
#: item_atm.lua:297 item_atm.lua:409 item_atm.lua:465 item_atm.lua:581 #: item_atm.lua:311 item_atm.lua:423 item_atm.lua:479 item_atm.lua:595
#: item_atm.lua:630 #: item_atm.lua:644
#, lua-format #, lua-format
msgid "Player '%s' is not an account holder of this bank." msgid "Player '%s' is not an account holder of this bank."
msgstr "O jogador '%s' não é titular de conta deste banco." msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:685 #: item_atm.lua:699
#, fuzzy #, fuzzy
msgid "REASON OF TRANSFER" msgid "REASON OF TRANSFER"
msgstr "MOTIVO DA TRANSFERÊNCIA" msgstr "MOTIVO DA TRANSFERÊNCIA"
@ -292,7 +292,7 @@ msgstr "MOTIVO DA TRANSFERÊNCIA"
msgid "RED MINERMONEY" msgid "RED MINERMONEY"
msgstr "NOTA VERMELHA" msgstr "NOTA VERMELHA"
#: item_atm.lua:188 #: item_atm.lua:202
#, lua-format #, lua-format
msgid "Reason: %s" msgid "Reason: %s"
msgstr "Rasão: %s" msgstr "Rasão: %s"
@ -301,19 +301,19 @@ msgstr "Rasão: %s"
msgid "Received (Your Profit)" msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)" msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:193 #: item_atm.lua:207
msgid "Responsible Player" msgid "Responsible Player"
msgstr "Jogador Responsável" msgstr "Jogador Responsável"
#: item_atm.lua:441 #: item_atm.lua:455
msgid "SELECT BANK WITHDRAWAL METHOD" msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO" msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:281 #: item_atm.lua:295
msgid "SETTINGS" msgid "SETTINGS"
msgstr "CONFIGURAÇÕES" msgstr "CONFIGURAÇÕES"
#: item_atm.lua:267 item_atm.lua:357 #: item_atm.lua:281 item_atm.lua:371
msgid "STATEMENT" msgid "STATEMENT"
msgstr "EXTRATO" msgstr "EXTRATO"
@ -326,7 +326,7 @@ msgstr "Salvar o anúncio"
msgid "Saving data bank in the file '%s'!" msgid "Saving data bank in the file '%s'!"
msgstr "Salvando dados bancários no arquivo '%s'!" msgstr "Salvando dados bancários no arquivo '%s'!"
#: item_atm.lua:353 #: item_atm.lua:367
msgid "Select a bank statement to view transaction details!" msgid "Select a bank statement to view transaction details!"
msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!" msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!"
@ -338,20 +338,20 @@ msgstr "Inventario atual do vendedor"
msgid "Stock to Offer" msgid "Stock to Offer"
msgstr "Estoque a Oferetar" msgstr "Estoque a Oferetar"
#: item_atm.lua:390 #: item_atm.lua:404
msgid "TOTAL" msgid "TOTAL"
msgstr "TOTAL" msgstr "TOTAL"
#: item_atm.lua:413 #: item_atm.lua:427
msgid "TRANSACTION DETAILS" msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO" msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:185 item_atm.lua:192 #: item_atm.lua:199 item_atm.lua:206
#, fuzzy #, fuzzy
msgid "TRANSFER PROOF" msgid "TRANSFER PROOF"
msgstr "COMPROVANTE DE TRANSFERÊNCIA" msgstr "COMPROVANTE DE TRANSFERÊNCIA"
#: item_atm.lua:276 #: item_atm.lua:290
msgid "TRANSFERS" msgid "TRANSFERS"
msgstr "TRANSFERÊNCIAS" msgstr "TRANSFERÊNCIAS"
@ -365,7 +365,17 @@ msgstr "O parâmetro '%s' deve ser do tipo de STRING não vazia!"
msgid "The '%s' parameter must be of the position type (x,y,z)!" msgid "The '%s' parameter must be of the position type (x,y,z)!"
msgstr "O parâmetro '%s' deve ser do tipo de POSITION (x,y,z)!" msgstr "O parâmetro '%s' deve ser do tipo de POSITION (x,y,z)!"
#: item_atm.lua:1096 #: item_atm.lua:921
#, lua-format
msgid "The '%s' say to '%s': '%s'"
msgstr "Correntista '%s' disse para '%s': '%s'"
#: item_atm.lua:917
#, lua-format
msgid "The '%s' say: '%s'"
msgstr "Correntista '%s' disse: '%s'"
#: item_atm.lua:1114
#, lua-format #, lua-format
msgid "The ATM will only run %02d seconds after it is installed!" msgid "The ATM will only run %02d seconds after it is installed!"
msgstr "O Caixa Eletrônico só vai funcionar %02d segundos depois de instalado!" msgstr "O Caixa Eletrônico só vai funcionar %02d segundos depois de instalado!"
@ -392,22 +402,22 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer" msgid "The Machine Offer"
msgstr "Máquina Oferece" msgstr "Máquina Oferece"
#: item_atm.lua:919 #: item_atm.lua:937
#, lua-format #, lua-format
msgid "The Transfer Proof was left on the floor because '%s' inventory has no free space." msgid "The Transfer Proof was left on the floor because '%s' inventory has no free space."
msgstr "A prova de transferência foi deixada no chão porque o inventário '%s' não tem espaço livre." msgstr "A prova de transferência foi deixada no chão porque o inventário '%s' não tem espaço livre."
#: item_atm.lua:931 #: item_atm.lua:949
#, lua-format #, lua-format
msgid "The bank account holder '%s' does not have enough balance to make this requested transfer." msgid "The bank account holder '%s' does not have enough balance to make this requested transfer."
msgstr "O titular da conta bancária '%s' não tem saldo suficiente para fazer esta transferência solicitada." msgstr "O titular da conta bancária '%s' não tem saldo suficiente para fazer esta transferência solicitada."
#: item_atm.lua:945 #: item_atm.lua:963
#, fuzzy, lua-format #, fuzzy, lua-format
msgid "The beneficiary '%s' does not have a current account with this bank." msgid "The beneficiary '%s' does not have a current account with this bank."
msgstr "O jogador '%s' não é titular de conta deste banco." msgstr "O jogador '%s' não é titular de conta deste banco."
#: api_payday.lua:35 #: api_payday.lua:61
#, lua-format #, lua-format
msgid "The city hall deposited the %2d° salary in your bank account!" msgid "The city hall deposited the %2d° salary in your bank account!"
msgstr "A prefeitura depositou o %2d° salário em sua conta bancária!" msgstr "A prefeitura depositou o %2d° salário em sua conta bancária!"
@ -421,58 +431,58 @@ msgstr "A dispensa não pode ser feita. Verifique se você ofereceu o que a Maqu
msgid "The file '%s' is not in table format!" msgid "The file '%s' is not in table format!"
msgstr "O arquivo '%s' não esta no formato de tabela!" msgstr "O arquivo '%s' não esta no formato de tabela!"
#: item_atm.lua:852 #: item_atm.lua:866
#, lua-format #, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash." msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "O valor máximo que você pode sacar é: %02d minercash." msgstr "O valor máximo que você pode sacar é: %02d minercash."
#: item_atm.lua:958 #: item_atm.lua:976
#, fuzzy, lua-format #, fuzzy, lua-format
msgid "There is no account holder '%s' in this bank." msgid "There is no account holder '%s' in this bank."
msgstr "O jogador '%s' não é titular de conta deste banco." msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:198 #: item_atm.lua:212
#, fuzzy #, fuzzy
msgid "Transfer Reason" msgid "Transfer Reason"
msgstr "Motivo da Transferência" msgstr "Motivo da Transferência"
#: item_atm.lua:656 item_atm.lua:884 #: item_atm.lua:670 item_atm.lua:898
msgid "Transfer for undeclared reason!" msgid "Transfer for undeclared reason!"
msgstr "Transferência por rasão não declarada!" msgstr "Transferência por rasão não declarada!"
#: item_atm.lua:912 #: item_atm.lua:930
msgid "Transfer successful!" msgid "Transfer successful!"
msgstr "Sucesso de transferência!" msgstr "Sucesso de transferência!"
#: item_atm.lua:362 item_atm.lua:496 item_atm.lua:676 #: item_atm.lua:376 item_atm.lua:510 item_atm.lua:690
msgid "VALUE" msgid "VALUE"
msgstr "VALOR" msgstr "VALOR"
#: item_atm.lua:197 #: item_atm.lua:211
msgid "Value" msgid "Value"
msgstr "Valor" msgstr "Valor"
#: item_atm.lua:362 #: item_atm.lua:376
msgid "WHEN" msgid "WHEN"
msgstr "QUANDO" msgstr "QUANDO"
#: item_atm.lua:501 #: item_atm.lua:515
msgid "WITHDRAWAL" msgid "WITHDRAWAL"
msgstr "SAQUE" msgstr "SAQUE"
#: item_atm.lua:275 #: item_atm.lua:289
msgid "WITHDRAWALS" msgid "WITHDRAWALS"
msgstr "SAQUES" msgstr "SAQUES"
#: item_atm.lua:196 #: item_atm.lua:210
msgid "When" msgid "When"
msgstr "Quando" msgstr "Quando"
#: item_atm.lua:451 #: item_atm.lua:465
msgid "Withdrawals in bank check." msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário." msgstr "Saque em Cheque Bancário."
#: item_atm.lua:447 #: item_atm.lua:461
msgid "Withdrawals in minercash." msgid "Withdrawals in minercash."
msgstr "Saque em minercash." msgstr "Saque em minercash."
@ -480,11 +490,11 @@ msgstr "Saque em minercash."
msgid "Without enough space in Dispensing Machine to receive the seller's item. (Please, empty the receiving box!)" msgid "Without enough space in Dispensing Machine to receive the seller's item. (Please, empty the receiving box!)"
msgstr "Sem espaço suficiente na Maquina Dispensadora para receber o item do vendedor. (Por favor, esvazie a caixa de recebimento!)" msgstr "Sem espaço suficiente na Maquina Dispensadora para receber o item do vendedor. (Por favor, esvazie a caixa de recebimento!)"
#: item_atm.lua:659 #: item_atm.lua:673
msgid "Write the 'beneficiary player name' and the 'value in minercash' that want to transfer!" msgid "Write the 'beneficiary player name' and the 'value in minercash' that want to transfer!"
msgstr "Escreva o 'nome do jogador beneficiário' e o 'valor em minercash' que deseja transferir!" msgstr "Escreva o 'nome do jogador beneficiário' e o 'valor em minercash' que deseja transferir!"
#: item_atm.lua:488 #: item_atm.lua:502
msgid "Write the value that want to withdrawal!" msgid "Write the value that want to withdrawal!"
msgstr "Digite o valor que deseja sacar!" msgstr "Digite o valor que deseja sacar!"
@ -492,7 +502,7 @@ msgstr "Digite o valor que deseja sacar!"
msgid "YELLOW MINERMONEY" msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA" msgstr "NOTA AMARELA"
#: item_atm.lua:603 #: item_atm.lua:617
msgid "YOUR BALANCE" msgid "YOUR BALANCE"
msgstr "SEU SALDO" msgstr "SEU SALDO"
@ -504,25 +514,25 @@ msgstr "Você pode ganhar algum dinheiro com isso."
msgid "You can not change your own machine!" msgid "You can not change your own machine!"
msgstr "Você não pode trocar na sua própria maquina!" msgstr "Você não pode trocar na sua própria maquina!"
#: item_atm.lua:1064 #: item_atm.lua:1082
msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!" msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!"
msgstr "Você não pode instalar este 'Caixa Eletrônico' muito longe de uma 'Máquina Dispensadora'!" msgstr "Você não pode instalar este 'Caixa Eletrônico' muito longe de uma 'Máquina Dispensadora'!"
#: item_atm.lua:555 #: item_atm.lua:569
#, lua-format #, lua-format
msgid "You deposited %02d x '%s'!" msgid "You deposited %02d x '%s'!"
msgstr "Você depositou %02d x '%s'!" msgstr "Você depositou %02d x '%s'!"
#: item_atm.lua:842 #: item_atm.lua:856
msgid "You don't have space in your inventory to withdraw so much minercash." msgid "You don't have space in your inventory to withdraw so much minercash."
msgstr "Você não tem espaço em seu inventário para retirar tanto minercash." msgstr "Você não tem espaço em seu inventário para retirar tanto minercash."
#: item_atm.lua:295 item_atm.lua:463 item_atm.lua:578 item_atm.lua:628 #: item_atm.lua:309 item_atm.lua:477 item_atm.lua:592 item_atm.lua:642
#, lua-format #, lua-format
msgid "You have %02d minercash." msgid "You have %02d minercash."
msgstr "Você tem %02d minercash." msgstr "Você tem %02d minercash."
#: item_atm.lua:831 #: item_atm.lua:845
#, lua-format #, lua-format
msgid "You have withdrawn %02d minercash from your bank account." msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária." msgstr "Você sacou %02d minercash de sua conta bancária."
@ -535,7 +545,7 @@ msgstr "Você Precisa"
msgid "You offer" msgid "You offer"
msgstr "Você Oferece" msgstr "Você Oferece"
#: item_atm.lua:617 #: item_atm.lua:631
msgid "Your Inventory" msgid "Your Inventory"
msgstr "Seu inventário" msgstr "Seu inventário"
@ -543,7 +553,7 @@ msgstr "Seu inventário"
msgid "Your inventory" msgid "Your inventory"
msgstr "Seu inventário" msgstr "Seu inventário"
#: item_atm.lua:1115 #: item_atm.lua:1133
msgid "atm" msgid "atm"
msgstr "caixaeletronico" msgstr "caixaeletronico"
@ -562,4 +572,3 @@ msgstr "mesadetroca"
#: item_minercash.lua:30 #: item_minercash.lua:30
msgid "minercoin" msgid "minercoin"
msgstr "minermoeda" msgstr "minermoeda"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-06-06 17:26-0300\n" "POT-Creation-Date: 2022-06-08 02:40-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -49,12 +49,12 @@ msgstr ""
msgid "Only players with this privilege will receive a daily payment." msgid "Only players with this privilege will receive a daily payment."
msgstr "" msgstr ""
#: api_payday.lua:35 #: api_payday.lua:61
#, lua-format #, lua-format
msgid "The city hall deposited the %2d° salary in your bank account!" msgid "The city hall deposited the %2d° salary in your bank account!"
msgstr "" msgstr ""
#: api_payday.lua:41 #: api_payday.lua:67
msgid "CITY HALL" msgid "CITY HALL"
msgstr "" msgstr ""
@ -77,280 +77,290 @@ msgstr ""
msgid "Opening '%s' with data bank!" msgid "Opening '%s' with data bank!"
msgstr "" msgstr ""
#: item_atm.lua:185 item_atm.lua:192 #: item_atm.lua:199 item_atm.lua:206
msgid "TRANSFER PROOF" msgid "TRANSFER PROOF"
msgstr "" msgstr ""
#: item_atm.lua:188 #: item_atm.lua:202
#, lua-format #, lua-format
msgid "Reason: %s" msgid "Reason: %s"
msgstr "" msgstr ""
#: item_atm.lua:192 #: item_atm.lua:206
msgid "Document Type" msgid "Document Type"
msgstr "" msgstr ""
#: item_atm.lua:193 #: item_atm.lua:207
msgid "Responsible Player" msgid "Responsible Player"
msgstr "" msgstr ""
#: item_atm.lua:194 #: item_atm.lua:208
msgid "Account Holder" msgid "Account Holder"
msgstr "" msgstr ""
#: item_atm.lua:195 #: item_atm.lua:209
msgid "Beneficiary" msgid "Beneficiary"
msgstr "" msgstr ""
#: item_atm.lua:196 #: item_atm.lua:210
msgid "When" msgid "When"
msgstr "" msgstr ""
#: item_atm.lua:197 #: item_atm.lua:211
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: item_atm.lua:198 #: item_atm.lua:212
msgid "Transfer Reason" msgid "Transfer Reason"
msgstr "" msgstr ""
#: item_atm.lua:266 #: item_atm.lua:280
msgid "BALANCE" msgid "BALANCE"
msgstr "" msgstr ""
#: item_atm.lua:267 item_atm.lua:357 #: item_atm.lua:281 item_atm.lua:371
msgid "STATEMENT" msgid "STATEMENT"
msgstr "" msgstr ""
#: item_atm.lua:274 #: item_atm.lua:288
msgid "DEPOSITS" msgid "DEPOSITS"
msgstr "" msgstr ""
#: item_atm.lua:275 #: item_atm.lua:289
msgid "WITHDRAWALS" msgid "WITHDRAWALS"
msgstr "" msgstr ""
#: item_atm.lua:276 #: item_atm.lua:290
msgid "TRANSFERS" msgid "TRANSFERS"
msgstr "" msgstr ""
#: item_atm.lua:279 item_minercash.lua:275 #: item_atm.lua:293 item_minercash.lua:275
msgid "CREDIT CARD" msgid "CREDIT CARD"
msgstr "" msgstr ""
#: item_atm.lua:280 #: item_atm.lua:294
msgid "LOANS" msgid "LOANS"
msgstr "" msgstr ""
#: item_atm.lua:281 #: item_atm.lua:295
msgid "SETTINGS" msgid "SETTINGS"
msgstr "" msgstr ""
#: item_atm.lua:285 item_atm.lua:312 item_atm.lua:348 item_atm.lua:436 #: item_atm.lua:299 item_atm.lua:326 item_atm.lua:362 item_atm.lua:450
#: item_atm.lua:476 item_atm.lua:593 item_atm.lua:641 #: item_atm.lua:490 item_atm.lua:607 item_atm.lua:655
msgid "EXIT" msgid "EXIT"
msgstr "" msgstr ""
#: item_atm.lua:295 item_atm.lua:463 item_atm.lua:578 item_atm.lua:628 #: item_atm.lua:309 item_atm.lua:477 item_atm.lua:592 item_atm.lua:642
#, lua-format #, lua-format
msgid "You have %02d minercash." msgid "You have %02d minercash."
msgstr "" msgstr ""
#: item_atm.lua:297 item_atm.lua:409 item_atm.lua:465 item_atm.lua:581 #: item_atm.lua:311 item_atm.lua:423 item_atm.lua:479 item_atm.lua:595
#: item_atm.lua:630 #: item_atm.lua:644
#, lua-format #, lua-format
msgid "Player '%s' is not an account holder of this bank." msgid "Player '%s' is not an account holder of this bank."
msgstr "" msgstr ""
#: item_atm.lua:311 item_atm.lua:347 item_atm.lua:435 item_atm.lua:475 #: item_atm.lua:325 item_atm.lua:361 item_atm.lua:449 item_atm.lua:489
#: item_atm.lua:592 item_atm.lua:640 #: item_atm.lua:606 item_atm.lua:654
msgid "BACK" msgid "BACK"
msgstr "" msgstr ""
#: item_atm.lua:317 #: item_atm.lua:331
msgid "NAME OF BANKING ACCOUNT HOLDER" msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "" msgstr ""
#: item_atm.lua:319 #: item_atm.lua:333
msgid "ACCOUNT CREATED" msgid "ACCOUNT CREATED"
msgstr "" msgstr ""
#: item_atm.lua:321 #: item_atm.lua:335
msgid "FINANCIAL TRANSACTIONS" msgid "FINANCIAL TRANSACTIONS"
msgstr "" msgstr ""
#: item_atm.lua:323 item_atm.lua:481 item_atm.lua:646 #: item_atm.lua:337 item_atm.lua:495 item_atm.lua:660
msgid "BALANCES" msgid "BALANCES"
msgstr "" msgstr ""
#: item_atm.lua:353 #: item_atm.lua:367
msgid "Select a bank statement to view transaction details!" msgid "Select a bank statement to view transaction details!"
msgstr "" msgstr ""
#: item_atm.lua:362 #: item_atm.lua:376
msgid "N°" msgid "N°"
msgstr "" msgstr ""
#: item_atm.lua:362 #: item_atm.lua:376
msgid "WHEN" msgid "WHEN"
msgstr "" msgstr ""
#: item_atm.lua:362 item_atm.lua:496 item_atm.lua:676 #: item_atm.lua:376 item_atm.lua:510 item_atm.lua:690
msgid "VALUE" msgid "VALUE"
msgstr "" msgstr ""
#: item_atm.lua:390 #: item_atm.lua:404
msgid "TOTAL" msgid "TOTAL"
msgstr "" msgstr ""
#: item_atm.lua:413 #: item_atm.lua:427
msgid "TRANSACTION DETAILS" msgid "TRANSACTION DETAILS"
msgstr "" msgstr ""
#: item_atm.lua:441 #: item_atm.lua:455
msgid "SELECT BANK WITHDRAWAL METHOD" msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "" msgstr ""
#: item_atm.lua:446 #: item_atm.lua:460
msgid "MINERCASH" msgid "MINERCASH"
msgstr "" msgstr ""
#: item_atm.lua:447 #: item_atm.lua:461
msgid "Withdrawals in minercash." msgid "Withdrawals in minercash."
msgstr "" msgstr ""
#: item_atm.lua:450 item_minercash.lua:237 #: item_atm.lua:464 item_minercash.lua:237
msgid "BANK CHECK" msgid "BANK CHECK"
msgstr "" msgstr ""
#: item_atm.lua:451 #: item_atm.lua:465
msgid "Withdrawals in bank check." msgid "Withdrawals in bank check."
msgstr "" msgstr ""
#: item_atm.lua:488 #: item_atm.lua:502
msgid "Write the value that want to withdrawal!" msgid "Write the value that want to withdrawal!"
msgstr "" msgstr ""
#: item_atm.lua:501 #: item_atm.lua:515
msgid "WITHDRAWAL" msgid "WITHDRAWAL"
msgstr "" msgstr ""
#: item_atm.lua:503 item_atm.lua:692 #: item_atm.lua:517 item_atm.lua:706
msgid "DETAILS" msgid "DETAILS"
msgstr "" msgstr ""
#: item_atm.lua:555 #: item_atm.lua:569
#, lua-format #, lua-format
msgid "You deposited %02d x '%s'!" msgid "You deposited %02d x '%s'!"
msgstr "" msgstr ""
#: item_atm.lua:598 #: item_atm.lua:612
msgid "BANK DEPOSIT" msgid "BANK DEPOSIT"
msgstr "" msgstr ""
#: item_atm.lua:603 #: item_atm.lua:617
msgid "YOUR BALANCE" msgid "YOUR BALANCE"
msgstr "" msgstr ""
#: item_atm.lua:610 #: item_atm.lua:624
msgid "ATM entrance" msgid "ATM entrance"
msgstr "" msgstr ""
#: item_atm.lua:617 #: item_atm.lua:631
msgid "Your Inventory" msgid "Your Inventory"
msgstr "" msgstr ""
#: item_atm.lua:656 item_atm.lua:884 #: item_atm.lua:670 item_atm.lua:898
msgid "Transfer for undeclared reason!" msgid "Transfer for undeclared reason!"
msgstr "" msgstr ""
#: item_atm.lua:659 #: item_atm.lua:673
msgid "" msgid ""
"Write the 'beneficiary player name' and the 'value in minercash' that want " "Write the 'beneficiary player name' and the 'value in minercash' that want "
"to transfer!" "to transfer!"
msgstr "" msgstr ""
#: item_atm.lua:667 #: item_atm.lua:681
msgid "BENEFICIARY NAME" msgid "BENEFICIARY NAME"
msgstr "" msgstr ""
#: item_atm.lua:685 #: item_atm.lua:699
msgid "REASON OF TRANSFER" msgid "REASON OF TRANSFER"
msgstr "" msgstr ""
#: item_atm.lua:690 #: item_atm.lua:704
msgid "DO TRANSFER" msgid "DO TRANSFER"
msgstr "" msgstr ""
#: item_atm.lua:831 #: item_atm.lua:845
#, lua-format #, lua-format
msgid "You have withdrawn %02d minercash from your bank account." msgid "You have withdrawn %02d minercash from your bank account."
msgstr "" msgstr ""
#: item_atm.lua:842 #: item_atm.lua:856
msgid "You don't have space in your inventory to withdraw so much minercash." msgid "You don't have space in your inventory to withdraw so much minercash."
msgstr "" msgstr ""
#: item_atm.lua:852 #: item_atm.lua:866
#, lua-format #, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash." msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "" msgstr ""
#: item_atm.lua:911 item_atm.lua:917 item_atm.lua:1063 item_atm.lua:1094 #: item_atm.lua:917
#, lua-format
msgid "The '%s' say: '%s'"
msgstr ""
#: item_atm.lua:921
#, lua-format
msgid "The '%s' say to '%s': '%s'"
msgstr ""
#: item_atm.lua:929 item_atm.lua:935 item_atm.lua:1081 item_atm.lua:1112
msgid "ATM" msgid "ATM"
msgstr "" msgstr ""
#: item_atm.lua:912 #: item_atm.lua:930
msgid "Transfer successful!" msgid "Transfer successful!"
msgstr "" msgstr ""
#: item_atm.lua:919 #: item_atm.lua:937
#, lua-format #, lua-format
msgid "" msgid ""
"The Transfer Proof was left on the floor because '%s' inventory has no free " "The Transfer Proof was left on the floor because '%s' inventory has no free "
"space." "space."
msgstr "" msgstr ""
#: item_atm.lua:931 #: item_atm.lua:949
#, lua-format #, lua-format
msgid "" msgid ""
"The bank account holder '%s' does not have enough balance to make this " "The bank account holder '%s' does not have enough balance to make this "
"requested transfer." "requested transfer."
msgstr "" msgstr ""
#: item_atm.lua:938 #: item_atm.lua:956
#, lua-format #, lua-format
msgid "Account holder '%s' cannot be a beneficiary of itself." msgid "Account holder '%s' cannot be a beneficiary of itself."
msgstr "" msgstr ""
#: item_atm.lua:945 #: item_atm.lua:963
#, lua-format #, lua-format
msgid "The beneficiary '%s' does not have a current account with this bank." msgid "The beneficiary '%s' does not have a current account with this bank."
msgstr "" msgstr ""
#: item_atm.lua:958 #: item_atm.lua:976
#, lua-format #, lua-format
msgid "There is no account holder '%s' in this bank." msgid "There is no account holder '%s' in this bank."
msgstr "" msgstr ""
#: item_atm.lua:972 item_atm.lua:1051 #: item_atm.lua:990 item_atm.lua:1069
msgid "PUBLIC ATM" msgid "PUBLIC ATM"
msgstr "" msgstr ""
#: item_atm.lua:973 item_atm.lua:1052 #: item_atm.lua:991 item_atm.lua:1070
msgid "Deposit and Withdraw your minercash into your bank account." msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "" msgstr ""
#: item_atm.lua:1064 #: item_atm.lua:1082
msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!" msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!"
msgstr "" msgstr ""
#: item_atm.lua:1096 #: item_atm.lua:1114
#, lua-format #, lua-format
msgid "The ATM will only run %02d seconds after it is installed!" msgid "The ATM will only run %02d seconds after it is installed!"
msgstr "" msgstr ""
#: item_atm.lua:1115 #: item_atm.lua:1133
msgid "atm" msgid "atm"
msgstr "" msgstr ""