# Config file

{% tabs %}
{% tab title="CONFIG" %}

```lua
Config = {}

--[[ Language ]]--
Config.Locale = 'en'   -- en, de, es, cs.

--[[ Framework ]]--
Config.Framework = {
    autoDetect = true,                  --  Automatically finds and sets supported framework on your server.
    type = 'esx',                       --  ESX = 'esx' / QBCore = 'qbcore'.
    export = 'es_extended',             --  ESX = 'es_extended' / QBCore = 'qb-core'.
}

--[[ Inventory ]]--
Config.Inventory = 'auto_detect'        -- auto_detect   - Automatically finds and sets supported inventory on your server.
                                        -- ox            - https://github.com/overextended/ox_inventory.
                                        -- qb            - https://github.com/qbcore-framework/qb-inventory.
                                        -- qs            - https://buy.quasar-store.com/package/4770732.
                                        -- ps            - https://github.com/Project-Sloth/ps-inventory.
                                        -- codem         - https://codem.tebex.io/package/5900973.
                                        -- core          - https://forum.cfx.re/t/core-inventory-qb-esx-advanced-grid-based-inventory/4859943.
                                        -- origen        - https://www.origennetwork.store/package/5881161.
                                        -- tgiann        - https://tgiann.tebex.io/package/6273000.
                                        -- jaksam        - https://fivem.jaksam-scripts.com/package/7091785.
                                        -- ak47          - https://menanak47.tebex.io/package/6436604.

--[[ Menu ]]--
Config.Menu = 'auto_detect'             -- auto_detect      - Automatically finds and sets supported menu on your server.
                                        -- ox               - https://overextended.github.io/docs.
                                        -- esx              - https://github.com/esx-framework/esx-legacy/tree/main/%5Besx%5D/esx_menu_default.
                                        -- qb               - https://github.com/qbcore-framework/qb-menu.

--[[ Action Menu ]]--
Config.ActionMenu = 'auto_detect'       -- auto_detect        - Automatically finds and sets supported action menu on your server.
                                        -- help               - https://esx-brasil.github.io/es_extended/client/functions/showhelpnotification/.
                                        -- ox                 - https://github.com/overextended/ox_target.
                                        -- qb                 - https://github.com/qbcore-framework/qb-target.
                                        -- q                  - https://github.com/thelindat/qtarget.

--[[ ProgressBar ]]--
Config.ProgressBarDuration = 0.25       -- Duration of the progressbar [in seconds].
Config.ProgressBar = 'auto_detect'      -- auto_detect          - Automatically finds and sets supported progressbar on your server. 
                                        -- none                 - No ProgressBar.
                                        -- ox                   - https://overextended.github.io/docs.
                                        -- qb                   - https://github.com/qbcore-framework/progressbar.
                                        -- qs                   - https://github.com/quasar-scripts/progressbar.
                                        -- progressBars         - https://forum.cfx.re/t/release-progress-bars-1-0-standalone/526287/4.

--[[ Notifications ]]--
Config.Notify = 'auto_detect' -- auto_detect, ox, esx, qb.
Config.HelpNotify = 'auto_detect' -- auto_detect, ox, esx, qb.
Config.NotifyType = {success = 'success', info = 'info', error = 'error'}
Config.Sounds = true

--[[ Price of one key ]]--
Config.KeyPrice = 250
Config.CarModelLabel = true                             --  Vehicle keys named by Car Model like "Keys - Blista".
Config.MaxDistanceFromVehicle = 4.5                     --  Your max distance from closest vehicle.

--[[ Other ]]--
Config.UseUI = true                                     --  If false vehicle will lock upon using key item.
Config.GarageFix = false                                --  Change this to true if you are using qs-advacedgarage or if you are experiencing any issues.
Config.VehicleSounds = true                             --  If false vehicle will not make a sound upon locking/unlocking.
Config.VehicleProp = true                               --  If false when locking vehicle player will not have prop key in his hands.
Config.CanExitWhileLocked = true                        --  true = players inside locked vehicles would not be able to leave, until the vehicle will be unlocked.
Config.NeedKeysToStartVehicles = false                  --  true = vehicle needs to start right key
Config.CanDriveNPCCars = false                          --  Works only when NeedKeysToStartVehicles is true
Config.VehicleOwnershipJobs = {'civ', 'unemployed'}     --  Jobs that have no owner and, therefore, the vehicle is managed by the player itself.
Config.AllowedLockedVehicleLeave = {8, 13, 14}          --  Motorcycles (8), cycles (13), boats (14).
Config.VehicleWithoutKeys = {13}                        --  Cycles.
Config.GiveCarKeys = 'givecarkeys'                      --  Command for giving car keys.
Config.HasPlateWhitespace = true                        --  In default all vehicles have plate as [SZD 156] - If you have [SZD156] then use false.
Config.UniversalKeyForSociety = {'police'}
Config.UseSocietyKeys = true
Config.CanCreateKeys = {
    defaultGrades = {
        use = true,                                     -- Use grades in this table for every job.
        grades = {'2', '3'}
    },
    specificGrades = {                                  -- Works only if defaultGrades-use is set to false.
        ['police'] = {                                  -- Job name.
            grades = {'2', '3'},                        -- Allowed grades.
        },
        ['ambulance'] = {
            grades = {'2', '3'},
        },
    },
}
                                                    
--[[ Npc Shop ]]--
Config.Npc = {
    {
        model = 'cs_carbuyer',                              --  Your NPC model - you can find new model here: https://docs.fivem.net/docs/game-references/ped-models/.
        scenario = 'WORLD_HUMAN_VALET',                     --  Scenario that will your NPC display - you can find new scenario here: https://github.com/Santagain/gtav-scenarios.
        position = vec4(-57.28, -1099.17, 26.41, 25.51),    --  Position of your NPC. [If you are using QTarget, Ox_Target or Bt_Target it will be automaticly set around the ped by the script].
        distance = 2.0,                                     --  Distance from npc to open menu.
        targeticon = 'fas fa-key',                          --  OX_Target or QTarget icon. You can find them here https://fontawesome.com/icons.
    },
    --[[{
        model = 'cs_carbuyer',
        scenario = 'WORLD_HUMAN_VALET',
	      position = vec4(-55.04, -1094.20, 26.41, 25.51),
        distance = 2.0,
        targeticon = 'fas fa-key',
    },]]
}
```

