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,
})
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()
if modMinerTrade.salary.isEnabled() then
modMinerTrade.salary.timer = 0
@ -13,23 +52,10 @@ minetest.after(3.5, function()
local players = minetest.get_connected_players()
if #players >= 1 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()
for _, player in ipairs(players) do
local playername = player:get_player_name()
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
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())

View file

@ -1,70 +1,11 @@
modMinerTrade = {
modName = minetest.get_current_modname(),
modPath = minetest.get_modpath(minetest.get_current_modname()),
save_compressed = (minetest.settings:get("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,
save_compressed = (minetest.settings:get_bool("minertrade.save_compressed") ~= false),
bank = {
accounts = 0,
last_pay = 0,
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
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)
--local clickername = clicker:get_player_name()
if minetest.get_player_privs(playername).mayor then
@ -899,9 +913,13 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
local thisBalance = modMinerTrade.getBalance(accountname)
if txtValue <= thisBalance then
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.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 invPlayer = player:get_inventory()

View file

@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: \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"
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
"Language-Team: \n"
"Language: pt_BR\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\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"
msgstr "ACEITAR"
#: item_atm.lua:319
#: item_atm.lua:333
msgid "ACCOUNT CREATED"
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"
msgstr "CAIXA ELETRÔNICO"
#: item_atm.lua:610
#: item_atm.lua:624
msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico"
#: item_atm.lua:194
#: item_atm.lua:208
msgid "Account Holder"
msgstr "Correntista"
#: item_atm.lua:938
#: item_atm.lua:956
#, 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."
@ -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."
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:592 item_atm.lua:640
#: item_atm.lua:325 item_atm.lua:361 item_atm.lua:449 item_atm.lua:489
#: item_atm.lua:606 item_atm.lua:654
msgid "BACK"
msgstr "VOLTAR"
#: item_atm.lua:266
#: item_atm.lua:280
msgid "BALANCE"
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"
msgstr "SALDOS"
#: item_atm.lua:450 item_minercash.lua:237
#: item_atm.lua:464 item_minercash.lua:237
msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:598
#: item_atm.lua:612
msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO"
#: item_atm.lua:667
#: item_atm.lua:681
msgid "BENEFICIARY NAME"
msgstr "NOME DO BENEFICIÁRIO"
@ -94,15 +94,15 @@ 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
#: item_atm.lua:209
msgid "Beneficiary"
msgstr "Beneficiário"
#: api_payday.lua:41
#: api_payday.lua:67
msgid "CITY HALL"
msgstr "PREFEITURA"
#: item_atm.lua:279 item_minercash.lua:275
#: item_atm.lua:293 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO"
@ -135,11 +135,11 @@ msgstr "Cliente Oferece"
msgid "Customer Receive"
msgstr "Cliente Recebe"
#: item_atm.lua:274
#: item_atm.lua:288
msgid "DEPOSITS"
msgstr "DEPÓSITOS"
#: item_atm.lua:503 item_atm.lua:692
#: item_atm.lua:517 item_atm.lua:706
msgid "DETAILS"
msgstr "DETALHES"
@ -157,12 +157,12 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:690
#: item_atm.lua:704
#, fuzzy
msgid "DO TRANSFER"
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."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
@ -176,7 +176,7 @@ msgstr "Dispensa Concluida!"
msgid "Dispensing Machine of '%s'."
msgstr "Maquina Dispensadora de '%s'."
#: item_atm.lua:192
#: item_atm.lua:206
msgid "Document Type"
msgstr "Tipo de Documento"
@ -201,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: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
#: item_atm.lua:299 item_atm.lua:326 item_atm.lua:362 item_atm.lua:450
#: item_atm.lua:490 item_atm.lua:607 item_atm.lua:655
msgid "EXIT"
msgstr "SAIR"
@ -216,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:321
#: item_atm.lua:335
msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS"
@ -224,11 +224,11 @@ msgstr "TRANSAÇÕES FINANCEIRAS"
msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE"
#: item_atm.lua:280
#: item_atm.lua:294
msgid "LOANS"
msgstr "EMPRÉSTIMOS"
#: item_atm.lua:446
#: item_atm.lua:460
msgid "MINERCASH"
msgstr "MINERCASH"
@ -240,11 +240,11 @@ 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:317
#: item_atm.lua:331
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:362
#: item_atm.lua:376
msgid "N°"
msgstr "N°"
@ -273,17 +273,17 @@ msgstr "Abrir"
msgid "Opening '%s' with data bank!"
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"
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:630
#: item_atm.lua:311 item_atm.lua:423 item_atm.lua:479 item_atm.lua:595
#: item_atm.lua:644
#, 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
#: item_atm.lua:699
#, fuzzy
msgid "REASON OF TRANSFER"
msgstr "MOTIVO DA TRANSFERÊNCIA"
@ -292,7 +292,7 @@ msgstr "MOTIVO DA TRANSFERÊNCIA"
msgid "RED MINERMONEY"
msgstr "NOTA VERMELHA"
#: item_atm.lua:188
#: item_atm.lua:202
#, lua-format
msgid "Reason: %s"
msgstr "Rasão: %s"
@ -301,19 +301,19 @@ msgstr "Rasão: %s"
msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:193
#: item_atm.lua:207
msgid "Responsible Player"
msgstr "Jogador Responsável"
#: item_atm.lua:441
#: item_atm.lua:455
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:281
#: item_atm.lua:295
msgid "SETTINGS"
msgstr "CONFIGURAÇÕES"
#: item_atm.lua:267 item_atm.lua:357
#: item_atm.lua:281 item_atm.lua:371
msgid "STATEMENT"
msgstr "EXTRATO"
@ -326,7 +326,7 @@ msgstr "Salvar o anúncio"
msgid "Saving data bank in the file '%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!"
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"
msgstr "Estoque a Oferetar"
#: item_atm.lua:390
#: item_atm.lua:404
msgid "TOTAL"
msgstr "TOTAL"
#: item_atm.lua:413
#: item_atm.lua:427
msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:185 item_atm.lua:192
#: item_atm.lua:199 item_atm.lua:206
#, fuzzy
msgid "TRANSFER PROOF"
msgstr "COMPROVANTE DE TRANSFERÊNCIA"
#: item_atm.lua:276
#: item_atm.lua:290
msgid "TRANSFERS"
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)!"
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
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!"
@ -392,22 +402,22 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer"
msgstr "Máquina Oferece"
#: item_atm.lua:919
#: item_atm.lua:937
#, 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
#: item_atm.lua:949
#, 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
#: item_atm.lua:963
#, 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
#: api_payday.lua:61
#, lua-format
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!"
@ -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!"
msgstr "O arquivo '%s' não esta no formato de tabela!"
#: item_atm.lua:852
#: item_atm.lua:866
#, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "O valor máximo que você pode sacar é: %02d minercash."
#: item_atm.lua:958
#: item_atm.lua:976
#, 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:198
#: item_atm.lua:212
#, fuzzy
msgid "Transfer Reason"
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!"
msgstr "Transferência por rasão não declarada!"
#: item_atm.lua:912
#: item_atm.lua:930
msgid "Transfer successful!"
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"
msgstr "VALOR"
#: item_atm.lua:197
#: item_atm.lua:211
msgid "Value"
msgstr "Valor"
#: item_atm.lua:362
#: item_atm.lua:376
msgid "WHEN"
msgstr "QUANDO"
#: item_atm.lua:501
#: item_atm.lua:515
msgid "WITHDRAWAL"
msgstr "SAQUE"
#: item_atm.lua:275
#: item_atm.lua:289
msgid "WITHDRAWALS"
msgstr "SAQUES"
#: item_atm.lua:196
#: item_atm.lua:210
msgid "When"
msgstr "Quando"
#: item_atm.lua:451
#: item_atm.lua:465
msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário."
#: item_atm.lua:447
#: item_atm.lua:461
msgid "Withdrawals in 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!)"
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!"
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!"
msgstr "Digite o valor que deseja sacar!"
@ -492,7 +502,7 @@ msgstr "Digite o valor que deseja sacar!"
msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA"
#: item_atm.lua:603
#: item_atm.lua:617
msgid "YOUR BALANCE"
msgstr "SEU SALDO"
@ -504,25 +514,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:1064
#: item_atm.lua:1082
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:555
#: item_atm.lua:569
#, lua-format
msgid "You deposited %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."
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
msgid "You have %02d minercash."
msgstr "Você tem %02d minercash."
#: item_atm.lua:831
#: item_atm.lua:845
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária."
@ -535,7 +545,7 @@ msgstr "Você Precisa"
msgid "You offer"
msgstr "Você Oferece"
#: item_atm.lua:617
#: item_atm.lua:631
msgid "Your Inventory"
msgstr "Seu inventário"
@ -543,7 +553,7 @@ msgstr "Seu inventário"
msgid "Your inventory"
msgstr "Seu inventário"
#: item_atm.lua:1115
#: item_atm.lua:1133
msgid "atm"
msgstr "caixaeletronico"
@ -562,4 +572,3 @@ msgstr "mesadetroca"
#: item_minercash.lua:30
msgid "minercoin"
msgstr "minermoeda"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \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"
"Last-Translator: Lunovox Heavenfinder <lunovox@disroot.org>\n"
"Language-Team: \n"
@ -32,23 +32,23 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT"
msgstr "ACEITAR"
#: item_atm.lua:319
#: item_atm.lua:333
msgid "ACCOUNT CREATED"
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"
msgstr "CAIXA ELETRÔNICO"
#: item_atm.lua:610
#: item_atm.lua:624
msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico"
#: item_atm.lua:194
#: item_atm.lua:208
msgid "Account Holder"
msgstr "Correntista"
#: item_atm.lua:938
#: item_atm.lua:956
#, 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."
@ -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."
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:592 item_atm.lua:640
#: item_atm.lua:325 item_atm.lua:361 item_atm.lua:449 item_atm.lua:489
#: item_atm.lua:606 item_atm.lua:654
msgid "BACK"
msgstr "VOLTAR"
#: item_atm.lua:266
#: item_atm.lua:280
msgid "BALANCE"
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"
msgstr "SALDOS"
#: item_atm.lua:450 item_minercash.lua:237
#: item_atm.lua:464 item_minercash.lua:237
msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:598
#: item_atm.lua:612
msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO"
#: item_atm.lua:667
#: item_atm.lua:681
msgid "BENEFICIARY NAME"
msgstr "NOME DO BENEFICIÁRIO"
@ -94,15 +94,15 @@ 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
#: item_atm.lua:209
msgid "Beneficiary"
msgstr "Beneficiário"
#: api_payday.lua:41
#: api_payday.lua:67
msgid "CITY HALL"
msgstr "PREFEITURA"
#: item_atm.lua:279 item_minercash.lua:275
#: item_atm.lua:293 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO"
@ -135,11 +135,11 @@ msgstr "Cliente Oferece"
msgid "Customer Receive"
msgstr "Cliente Recebe"
#: item_atm.lua:274
#: item_atm.lua:288
msgid "DEPOSITS"
msgstr "DEPÓSITOS"
#: item_atm.lua:503 item_atm.lua:692
#: item_atm.lua:517 item_atm.lua:706
msgid "DETAILS"
msgstr "DETALHES"
@ -157,12 +157,12 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:690
#: item_atm.lua:704
#, fuzzy
msgid "DO TRANSFER"
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."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
@ -176,7 +176,7 @@ msgstr "Dispensa Concluida!"
msgid "Dispensing Machine of '%s'."
msgstr "Maquina Dispensadora de '%s'."
#: item_atm.lua:192
#: item_atm.lua:206
msgid "Document Type"
msgstr "Tipo de Documento"
@ -201,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: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
#: item_atm.lua:299 item_atm.lua:326 item_atm.lua:362 item_atm.lua:450
#: item_atm.lua:490 item_atm.lua:607 item_atm.lua:655
msgid "EXIT"
msgstr "SAIR"
@ -216,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:321
#: item_atm.lua:335
msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS"
@ -224,11 +224,11 @@ msgstr "TRANSAÇÕES FINANCEIRAS"
msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE"
#: item_atm.lua:280
#: item_atm.lua:294
msgid "LOANS"
msgstr "EMPRÉSTIMOS"
#: item_atm.lua:446
#: item_atm.lua:460
msgid "MINERCASH"
msgstr "MINERCASH"
@ -240,11 +240,11 @@ 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:317
#: item_atm.lua:331
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:362
#: item_atm.lua:376
msgid "N°"
msgstr "N°"
@ -273,17 +273,17 @@ msgstr "Abrir"
msgid "Opening '%s' with data bank!"
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"
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:630
#: item_atm.lua:311 item_atm.lua:423 item_atm.lua:479 item_atm.lua:595
#: item_atm.lua:644
#, 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
#: item_atm.lua:699
#, fuzzy
msgid "REASON OF TRANSFER"
msgstr "MOTIVO DA TRANSFERÊNCIA"
@ -292,7 +292,7 @@ msgstr "MOTIVO DA TRANSFERÊNCIA"
msgid "RED MINERMONEY"
msgstr "NOTA VERMELHA"
#: item_atm.lua:188
#: item_atm.lua:202
#, lua-format
msgid "Reason: %s"
msgstr "Rasão: %s"
@ -301,19 +301,19 @@ msgstr "Rasão: %s"
msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:193
#: item_atm.lua:207
msgid "Responsible Player"
msgstr "Jogador Responsável"
#: item_atm.lua:441
#: item_atm.lua:455
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:281
#: item_atm.lua:295
msgid "SETTINGS"
msgstr "CONFIGURAÇÕES"
#: item_atm.lua:267 item_atm.lua:357
#: item_atm.lua:281 item_atm.lua:371
msgid "STATEMENT"
msgstr "EXTRATO"
@ -326,7 +326,7 @@ msgstr "Salvar o anúncio"
msgid "Saving data bank in the file '%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!"
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"
msgstr "Estoque a Oferetar"
#: item_atm.lua:390
#: item_atm.lua:404
msgid "TOTAL"
msgstr "TOTAL"
#: item_atm.lua:413
#: item_atm.lua:427
msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:185 item_atm.lua:192
#: item_atm.lua:199 item_atm.lua:206
#, fuzzy
msgid "TRANSFER PROOF"
msgstr "COMPROVANTE DE TRANSFERÊNCIA"
#: item_atm.lua:276
#: item_atm.lua:290
msgid "TRANSFERS"
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)!"
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
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!"
@ -392,22 +402,22 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer"
msgstr "Máquina Oferece"
#: item_atm.lua:919
#: item_atm.lua:937
#, 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
#: item_atm.lua:949
#, 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
#: item_atm.lua:963
#, 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
#: api_payday.lua:61
#, lua-format
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!"
@ -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!"
msgstr "O arquivo '%s' não esta no formato de tabela!"
#: item_atm.lua:852
#: item_atm.lua:866
#, lua-format
msgid "The maximum amount you can withdraw is: %02d minercash."
msgstr "O valor máximo que você pode sacar é: %02d minercash."
#: item_atm.lua:958
#: item_atm.lua:976
#, 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:198
#: item_atm.lua:212
#, fuzzy
msgid "Transfer Reason"
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!"
msgstr "Transferência por rasão não declarada!"
#: item_atm.lua:912
#: item_atm.lua:930
msgid "Transfer successful!"
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"
msgstr "VALOR"
#: item_atm.lua:197
#: item_atm.lua:211
msgid "Value"
msgstr "Valor"
#: item_atm.lua:362
#: item_atm.lua:376
msgid "WHEN"
msgstr "QUANDO"
#: item_atm.lua:501
#: item_atm.lua:515
msgid "WITHDRAWAL"
msgstr "SAQUE"
#: item_atm.lua:275
#: item_atm.lua:289
msgid "WITHDRAWALS"
msgstr "SAQUES"
#: item_atm.lua:196
#: item_atm.lua:210
msgid "When"
msgstr "Quando"
#: item_atm.lua:451
#: item_atm.lua:465
msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário."
#: item_atm.lua:447
#: item_atm.lua:461
msgid "Withdrawals in 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!)"
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!"
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!"
msgstr "Digite o valor que deseja sacar!"
@ -492,7 +502,7 @@ msgstr "Digite o valor que deseja sacar!"
msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA"
#: item_atm.lua:603
#: item_atm.lua:617
msgid "YOUR BALANCE"
msgstr "SEU SALDO"
@ -504,25 +514,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:1064
#: item_atm.lua:1082
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:555
#: item_atm.lua:569
#, lua-format
msgid "You deposited %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."
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
msgid "You have %02d minercash."
msgstr "Você tem %02d minercash."
#: item_atm.lua:831
#: item_atm.lua:845
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária."
@ -535,7 +545,7 @@ msgstr "Você Precisa"
msgid "You offer"
msgstr "Você Oferece"
#: item_atm.lua:617
#: item_atm.lua:631
msgid "Your Inventory"
msgstr "Seu inventário"
@ -543,7 +553,7 @@ msgstr "Seu inventário"
msgid "Your inventory"
msgstr "Seu inventário"
#: item_atm.lua:1115
#: item_atm.lua:1133
msgid "atm"
msgstr "caixaeletronico"
@ -562,4 +572,3 @@ msgstr "mesadetroca"
#: item_minercash.lua:30
msgid "minercoin"
msgstr "minermoeda"

View file

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