# Locales

Go to `locales.lua`&#x20;

```lua
Locales = {}

-- English
Locales['en'] = {
    laundry = {
        start = "Wash Black Money",
        notEnoughMoney = "You don't have enough dirty money!",
        invalidAmount = "Enter a valid number!",
        inputDialog = "Enter amount of Black Money",
        progressCircle = "You're laundering money...",
        success = "You washed $%s, others are ruined and unusable!",
        textui = "Press [E] to wash"
    }
}

-- Italiano
Locales['it'] = {
    laundry = {
        start = "Pulizia Soldi Sporchi",
        notEnoughMoney = "Non hai abbastanza denaro sporco!",
        invalidAmount = "Inserisci un numero valido!",
        inputDialog = "Inserisci quantità di Soldi Macchiati",
        progressCircle = "Stai lavando il denaro...",
        success = "Hai lavato $%s, gli altri sono rotti e inutilizzabili!",
        textui = "Premi [E] per pulire"
    }
}

-- Français
Locales['fr'] = {
    laundry = {
        start = "Nettoyage de l'argent sale",
        notEnoughMoney = "Vous n'avez pas assez d'argent sale!",
        invalidAmount = "Entrez un nombre valide!",
        inputDialog = "Entrez le montant de l'argent taché",
        progressCircle = "Vous blanchissez de l'argent...",
        success = "Vous avez lavé $%s, les autres sont ruinés et inutilisables!",
        textui = "Appuyez sur [E] pour laver"
    }
}

-- Add other here...

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mekez-dev.gitbook.io/mekez-dev/paid-resources/money-wash/locales.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