{% endtab %}

{% tab title="LOCALES" %}

<details>

<summary>en</summary>

```lua
Locales['en'] = {
    ['target_text'] = 'Buy car keys',
    ['showhelpnotify_text'] = 'Press [E] to open car key shop.',
    ['menu_title'] = 'Keys for your vehicle',
    ['menu_buy'] = 'Buy keys',
    ['menu_price'] = 'Price $%s',
    ['menu_exit'] = 'Exit',
    ['price'] = '$%s',
    ['menu_keys'] = 'Keys - %s',
    ['menu_choose'] = 'Choose Vehicle',
    ['menu_novehicles'] = 'You do not own any vehicles',
    ['menu_payment'] = 'Payment',
    ['key_info'] = 'Plate: %s\n\nModel: %s\n\nVin: %s\n\nKey Number: %s',
    ['security_key'] = 'Security key: %s',
    ['menu_bank'] = 'Bank',
    ['menu_cash'] = 'Cash',
    ['menu_yes'] = 'Yes',
    ['menu_cancel'] = 'Cancel Purchase',
    ['menu_cancel_description'] = 'You will cancel this purchase!',
    ['menu_goback'] = 'Return',
    ['society_label'] = 'Society',
    ['paid_keys'] = 'You paid $%s.',
    ['not_enough_money'] = 'You dont have enough money, you need %s',
    ['not_right_key'] = 'This key does not belong to this vehicle!',
    ['no_vehicle_near'] = 'There is no vehicles near by you!',
    ['vehicle_locked'] = 'Vehicle has been locked!',
    ['vehicle_unlocked'] = 'Vehicle has been unlocked!',
    ['vehicle_already_locked'] = 'Vehicle has been already locked!',
    ['vehicle_already_unlocked'] = 'Vehicle has been already unlocked!',
    ['locking_vehicle'] = 'Locking the vehicle',
    ['unlocking_vehicle'] = 'Unlocking the vehicle',
    ['vehicle_reload'] = 'Reload vehicles',
    ['stop_spam'] = 'Stop spam this button!',
    ['cannot_start'] = 'You can\'t start this car without right key',
    ['invalid_plate'] = 'The entered license plate does not exist or does not belong to a player',
    ['command_help'] = 'Add keys to inventory according to the license plate of the player vehicle, can also be named',
    ['spz1_help'] = 'Enter the first part of the license plate',
    ['spz2_help'] = 'Enter the second part of the license plate',
    ['spz_help'] = 'Enter the full license plate',
    ['model_help'] = 'Enter the car model name - must be turned on',
    ['too_fast'] = 'The remote control is not built for such speed.',
    ['key_removed'] = 'The access code for the selected key has been removed.',
    ['not_owner'] = 'You are likely not the owner of this vehicle.',
    ['disable_keys'] = 'Lock Controls',
    ['disable_description'] = 'Locks the selected controls on the designated vehicle.',
    ['key_copy'] = 'Control No.%s',
    ['disable_key'] = 'Lock Control - Disable Locks',
    ['disable_key_description'] = 'You will disable this key for this vehicle!',
    ['no_keys'] = 'No keys to disable',
    ['personal_vehicles'] = 'Personal vehicles',
    ['personal_action'] = 'Actions with personal carkeys',
    ['society_vehicles'] = 'Society vehicles',
    ['society_action'] = 'Actions with society carkeys',
    ['uni_key'] = 'Universal job key - %s',
    ['universal_key_label'] = 'Universal key - %s\n\n%s',
    ['cannot_lock'] = 'This vehicle cannot be locked/unlocked',
    ['no_key_to_this_veh'] = 'You don\'t have keys to this vehicle',
    ['bad_request'] = 'Incorrect information for changing the owner.',
    ['vehicle_is_locked'] = 'You have to unlock your vehicle in order to do this!',
    ['doors_on'] = 'Vehicle unlocked. Doors are now open.',
    ['doors_off'] = 'Vehicle locked. Doors are now closed.',
    ['engine_on'] = 'Engine started successfully.',
    ['engine_off'] = 'Engine turned off.',
    ['light_on'] = 'Vehicle lights turned on.',
    ['light_off'] = 'Vehicle lights turned off.',
    ['starting_engine'] = 'Starting engine...',
    ['stopping_engine'] = 'Shutting down engine...',
    ['starting_doors'] = 'Unlocking vehicle...',
    ['stopping_doors'] = 'Locking vehicle...',
    ['starting_light'] = 'Switching lights on...',
    ['stopping_light'] = 'Switching lights off...',
}
```

