> 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_testdriving/locales.md).

# LOCALES

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

DE:

```
Locales = Locales or {}

Locales['de'] = {
    ['blip'] = 'Testfahrten',
    ['menu_title'] = 'Fahrzeug Testfahrt',
    ['categories'] = 'Fahrzeugkategorien',
    ['category'] = 'Kategorie: %s',

    ['start_testdrive'] = '~g~Testfahrt gestartet!~w~ Drücke ~y~F~w~, um sie zu ~r~beenden.',
    ['end_testdrive'] = '~r~Testfahrt beendet.',
    ['press_e'] = 'Drücke ~INPUT_CONTEXT~ für eine Testfahrt',
    ['press_f_end'] = 'Drücke ~INPUT_ENTER~ um die Testfahrt zu beenden'
}

```

EN:

```
Locales['en'] = {
    ['blip'] = 'Test Driving',
    ['menu_title'] = 'Vehicle Test Drive',
    ['categories'] = 'Vehicle Categories',
    ['category'] = 'Category: %s',

    ['start_testdrive'] = '~g~Test drive started!~w~ Press ~y~F~w~ to ~r~end it.',
    ['end_testdrive'] = '~r~Test drive ended.',
    ['press_e'] = 'Press ~INPUT_CONTEXT~ to start a test drive',
    ['press_f_end'] = 'Press ~INPUT_ENTER~ to end the test drive'
}

```
