> For the complete documentation index, see [llms.txt](https://fox-store-1.gitbook.io/oz-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fox-store-1.gitbook.io/oz-store/oz_shoproberry/locales.md).

# LOCALES

Wir haben diesen Raub mit mehren Locales Verbunden in denn Falle: EN und DE

DE:

```
Locales["de_esx"] = {
    start_robbery = "Drücke ~INPUT_CONTEXT~ um den Laden auszurauben",
    already_robbed = "Dieser Laden wurde vor kurzem schon ausgeraubt.",
    no_weapon = "Du brauchst eine Pistole für den Überfall!",
    not_enough_cops = "Es sind nicht genug Polizisten im Dienst!",
    too_many_cops = "Es sind zu viele Polizisten im Dienst!",
    robbery_started = "Überfall gestartet: %s",
    robbery_progress = "Halte durch... %s Sekunden",
    robbery_success = "Du hast den Laden ausgeraubt!",
    reward = "Du hast ~r~$%s~s~ Schwarzgeld erhalten!",
    minigame_fail = "Du hast den Überfall vermasselt!",
    hack_erfolgreich = "Du hast es geschafft! Shop wird ausgeraubt!",
    roberry_accept = "Du hast denn Roberry Angenommen und Fährst hin!",
    roberry_noaccept = "Du hast denn Roberry Abgeleht, und Fährst Streife",
    roberry_canceld = "Der Raub wurde Abgebrochen, da du aus dem Laden gegangen bist!",
    roberry_request = "Drücke ~INPUT_CONTEXT~ um Anzunehmen\nDrücke ~INPUT_DETONATE~ um Abzulehnen"
}

Locales["de_oz"] = {
    start_robbery = "Laden auszurauben",
    already_robbed = "Dieser Laden wurde vor kurzem schon ausgeraubt.",
    no_weapon = "Du brauchst eine Pistole für den Überfall!",
    not_enough_cops = "Es sind nicht genug Polizisten im Dienst!",
    too_many_cops = "Es sind zu viele Polizisten im Dienst!",
    robbery_started = "Überfall gestartet: %s",
    robbery_progress = "Halte durch... %s Sekunden",
    robbery_success = "Du hast den Laden ausgeraubt!",
    reward = "Du hast ~r~$%s~s~ Schwarzgeld erhalten!",
    minigame_fail = "Du hast den Überfall vermasselt!",
    hack_erfolgreich = "Du hast es geschafft! Shop wird ausgeraubt!",
    roberry_accept = "Du hast denn Roberry Angenommen und Fährst hin!",
    roberry_noaccept = "Du hast denn Roberry Abgeleht, und Fährst Streife",
    roberry_canceld = "Der Raub wurde Abgebrochen, da du aus dem Laden gegangen bist!",
    roberry_request = "Drücke ~INPUT_CONTEXT~ um Anzunehmen\nDrücke ~INPUT_DETONATE~ um Abzulehnen"
}

function _U(str, ...)
    if Locales[Config.Locale] and Locales[Config.Locale][str] then
        return string.format(Locales[Config.Locale][str], ...)
    else
        return ("Translation missing: %s"):format(str)
    end
end
```

EN:

```
Locales["en_oz"] = {
    start_robbery = "Rob the store",
    already_robbed = "This store has recently been robbed.",
    no_weapon = "You need a pistol to start the robbery!",
    not_enough_cops = "Not enough police officers online!",
    too_many_cops = "There are too many police officers online!",
    robbery_started = "Robbery started: %s",
    robbery_progress = "Hold on... %s seconds",
    robbery_success = "You successfully robbed the store!",
    reward = "You received ~r~$%s~s~ dirty money!",
    minigame_fail = "You failed the robbery!",
    hack_erfolgreich = "You did it! Shop is robbed!",
    roberry_accept = "You have accepted Roberry and are going there!",
    roberry_noaccept = "You have rejected Roberry and are patrolling",
    roberry_canceld = "The robbery was aborted because you left the store!",
    roberry_request = "Press ~INPUT_CONTEXT~ to accept\n Press ~INPUT_DETONATE~ to reject"
}

Locales["en_esx"] = {
    start_robbery = "Press ~INPUT_CONTEXT~ to rob the store",
    already_robbed = "This store has recently been robbed.",
    no_weapon = "You need a pistol to start the robbery!",
    not_enough_cops = "Not enough police officers online!",
    too_many_cops = "There are too many police officers online!",
    robbery_started = "Robbery started: %s",
    robbery_progress = "Hold on... %s seconds",
    robbery_success = "You successfully robbed the store!",
    reward = "You received ~r~$%s~s~ dirty money!",
    minigame_fail = "You failed the robbery!",
    hack_erfolgreich = "You did it! Shop is robbed!",
    roberry_accept = "You have accepted Roberry and are going there!",
    roberry_noaccept = "You have rejected Roberry and are patrolling",
    roberry_canceld = "The robbery was aborted because you left the store!",
    roberry_request = "Press ~INPUT_CONTEXT~ to accept\n Press ~INPUT_DETONATE~ to reject"
}

function _U(str, ...)
    if Locales[Config.Locale] and Locales[Config.Locale][str] then
        return string.format(Locales[Config.Locale][str], ...)
    else
        return ("Translation missing: %s"):format(str)
    end
end
```