</details>

<details>

<summary>de</summary>

```lua
Locales['de'] = {
    ['target_text'] = 'Autoschlüssel kaufen',
    ['showhelpnotify_text'] = 'Drücke [E], um den Autoschlüssel-Shop zu öffnen.',
    ['menu_title'] = 'Schlüssel für dein Fahrzeug',
    ['menu_buy'] = 'Schlüssel kaufen',
    ['menu_price'] = 'Preis $%s',
    ['menu_exit'] = 'Verlassen',
    ['price'] = '$%s',
    ['menu_keys'] = 'Schlüssel - %s',
    ['menu_choose'] = 'Fahrzeug auswählen',
    ['menu_novehicles'] = 'Du besitzt keine Fahrzeuge',
    ['menu_payment'] = 'Zahlung',
    ['key_info'] = 'Kennzeichen: %s\n\nModell: %s\n\nFIN: %s\n\nSchlüsselnummer: %s',
    ['security_key'] = 'Sicherheitsschlüssel: %s',
    ['menu_bank'] = 'Bank',
    ['menu_cash'] = 'Bargeld',
    ['menu_goback'] = 'Zurück',
    ['menu_yes'] = 'Ja',
    ['menu_cancel'] = 'Kauf abbrechen',
    ['menu_cancel_description'] = 'Du wirst diesen Kauf abbrechen!',
    ['paid_keys'] = 'Du hast $%s bezahlt.',
    ['society_label'] = 'Gesellschaft',
    ['not_enough_money'] = 'Du hast nicht genug Geld, du brauchst %s',
    ['not_right_key'] = 'Dieser Schlüssel gehört nicht zu diesem Fahrzeug!',
    ['no_vehicle_near'] = 'Es gibt kein Fahrzeug in der Nähe!',
    ['vehicle_locked'] = 'Das Fahrzeug wurde verriegelt!',
    ['vehicle_unlocked'] = 'Das Fahrzeug wurde entsperrt!',
    ['vehicle_already_locked'] = 'Fahrzeug wurde bereits verriegelt!',
    ['vehicle_already_unlocked'] = 'Fahrzeug wurde bereits entriegelt!',
    ['locking_vehicle'] = 'Fahrzeug wird verriegelt',
    ['unlocking_vehicle'] = 'Fahrzeug wird entsperrt',
    ['vehicle_reload'] = 'Fahrzeuge neu laden',
    ['stop_spam'] = 'Hör auf, diese Taste zu spammen!',
    ['cannot_start'] = ' Du kannst dieses Auto ohne den richtigen Schlüssel nicht starten.',
    ['invalid_plate'] = 'Das eingegebene Kennzeichen existiert nicht oder gehört nicht zu einem Spieler',
    ['command_help'] = 'Fügen Sie Schlüssel entsprechend dem Kennzeichen des Spielerfahrzeugs zum Inventar hinzu, kann auch benannt werden',
    ['spz1_help'] = 'Geben Sie den ersten Teil des Kennzeichens ein',
    ['spz2_help'] = 'Geben Sie den zweiten Teil des Kennzeichens ein',
    ['spz_help'] = 'Geben Sie das vollständige Kennzeichen ein',
    ['model_help'] = 'Geben Sie den Namen des Automodells ein - muss eingeschaltet sein',
    ['too_fast'] = 'Die Fernbedienung ist nicht für eine solche Geschwindigkeit ausgelegt.',
    ['key_removed'] = 'Der Zugangscode für den ausgewählten Schlüssel wurde entfernt.',
    ['not_owner'] = 'Sie sind wahrscheinlich nicht der Eigentümer dieses Fahrzeugs.',
    ['disable_keys'] = 'Steuerung sperren',
    ['disable_description'] = 'Sperrt die ausgewählten Steuerelemente am zugewiesenen Fahrzeug.',
    ['key_copy'] = 'Steuerung Nr. %s',
    ['disable_key'] = 'Steuerung sperren - Schlösser deaktivieren',
    ['disable_key_description'] = 'Du wirst diesen Schlüssel für das Fahrzeug deaktivieren!',
    ['no_keys'] = 'Keine Schlüssel zum Deaktivieren vorhanden',
    ['personal_vehicles'] = 'Persönliche Fahrzeuge',
    ['personal_action'] = 'Aktionen mit persönlichen Autoschlüsseln',
    ['society_vehicles'] = 'Firmenfahrzeuge',
    ['society_action'] = 'Aktionen mit Firmenautoschlüsseln',
    ['uni_key'] = 'Universalschlüssel für Job - %s',
    ['universal_key_label'] = 'Universalschlüssel - %s\n\n%s',
    ['cannot_lock'] = 'Dit voertuig kan niet worden vergrendeld/ontgrendeld',
    ['no_key_to_this_veh'] = 'Du hast keinen Schlüssel für dieses Fahrzeug',
    ['bad_request'] = 'Falsche Angaben zur Änderung des Eigentümers.',
    ['vehicle_is_locked'] = 'Sie müssen Ihr Fahrzeug entsperren, um dies tun zu können!',
    ['doors_on'] = 'Fahrzeug entriegelt. Türen sind jetzt geöffnet.',
    ['doors_off'] = 'Fahrzeug verriegelt. Türen sind jetzt geschlossen.',
    ['engine_on'] = 'Motor erfolgreich gestartet.',
    ['engine_off'] = 'Motor ausgeschaltet.',
    ['light_on'] = 'Fahrzeugbeleuchtung eingeschaltet.',
    ['light_off'] = 'Fahrzeugbeleuchtung ausgeschaltet.',
    ['starting_engine'] = 'Motor wird gestartet...',
    ['stopping_engine'] = 'Motor wird ausgeschaltet...',
    ['starting_doors'] = 'Fahrzeug wird entriegelt...',
    ['stopping_doors'] = 'Fahrzeug wird verriegelt...',
    ['starting_light'] = 'Lichter werden eingeschaltet...',
    ['stopping_light'] = 'Lichter werden ausgeschaltet...',
}
```

