📚Translate

To change the interface and also that of notifications go here

Change language
Shared.Locale = {
    NotAllowed = "You are not authorized to use society management",
    CantPay = "You don't have enough money to pay this bill",
    SucessPaid = function(Id, Amount) return "You have just paid invoice number "..Id.." of "..Amount.."$" end,
    SucessPaidSender = function(Name, Amount) return Name.." just paid the bill for "..Amount.."$" end,
    InvoiceReceive = function(Amount) return "You received an invoice for "..Amount.."$" end,
    RevokeBillTarget = function(Id, Value, LastName) return "Invoice No."..Id.." of "..Value.."$ was deleted by agent "..LastName end,
    RevokeBillSource = function(Id, Value, OwnerName, SenderName) return "You have deleted invoice No."..Id.." from "..Value.."$ issued to "..OwnerName.." by "..SenderName end
}

Last updated