Função de Transferência: testada, traduzida, e liberada ao publico.

This commit is contained in:
Lunovox 2022-06-06 17:45:54 -03:00
parent 2aac65d875
commit da051a0c61
4 changed files with 531 additions and 588 deletions

View file

@ -142,7 +142,7 @@ modMinerTrade.addStatement = function(playername, value, description)
table.insert(
myStatement,
{
when = os.date("%Y-%B-%d %Hh:%Mm:%Ss"),
when = os.date("%Y-%b-%d %H:%M:%S"),
value = value,
description = description,
}
@ -165,47 +165,44 @@ end
modMinerTrade.getSalt_Hash = function()
if modMinerTrade.bank.salt_hash == nil then
modMinerTrade.bank.salt_hash = minetest.encode_base64(os.date("%Y-%B-%d %Hh:%Mm:%Ss"))
modMinerTrade.bank.salt_hash = minetest.encode_base64("SALT_HASH: "..os.date("%Y-%B-%d %Hh:%Mm:%Ss"))
end
return modMinerTrade.bank.salt_hash
end
modMinerTrade.getProofStack = function(playername, accountname, txtBeneficiary, txtValue, txtDescription)
modMinerTrade.getProofStack = function(playername, accountname, txtBeneficiary, txtValue, txtReason)
local player = minetest.get_player_by_name(playername)
if player ~= nil and player:is_player() then
local lpp = 14 -- Lines per book's page
local max_text_size = 10000
local max_title_size = 80
local short_title_size = 35
local invPlayer = player:get_inventory()
local objProof = ItemStack("default:book_written")
--local data = objProof:get_meta():to_table().fields
local data = {}
--data.title = fields.title:sub(1, max_title_size)
data.title = modMinerTrade.translate("TRANSFER PROOF"):sub(1, max_title_size)
data.owner = "Minetest Bank"
local short_title = data.title
-- Don't bother triming the title if the trailing dots would make it longer
if #short_title > short_title_size + 3 then
short_title = short_title:sub(1, short_title_size) .. "..."
end
data.description = S("\"@1\" by @2", short_title, data.owner)
data.owner = "MINETEST BANK"
data.description = core.colorize("#00FF00", data.title)
.."\n"..modMinerTrade.translate("Reason: %s"):format(txtReason)
--.."\n"..modMinerTrade.translate("Printed by %s"):format(playername)
local when = os.date("%Y-%B-%d %Hh:%Mm:%Ss")
local myDocument = ""
.."\nDocument Type: TRANSFER PROOF"
.."\nPlayer: "..playername
.."\nAccount Holder: "..accountname
.."\nBeneficiary: "..txtBeneficiary
.."\nWhen: "..when
.."\nValue: "..txtValue.." minercash"
.."\nDescription: "..txtDescription
.."\n"..modMinerTrade.translate("Document Type")..": "..modMinerTrade.translate("TRANSFER PROOF")
.."\n"..modMinerTrade.translate("Responsible Player")..": "..playername
.."\n"..modMinerTrade.translate("Account Holder")..": "..accountname
.."\n"..modMinerTrade.translate("Beneficiary")..": "..txtBeneficiary
.."\n"..modMinerTrade.translate("When")..": "..when
.."\n"..modMinerTrade.translate("Value")..": "..txtValue.." minercash"
.."\n"..modMinerTrade.translate("Transfer Reason")..": "..txtReason
local Auth = minetest.get_password_hash(
modMinerTrade.getSalt_Hash(),
minetest.encode_base64(myDocument)
minetest.encode_base64(myDocument:trim())
)
local data.text = ""
.."\n"..myDocument
data.text = ""
.."\n"..myDocument:trim()
.."\n----------------------------------"
.."\n"..Auth
@ -276,9 +273,9 @@ modMinerTrade.showAccountBank = {
formspec = formspec
.. "button[0.25,2.00;5.00,0.5;btnDeposits;"..minetest.formspec_escape(core.colorize("#FFFFF", modMinerTrade.translate("DEPOSITS"))).."]"
.. "button[0.25,2.75;5.00,0.5;btnWithdrawals;"..minetest.formspec_escape(core.colorize("#FFFFF", modMinerTrade.translate("WITHDRAWALS"))).."]" -- [DINHEIRO E CHECK]
.. "button[0.25,3.50;5.00,0.5;btnTransfers;"..minetest.formspec_escape(core.colorize("#FFFFFF", modMinerTrade.translate("TRANSFERS"))).."]"
if minetest.get_player_privs(playername).developer then
formspec = formspec
.. "button[0.25,3.50;5.00,0.5;btnTransfers;"..minetest.formspec_escape(core.colorize("#FFFFFF", modMinerTrade.translate("TRANSFERS"))).."]"
.. "button[0.25,5.00;5.00,0.5;btnCreditCard;"..minetest.formspec_escape(core.colorize("#888888", modMinerTrade.translate("CREDIT CARD"))).."]" -- [EXPEDIR E MUDAR SENHA]
.. "button[0.25,4.25;5.00,0.5;btnLoans;"..minetest.formspec_escape(core.colorize("#888888", modMinerTrade.translate("LOANS"))).."]" --Emprestimos
.. "button[0.25,5.75;5.00,0.5;btnSetings;"..minetest.formspec_escape(core.colorize("#888888", modMinerTrade.translate("SETTINGS"))).."]" --Se quer ou não uma senha, se quer receber uma carta quando houver uma nova movimentacao.
@ -459,7 +456,7 @@ modMinerTrade.showAccountBank = {
end,
frmGiveCash = function(playername, txtValue, msgDetails) --FORMULÁRIO: SAQUE
local accountname = modMinerTrade.bank.player[playername].focused_accountname
modMinerTrade.debug("modMinerTrade.showAccountBank.frmGiveCash() >>> playername = "..playername.." | txtValue = "..dump(txtValue).." | msgDetails = "..dump(msgDetails))
--modMinerTrade.debug("modMinerTrade.showAccountBank.frmGiveCash() >>> playername = "..playername.." | txtValue = "..dump(txtValue).." | msgDetails = "..dump(msgDetails))
local msgBalance = ""
if modMinerTrade.isExistAcount(accountname) then
@ -622,9 +619,9 @@ modMinerTrade.showAccountBank = {
minetest.show_formspec(playername, "frmAtmDeposits", formspec)
end,
frmTransfer = function(playername, txtBeneficiary, txtValue, txtDescription, msgDetails) --FORMULÁRIO: SAQUE
frmTransfer = function(playername, txtBeneficiary, txtValue, txtReason, msgDetails) --FORMULÁRIO: SAQUE
local accountname = modMinerTrade.bank.player[playername].focused_accountname
modMinerTrade.debug("modMinerTrade.showAccountBank.frmGiveCash() >>> playername = "..playername.." | txtValue = "..dump(txtValue).." | msgDetails = "..dump(msgDetails))
--modMinerTrade.debug("modMinerTrade.showAccountBank.frmTransfer() >>> playername = "..dump(playername).." | accountname = "..dump(accountname).." | txtBeneficiary = "..dump(txtBeneficiary).." | txtValue = "..dump(txtValue).." | txtReason = "..dump(txtReason).." | msgDetails = "..dump(msgDetails))
local msgBalance = ""
if modMinerTrade.isExistAcount(accountname) then
@ -655,15 +652,15 @@ modMinerTrade.showAccountBank = {
if txtValue == nil or txtValue == "" then
txtValue = "1"
end
if txtDescription == nil or type(txtDescription) ~= "string" or txtDescription:trim() == "" then
txtDescription = modMinerTrade.translate("Transfer for undeclared reason!")
if txtReason == nil or type(txtReason) ~= "string" or txtReason:trim() == "" then
txtReason = modMinerTrade.translate("Transfer for undeclared reason!")
end
if msgDetails == nil or msgDetails == "" then
msgDetails = modMinerTrade.translate("Write the 'beneficiary player name' and the 'value in minercash' that want to transfer!")
end
formspec = formspec
--.. "label[5.25,0.50;"..minetest.formspec_escape(core.colorize("#00FFFF", "WITHDRAWAL IN MINERCASH:")).."]"
.."field[7.00,3.50;5.00,0.50;txtBeneficiarytxtBeneficiary;"
.."field[7.00,3.50;6.00,0.50;txtBeneficiary;"
..minetest.formspec_escape(
core.colorize(
"#00FFFF",
@ -681,16 +678,16 @@ modMinerTrade.showAccountBank = {
)..";"
..minetest.formspec_escape(txtValue)
.."]"
.."field[7.00,6.50;9.00,0.50;txtDescription;"
.."field[7.00,6.50;9.00,0.50;txtReason;"
..minetest.formspec_escape(
core.colorize(
"#00FFFF",
modMinerTrade.translate("DESCRIPTION")..":"
modMinerTrade.translate("REASON OF TRANSFER")..":"
)
)..";"
..minetest.formspec_escape(txtDescription)
..minetest.formspec_escape(txtReason)
.."]"
.. "button[9.85,7.50;4.00,1.00;btnAtmTransfer;"..minetest.formspec_escape(core.colorize("#FFFFFF", modMinerTrade.translate("TRANSFER"))).."]"
.. "button[9.85,7.50;4.00,1.00;btnAtmTransfer;"..minetest.formspec_escape(core.colorize("#FFFFFF", modMinerTrade.translate("DO TRANSFER"))).."]"
.."textarea[6.75,8.50;9.0,1.5;;"..minetest.formspec_escape(core.colorize("#00FFFF", modMinerTrade.translate("DETAILS")..":"))..";"
..minetest.formspec_escape(core.colorize("#00FFFF", msgDetails))
@ -771,10 +768,8 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
modMinerTrade.doSoundPlayer(playername, "sfx_atm", 5)
modMinerTrade.showAccountBank.frmDeposits(playername)
elseif fields.btnTransfers ~= nil then
if modMinerTrade.canInteract(playername) then --Em fase de teste é acessivel somente para developers.
modMinerTrade.doSoundPlayer(playername, "sfx_atm", 5)
modMinerTrade.showAccountBank.frmTransfer(playername)
end
modMinerTrade.doSoundPlayer(playername, "sfx_atm", 5)
modMinerTrade.showAccountBank.frmTransfer(playername)
end
elseif formname == "frmAtmStatement" then
--modMinerTrade.debug("modMinerTrade.onReceiveFields() >>> player = "..playername.." | formname = "..formname.." | fields = "..dump(fields))
@ -862,49 +857,59 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
modMinerTrade.doSoundPlayer(playername, "sfx_failure", 5)
end
end
elseif formname == "frmTransfer" then
if fields.btnAtmTransfer ~= nil
elseif formname == "frmAtmTransfer" then
if fields.btnAtmTransfer ~= nil then
--modMinerTrade.debug("modMinerTrade.onReceiveFields() >>> player = "..playername.." | formname = "..formname.." | fields = "..dump(fields))
local player = minetest.get_player_by_name(playername)
if player ~= nil and player:is_player() then
local accountname = modMinerTrade.bank.player[playername].focused_accountname
local txtBeneficiary = ""
if fields.txtBeneficiary ~= nil
and type(fields.txtBeneficiary) == "string"
and fields.txtBeneficiary:trim() ~= ""
then
txtBeneficiary = fields.txtBeneficiary:trim()
end
local txtValue = 0
if fields.txtValue ~= nil
and tonumber(fields.txtValue) ~= nil
and type(tonumber(fields.txtValue))=="number"
and tonumber(fields.txtValue) >= 1
then
txtValue = tonumber(fields.txtValue)
end
local txtReason = modMinerTrade.translate("Transfer for undeclared reason!")
if fields.txtReason ~= nil
and type(fields.txtReason)=="string"
and fields.txtReason:trim() ~= ""
then
--txtReason = string.format("%-150s",fields.txtReason:trim()):trim() --max 150 craracters
txtReason = fields.txtReason:trim():sub(1, 150) --max 150 craracters
end
modMinerTrade.debug("modMinerTrade.onReceiveFields() >>> playername = "..dump(playername).." | accountname = "..dump(accountname).." | txtBeneficiary = "..dump(txtBeneficiary).." | txtValue = "..dump(txtValue).." | txtReason = "..dump(txtReason))
--modMinerTrade.debug("modMinerTrade.onReceiveFields() >>> accountname = "..dump(accountname))
if modMinerTrade.isExistAcount(accountname) then
if
fields.txtBeneficiary ~= nil
and type(fields.txtBeneficiarytxtBeneficiary) == "string"
and fields.txtBeneficiary ~= ""
and fields.txtValue ~= nil
and tonumber(fields.txtValue) ~= nil
and type(tonumber(fields.txtValue))=="number"
and tonumber(fields.txtValue) >= 1
then
local txtBeneficiary = fields.txtBeneficiary
local txtValue = tonumber(fields.txtValue)
local txtDescription = ""
if fields.txtDescription ~= nil
and type(fields.txtDescription))=="string"
and fields.txtDescription:trim() ~= ""
then
--txtDescription = string.format("%-150s",fields.txtDescription:trim()):trim() --max 150 craracters
txtDescription = fields.txtDescription:trim():sub(1, 150) --max 150 craracters
else
txtDescription = modMinerTrade.translate("Transfer for undeclared reason!")
end
if txtBeneficiary ~= "" and txtValue >= 1 then
if modMinerTrade.isExistAcount(txtBeneficiary) then
if accountname ~= txtBeneficiary then
local thisBalance = modMinerTrade.getBalance(accountname)
if txtValue <= thisBalance then
modMinerTrade.addBalance(txtBeneficiary, txtValue)
modMinerTrade.addStatement(txtBeneficiary, txtValue, txtDescription)
modMinerTrade.addStatement(txtBeneficiary, txtValue, txtReason)
modMinerTrade.addBalance(accountname, 0 - txtValue)
modMinerTrade.addStatement(accountname, 0 - txtValue, txtDescription)
modMinerTrade.addStatement(accountname, 0 - txtValue, txtReason)
local objProof = modMinerTrade.getProofStack(playername, accountname, txtBeneficiary, txtValue, txtDescription)
local objProof = modMinerTrade.getProofStack(playername, accountname, txtBeneficiary, txtValue, txtReason)
local invPlayer = player:get_inventory()
if invPlayer:room_for_item("main", objProof) then-- verifica se compartimento de Recebimento de pagamento do vendedor tem espaço
invPlayer:add_item("main", objProof)
minetest.chat_send_player(playername,
core.colorize("#00FF00", "["..modMinerTrade.translate("ATM").."]: ")
modMinerTrade.translate("Transfer successful!")
..modMinerTrade.translate("Transfer successful!")
)
else
minetest.add_item(player:get_pos(), objProof)
@ -916,27 +921,27 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
)
end
--modMinerTrade.doSoundPlayer(playername, "sfx_atm", 5)
--modMinerTrade.showAccountBank.frmTransfer(playername, txtBeneficiary, txtValue, txtDescription, msgDetails) --FORMULÁRIO: SAQUE
--modMinerTrade.showAccountBank.frmTransfer(playername, txtBeneficiary, txtValue, txtReason, msgDetails) --FORMULÁRIO: SAQUE
modMinerTrade.doSoundPlayer(playername, "sfx_cash_register", 5)
modMinerTrade.showAccountBank.frmMain(playername)
else
modMinerTrade.doSoundPlayer(playername, "sfx_failure", 5)
modMinerTrade.showAccountBank.frmTransfer(
playername, txtBeneficiary, txtValue, txtDescription,
playername, txtBeneficiary, txtValue, txtReason,
modMinerTrade.translate("The bank account holder '%s' does not have enough balance to make this requested transfer."):format(accountname)
)
end
else
modMinerTrade.doSoundPlayer(playername, "sfx_failure", 5)
modMinerTrade.showAccountBank.frmTransfer(
playername, txtBeneficiary, txtValue, txtDescription,
playername, txtBeneficiary, txtValue, txtReason,
modMinerTrade.translate("Account holder '%s' cannot be a beneficiary of itself."):format(accountname)
)
end
else
modMinerTrade.doSoundPlayer(playername, "sfx_failure", 5)
modMinerTrade.showAccountBank.frmTransfer(
playername, txtBeneficiary, txtValue, txtDescription,
playername, txtBeneficiary, txtValue, txtReason,
modMinerTrade.translate("The beneficiary '%s' does not have a current account with this bank."):format(txtBeneficiary)
)
end

View file

@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-18 11:58-0300\n"
"POT-Creation-Date: 2022-06-06 17:26-0300\n"
"PO-Revision-Date: 2022-05-18 11:16-0300\n"
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
"Language-Team: \n"
"Language: pt\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -32,43 +32,56 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT"
msgstr "ACEITAR"
#: item_atm.lua:231
#: item_atm.lua:319
msgid "ACCOUNT CREATED"
msgstr "CONTA CRIADA"
#: item_atm.lua:806 item_atm.lua:835
#: item_atm.lua:911 item_atm.lua:917 item_atm.lua:1063 item_atm.lua:1094
msgid "ATM"
msgstr "CAIXA ELETRÔNICO"
#: item_atm.lua:535
#: item_atm.lua:610
msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico"
#: item_atm.lua:194
msgid "Account Holder"
msgstr "Correntista"
#: item_atm.lua:938
#, lua-format
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."
#: item_minercash.lua:276
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."
#: item_atm.lua:223 item_atm.lua:258 item_atm.lua:345 item_atm.lua:385
#: item_atm.lua:517
#: item_atm.lua:311 item_atm.lua:347 item_atm.lua:435 item_atm.lua:475
#: item_atm.lua:592 item_atm.lua:640
msgid "BACK"
msgstr "VOLTAR"
#: item_atm.lua:188
#: item_atm.lua:266
msgid "BALANCE"
msgstr "SALDO"
#: item_atm.lua:235 item_atm.lua:391
#: item_atm.lua:323 item_atm.lua:481 item_atm.lua:646
msgid "BALANCES"
msgstr "SALDOS"
#: item_atm.lua:360 item_minercash.lua:237
#: item_atm.lua:450 item_minercash.lua:237
msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:523
#: item_atm.lua:598
msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO"
#: item_atm.lua:667
msgid "BENEFICIARY NAME"
msgstr "NOME DO BENEFICIÁRIO"
#: item_minercash.lua:203
msgid "BLACK MINERMONEY"
msgstr "NOTA PRETA"
@ -81,14 +94,22 @@ msgstr "NOTA AZUL"
msgid "Basic craftable minercash with gold and steel."
msgstr "Minercash básico criado apenas com ouro e aço."
#: item_atm.lua:195
msgid "Beneficiary"
msgstr "Beneficiário"
#: api_payday.lua:41
msgid "CITY HALL"
msgstr "PREFEITURA"
#: item_atm.lua:194 item_minercash.lua:275
#: item_atm.lua:279 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO"
#: item_atm.lua:2
msgid "Can access evolving ATM functions."
msgstr "Pode acessar funções ATM em desenvolvimento."
#: item_exchange_table.lua:15 item_exchange_table.lua:17
#: item_exchange_table.lua:23 item_exchange_table.lua:25
msgid "Cancel"
@ -114,11 +135,11 @@ msgstr "Cliente Oferece"
msgid "Customer Receive"
msgstr "Cliente Recebe"
#: item_atm.lua:190
#: item_atm.lua:274
msgid "DEPOSITS"
msgstr "DEPÓSITOS"
#: item_atm.lua:413
#: item_atm.lua:503 item_atm.lua:692
msgid "DETAILS"
msgstr "DETALHES"
@ -136,7 +157,12 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:716 item_atm.lua:795
#: item_atm.lua:690
#, fuzzy
msgid "DO TRANSFER"
msgstr "TRANSFERIR"
#: item_atm.lua:973 item_atm.lua:1052
msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
@ -150,6 +176,10 @@ msgstr "Dispensa Concluida!"
msgid "Dispensing Machine of '%s'."
msgstr "Maquina Dispensadora de '%s'."
#: item_atm.lua:192
msgid "Document Type"
msgstr "Tipo de Documento"
#: api.lua:421
msgid "Due to an unknown error, it was not possible to send an email through the dispensing machine!"
msgstr "Devido a um erro desconhecido, não foi possível enviar um email através da Máquina Dispensadora!"
@ -171,8 +201,8 @@ msgstr ""
"MESA DE ESCAMBO\n"
"* Faz trocas seguras jogador a jogador sem a necessidade de colocar seu itens no chão."
#: item_atm.lua:196 item_atm.lua:224 item_atm.lua:259 item_atm.lua:346
#: item_atm.lua:386 item_atm.lua:518
#: item_atm.lua:285 item_atm.lua:312 item_atm.lua:348 item_atm.lua:436
#: item_atm.lua:476 item_atm.lua:593 item_atm.lua:641
msgid "EXIT"
msgstr "SAIR"
@ -186,7 +216,7 @@ msgstr "Equivale a %02d minercash."
msgid "Equivalent to as much minercash as your creator wants.."
msgstr "Equivalente a tanto minercash quanto seu criador quiser."
#: item_atm.lua:233
#: item_atm.lua:321
msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS"
@ -194,20 +224,11 @@ msgstr "TRANSAÇÕES FINANCEIRAS"
msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE"
#: commands.lua:18
#, lua-format
msgid "INVENTORY OF '%s':"
msgstr "Inventário de '%s':"
#: item_atm.lua:193
#: item_atm.lua:280
msgid "LOANS"
msgstr "EMPRÉSTIMOS"
#: commands.lua:2 commands.lua:9 commands.lua:30
msgid "Lets you check the contents of another players strongbox."
msgstr "Permite verificar o conteúdo do cofre de outro jogador."
#: item_atm.lua:356
#: item_atm.lua:446
msgid "MINERCASH"
msgstr "MINERCASH"
@ -219,15 +240,15 @@ msgstr "MINERMOEDA"
msgid "Make an announcement about what this machine will do"
msgstr "Faça um anúncio sobre o que esta máquina dispensará"
#: item_atm.lua:229
#: item_atm.lua:317
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:273
#: item_atm.lua:362
msgid "N°"
msgstr "N°"
#: item_minercash.lua:367
#: item_minercash.lua:368
msgid "OBSOLETE MONEY"
msgstr "DINHEIRO OBSOLETO"
@ -247,37 +268,52 @@ msgstr "Somente jogadores com esse privilégio receberão um pagamento diário."
msgid "Open"
msgstr "Abrir"
#: item_atm.lua:47
#: item_atm.lua:50
#, lua-format
msgid "Opening '%s' with data bank!"
msgstr "Abrindo '%s' com dados do banco!"
#: item_atm.lua:715 item_atm.lua:794
#: item_atm.lua:972 item_atm.lua:1051
msgid "PUBLIC ATM"
msgstr "CAIXA ELETRÔNICO PÚBLICO"
#: item_atm.lua:209 item_atm.lua:320 item_atm.lua:375 item_atm.lua:506
#: item_atm.lua:297 item_atm.lua:409 item_atm.lua:465 item_atm.lua:581
#: item_atm.lua:630
#, lua-format
msgid "Player '%s' is not an account holder of this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:685
#, fuzzy
msgid "REASON OF TRANSFER"
msgstr "MOTIVO DA TRANSFERÊNCIA"
#: item_minercash.lua:170
msgid "RED MINERMONEY"
msgstr "NOTA VERMELHA"
#: item_atm.lua:188
#, lua-format
msgid "Reason: %s"
msgstr "Rasão: %s"
#: item_dispensing_machine.lua:47
msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:351
#: item_atm.lua:193
msgid "Responsible Player"
msgstr "Jogador Responsável"
#: item_atm.lua:441
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:195
#: item_atm.lua:281
msgid "SETTINGS"
msgstr "CONFIGURAÇÕES"
#: item_atm.lua:189 item_atm.lua:268
#: item_atm.lua:267 item_atm.lua:357
msgid "STATEMENT"
msgstr "EXTRATO"
@ -285,17 +321,12 @@ msgstr "EXTRATO"
msgid "Save The Announcement"
msgstr "Salvar o anúncio"
#: item_atm.lua:875
#, lua-format
msgid "Saving bank from all players in the file '%s'!"
msgstr "Salvando conta bacária de todos os jogadores no arquivo '%s'!"
#: item_atm.lua:26
#: item_atm.lua:29
#, lua-format
msgid "Saving data bank in the file '%s'!"
msgstr "Salvando dados bancários no arquivo '%s'!"
#: item_atm.lua:264
#: item_atm.lua:353
msgid "Select a bank statement to view transaction details!"
msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!"
@ -307,15 +338,20 @@ msgstr "Inventario atual do vendedor"
msgid "Stock to Offer"
msgstr "Estoque a Oferetar"
#: item_atm.lua:301
#: item_atm.lua:390
msgid "TOTAL"
msgstr "TOTAL"
#: item_atm.lua:324
#: item_atm.lua:413
msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:192
#: item_atm.lua:185 item_atm.lua:192
#, fuzzy
msgid "TRANSFER PROOF"
msgstr "COMPROVANTE DE TRANSFERÊNCIA"
#: item_atm.lua:276
msgid "TRANSFERS"
msgstr "TRANSFERÊNCIAS"
@ -329,7 +365,7 @@ 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)!"
msgstr "O parâmetro '%s' deve ser do tipo de POSITION (x,y,z)!"
#: item_atm.lua:837
#: item_atm.lua:1096
#, lua-format
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!"
@ -356,6 +392,21 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer"
msgstr "Máquina Oferece"
#: item_atm.lua:919
#, lua-format
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."
#: item_atm.lua:931
#, lua-format
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."
#: item_atm.lua:945
#, fuzzy, lua-format
msgid "The beneficiary '%s' does not have a current account with this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
#: api_payday.lua:35
#, lua-format
msgid "The city hall deposited the %2d° salary in your bank account!"
@ -365,42 +416,63 @@ msgstr "A prefeitura depositou o %2d° salário em sua conta bancária!"
msgid "The dispending can not be done. Make sure you offer what the machine asks for!"
msgstr "A dispensa não pode ser feita. Verifique se você ofereceu o que a Maquina Dispensadora pede!"
#: item_atm.lua:28 item_atm.lua:44
#: item_atm.lua:31 item_atm.lua:47
#, lua-format
msgid "The file '%s' is not in table format!"
msgstr "O arquivo '%s' não esta no formato de tabela!"
#: item_atm.lua:698
#: item_atm.lua:852
#, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "O valor máximo que você pode sacar é: %02d minercash."
#: commands.lua:24
#, lua-format
msgid "The strongbox of %s was not created yet!"
msgstr "O Cofre de %s não foi criado ainda!"
#: item_atm.lua:958
#, fuzzy, lua-format
msgid "There is no account holder '%s' in this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:273 item_atm.lua:406
#: item_atm.lua:198
#, fuzzy
msgid "Transfer Reason"
msgstr "Motivo da Transferência"
#: item_atm.lua:656 item_atm.lua:884
msgid "Transfer for undeclared reason!"
msgstr "Transferência por rasão não declarada!"
#: item_atm.lua:912
msgid "Transfer successful!"
msgstr "Sucesso de transferência!"
#: item_atm.lua:362 item_atm.lua:496 item_atm.lua:676
msgid "VALUE"
msgstr "VALOR"
#: item_atm.lua:273
#: item_atm.lua:197
msgid "Value"
msgstr "Valor"
#: item_atm.lua:362
msgid "WHEN"
msgstr "QUANDO"
#: item_atm.lua:411
#: item_atm.lua:501
msgid "WITHDRAWAL"
msgstr "SAQUE"
#: item_atm.lua:191
#: item_atm.lua:275
msgid "WITHDRAWALS"
msgstr "SAQUES"
#: item_atm.lua:361
#: item_atm.lua:196
msgid "When"
msgstr "Quando"
#: item_atm.lua:451
msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário."
#: item_atm.lua:357
#: item_atm.lua:447
msgid "Withdrawals in minercash."
msgstr "Saque em minercash."
@ -408,7 +480,11 @@ msgstr "Saque em minercash."
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!)"
#: item_atm.lua:398
#: item_atm.lua:659
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!"
#: item_atm.lua:488
msgid "Write the value that want to withdrawal!"
msgstr "Digite o valor que deseja sacar!"
@ -416,11 +492,11 @@ msgstr "Digite o valor que deseja sacar!"
msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA"
#: item_atm.lua:528
#: item_atm.lua:603
msgid "YOUR BALANCE"
msgstr "SEU SALDO"
#: item_minercash.lua:368
#: item_minercash.lua:369
msgid "You can make money from it."
msgstr "Você pode ganhar algum dinheiro com isso."
@ -428,29 +504,25 @@ msgstr "Você pode ganhar algum dinheiro com isso."
msgid "You can not change your own machine!"
msgstr "Você não pode trocar na sua própria maquina!"
#: item_atm.lua:807
#: item_atm.lua:1064
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'!"
#: item_atm.lua:480
#: item_atm.lua:555
#, lua-format
msgid "You deposited %02d x '%s'!"
msgstr "Você depositou %02d x '%s'!"
#: commands.lua:36
msgid "You do not have permission to run this command without the privileges 'checkstrongbox'!"
msgstr "Você não tem permissão para executar este comando sem o privilégio 'checkstrongbox'!"
#: item_atm.lua:688
#: item_atm.lua:842
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."
#: item_atm.lua:207 item_atm.lua:372 item_atm.lua:503
#: item_atm.lua:295 item_atm.lua:463 item_atm.lua:578 item_atm.lua:628
#, lua-format
msgid "You have %02d minercash."
msgstr "Você tem %02d minercash."
#: item_atm.lua:677
#: item_atm.lua:831
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária."
@ -463,7 +535,7 @@ msgstr "Você Precisa"
msgid "You offer"
msgstr "Você Oferece"
#: item_atm.lua:542
#: item_atm.lua:617
msgid "Your Inventory"
msgstr "Seu inventário"
@ -471,15 +543,11 @@ msgstr "Seu inventário"
msgid "Your inventory"
msgstr "Seu inventário"
#: item_atm.lua:856
#: item_atm.lua:1115
msgid "atm"
msgstr "caixaeletronico"
#: commands.lua:30 commands.lua:45
msgid "checkstrongbox"
msgstr "checacofre"
#: item_minercash.lua:361
#: item_minercash.lua:362
msgid "creditcard"
msgstr "cartaodecredito"
@ -495,136 +563,3 @@ msgstr "mesadetroca"
msgid "minercoin"
msgstr "minermoeda"
#~ msgid "ACCOUNT BANK of '%s':"
#~ msgstr "CONTA BANCÁRA de '%s':"
#~ msgid "Button under development (still not working)"
#~ msgstr "Botão em desenvolvimento (ainda não está funcionando)"
#~ msgid "CREDIT CARD (Unowned)"
#~ msgstr "CARTÃO DE CRÉDITO (Sem Dono)"
#~ msgid ""
#~ "CREDIT CARD (Unowned)\n"
#~ "* equals 09 Check Banks.\n"
#~ "* Allows you to access the bank account of the credit card owner anywhere in the world."
#~ msgstr ""
#~ "CARTÃO DE CRÉDITO (Sem Dono)\n"
#~ "* Equivale a 09 Cheques Bancários.\n"
#~ "* Permite acessar a conta bancária do proprietário do cartão de crédito em qualquer lugar do mundo."
#~ msgid "CREDIT CARD of '%s'"
#~ msgstr "CARTÃO DE CRÉDITO de '%s'"
#~ msgid "Deposit completed!"
#~ msgstr "Depósito completo!"
#~ msgid "Everything has been withdrawn!"
#~ msgstr "Tudo foi retirado!"
#~ msgid "LOOT ALL"
#~ msgstr "SACAR TUDO"
#~ msgid "Loot completed!"
#~ msgstr "Saque completo!"
#~ msgid ""
#~ "MINERCOIN\n"
#~ "* Basic craftable money with gold and steel."
#~ msgstr ""
#~ "MINERMOEDA\n"
#~ "* Dinheiro básico criado com ouro e aço."
#~ msgid ""
#~ "MINERMONEY\n"
#~ "* equals 09 Minercoins."
#~ msgstr ""
#~ "MINERCÉDULA\n"
#~ "* Equivale a 09 Minermoedas."
#~ msgid ""
#~ "PUBLIC ATM\n"
#~ "* Save your money in the ATM, and withdraw your money in your Personal Safe or other ATM in the shops scattered around the map."
#~ msgstr ""
#~ "CAIXA ELETRÔNICO\n"
#~ "* Guarde o seu dinheiro neste Caixa Eletrônico, e retire seu dinheiro em seu Cofre Pessoal ou qualquer outro Caixa Eletrônico nas lojas espalhadas pelo mapa."
#~ msgid "PUBLIC ATM - Account of '%s':"
#~ msgstr "CAIXA ELETRÔNICO - Conta de '%s':"
#~ msgid "Permission to open locked chests of other players"
#~ msgstr "Permissão de abertura de baús trancados de outros jogadores"
#~ msgid "Player '%s' has placed %02d '%s' in his safe!"
#~ msgstr "O jogador '%s' colocou %02d '%s' em seu cofre!"
#~ msgid "Player '%s' has removed %02d '%s' in his safe!"
#~ msgstr "O jogador '%s' retirou %02d '%s' em seu cofre!"
#~ msgid "REMOVE ALL"
#~ msgstr "SACAR TUDO"
#~ msgid "STRONGBOX"
#~ msgstr "COFRE"
#~ msgid ""
#~ "STRONGBOX\n"
#~ "* Save your money in this safe and withdraw your money at any shop that has an ATM."
#~ msgstr ""
#~ "COFRE\n"
#~ "* Guarde seu dinheiro neste cofre e retire seu dinheiro em qualquer loja que possua um Caixa Eletrônico."
#~ msgid ""
#~ "STRONGBOX (Property of '%s')\n"
#~ "* Save your money in this safe and withdraw your money at any shop that has an ATM."
#~ msgstr ""
#~ "COFRE (Propriedade de '%s')\n"
#~ "* Guarde seu dinheiro neste cofre e retire seu dinheiro em qualquer loja que possua um Caixa Eletrônico."
#~ msgid "STRONGBOX owned by '%s':"
#~ msgstr "COFRE FORTE de '%s':"
#~ msgid "Save Machine Name"
#~ msgstr "Salva o nome da máquina"
#~ msgid "The '%s' parameter must be of the player object type!"
#~ msgstr "O parâmetro '%s' deve ser do tipo objeto PLAYER!"
#~ msgid "The Inventory of '%s' is full!"
#~ msgstr "O inventário de '%s' está cheio!"
#~ msgid "The Player Inventory is empty!"
#~ msgstr "O inventário do jogador está vazio!"
#~ msgid "The Safe of '%s' is full!"
#~ msgstr "O Cofre de '%s' está cheio!"
#~ msgid "The inventory of '%s' is empty!"
#~ msgstr "O inventário de '%s' está vazio!"
#~ msgid "The player '%s' pressed the button'%s'!"
#~ msgstr "O jogador '%s' pressionou o botão '%s'!"
#~ msgid "The safe is going to work %02d seconds after it is installed!"
#~ msgstr "O cofre só vai funcionar %02d segundos depois de instalado!"
#~ msgid "The stock of '%s' is gone. Contact him!"
#~ msgstr "O estoque de '%s' acabou. Contacte-o!"
#~ msgid "You do not have access to the safe belonging to '%s'!"
#~ msgstr "Você não tem acesso ao cofre pertencente a '%s'!"
#~ msgid "Your Strongbox is full! %2d items weren't added in your bank account."
#~ msgstr "O seu cofre está cheio! %2d itens não foram adicionados à sua conta bancária."
#~ msgid "Your name has been saved to this credit card. Anyone using this credit card will be able to access the '%s' bank account."
#~ msgstr "Seu nome foi salvo neste cartão de crédito. Qualquer pessoa que use este cartão de crédito poderá acessar a conta bancária '%s'."
#~ msgid "checkbank"
#~ msgstr "cheque"
#~ msgid "minermoney"
#~ msgstr "minercedula"
#~ msgid "strongbox"
#~ msgstr "caixaforte"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-18 11:58-0300\n"
"POT-Creation-Date: 2022-06-06 17:26-0300\n"
"PO-Revision-Date: 2022-05-18 11:16-0300\n"
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
"Language-Team: \n"
@ -32,43 +32,56 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT"
msgstr "ACEITAR"
#: item_atm.lua:231
#: item_atm.lua:319
msgid "ACCOUNT CREATED"
msgstr "CONTA CRIADA"
#: item_atm.lua:806 item_atm.lua:835
#: item_atm.lua:911 item_atm.lua:917 item_atm.lua:1063 item_atm.lua:1094
msgid "ATM"
msgstr "CAIXA ELETRÔNICO"
#: item_atm.lua:535
#: item_atm.lua:610
msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico"
#: item_atm.lua:194
msgid "Account Holder"
msgstr "Correntista"
#: item_atm.lua:938
#, lua-format
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."
#: item_minercash.lua:276
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."
#: item_atm.lua:223 item_atm.lua:258 item_atm.lua:345 item_atm.lua:385
#: item_atm.lua:517
#: item_atm.lua:311 item_atm.lua:347 item_atm.lua:435 item_atm.lua:475
#: item_atm.lua:592 item_atm.lua:640
msgid "BACK"
msgstr "VOLTAR"
#: item_atm.lua:188
#: item_atm.lua:266
msgid "BALANCE"
msgstr "SALDO"
#: item_atm.lua:235 item_atm.lua:391
#: item_atm.lua:323 item_atm.lua:481 item_atm.lua:646
msgid "BALANCES"
msgstr "SALDOS"
#: item_atm.lua:360 item_minercash.lua:237
#: item_atm.lua:450 item_minercash.lua:237
msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:523
#: item_atm.lua:598
msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO"
#: item_atm.lua:667
msgid "BENEFICIARY NAME"
msgstr "NOME DO BENEFICIÁRIO"
#: item_minercash.lua:203
msgid "BLACK MINERMONEY"
msgstr "NOTA PRETA"
@ -81,14 +94,22 @@ msgstr "NOTA AZUL"
msgid "Basic craftable minercash with gold and steel."
msgstr "Minercash básico criado apenas com ouro e aço."
#: item_atm.lua:195
msgid "Beneficiary"
msgstr "Beneficiário"
#: api_payday.lua:41
msgid "CITY HALL"
msgstr "PREFEITURA"
#: item_atm.lua:194 item_minercash.lua:275
#: item_atm.lua:279 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO"
#: item_atm.lua:2
msgid "Can access evolving ATM functions."
msgstr "Pode acessar funções ATM em desenvolvimento."
#: item_exchange_table.lua:15 item_exchange_table.lua:17
#: item_exchange_table.lua:23 item_exchange_table.lua:25
msgid "Cancel"
@ -114,11 +135,11 @@ msgstr "Cliente Oferece"
msgid "Customer Receive"
msgstr "Cliente Recebe"
#: item_atm.lua:190
#: item_atm.lua:274
msgid "DEPOSITS"
msgstr "DEPÓSITOS"
#: item_atm.lua:413
#: item_atm.lua:503 item_atm.lua:692
msgid "DETAILS"
msgstr "DETALHES"
@ -136,7 +157,12 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:716 item_atm.lua:795
#: item_atm.lua:690
#, fuzzy
msgid "DO TRANSFER"
msgstr "TRANSFERIR"
#: item_atm.lua:973 item_atm.lua:1052
msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
@ -150,6 +176,10 @@ msgstr "Dispensa Concluida!"
msgid "Dispensing Machine of '%s'."
msgstr "Maquina Dispensadora de '%s'."
#: item_atm.lua:192
msgid "Document Type"
msgstr "Tipo de Documento"
#: api.lua:421
msgid "Due to an unknown error, it was not possible to send an email through the dispensing machine!"
msgstr "Devido a um erro desconhecido, não foi possível enviar um email através da Máquina Dispensadora!"
@ -171,8 +201,8 @@ msgstr ""
"MESA DE ESCAMBO\n"
"* Faz trocas seguras jogador a jogador sem a necessidade de colocar seu itens no chão."
#: item_atm.lua:196 item_atm.lua:224 item_atm.lua:259 item_atm.lua:346
#: item_atm.lua:386 item_atm.lua:518
#: item_atm.lua:285 item_atm.lua:312 item_atm.lua:348 item_atm.lua:436
#: item_atm.lua:476 item_atm.lua:593 item_atm.lua:641
msgid "EXIT"
msgstr "SAIR"
@ -186,7 +216,7 @@ msgstr "Equivale a %02d minercash."
msgid "Equivalent to as much minercash as your creator wants.."
msgstr "Equivalente a tanto minercash quanto seu criador quiser."
#: item_atm.lua:233
#: item_atm.lua:321
msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS"
@ -194,20 +224,11 @@ msgstr "TRANSAÇÕES FINANCEIRAS"
msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE"
#: commands.lua:18
#, lua-format
msgid "INVENTORY OF '%s':"
msgstr "Inventário de '%s':"
#: item_atm.lua:193
#: item_atm.lua:280
msgid "LOANS"
msgstr "EMPRÉSTIMOS"
#: commands.lua:2 commands.lua:9 commands.lua:30
msgid "Lets you check the contents of another players strongbox."
msgstr "Permite verificar o conteúdo do cofre de outro jogador."
#: item_atm.lua:356
#: item_atm.lua:446
msgid "MINERCASH"
msgstr "MINERCASH"
@ -219,15 +240,15 @@ msgstr "MINERMOEDA"
msgid "Make an announcement about what this machine will do"
msgstr "Faça um anúncio sobre o que esta máquina dispensará"
#: item_atm.lua:229
#: item_atm.lua:317
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:273
#: item_atm.lua:362
msgid "N°"
msgstr "N°"
#: item_minercash.lua:367
#: item_minercash.lua:368
msgid "OBSOLETE MONEY"
msgstr "DINHEIRO OBSOLETO"
@ -247,37 +268,52 @@ msgstr "Somente jogadores com esse privilégio receberão um pagamento diário."
msgid "Open"
msgstr "Abrir"
#: item_atm.lua:47
#: item_atm.lua:50
#, lua-format
msgid "Opening '%s' with data bank!"
msgstr "Abrindo '%s' com dados do banco!"
#: item_atm.lua:715 item_atm.lua:794
#: item_atm.lua:972 item_atm.lua:1051
msgid "PUBLIC ATM"
msgstr "CAIXA ELETRÔNICO PÚBLICO"
#: item_atm.lua:209 item_atm.lua:320 item_atm.lua:375 item_atm.lua:506
#: item_atm.lua:297 item_atm.lua:409 item_atm.lua:465 item_atm.lua:581
#: item_atm.lua:630
#, lua-format
msgid "Player '%s' is not an account holder of this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:685
#, fuzzy
msgid "REASON OF TRANSFER"
msgstr "MOTIVO DA TRANSFERÊNCIA"
#: item_minercash.lua:170
msgid "RED MINERMONEY"
msgstr "NOTA VERMELHA"
#: item_atm.lua:188
#, lua-format
msgid "Reason: %s"
msgstr "Rasão: %s"
#: item_dispensing_machine.lua:47
msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:351
#: item_atm.lua:193
msgid "Responsible Player"
msgstr "Jogador Responsável"
#: item_atm.lua:441
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:195
#: item_atm.lua:281
msgid "SETTINGS"
msgstr "CONFIGURAÇÕES"
#: item_atm.lua:189 item_atm.lua:268
#: item_atm.lua:267 item_atm.lua:357
msgid "STATEMENT"
msgstr "EXTRATO"
@ -285,17 +321,12 @@ msgstr "EXTRATO"
msgid "Save The Announcement"
msgstr "Salvar o anúncio"
#: item_atm.lua:875
#, lua-format
msgid "Saving bank from all players in the file '%s'!"
msgstr "Salvando conta bacária de todos os jogadores no arquivo '%s'!"
#: item_atm.lua:26
#: item_atm.lua:29
#, lua-format
msgid "Saving data bank in the file '%s'!"
msgstr "Salvando dados bancários no arquivo '%s'!"
#: item_atm.lua:264
#: item_atm.lua:353
msgid "Select a bank statement to view transaction details!"
msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!"
@ -307,15 +338,20 @@ msgstr "Inventario atual do vendedor"
msgid "Stock to Offer"
msgstr "Estoque a Oferetar"
#: item_atm.lua:301
#: item_atm.lua:390
msgid "TOTAL"
msgstr "TOTAL"
#: item_atm.lua:324
#: item_atm.lua:413
msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:192
#: item_atm.lua:185 item_atm.lua:192
#, fuzzy
msgid "TRANSFER PROOF"
msgstr "COMPROVANTE DE TRANSFERÊNCIA"
#: item_atm.lua:276
msgid "TRANSFERS"
msgstr "TRANSFERÊNCIAS"
@ -329,7 +365,7 @@ 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)!"
msgstr "O parâmetro '%s' deve ser do tipo de POSITION (x,y,z)!"
#: item_atm.lua:837
#: item_atm.lua:1096
#, lua-format
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!"
@ -356,6 +392,21 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer"
msgstr "Máquina Oferece"
#: item_atm.lua:919
#, lua-format
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."
#: item_atm.lua:931
#, lua-format
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."
#: item_atm.lua:945
#, fuzzy, lua-format
msgid "The beneficiary '%s' does not have a current account with this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
#: api_payday.lua:35
#, lua-format
msgid "The city hall deposited the %2d° salary in your bank account!"
@ -365,42 +416,63 @@ msgstr "A prefeitura depositou o %2d° salário em sua conta bancária!"
msgid "The dispending can not be done. Make sure you offer what the machine asks for!"
msgstr "A dispensa não pode ser feita. Verifique se você ofereceu o que a Maquina Dispensadora pede!"
#: item_atm.lua:28 item_atm.lua:44
#: item_atm.lua:31 item_atm.lua:47
#, lua-format
msgid "The file '%s' is not in table format!"
msgstr "O arquivo '%s' não esta no formato de tabela!"
#: item_atm.lua:698
#: item_atm.lua:852
#, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "O valor máximo que você pode sacar é: %02d minercash."
#: commands.lua:24
#, lua-format
msgid "The strongbox of %s was not created yet!"
msgstr "O Cofre de %s não foi criado ainda!"
#: item_atm.lua:958
#, fuzzy, lua-format
msgid "There is no account holder '%s' in this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
#: item_atm.lua:273 item_atm.lua:406
#: item_atm.lua:198
#, fuzzy
msgid "Transfer Reason"
msgstr "Motivo da Transferência"
#: item_atm.lua:656 item_atm.lua:884
msgid "Transfer for undeclared reason!"
msgstr "Transferência por rasão não declarada!"
#: item_atm.lua:912
msgid "Transfer successful!"
msgstr "Sucesso de transferência!"
#: item_atm.lua:362 item_atm.lua:496 item_atm.lua:676
msgid "VALUE"
msgstr "VALOR"
#: item_atm.lua:273
#: item_atm.lua:197
msgid "Value"
msgstr "Valor"
#: item_atm.lua:362
msgid "WHEN"
msgstr "QUANDO"
#: item_atm.lua:411
#: item_atm.lua:501
msgid "WITHDRAWAL"
msgstr "SAQUE"
#: item_atm.lua:191
#: item_atm.lua:275
msgid "WITHDRAWALS"
msgstr "SAQUES"
#: item_atm.lua:361
#: item_atm.lua:196
msgid "When"
msgstr "Quando"
#: item_atm.lua:451
msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário."
#: item_atm.lua:357
#: item_atm.lua:447
msgid "Withdrawals in minercash."
msgstr "Saque em minercash."
@ -408,7 +480,11 @@ msgstr "Saque em minercash."
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!)"
#: item_atm.lua:398
#: item_atm.lua:659
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!"
#: item_atm.lua:488
msgid "Write the value that want to withdrawal!"
msgstr "Digite o valor que deseja sacar!"
@ -416,11 +492,11 @@ msgstr "Digite o valor que deseja sacar!"
msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA"
#: item_atm.lua:528
#: item_atm.lua:603
msgid "YOUR BALANCE"
msgstr "SEU SALDO"
#: item_minercash.lua:368
#: item_minercash.lua:369
msgid "You can make money from it."
msgstr "Você pode ganhar algum dinheiro com isso."
@ -428,29 +504,25 @@ msgstr "Você pode ganhar algum dinheiro com isso."
msgid "You can not change your own machine!"
msgstr "Você não pode trocar na sua própria maquina!"
#: item_atm.lua:807
#: item_atm.lua:1064
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'!"
#: item_atm.lua:480
#: item_atm.lua:555
#, lua-format
msgid "You deposited %02d x '%s'!"
msgstr "Você depositou %02d x '%s'!"
#: commands.lua:36
msgid "You do not have permission to run this command without the privileges 'checkstrongbox'!"
msgstr "Você não tem permissão para executar este comando sem o privilégio 'checkstrongbox'!"
#: item_atm.lua:688
#: item_atm.lua:842
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."
#: item_atm.lua:207 item_atm.lua:372 item_atm.lua:503
#: item_atm.lua:295 item_atm.lua:463 item_atm.lua:578 item_atm.lua:628
#, lua-format
msgid "You have %02d minercash."
msgstr "Você tem %02d minercash."
#: item_atm.lua:677
#: item_atm.lua:831
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária."
@ -463,7 +535,7 @@ msgstr "Você Precisa"
msgid "You offer"
msgstr "Você Oferece"
#: item_atm.lua:542
#: item_atm.lua:617
msgid "Your Inventory"
msgstr "Seu inventário"
@ -471,15 +543,11 @@ msgstr "Seu inventário"
msgid "Your inventory"
msgstr "Seu inventário"
#: item_atm.lua:856
#: item_atm.lua:1115
msgid "atm"
msgstr "caixaeletronico"
#: commands.lua:30 commands.lua:45
msgid "checkstrongbox"
msgstr "checacofre"
#: item_minercash.lua:361
#: item_minercash.lua:362
msgid "creditcard"
msgstr "cartaodecredito"
@ -495,136 +563,3 @@ msgstr "mesadetroca"
msgid "minercoin"
msgstr "minermoeda"
#~ msgid "ACCOUNT BANK of '%s':"
#~ msgstr "CONTA BANCÁRA de '%s':"
#~ msgid "Button under development (still not working)"
#~ msgstr "Botão em desenvolvimento (ainda não está funcionando)"
#~ msgid "CREDIT CARD (Unowned)"
#~ msgstr "CARTÃO DE CRÉDITO (Sem Dono)"
#~ msgid ""
#~ "CREDIT CARD (Unowned)\n"
#~ "* equals 09 Check Banks.\n"
#~ "* Allows you to access the bank account of the credit card owner anywhere in the world."
#~ msgstr ""
#~ "CARTÃO DE CRÉDITO (Sem Dono)\n"
#~ "* Equivale a 09 Cheques Bancários.\n"
#~ "* Permite acessar a conta bancária do proprietário do cartão de crédito em qualquer lugar do mundo."
#~ msgid "CREDIT CARD of '%s'"
#~ msgstr "CARTÃO DE CRÉDITO de '%s'"
#~ msgid "Deposit completed!"
#~ msgstr "Depósito completo!"
#~ msgid "Everything has been withdrawn!"
#~ msgstr "Tudo foi retirado!"
#~ msgid "LOOT ALL"
#~ msgstr "SACAR TUDO"
#~ msgid "Loot completed!"
#~ msgstr "Saque completo!"
#~ msgid ""
#~ "MINERCOIN\n"
#~ "* Basic craftable money with gold and steel."
#~ msgstr ""
#~ "MINERMOEDA\n"
#~ "* Dinheiro básico criado com ouro e aço."
#~ msgid ""
#~ "MINERMONEY\n"
#~ "* equals 09 Minercoins."
#~ msgstr ""
#~ "MINERCÉDULA\n"
#~ "* Equivale a 09 Minermoedas."
#~ msgid ""
#~ "PUBLIC ATM\n"
#~ "* Save your money in the ATM, and withdraw your money in your Personal Safe or other ATM in the shops scattered around the map."
#~ msgstr ""
#~ "CAIXA ELETRÔNICO\n"
#~ "* Guarde o seu dinheiro neste Caixa Eletrônico, e retire seu dinheiro em seu Cofre Pessoal ou qualquer outro Caixa Eletrônico nas lojas espalhadas pelo mapa."
#~ msgid "PUBLIC ATM - Account of '%s':"
#~ msgstr "CAIXA ELETRÔNICO - Conta de '%s':"
#~ msgid "Permission to open locked chests of other players"
#~ msgstr "Permissão de abertura de baús trancados de outros jogadores"
#~ msgid "Player '%s' has placed %02d '%s' in his safe!"
#~ msgstr "O jogador '%s' colocou %02d '%s' em seu cofre!"
#~ msgid "Player '%s' has removed %02d '%s' in his safe!"
#~ msgstr "O jogador '%s' retirou %02d '%s' em seu cofre!"
#~ msgid "REMOVE ALL"
#~ msgstr "SACAR TUDO"
#~ msgid "STRONGBOX"
#~ msgstr "COFRE"
#~ msgid ""
#~ "STRONGBOX\n"
#~ "* Save your money in this safe and withdraw your money at any shop that has an ATM."
#~ msgstr ""
#~ "COFRE\n"
#~ "* Guarde seu dinheiro neste cofre e retire seu dinheiro em qualquer loja que possua um Caixa Eletrônico."
#~ msgid ""
#~ "STRONGBOX (Property of '%s')\n"
#~ "* Save your money in this safe and withdraw your money at any shop that has an ATM."
#~ msgstr ""
#~ "COFRE (Propriedade de '%s')\n"
#~ "* Guarde seu dinheiro neste cofre e retire seu dinheiro em qualquer loja que possua um Caixa Eletrônico."
#~ msgid "STRONGBOX owned by '%s':"
#~ msgstr "COFRE FORTE de '%s':"
#~ msgid "Save Machine Name"
#~ msgstr "Salva o nome da máquina"
#~ msgid "The '%s' parameter must be of the player object type!"
#~ msgstr "O parâmetro '%s' deve ser do tipo objeto PLAYER!"
#~ msgid "The Inventory of '%s' is full!"
#~ msgstr "O inventário de '%s' está cheio!"
#~ msgid "The Player Inventory is empty!"
#~ msgstr "O inventário do jogador está vazio!"
#~ msgid "The Safe of '%s' is full!"
#~ msgstr "O Cofre de '%s' está cheio!"
#~ msgid "The inventory of '%s' is empty!"
#~ msgstr "O inventário de '%s' está vazio!"
#~ msgid "The player '%s' pressed the button'%s'!"
#~ msgstr "O jogador '%s' pressionou o botão '%s'!"
#~ msgid "The safe is going to work %02d seconds after it is installed!"
#~ msgstr "O cofre só vai funcionar %02d segundos depois de instalado!"
#~ msgid "The stock of '%s' is gone. Contact him!"
#~ msgstr "O estoque de '%s' acabou. Contacte-o!"
#~ msgid "You do not have access to the safe belonging to '%s'!"
#~ msgstr "Você não tem acesso ao cofre pertencente a '%s'!"
#~ msgid "Your Strongbox is full! %2d items weren't added in your bank account."
#~ msgstr "O seu cofre está cheio! %2d itens não foram adicionados à sua conta bancária."
#~ msgid "Your name has been saved to this credit card. Anyone using this credit card will be able to access the '%s' bank account."
#~ msgstr "Seu nome foi salvo neste cartão de crédito. Qualquer pessoa que use este cartão de crédito poderá acessar a conta bancária '%s'."
#~ msgid "checkbank"
#~ msgstr "cheque"
#~ msgid "minermoney"
#~ msgstr "minercedula"
#~ msgid "strongbox"
#~ msgstr "caixaforte"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-18 11:58-0300\n"
"POT-Creation-Date: 2022-06-06 17:26-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -58,234 +58,302 @@ msgstr ""
msgid "CITY HALL"
msgstr ""
#: commands.lua:2 commands.lua:9 commands.lua:30
msgid "Lets you check the contents of another players strongbox."
#: item_atm.lua:2
msgid "Can access evolving ATM functions."
msgstr ""
#: commands.lua:18
#, lua-format
msgid "INVENTORY OF '%s':"
msgstr ""
#: commands.lua:24
#, lua-format
msgid "The strongbox of %s was not created yet!"
msgstr ""
#: commands.lua:30 commands.lua:45
msgid "checkstrongbox"
msgstr ""
#: commands.lua:36
msgid ""
"You do not have permission to run this command without the privileges "
"'checkstrongbox'!"
msgstr ""
#: item_atm.lua:26
#: item_atm.lua:29
#, lua-format
msgid "Saving data bank in the file '%s'!"
msgstr ""
#: item_atm.lua:28 item_atm.lua:44
#: item_atm.lua:31 item_atm.lua:47
#, lua-format
msgid "The file '%s' is not in table format!"
msgstr ""
#: item_atm.lua:47
#: item_atm.lua:50
#, lua-format
msgid "Opening '%s' with data bank!"
msgstr ""
#: item_atm.lua:185 item_atm.lua:192
msgid "TRANSFER PROOF"
msgstr ""
#: item_atm.lua:188
msgid "BALANCE"
msgstr ""
#: item_atm.lua:189 item_atm.lua:268
msgid "STATEMENT"
msgstr ""
#: item_atm.lua:190
msgid "DEPOSITS"
msgstr ""
#: item_atm.lua:191
msgid "WITHDRAWALS"
#, lua-format
msgid "Reason: %s"
msgstr ""
#: item_atm.lua:192
msgid "TRANSFERS"
msgid "Document Type"
msgstr ""
#: item_atm.lua:193
msgid "LOANS"
msgid "Responsible Player"
msgstr ""
#: item_atm.lua:194 item_minercash.lua:275
msgid "CREDIT CARD"
#: item_atm.lua:194
msgid "Account Holder"
msgstr ""
#: item_atm.lua:195
msgid "Beneficiary"
msgstr ""
#: item_atm.lua:196
msgid "When"
msgstr ""
#: item_atm.lua:197
msgid "Value"
msgstr ""
#: item_atm.lua:198
msgid "Transfer Reason"
msgstr ""
#: item_atm.lua:266
msgid "BALANCE"
msgstr ""
#: item_atm.lua:267 item_atm.lua:357
msgid "STATEMENT"
msgstr ""
#: item_atm.lua:274
msgid "DEPOSITS"
msgstr ""
#: item_atm.lua:275
msgid "WITHDRAWALS"
msgstr ""
#: item_atm.lua:276
msgid "TRANSFERS"
msgstr ""
#: item_atm.lua:279 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr ""
#: item_atm.lua:280
msgid "LOANS"
msgstr ""
#: item_atm.lua:281
msgid "SETTINGS"
msgstr ""
#: item_atm.lua:196 item_atm.lua:224 item_atm.lua:259 item_atm.lua:346
#: item_atm.lua:386 item_atm.lua:518
#: item_atm.lua:285 item_atm.lua:312 item_atm.lua:348 item_atm.lua:436
#: item_atm.lua:476 item_atm.lua:593 item_atm.lua:641
msgid "EXIT"
msgstr ""
#: item_atm.lua:207 item_atm.lua:372 item_atm.lua:503
#: item_atm.lua:295 item_atm.lua:463 item_atm.lua:578 item_atm.lua:628
#, lua-format
msgid "You have %02d minercash."
msgstr ""
#: item_atm.lua:209 item_atm.lua:320 item_atm.lua:375 item_atm.lua:506
#: item_atm.lua:297 item_atm.lua:409 item_atm.lua:465 item_atm.lua:581
#: item_atm.lua:630
#, lua-format
msgid "Player '%s' is not an account holder of this bank."
msgstr ""
#: item_atm.lua:223 item_atm.lua:258 item_atm.lua:345 item_atm.lua:385
#: item_atm.lua:517
#: item_atm.lua:311 item_atm.lua:347 item_atm.lua:435 item_atm.lua:475
#: item_atm.lua:592 item_atm.lua:640
msgid "BACK"
msgstr ""
#: item_atm.lua:229
#: item_atm.lua:317
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr ""
#: item_atm.lua:231
#: item_atm.lua:319
msgid "ACCOUNT CREATED"
msgstr ""
#: item_atm.lua:233
#: item_atm.lua:321
msgid "FINANCIAL TRANSACTIONS"
msgstr ""
#: item_atm.lua:235 item_atm.lua:391
#: item_atm.lua:323 item_atm.lua:481 item_atm.lua:646
msgid "BALANCES"
msgstr ""
#: item_atm.lua:264
#: item_atm.lua:353
msgid "Select a bank statement to view transaction details!"
msgstr ""
#: item_atm.lua:273
#: item_atm.lua:362
msgid "N°"
msgstr ""
#: item_atm.lua:273
#: item_atm.lua:362
msgid "WHEN"
msgstr ""
#: item_atm.lua:273 item_atm.lua:406
#: item_atm.lua:362 item_atm.lua:496 item_atm.lua:676
msgid "VALUE"
msgstr ""
#: item_atm.lua:301
#: item_atm.lua:390
msgid "TOTAL"
msgstr ""
#: item_atm.lua:324
#: item_atm.lua:413
msgid "TRANSACTION DETAILS"
msgstr ""
#: item_atm.lua:351
#: item_atm.lua:441
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr ""
#: item_atm.lua:356
#: item_atm.lua:446
msgid "MINERCASH"
msgstr ""
#: item_atm.lua:357
#: item_atm.lua:447
msgid "Withdrawals in minercash."
msgstr ""
#: item_atm.lua:360 item_minercash.lua:237
#: item_atm.lua:450 item_minercash.lua:237
msgid "BANK CHECK"
msgstr ""
#: item_atm.lua:361
#: item_atm.lua:451
msgid "Withdrawals in bank check."
msgstr ""
#: item_atm.lua:398
#: item_atm.lua:488
msgid "Write the value that want to withdrawal!"
msgstr ""
#: item_atm.lua:411
#: item_atm.lua:501
msgid "WITHDRAWAL"
msgstr ""
#: item_atm.lua:413
#: item_atm.lua:503 item_atm.lua:692
msgid "DETAILS"
msgstr ""
#: item_atm.lua:480
#: item_atm.lua:555
#, lua-format
msgid "You deposited %02d x '%s'!"
msgstr ""
#: item_atm.lua:523
#: item_atm.lua:598
msgid "BANK DEPOSIT"
msgstr ""
#: item_atm.lua:528
#: item_atm.lua:603
msgid "YOUR BALANCE"
msgstr ""
#: item_atm.lua:535
#: item_atm.lua:610
msgid "ATM entrance"
msgstr ""
#: item_atm.lua:542
#: item_atm.lua:617
msgid "Your Inventory"
msgstr ""
#: item_atm.lua:677
#: item_atm.lua:656 item_atm.lua:884
msgid "Transfer for undeclared reason!"
msgstr ""
#: item_atm.lua:659
msgid ""
"Write the 'beneficiary player name' and the 'value in minercash' that want "
"to transfer!"
msgstr ""
#: item_atm.lua:667
msgid "BENEFICIARY NAME"
msgstr ""
#: item_atm.lua:685
msgid "REASON OF TRANSFER"
msgstr ""
#: item_atm.lua:690
msgid "DO TRANSFER"
msgstr ""
#: item_atm.lua:831
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr ""
#: item_atm.lua:688
#: item_atm.lua:842
msgid "You don't have space in your inventory to withdraw so much minercash."
msgstr ""
#: item_atm.lua:698
#: item_atm.lua:852
#, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr ""
#: item_atm.lua:715 item_atm.lua:794
msgid "PUBLIC ATM"
msgstr ""
#: item_atm.lua:716 item_atm.lua:795
msgid "Deposit and Withdraw your minercash into your bank account."
msgstr ""
#: item_atm.lua:806 item_atm.lua:835
#: item_atm.lua:911 item_atm.lua:917 item_atm.lua:1063 item_atm.lua:1094
msgid "ATM"
msgstr ""
#: item_atm.lua:807
#: item_atm.lua:912
msgid "Transfer successful!"
msgstr ""
#: item_atm.lua:919
#, lua-format
msgid ""
"The Transfer Proof was left on the floor because '%s' inventory has no free "
"space."
msgstr ""
#: item_atm.lua:931
#, lua-format
msgid ""
"The bank account holder '%s' does not have enough balance to make this "
"requested transfer."
msgstr ""
#: item_atm.lua:938
#, lua-format
msgid "Account holder '%s' cannot be a beneficiary of itself."
msgstr ""
#: item_atm.lua:945
#, lua-format
msgid "The beneficiary '%s' does not have a current account with this bank."
msgstr ""
#: item_atm.lua:958
#, lua-format
msgid "There is no account holder '%s' in this bank."
msgstr ""
#: item_atm.lua:972 item_atm.lua:1051
msgid "PUBLIC ATM"
msgstr ""
#: item_atm.lua:973 item_atm.lua:1052
msgid "Deposit and Withdraw your minercash into your bank account."
msgstr ""
#: item_atm.lua:1064
msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!"
msgstr ""
#: item_atm.lua:837
#: item_atm.lua:1096
#, lua-format
msgid "The ATM will only run %02d seconds after it is installed!"
msgstr ""
#: item_atm.lua:856
#: item_atm.lua:1115
msgid "atm"
msgstr ""
#: item_atm.lua:875
#, lua-format
msgid "Saving bank from all players in the file '%s'!"
msgstr ""
#: item_dispensing_machine.lua:16
msgid "Customer Offer"
msgstr ""
@ -492,14 +560,14 @@ msgid ""
"the world."
msgstr ""
#: item_minercash.lua:361
#: item_minercash.lua:362
msgid "creditcard"
msgstr ""
#: item_minercash.lua:367
#: item_minercash.lua:368
msgid "OBSOLETE MONEY"
msgstr ""
#: item_minercash.lua:368
#: item_minercash.lua:369
msgid "You can make money from it."
msgstr ""