</details>

<details>

<summary>es</summary>

```lua
Locales['es'] = {
    ['target_text'] = 'Comprar llaves de coche',
    ['showhelpnotify_text'] = 'Presiona [E] para abrir la tienda de llaves de coche.',
    ['menu_title'] = 'Llaves para tu vehículo',
    ['menu_buy'] = 'Comprar llaves',
    ['menu_price'] = 'Precio $%s',
    ['menu_exit'] = 'Salir',
    ['price'] = '$%s',
    ['menu_keys'] = 'Llaves - %s',
    ['menu_choose'] = 'Elegir Vehículo',
    ['menu_novehicles'] = 'No tienes ningún vehículo',
    ['menu_payment'] = 'Pago',
    ['key_info'] = 'Matrícula: %s\n\nModelo: %s\n\nVIN: %s\n\nNúmero de llave: %s',
    ['security_key'] = 'Llave de seguridad: %s',
    ['menu_bank'] = 'Banco',
    ['menu_cash'] = 'Efectivo',
    ['menu_goback'] = 'Regresar',
    ['menu_yes'] = 'Sí',
    ['menu_cancel'] = 'Cancelar Compra',
    ['menu_cancel_description'] = 'Cancelarás esta compra.',
    ['paid_keys'] = 'Has pagado $%s.',
    ['society_label'] = 'Sociedad',
    ['not_enough_money'] = 'No tienes suficiente dinero, necesitas %s',
    ['not_right_key'] = '¡Esta llave no pertenece a este vehículo!',
    ['no_vehicle_near'] = '¡No hay vehículos cerca de ti!',
    ['vehicle_locked'] = '¡El vehículo ha sido bloqueado!',
    ['vehicle_unlocked'] = '¡El vehículo ha sido desbloqueado!',
    ['vehicle_already_locked'] = 'El vehículo ya está bloqueado.',
    ['vehicle_already_unlocked'] = 'El vehículo ya está desbloqueado.',
    ['locking_vehicle'] = 'Bloqueando el vehículo',
    ['unlocking_vehicle'] = 'Desbloqueando el vehículo',
    ['vehicle_reload'] = 'Recargar vehículos',
    ['stop_spam'] = '¡Deja de presionar este botón repetidamente!',
    ['cannot_start'] = 'No puedes arrancar este coche sin la llave adecuada.',
    ['invalid_plate'] = 'La matrícula ingresada no existe o no pertenece a un jugador',
    ['command_help'] = 'Agregue las llaves al inventario de acuerdo con la matrícula del vehículo del jugador, también se puede nombrar',
    ['spz1_help'] = 'Ingrese la primera parte de la matrícula',
    ['spz2_help'] = 'Ingrese la segunda parte de la matrícula',
    ['spz_help'] = 'Ingrese la matrícula completa',
    ['model_help'] = 'Ingrese el nombre del modelo de automóvil - debe estar encendido',
    ['too_fast'] = 'El control remoto no está construido para tal velocidad.',
    ['key_removed'] = 'Se ha eliminado el código de acceso para la clave seleccionada.',
    ['not_owner'] = 'Probablemente no eres el propietario de este vehículo.',
    ['disable_keys'] = 'Bloquear controles',
    ['disable_description'] = 'Bloquea los controles seleccionados en el vehículo designado.',
    ['key_copy'] = 'Control No.%s',
    ['disable_key'] = 'Desactivar controles - Desactivar cerraduras',
    ['disable_key_description'] = '¿Estás seguro de que deseas desactivar estas cerraduras para este vehículo?',
    ['no_keys'] = 'No hay llaves para desactivar',
    ['personal_vehicles'] = 'Vehículos personales',
    ['personal_action'] = 'Acciones con llaves de coche personales',
    ['society_vehicles'] = 'Vehículos de la empresa',
    ['society_action'] = 'Acciones con llaves de coche de la empresa',
    ['uni_key'] = 'Llave universal para trabajo - %s',
    ['universal_key_label'] = 'Llave universal - %s\n\n%s',
    ['cannot_lock'] = 'Este vehículo no se puede bloquear/desbloquear',
    ['no_key_to_this_veh'] = 'No tienes las llaves de este vehículo',
    ['bad_request'] = 'Información incorrecta para cambiar el propietario.',
    ['vehicle_is_locked'] = 'Debes desbloquear tu vehículo para poder hacer esto!',
    ['doors_on'] = 'Vehículo desbloqueado. Las puertas están abiertas.',
    ['doors_off'] = 'Vehículo bloqueado. Las puertas están cerradas.',
    ['engine_on'] = 'Motor encendido correctamente.',
    ['engine_off'] = 'Motor apagado.',
    ['light_on'] = 'Luces del vehículo encendidas.',
    ['light_off'] = 'Luces del vehículo apagadas.',
    ['starting_engine'] = 'Arrancando motor...',
    ['stopping_engine'] = 'Apagando motor...',
    ['starting_doors'] = 'Desbloqueando vehículo...',
    ['stopping_doors'] = 'Bloqueando vehículo...',
    ['starting_light'] = 'Encendiendo luces...',
    ['stopping_light'] = 'Apagando luces...',
}
```

