Melhora na tradução!

This commit is contained in:
Lunovox 2022-05-18 11:59:28 -03:00
parent 43e1acaae5
commit 1168439c8c
9 changed files with 607 additions and 455 deletions

View file

@ -477,7 +477,7 @@ modMinerTrade.showAtm = {
modMinerTrade.addBalance(playername, stackValue)
modMinerTrade.addStatement(
playername, stackValue,
("You deposited %02d x '%s'!"):format(stack:get_count(), stack:get_name())
modMinerTrade.translate("You deposited %02d x '%s'!"):format(stack:get_count(), stack:get_name())
)
--stack:take_item(stack:get_count())
stack:take_item()
@ -674,7 +674,7 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
modMinerTrade.addBalance(playername, 0 - delivered)
modMinerTrade.addStatement(
playername, 0 - delivered,
("You have withdrawn %02d minercash from your bank account."):format(delivered)
modMinerTrade.translate("You have withdrawn %02d minercash from your bank account."):format(delivered)
)
end
if delivered == tonumber(myValue) then
@ -685,7 +685,7 @@ modMinerTrade.onReceiveFields = function(player, formname, fields)
modMinerTrade.showAtm.frmGiveCash(playername,
tonumber(myValue) - delivered,
modMinerTrade.translate(
"you don't have space in your inventory to withdraw so much minercash."
"You don't have space in your inventory to withdraw so much minercash."
)
)
end
@ -711,7 +711,9 @@ end
--###############################################################################################################
minetest.register_node("minertrade:atm", {
description = modMinerTrade.translate("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."),
description = core.colorize("#00FF00",
modMinerTrade.translate("PUBLIC ATM")
).."\n\t* "..modMinerTrade.translate("Deposit and Withdraw your minercash into your bank account."),
--inventory_image = minetest.inventorycube("text_atm_front_1.png"),
--inventory_image = "text_atm_front_1.png",
paramtype = "light",
@ -782,7 +784,16 @@ minetest.register_node("minertrade:atm", {
param2 = facedir,
})
local meta = minetest.get_meta(posAbove)
--meta:set_string("infotext", modMinerTrade.translate("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."))
meta:set_string("infotext",
--[[
modMinerTrade.translate(
"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."
)
--]]
core.colorize("#00FF00",
modMinerTrade.translate("PUBLIC ATM")
).."\n\t* "..modMinerTrade.translate("Deposit and Withdraw your minercash into your bank account.")
)
local now = os.time() --Em milisegundos
if not minetest.get_player_privs(playername).server then
meta:set_string("opentime", now+modMinerTrade.delayConstruct)
@ -831,7 +842,7 @@ minetest.register_node("minertrade:atm", {
end,
})
--[[
--[[ --]]
minetest.register_craft({
output = 'minertrade:atm',
recipe = {

View file

@ -271,8 +271,9 @@ minetest.register_alias(
--##########################################################################################################
minetest.register_craftitem("minertrade:creditcard", {
description = modMinerTrade.translate("CREDIT CARD (Unowned)")
.."\n* "..modMinerTrade.translate("Allows you to access the bank account of the credit card owner anywhere in the world."),
description = core.colorize("#00FF00",
modMinerTrade.translate("CREDIT CARD")
).."\n\t* "..modMinerTrade.translate("Allows you to access the bank account of the credit card owner anywhere in the world."),
inventory_image = "obj_credit_card.png",
--stack_max=9, --Acumula 9 por slot
groups = {cash=0, trade=1},
@ -329,6 +330,16 @@ minetest.register_craftitem("minertrade:creditcard", {
end,
})
--[[
minetest.register_craft({
output = "minertrade:creditcard",
recipe = {
{"minertrade:minermoney_green"},
},
})
--]]
--[[
minetest.register_craft({
output = "minertrade:creditcard",
recipe = {
@ -344,12 +355,10 @@ minetest.register_craft({
{"minertrade:creditcard"},
},
})
--]]
minetest.register_alias(
modMinerTrade.translate("creditcard"),
"minertrade:creditcard"
)
minetest.register_alias("creditcard", "minertrade:creditcard")
minetest.register_alias(modMinerTrade.translate("creditcard"), "minertrade:creditcard")
--##########################################################################################################

View file

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-13 12:55-0300\n"
"PO-Revision-Date: 2022-05-13 13:14-0300\n"
"POT-Creation-Date: 2022-05-18 11:58-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"
@ -32,35 +32,43 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT"
msgstr "ACEITAR"
#: old_item_miner_cash.lua:135
#, lua-format
msgid "ACCOUNT BANK of '%s':"
msgstr "CONTA BANCÁRA de '%s':"
#: item_atm.lua:231
msgid "ACCOUNT CREATED"
msgstr "CONTA CRIADA"
#: item_atm.lua:415 item_atm.lua:443 old_item_atm.lua:73 old_item_atm.lua:97
#: item_atm.lua:806 item_atm.lua:835
msgid "ATM"
msgstr "CAIXA ELETRÔNICO"
#: item_minercash.lua:275
#: item_atm.lua:535
msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico"
#: 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:164 item_atm.lua:203 item_atm.lua:293
#: item_atm.lua:223 item_atm.lua:258 item_atm.lua:345 item_atm.lua:385
#: item_atm.lua:517
msgid "BACK"
msgstr "VOLTAR"
#: item_atm.lua:127
#: item_atm.lua:188
msgid "BALANCE"
msgstr "SALDO"
#: item_atm.lua:179
#: item_atm.lua:235 item_atm.lua:391
msgid "BALANCES"
msgstr "SALDOS"
#: item_minercash.lua:237
#: item_atm.lua:360 item_minercash.lua:237
msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:523
msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO"
#: item_minercash.lua:203
msgid "BLACK MINERMONEY"
msgstr "NOTA PRETA"
@ -71,45 +79,16 @@ msgstr "NOTA AZUL"
#: item_minercash.lua:8
msgid "Basic craftable minercash with gold and steel."
msgstr ""
"MINERMOEDA\n"
"* Minercash básico criado apenas com ouro e aço."
msgstr "Minercash básico criado apenas com ouro e aço."
#: old_item_miner_cash.lua:67
msgid ""
"CHECK BANK\n"
"* equals 09 Minermoneys."
msgstr ""
"COFRE PORQUINHO\n"
"* Equivale a 09 Minercédulas."
#: api_payday.lua:41 old_payday.lua:35 old_payday.lua:42
#: api_payday.lua:41
msgid "CITY HALL"
msgstr "PREFEITURA"
#: item_atm.lua:133 old_item_miner_cash.lua:126
#: item_atm.lua:194 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO"
#: item_minercash.lua:274
msgid "CREDIT CARD (Unowned)"
msgstr "CARTÃO DE CRÉDITO (Sem Dono)"
#: old_item_miner_cash.lua:98
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."
#: old_item_miner_cash.lua:113
#, lua-format
msgid "CREDIT CARD of '%s'"
msgstr "CARTÃO DE CRÉDITO de '%s'"
#: item_exchange_table.lua:15 item_exchange_table.lua:17
#: item_exchange_table.lua:23 item_exchange_table.lua:25
msgid "Cancel"
@ -135,10 +114,14 @@ msgstr "Cliente Oferece"
msgid "Customer Receive"
msgstr "Cliente Recebe"
#: item_atm.lua:129
#: item_atm.lua:190
msgid "DEPOSITS"
msgstr "DEPÓSITOS"
#: item_atm.lua:413
msgid "DETAILS"
msgstr "DETALHES"
#: api.lua:409 api.lua:451 item_dispensing_machine.lua:13
#: item_dispensing_machine.lua:204 item_dispensing_machine.lua:224
#: item_dispensing_machine.lua:296
@ -153,6 +136,10 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:716 item_atm.lua:795
msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
#: item_dispensing_machine.lua:297
msgid "Dispending done!"
msgstr "Dispensa Concluida!"
@ -184,7 +171,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:135 item_atm.lua:172 item_atm.lua:211 item_atm.lua:294
#: item_atm.lua:196 item_atm.lua:224 item_atm.lua:259 item_atm.lua:346
#: item_atm.lua:386 item_atm.lua:518
msgid "EXIT"
msgstr "SAIR"
@ -198,6 +186,10 @@ 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
msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS"
#: item_minercash.lua:71
msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE"
@ -207,7 +199,7 @@ msgstr "NOTA VERDE"
msgid "INVENTORY OF '%s':"
msgstr "Inventário de '%s':"
#: item_atm.lua:132
#: item_atm.lua:193
msgid "LOANS"
msgstr "EMPRÉSTIMOS"
@ -215,31 +207,27 @@ msgstr "EMPRÉSTIMOS"
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
msgid "MINERCASH"
msgstr "MINERCASH"
#: item_minercash.lua:7
msgid "MINERCOIN"
msgstr "MINERMOEDA"
#: old_item_miner_cash.lua:6
msgid ""
"MINERCOIN\n"
"* Basic craftable money with gold and steel."
msgstr ""
"MINERMOEDA\n"
"* Dinheiro básico criado com ouro e aço."
#: old_item_miner_cash.lua:35
msgid ""
"MINERMONEY\n"
"* equals 09 Minercoins."
msgstr ""
"MINERCÉDULA\n"
"* Equivale a 09 Minermoedas."
#: item_dispensing_machine.lua:58
msgid "Make an announcement about what this machine will do"
msgstr "Faça um anúncio sobre o que esta máquina dispensará"
#: item_minercash.lua:346
#: item_atm.lua:229
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:273
msgid "N°"
msgstr "N°"
#: item_minercash.lua:367
msgid "OBSOLETE MONEY"
msgstr "DINHEIRO OBSOLETO"
@ -251,7 +239,7 @@ msgstr "NOTA LARANJA"
msgid "Offer"
msgstr "Oferecer"
#: api_payday.lua:2 old_payday.lua:2
#: api_payday.lua:2
msgid "Only players with this privilege will receive a daily payment."
msgstr "Somente jogadores com esse privilégio receberão um pagamento diário."
@ -259,25 +247,16 @@ msgstr "Somente jogadores com esse privilégio receberão um pagamento diário."
msgid "Open"
msgstr "Abrir"
#: item_atm.lua:46
#: item_atm.lua:47
#, lua-format
msgid "Opening '%s'!"
msgstr "Abrindo '%s'!"
msgid "Opening '%s' with data bank!"
msgstr "Abrindo '%s' com dados do banco!"
#: item_atm.lua:334 old_item_atm.lua:2 old_item_atm.lua:63 old_item_atm.lua:85
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."
#: item_atm.lua:715 item_atm.lua:794
msgid "PUBLIC ATM"
msgstr "CAIXA ELETRÔNICO PÚBLICO"
#: old_item_atm.lua:92
#, lua-format
msgid "PUBLIC ATM - Account of '%s':"
msgstr "CAIXA ELETRÔNICO - Conta de '%s':"
#: item_atm.lua:148 item_atm.lua:268
#: item_atm.lua:209 item_atm.lua:320 item_atm.lua:375 item_atm.lua:506
#, lua-format
msgid "Player '%s' is not an account holder of this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
@ -290,49 +269,36 @@ msgstr "NOTA VERMELHA"
msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:134
#: item_atm.lua:351
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:195
msgid "SETTINGS"
msgstr "CONFIGURAÇÕES"
#: item_atm.lua:128 item_atm.lua:220
#: item_atm.lua:189 item_atm.lua:268
msgid "STATEMENT"
msgstr "EXTRATO"
#: old_item_strongbox.lua:53 old_item_strongbox.lua:60
msgid "STRONGBOX"
msgstr "COFRE"
#: old_item_strongbox.lua:2
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."
#: old_item_strongbox.lua:24 old_item_strongbox.lua:40
#, lua-format
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."
#: old_item_strongbox.lua:48
#, lua-format
msgid "STRONGBOX owned by '%s':"
msgstr "COFRE FORTE de '%s':"
#: item_dispensing_machine.lua:63
msgid "Save The Announcement"
msgstr "Salvar o anúncio"
#: item_atm.lua:483
#: 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
#, lua-format
msgid "Saving data bank in the file '%s'!"
msgstr "Salvando dados bancários no arquivo '%s'!"
#: item_atm.lua:264
msgid "Select a bank statement to view transaction details!"
msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!"
#: item_dispensing_machine.lua:64
msgid "Seller current inventory"
msgstr "Inventario atual do vendedor"
@ -341,15 +307,15 @@ msgstr "Inventario atual do vendedor"
msgid "Stock to Offer"
msgstr "Estoque a Oferetar"
#: item_atm.lua:251
#: item_atm.lua:301
msgid "TOTAL"
msgstr "TOTAL"
#: item_atm.lua:272
#: item_atm.lua:324
msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:131
#: item_atm.lua:192
msgid "TRANSFERS"
msgstr "TRANSFERÊNCIAS"
@ -363,7 +329,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:445 old_item_atm.lua:98
#: item_atm.lua:837
#, 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!"
@ -390,7 +356,7 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer"
msgstr "Máquina Oferece"
#: api_payday.lua:35 old_payday.lua:43
#: api_payday.lua:35
#, 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!"
@ -399,34 +365,62 @@ 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:27 item_atm.lua:43
#: item_atm.lua:28 item_atm.lua:44
#, lua-format
msgid "The file '%s' is not in table format!"
msgstr "O arquivo '%s' não esta no formato de tabela!"
#: old_item_strongbox.lua:54
#: item_atm.lua:698
#, lua-format
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 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:130
#: item_atm.lua:273 item_atm.lua:406
msgid "VALUE"
msgstr "VALOR"
#: item_atm.lua:273
msgid "WHEN"
msgstr "QUANDO"
#: item_atm.lua:411
msgid "WITHDRAWAL"
msgstr "SAQUE"
#: item_atm.lua:191
msgid "WITHDRAWALS"
msgstr "SAQUES"
#: item_atm.lua:361
msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário."
#: item_atm.lua:357
msgid "Withdrawals in minercash."
msgstr "Saque em minercash."
#: item_dispensing_machine.lua:319
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
msgid "Write the value that want to withdrawal!"
msgstr "Digite o valor que deseja sacar!"
#: item_minercash.lua:104
msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA"
#: item_minercash.lua:347
#: item_atm.lua:528
msgid "YOUR BALANCE"
msgstr "SEU SALDO"
#: item_minercash.lua:368
msgid "You can make money from it."
msgstr "Você pode ganhar algum dinheiro com isso."
@ -434,24 +428,33 @@ 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:416 old_item_atm.lua:74
#: item_atm.lua:807
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'!"
#: old_item_strongbox.lua:61
#: item_atm.lua:480
#, lua-format
msgid "You do not have access to the safe belonging to '%s'!"
msgstr "Você não tem acesso ao cofre pertencente a '%s'!"
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:146
#: item_atm.lua:688
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
#, lua-format
msgid "You have %02d minercash."
msgstr "Você tem %02d minercash."
#: item_atm.lua:677
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária."
#: item_dispensing_machine.lua:51
msgid "You need"
msgstr "Você Precisa"
@ -460,33 +463,23 @@ msgstr "Você Precisa"
msgid "You offer"
msgstr "Você Oferece"
#: old_payday.lua:36
#, lua-format
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."
#: item_atm.lua:542
msgid "Your Inventory"
msgstr "Seu inventário"
#: item_exchange_table.lua:9
msgid "Your inventory"
msgstr "Seu inventário"
#: old_item_miner_cash.lua:127
#, lua-format
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'."
#: item_atm.lua:464 old_item_atm.lua:114
#: item_atm.lua:856
msgid "atm"
msgstr "caixaeletronico"
#: old_item_miner_cash.lua:91
msgid "checkbank"
msgstr "cheque"
#: commands.lua:30 commands.lua:45
msgid "checkstrongbox"
msgstr "checacofre"
#: item_minercash.lua:338 old_item_miner_cash.lua:159
#: item_minercash.lua:361
msgid "creditcard"
msgstr "cartaodecredito"
@ -498,21 +491,31 @@ msgstr "dispensadora"
msgid "exchangetable"
msgstr "mesadetroca"
#: item_minercash.lua:30 old_item_miner_cash.lua:28
#: item_minercash.lua:30
msgid "minercoin"
msgstr "minermoeda"
#: old_item_miner_cash.lua:59
msgid "minermoney"
msgstr "minercedula"
#: old_item_strongbox.lua:77
msgid "strongbox"
msgstr "caixaforte"
#~ 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!"
@ -525,6 +528,30 @@ msgstr "caixaforte"
#~ 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"
@ -537,6 +564,26 @@ msgstr "caixaforte"
#~ 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"
@ -558,5 +605,26 @@ msgstr "caixaforte"
#~ 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,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-05-13 12:55-0300\n"
"PO-Revision-Date: 2022-05-13 13:14-0300\n"
"POT-Creation-Date: 2022-05-18 11:58-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"
@ -32,35 +32,43 @@ msgstr "Uma carta foi enviada pela Máquina Dispensadora '%s' para '%s' informan
msgid "ACCEPT"
msgstr "ACEITAR"
#: old_item_miner_cash.lua:135
#, lua-format
msgid "ACCOUNT BANK of '%s':"
msgstr "CONTA BANCÁRA de '%s':"
#: item_atm.lua:231
msgid "ACCOUNT CREATED"
msgstr "CONTA CRIADA"
#: item_atm.lua:415 item_atm.lua:443 old_item_atm.lua:73 old_item_atm.lua:97
#: item_atm.lua:806 item_atm.lua:835
msgid "ATM"
msgstr "CAIXA ELETRÔNICO"
#: item_minercash.lua:275
#: item_atm.lua:535
msgid "ATM entrance"
msgstr "Entrada do Caixa Eletrônico"
#: 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:164 item_atm.lua:203 item_atm.lua:293
#: item_atm.lua:223 item_atm.lua:258 item_atm.lua:345 item_atm.lua:385
#: item_atm.lua:517
msgid "BACK"
msgstr "VOLTAR"
#: item_atm.lua:127
#: item_atm.lua:188
msgid "BALANCE"
msgstr "SALDO"
#: item_atm.lua:179
#: item_atm.lua:235 item_atm.lua:391
msgid "BALANCES"
msgstr "SALDOS"
#: item_minercash.lua:237
#: item_atm.lua:360 item_minercash.lua:237
msgid "BANK CHECK"
msgstr "CHEQUE BANCÁRIO"
#: item_atm.lua:523
msgid "BANK DEPOSIT"
msgstr "DEPÓSITO BANCÁRIO"
#: item_minercash.lua:203
msgid "BLACK MINERMONEY"
msgstr "NOTA PRETA"
@ -71,45 +79,16 @@ msgstr "NOTA AZUL"
#: item_minercash.lua:8
msgid "Basic craftable minercash with gold and steel."
msgstr ""
"MINERMOEDA\n"
"* Minercash básico criado apenas com ouro e aço."
msgstr "Minercash básico criado apenas com ouro e aço."
#: old_item_miner_cash.lua:67
msgid ""
"CHECK BANK\n"
"* equals 09 Minermoneys."
msgstr ""
"COFRE PORQUINHO\n"
"* Equivale a 09 Minercédulas."
#: api_payday.lua:41 old_payday.lua:35 old_payday.lua:42
#: api_payday.lua:41
msgid "CITY HALL"
msgstr "PREFEITURA"
#: item_atm.lua:133 old_item_miner_cash.lua:126
#: item_atm.lua:194 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr "CARTÃO DE CRÉDITO"
#: item_minercash.lua:274
msgid "CREDIT CARD (Unowned)"
msgstr "CARTÃO DE CRÉDITO (Sem Dono)"
#: old_item_miner_cash.lua:98
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."
#: old_item_miner_cash.lua:113
#, lua-format
msgid "CREDIT CARD of '%s'"
msgstr "CARTÃO DE CRÉDITO de '%s'"
#: item_exchange_table.lua:15 item_exchange_table.lua:17
#: item_exchange_table.lua:23 item_exchange_table.lua:25
msgid "Cancel"
@ -135,10 +114,14 @@ msgstr "Cliente Oferece"
msgid "Customer Receive"
msgstr "Cliente Recebe"
#: item_atm.lua:129
#: item_atm.lua:190
msgid "DEPOSITS"
msgstr "DEPÓSITOS"
#: item_atm.lua:413
msgid "DETAILS"
msgstr "DETALHES"
#: api.lua:409 api.lua:451 item_dispensing_machine.lua:13
#: item_dispensing_machine.lua:204 item_dispensing_machine.lua:224
#: item_dispensing_machine.lua:296
@ -153,6 +136,10 @@ msgstr ""
"MÁQUINA DE DISPENSADORA\n"
"* Vende seus itens, mesmo se você não estiver online."
#: item_atm.lua:716 item_atm.lua:795
msgid "Deposit and Withdraw your minercash into your bank account."
msgstr "Deposita e Saca seu dinheiro em sua conta bancária."
#: item_dispensing_machine.lua:297
msgid "Dispending done!"
msgstr "Dispensa Concluida!"
@ -184,7 +171,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:135 item_atm.lua:172 item_atm.lua:211 item_atm.lua:294
#: item_atm.lua:196 item_atm.lua:224 item_atm.lua:259 item_atm.lua:346
#: item_atm.lua:386 item_atm.lua:518
msgid "EXIT"
msgstr "SAIR"
@ -198,6 +186,10 @@ 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
msgid "FINANCIAL TRANSACTIONS"
msgstr "TRANSAÇÕES FINANCEIRAS"
#: item_minercash.lua:71
msgid "GREEN MINERMONEY"
msgstr "NOTA VERDE"
@ -207,7 +199,7 @@ msgstr "NOTA VERDE"
msgid "INVENTORY OF '%s':"
msgstr "Inventário de '%s':"
#: item_atm.lua:132
#: item_atm.lua:193
msgid "LOANS"
msgstr "EMPRÉSTIMOS"
@ -215,31 +207,27 @@ msgstr "EMPRÉSTIMOS"
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
msgid "MINERCASH"
msgstr "MINERCASH"
#: item_minercash.lua:7
msgid "MINERCOIN"
msgstr "MINERMOEDA"
#: old_item_miner_cash.lua:6
msgid ""
"MINERCOIN\n"
"* Basic craftable money with gold and steel."
msgstr ""
"MINERMOEDA\n"
"* Dinheiro básico criado com ouro e aço."
#: old_item_miner_cash.lua:35
msgid ""
"MINERMONEY\n"
"* equals 09 Minercoins."
msgstr ""
"MINERCÉDULA\n"
"* Equivale a 09 Minermoedas."
#: item_dispensing_machine.lua:58
msgid "Make an announcement about what this machine will do"
msgstr "Faça um anúncio sobre o que esta máquina dispensará"
#: item_minercash.lua:346
#: item_atm.lua:229
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr "NOME DO CORRENTISTA BANCÁRIO"
#: item_atm.lua:273
msgid "N°"
msgstr "N°"
#: item_minercash.lua:367
msgid "OBSOLETE MONEY"
msgstr "DINHEIRO OBSOLETO"
@ -251,7 +239,7 @@ msgstr "NOTA LARANJA"
msgid "Offer"
msgstr "Oferecer"
#: api_payday.lua:2 old_payday.lua:2
#: api_payday.lua:2
msgid "Only players with this privilege will receive a daily payment."
msgstr "Somente jogadores com esse privilégio receberão um pagamento diário."
@ -259,25 +247,16 @@ msgstr "Somente jogadores com esse privilégio receberão um pagamento diário."
msgid "Open"
msgstr "Abrir"
#: item_atm.lua:46
#: item_atm.lua:47
#, lua-format
msgid "Opening '%s'!"
msgstr "Abrindo '%s'!"
msgid "Opening '%s' with data bank!"
msgstr "Abrindo '%s' com dados do banco!"
#: item_atm.lua:334 old_item_atm.lua:2 old_item_atm.lua:63 old_item_atm.lua:85
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."
#: item_atm.lua:715 item_atm.lua:794
msgid "PUBLIC ATM"
msgstr "CAIXA ELETRÔNICO PÚBLICO"
#: old_item_atm.lua:92
#, lua-format
msgid "PUBLIC ATM - Account of '%s':"
msgstr "CAIXA ELETRÔNICO - Conta de '%s':"
#: item_atm.lua:148 item_atm.lua:268
#: item_atm.lua:209 item_atm.lua:320 item_atm.lua:375 item_atm.lua:506
#, lua-format
msgid "Player '%s' is not an account holder of this bank."
msgstr "O jogador '%s' não é titular de conta deste banco."
@ -290,49 +269,36 @@ msgstr "NOTA VERMELHA"
msgid "Received (Your Profit)"
msgstr "Recebido (Seu Lucro)"
#: item_atm.lua:134
#: item_atm.lua:351
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr "SELECIONE O MÉTODO DE SAQUE BANCÁRIO"
#: item_atm.lua:195
msgid "SETTINGS"
msgstr "CONFIGURAÇÕES"
#: item_atm.lua:128 item_atm.lua:220
#: item_atm.lua:189 item_atm.lua:268
msgid "STATEMENT"
msgstr "EXTRATO"
#: old_item_strongbox.lua:53 old_item_strongbox.lua:60
msgid "STRONGBOX"
msgstr "COFRE"
#: old_item_strongbox.lua:2
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."
#: old_item_strongbox.lua:24 old_item_strongbox.lua:40
#, lua-format
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."
#: old_item_strongbox.lua:48
#, lua-format
msgid "STRONGBOX owned by '%s':"
msgstr "COFRE FORTE de '%s':"
#: item_dispensing_machine.lua:63
msgid "Save The Announcement"
msgstr "Salvar o anúncio"
#: item_atm.lua:483
#: 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
#, lua-format
msgid "Saving data bank in the file '%s'!"
msgstr "Salvando dados bancários no arquivo '%s'!"
#: item_atm.lua:264
msgid "Select a bank statement to view transaction details!"
msgstr "Selecione uma Transação do Extrato Bancário para ver os detalhes!"
#: item_dispensing_machine.lua:64
msgid "Seller current inventory"
msgstr "Inventario atual do vendedor"
@ -341,15 +307,15 @@ msgstr "Inventario atual do vendedor"
msgid "Stock to Offer"
msgstr "Estoque a Oferetar"
#: item_atm.lua:251
#: item_atm.lua:301
msgid "TOTAL"
msgstr "TOTAL"
#: item_atm.lua:272
#: item_atm.lua:324
msgid "TRANSACTION DETAILS"
msgstr "DETALHES DA TRANSAÇÃO"
#: item_atm.lua:131
#: item_atm.lua:192
msgid "TRANSFERS"
msgstr "TRANSFERÊNCIAS"
@ -363,7 +329,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:445 old_item_atm.lua:98
#: item_atm.lua:837
#, 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!"
@ -390,7 +356,7 @@ msgstr "Máquina Precisa"
msgid "The Machine Offer"
msgstr "Máquina Oferece"
#: api_payday.lua:35 old_payday.lua:43
#: api_payday.lua:35
#, 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!"
@ -399,34 +365,62 @@ 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:27 item_atm.lua:43
#: item_atm.lua:28 item_atm.lua:44
#, lua-format
msgid "The file '%s' is not in table format!"
msgstr "O arquivo '%s' não esta no formato de tabela!"
#: old_item_strongbox.lua:54
#: item_atm.lua:698
#, lua-format
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 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:130
#: item_atm.lua:273 item_atm.lua:406
msgid "VALUE"
msgstr "VALOR"
#: item_atm.lua:273
msgid "WHEN"
msgstr "QUANDO"
#: item_atm.lua:411
msgid "WITHDRAWAL"
msgstr "SAQUE"
#: item_atm.lua:191
msgid "WITHDRAWALS"
msgstr "SAQUES"
#: item_atm.lua:361
msgid "Withdrawals in bank check."
msgstr "Saque em Cheque Bancário."
#: item_atm.lua:357
msgid "Withdrawals in minercash."
msgstr "Saque em minercash."
#: item_dispensing_machine.lua:319
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
msgid "Write the value that want to withdrawal!"
msgstr "Digite o valor que deseja sacar!"
#: item_minercash.lua:104
msgid "YELLOW MINERMONEY"
msgstr "NOTA AMARELA"
#: item_minercash.lua:347
#: item_atm.lua:528
msgid "YOUR BALANCE"
msgstr "SEU SALDO"
#: item_minercash.lua:368
msgid "You can make money from it."
msgstr "Você pode ganhar algum dinheiro com isso."
@ -434,24 +428,33 @@ 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:416 old_item_atm.lua:74
#: item_atm.lua:807
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'!"
#: old_item_strongbox.lua:61
#: item_atm.lua:480
#, lua-format
msgid "You do not have access to the safe belonging to '%s'!"
msgstr "Você não tem acesso ao cofre pertencente a '%s'!"
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:146
#: item_atm.lua:688
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
#, lua-format
msgid "You have %02d minercash."
msgstr "Você tem %02d minercash."
#: item_atm.lua:677
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr "Você sacou %02d minercash de sua conta bancária."
#: item_dispensing_machine.lua:51
msgid "You need"
msgstr "Você Precisa"
@ -460,33 +463,23 @@ msgstr "Você Precisa"
msgid "You offer"
msgstr "Você Oferece"
#: old_payday.lua:36
#, lua-format
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."
#: item_atm.lua:542
msgid "Your Inventory"
msgstr "Seu inventário"
#: item_exchange_table.lua:9
msgid "Your inventory"
msgstr "Seu inventário"
#: old_item_miner_cash.lua:127
#, lua-format
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'."
#: item_atm.lua:464 old_item_atm.lua:114
#: item_atm.lua:856
msgid "atm"
msgstr "caixaeletronico"
#: old_item_miner_cash.lua:91
msgid "checkbank"
msgstr "cheque"
#: commands.lua:30 commands.lua:45
msgid "checkstrongbox"
msgstr "checacofre"
#: item_minercash.lua:338 old_item_miner_cash.lua:159
#: item_minercash.lua:361
msgid "creditcard"
msgstr "cartaodecredito"
@ -498,21 +491,31 @@ msgstr "dispensadora"
msgid "exchangetable"
msgstr "mesadetroca"
#: item_minercash.lua:30 old_item_miner_cash.lua:28
#: item_minercash.lua:30
msgid "minercoin"
msgstr "minermoeda"
#: old_item_miner_cash.lua:59
msgid "minermoney"
msgstr "minercedula"
#: old_item_strongbox.lua:77
msgid "strongbox"
msgstr "caixaforte"
#~ 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!"
@ -525,6 +528,30 @@ msgstr "caixaforte"
#~ 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"
@ -537,6 +564,26 @@ msgstr "caixaforte"
#~ 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"
@ -558,5 +605,26 @@ msgstr "caixaforte"
#~ 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-13 12:55-0300\n"
"POT-Creation-Date: 2022-05-18 11:58-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"
@ -45,16 +45,16 @@ msgid ""
"dispensing machine!"
msgstr ""
#: api_payday.lua:2 old_payday.lua:2
#: api_payday.lua:2
msgid "Only players with this privilege will receive a daily payment."
msgstr ""
#: api_payday.lua:35 old_payday.lua:43
#: api_payday.lua:35
#, lua-format
msgid "The city hall deposited the %2d° salary in your bank account!"
msgstr ""
#: api_payday.lua:41 old_payday.lua:35 old_payday.lua:42
#: api_payday.lua:41
msgid "CITY HALL"
msgstr ""
@ -82,103 +82,206 @@ msgid ""
"'checkstrongbox'!"
msgstr ""
#: item_atm.lua:27 item_atm.lua:43
#: item_atm.lua:26
#, lua-format
msgid "Saving data bank in the file '%s'!"
msgstr ""
#: item_atm.lua:28 item_atm.lua:44
#, lua-format
msgid "The file '%s' is not in table format!"
msgstr ""
#: item_atm.lua:46
#: item_atm.lua:47
#, lua-format
msgid "Opening '%s'!"
msgid "Opening '%s' with data bank!"
msgstr ""
#: item_atm.lua:127
#: item_atm.lua:188
msgid "BALANCE"
msgstr ""
#: item_atm.lua:128 item_atm.lua:220
#: item_atm.lua:189 item_atm.lua:268
msgid "STATEMENT"
msgstr ""
#: item_atm.lua:129
#: item_atm.lua:190
msgid "DEPOSITS"
msgstr ""
#: item_atm.lua:130
#: item_atm.lua:191
msgid "WITHDRAWALS"
msgstr ""
#: item_atm.lua:131
#: item_atm.lua:192
msgid "TRANSFERS"
msgstr ""
#: item_atm.lua:132
#: item_atm.lua:193
msgid "LOANS"
msgstr ""
#: item_atm.lua:133 old_item_miner_cash.lua:126
#: item_atm.lua:194 item_minercash.lua:275
msgid "CREDIT CARD"
msgstr ""
#: item_atm.lua:134
#: item_atm.lua:195
msgid "SETTINGS"
msgstr ""
#: item_atm.lua:135 item_atm.lua:172 item_atm.lua:211 item_atm.lua:294
#: item_atm.lua:196 item_atm.lua:224 item_atm.lua:259 item_atm.lua:346
#: item_atm.lua:386 item_atm.lua:518
msgid "EXIT"
msgstr ""
#: item_atm.lua:146
#: item_atm.lua:207 item_atm.lua:372 item_atm.lua:503
#, lua-format
msgid "You have %02d minercash."
msgstr ""
#: item_atm.lua:148 item_atm.lua:268
#: item_atm.lua:209 item_atm.lua:320 item_atm.lua:375 item_atm.lua:506
#, lua-format
msgid "Player '%s' is not an account holder of this bank."
msgstr ""
#: item_atm.lua:164 item_atm.lua:203 item_atm.lua:293
#: item_atm.lua:223 item_atm.lua:258 item_atm.lua:345 item_atm.lua:385
#: item_atm.lua:517
msgid "BACK"
msgstr ""
#: item_atm.lua:179
#: item_atm.lua:229
msgid "NAME OF BANKING ACCOUNT HOLDER"
msgstr ""
#: item_atm.lua:231
msgid "ACCOUNT CREATED"
msgstr ""
#: item_atm.lua:233
msgid "FINANCIAL TRANSACTIONS"
msgstr ""
#: item_atm.lua:235 item_atm.lua:391
msgid "BALANCES"
msgstr ""
#: item_atm.lua:251
#: item_atm.lua:264
msgid "Select a bank statement to view transaction details!"
msgstr ""
#: item_atm.lua:273
msgid "N°"
msgstr ""
#: item_atm.lua:273
msgid "WHEN"
msgstr ""
#: item_atm.lua:273 item_atm.lua:406
msgid "VALUE"
msgstr ""
#: item_atm.lua:301
msgid "TOTAL"
msgstr ""
#: item_atm.lua:272
#: item_atm.lua:324
msgid "TRANSACTION DETAILS"
msgstr ""
#: item_atm.lua:334 old_item_atm.lua:2 old_item_atm.lua:63 old_item_atm.lua:85
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."
#: item_atm.lua:351
msgid "SELECT BANK WITHDRAWAL METHOD"
msgstr ""
#: item_atm.lua:415 item_atm.lua:443 old_item_atm.lua:73 old_item_atm.lua:97
#: item_atm.lua:356
msgid "MINERCASH"
msgstr ""
#: item_atm.lua:357
msgid "Withdrawals in minercash."
msgstr ""
#: item_atm.lua:360 item_minercash.lua:237
msgid "BANK CHECK"
msgstr ""
#: item_atm.lua:361
msgid "Withdrawals in bank check."
msgstr ""
#: item_atm.lua:398
msgid "Write the value that want to withdrawal!"
msgstr ""
#: item_atm.lua:411
msgid "WITHDRAWAL"
msgstr ""
#: item_atm.lua:413
msgid "DETAILS"
msgstr ""
#: item_atm.lua:480
#, lua-format
msgid "You deposited %02d x '%s'!"
msgstr ""
#: item_atm.lua:523
msgid "BANK DEPOSIT"
msgstr ""
#: item_atm.lua:528
msgid "YOUR BALANCE"
msgstr ""
#: item_atm.lua:535
msgid "ATM entrance"
msgstr ""
#: item_atm.lua:542
msgid "Your Inventory"
msgstr ""
#: item_atm.lua:677
#, lua-format
msgid "You have withdrawn %02d minercash from your bank account."
msgstr ""
#: item_atm.lua:688
msgid "You don't have space in your inventory to withdraw so much minercash."
msgstr ""
#: item_atm.lua:698
#, 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
msgid "ATM"
msgstr ""
#: item_atm.lua:416 old_item_atm.lua:74
#: item_atm.lua:807
msgid "You can not install this 'ATM' too far from a 'Dispensing Machine'!"
msgstr ""
#: item_atm.lua:445 old_item_atm.lua:98
#: item_atm.lua:837
#, lua-format
msgid "The ATM will only run %02d seconds after it is installed!"
msgstr ""
#: item_atm.lua:464 old_item_atm.lua:114
#: item_atm.lua:856
msgid "atm"
msgstr ""
#: item_atm.lua:483
#: item_atm.lua:875
#, lua-format
msgid "Saving bank from all players in the file '%s'!"
msgstr ""
@ -345,7 +448,7 @@ msgstr ""
msgid "Basic craftable minercash with gold and steel."
msgstr ""
#: item_minercash.lua:30 old_item_miner_cash.lua:28
#: item_minercash.lua:30
msgid "minercoin"
msgstr ""
@ -379,131 +482,24 @@ msgstr ""
msgid "BLACK MINERMONEY"
msgstr ""
#: item_minercash.lua:237
msgid "BANK CHECK"
msgstr ""
#: item_minercash.lua:238
msgid "Equivalent to as much minercash as your creator wants.."
msgstr ""
#: item_minercash.lua:274
msgid "CREDIT CARD (Unowned)"
msgstr ""
#: item_minercash.lua:275
#: item_minercash.lua:276
msgid ""
"Allows you to access the bank account of the credit card owner anywhere in "
"the world."
msgstr ""
#: item_minercash.lua:338 old_item_miner_cash.lua:159
#: item_minercash.lua:361
msgid "creditcard"
msgstr ""
#: item_minercash.lua:346
#: item_minercash.lua:367
msgid "OBSOLETE MONEY"
msgstr ""
#: item_minercash.lua:347
#: item_minercash.lua:368
msgid "You can make money from it."
msgstr ""
#: old_item_atm.lua:92
#, lua-format
msgid "PUBLIC ATM - Account of '%s':"
msgstr ""
#: old_item_miner_cash.lua:6
msgid ""
"MINERCOIN\n"
"* Basic craftable money with gold and steel."
msgstr ""
#: old_item_miner_cash.lua:35
msgid ""
"MINERMONEY\n"
"* equals 09 Minercoins."
msgstr ""
#: old_item_miner_cash.lua:59
msgid "minermoney"
msgstr ""
#: old_item_miner_cash.lua:67
msgid ""
"CHECK BANK\n"
"* equals 09 Minermoneys."
msgstr ""
#: old_item_miner_cash.lua:91
msgid "checkbank"
msgstr ""
#: old_item_miner_cash.lua:98
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 ""
#: old_item_miner_cash.lua:113
#, lua-format
msgid "CREDIT CARD of '%s'"
msgstr ""
#: old_item_miner_cash.lua:127
#, lua-format
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 ""
#: old_item_miner_cash.lua:135
#, lua-format
msgid "ACCOUNT BANK of '%s':"
msgstr ""
#: old_item_strongbox.lua:2
msgid ""
"STRONGBOX\n"
"* Save your money in this safe and withdraw your money at any shop that has "
"an ATM."
msgstr ""
#: old_item_strongbox.lua:24 old_item_strongbox.lua:40
#, lua-format
msgid ""
"STRONGBOX (Property of '%s')\n"
"* Save your money in this safe and withdraw your money at any shop that has "
"an ATM."
msgstr ""
#: old_item_strongbox.lua:48
#, lua-format
msgid "STRONGBOX owned by '%s':"
msgstr ""
#: old_item_strongbox.lua:53 old_item_strongbox.lua:60
msgid "STRONGBOX"
msgstr ""
#: old_item_strongbox.lua:54
#, lua-format
msgid "The safe is going to work %02d seconds after it is installed!"
msgstr ""
#: old_item_strongbox.lua:61
#, lua-format
msgid "You do not have access to the safe belonging to '%s'!"
msgstr ""
#: old_item_strongbox.lua:77
msgid "strongbox"
msgstr ""
#: old_payday.lua:36
#, lua-format
msgid "Your Strongbox is full! %2d items weren't added in your bank account."
msgstr ""