> For the complete documentation index, see [llms.txt](https://doc.var-fivem.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.var-fivem.com/society-manager/configuration/translate.md).

# Translate

{% hint style="info" %}
To change the interface and also that of notifications go here&#x20;
{% endhint %}

{% content-ref url="/pages/CJLrFhhrwGWSZzdCCWTQ" %}
[Change language](/theme-translate/change-language.md)
{% endcontent-ref %}

```lua
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
}
```