</details>

<details>

<summary>cs</summary>

```lua
Locales['cs'] = {
    ['target_text'] = 'Koupit klíče od vozidla',
    ['showhelpnotify_text'] = 'Stisknutím [E] otevřete obchod s klíči od vozidla.',
    ['menu_title'] = 'Klíče od vašeho vozidla',
    ['menu_buy'] = 'Koupit klíče',
    ['menu_price'] = 'Cena $%s',
    ['menu_exit'] = 'Konec',
    ['price'] = '$%s',
    ['menu_keys'] = 'Klíče - %s',
    ['menu_choose'] = 'Vyberte vozidlo',
    ['menu_novehicles'] = 'Nevlastníte žádná vozidla',
    ['menu_payment'] = 'Platba',
    ['key_info'] = 'SPZ: %s\n\nModel: %s\n\nVIN: %s\n\nČíslo klíče: %s',
    ['security_key'] = 'Bezpečnostní klíč: %s',
    ['menu_bank'] = 'Banka',
    ['menu_cash'] = 'Hotovost',
    ['menu_goback'] = 'Zpět',
    ['menu_yes'] = 'Ano',
    ['menu_cancel'] = 'Zrušit nákup',
    ['menu_cancel_description'] = 'Opravdu chcete zrušit tento nákup!',
    ['paid_keys'] = 'Zaplatili jste $%s.',
    ['society_label'] = 'Společnost',
    ['not_enough_money'] = 'Nemáte dost peněz, potřebujete $%s.',
    ['not_right_key'] = 'Tento klíč nepatří k tomuto vozidlu!',
    ['no_vehicle_near'] = 'Ve vaší blízkosti nejsou žádná vozidla!',
    ['vehicle_locked'] = 'Vozidlo bylo uzamčeno!',
    ['vehicle_unlocked'] = 'Vozidlo bylo odemčeno!',
    ['vehicle_already_locked'] = 'Vozidlo již bylo uzamčeno!',
    ['vehicle_already_unlocked'] = 'Vozidlo již bylo odemčeno!',
    ['locking_vehicle'] = 'Zamykání vozidla',
    ['unlocking_vehicle'] = 'Odemykání vozidla',
    ['vehicle_reload'] = 'Aktualizovat vozidla',
    ['stop_spam'] = 'Toto nelze spamovat!',
    ['cannot_start'] = 'Bez správného klíče toto auto nenastartuješ.',
    ['invalid_plate'] = 'Zadaná SPZ neexistuje nebo nepatří hráči',
    ['command_help'] = 'Dej klíče do inventáře dle dané SPZ hráčského vozidla, lze i pojmenovat',
    ['spz1_help'] = 'Zadej první část SPZ',
    ['spz2_help'] = 'Zadej druhou část SPZ',
    ['spz_help'] = 'Zadej SPZ',
    ['model_help'] = 'Zadej jméno modelu auta - musí být zapnuto',
    ['too_fast'] = 'Dálkový ovladač není schopen tak rychlo reagovat.',
    ['key_removed'] = 'Přístupový kód pro vybraný klíč byl odebrán.',
    ['not_owner'] = 'Pravděpodobně nejste vlastníkem tohoto vozidla.',
    ['disable_keys'] = 'Odebrat bezpečností klíč',
    ['disable_description'] = 'Odebere ovládání možnost odemknout vozidlo.',
    ['key_copy'] = 'Ovládání č. %s',
    ['disable_key'] = 'Zablokovat ovládání - Deaktivovat zámky',
    ['disable_key_description'] = 'Opravdu chcete deaktivovat tyto zámky pro toto vozidlo!',
    ['no_keys'] = 'Nejsou žádné klíče k deaktivování',
    ['personal_vehicles'] = 'Osobní vozidla',
    ['personal_action'] = 'Akce s klíči od osobních vozů',
    ['society_vehicles'] = 'Firemní vozidla',
    ['society_action'] = 'Akce s klíči od firemních vozů',
    ['uni_key'] = 'Univerzální klíč pro práci - %s',
    ['universal_key_label'] = 'Univerzální klíč - %s\n\n%s',
    ['cannot_lock'] = 'Toto vozidlo nelze zamknout/odemknout',
    ['no_key_to_this_veh'] = 'K tomuto vozidlu nemáš klíče',
    ['bad_request'] = 'Špatně zadané informace pro změnu majitele',
    ['vehicle_is_locked'] = 'Musíte odemknout své vozidlo, abyste toto mohli udělat!',
    ['doors_on'] = 'Vozidlo odemčeno. Dveře jsou nyní otevřené.',
    ['doors_off'] = 'Vozidlo uzamčeno. Dveře jsou nyní zavřené.',
    ['engine_on'] = 'Motor byl úspěšně nastartován.',
    ['engine_off'] = 'Motor byl vypnut.',
    ['light_on'] = 'Světla vozidla byla zapnuta.',
    ['light_off'] = 'Světla vozidla byla vypnuta.',
    ['starting_engine'] = 'Startování motoru...',
    ['stopping_engine'] = 'Vypínání motoru...',
    ['starting_doors'] = 'Odemykání vozidla...',
    ['stopping_doors'] = 'Zamykání vozidla...',
    ['starting_light'] = 'Zapínání světel...',
    ['stopping_light'] = 'Vypínání světel...',
}
```

</details>
{% endtab %}
{% endtabs %}

> If you need help with anything, do not hesitate and open a support ticket in our [discord](https://discord.gg/Yf7GrHDuUr).


---

# 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://fivecode.gitbook.io/docs/scripts/fivecode-carkeys/config-file.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.
