> For the complete documentation index, see [llms.txt](https://fivecode.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fivecode.gitbook.io/docs/scripts/fivecode-camping/config-file.md).

# 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/qb-new     - 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.

Config.Images = 'auto_detect'           -- auto_detect - Automatically finds supported inventory images.
                                        -- Short names: ox, qb, qb-new, qs, ps, codem, core, origen, tgiann, jaksam, ak47.
                                        -- You can also enter a custom image path, for example: my_inventory/html/images/.

--[[ Menu ]]--
Config.Menu = 'custom'                  -- custom        - Built-in FiveCode NUI menu, no external resource needed.
                                        -- 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.

Config.DialogMenu = 'auto_detect'       -- custom        - Built-in FiveCode NUI input dialog, no external resource needed.
                                        -- auto_detect   - Automatically finds and sets supported dialog menu on your server.
                                        -- ox            - https://overextended.github.io/docs.
                                        -- esx           - https://github.com/martintj22/esx_menu_dialog.
                                        -- qb            - https://github.com/qbcore-framework/qb-input.

--[[ Action Menu ]]--
Config.ActionMenu = 'auto_detect'       -- auto_detect   - Automatically finds and sets supported action menu on your server.
                                        -- ox            - https://github.com/overextended/ox_target.
                                        -- qb            - https://github.com/qbcore-framework/qb-target.
                                        -- q             - https://github.com/thelindat/qtarget.
                                        -- helpox        - https://overextended.dev/ox_lib/Modules/Interface/Client/textui#libshowtextui.
                                        -- helpqb        - https://docs.qbcore.org/qbcore-documentation/qb-core/drawtext.
                                        -- helpesx       - https://esx-brasil.github.io/es_extended/client/functions/showhelpnotification.

--[[ ProgressBar ]]--
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.HelpNotify = 'custom'            -- custom         - Built-in FiveCode NUI text UI, no external resource needed.
                                        -- auto_detect    - Automatically finds and sets supported help notify on your server.
                                        -- esx            - https://esx-brasil.github.io/es_extended/client/functions/showhelpnotification/.
                                        -- ox             - https://overextended.dev/ox_lib/Modules/Interface/Client/textui#libshowtextui.
                                        -- qb             - https://docs.qbcore.org/qbcore-documentation/qb-core/drawtext.

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

--[[ Logs ]]--
Config.TimeFormat = '%H:%M'                   -- Time format used in discord logs - https://www.lua.org/pil/22.1.html.
Config.DiscordLogs = {
    Icon = 'https://imgur.com/OrnXItg.png',   -- Icon that will appear in discord logs.
    ServerName = 'Fivecode Scripts',          -- Name that will appear in discord logs.
    -- You can set discord webhooks in sv_utils.lua.
}

--[[ Main ]]--
Config.ObjectSpawnDistance = 85   -- The distance at which objects spawn for each player.
Config.SaveDataInterval = 2       -- Status save interval in minutes: object changes (place, pickup) are saved instantly.
Config.Keys = {
    exit = 38,        -- [E] Exit chair and tent key.
    openStash = 58,   -- [G] Open stash.
    placingObject = {
        place = 38,      -- [E] Place object on the ground.
        exit = 348,      -- [SCROLLPRESS] Exit placing objects.
        rotateL = 181,   -- [SCROLLUP] Rotate position of the object to left side.
        rotateR = 180,   -- [SCROLLDOWN] Rotate position of the object to right side.
    }
}
Config.Admin = {
    command = 'adminobjects',                  -- Command used to open the camping admin menu.
    groups = {'admin', 'superadmin', 'god'},   -- Framework groups allowed to use the admin menu.
    maxCooldown = 86400,                       -- Maximum player camping cooldown in seconds.
}
Config.Persistence = {
    storeMetadata = 'auto_detect',   -- Stores object data in the inventory item when supported.
    deleteStashes = {
        onAdminDelete = true,   -- Delete stash contents when an admin deletes the object.
        onPickup = false,       -- Delete stash contents when its owner picks up the object.
    },
}
--[[ Objects ]]--
Config.Objects = {
    statusDisplay = {
        distance = 6.5,   -- Maximum distance at which status displays are rendered.
        scale = 0.85,     -- Size of every world-space status display.
    },
    codelock = {
        use = true,          -- Allow codelocks on supported player-owned objects.
        item = 'codelock',   -- Inventory item required to add a codelock.
    },
    campfire = {
        item = 'campfire',
        activeItem = 'campfireOnFire',
        props = {on = 'fivecode_campfire_onfire', off = 'fivecode_campfire'},
        maxUsers = 5,   -- Maximum players that can cook at once.
        health = {
            use = true,        -- Regenerate player health near a lit campfire.
            maxHealth = 180,   -- Stop regenerating at this health value.
        },
        status = {
            type = 'wood',   -- Object status stored in the database.
            default = 100,   -- Starting value when the object is placed.
            max = 100,       -- Maximum status value.
            usage = 1,       -- Amount consumed each interval.
            interval = 60,   -- Consumption interval in seconds.
            refillItems = {
                {item = 'campfirewood', amount = 10},   -- Item and status amount restored per use.
            },
            display = {
                use = true,                       -- Show the world-space status display.
                position = vec3(0.0, 0.0, 0.8),   -- Local X, Y and Z offset from the object.
                vertical = false,                 -- false: horizontal and camera facing player, true: vertical with fixed object rotation.
            },
        },
    },
    shower = {
        item = 'campingshower',
        activeItem = 'campingshowerTurnedOn',
        props = {on = 'fivecode_showeron', off = 'fivecode_shower'},
        maxUsers = 1,
        status = {
            type = 'water',
            default = 100,
            max = 100,
            usage = 1,
            interval = 60,
            refillItems = {
                {item = 'watercanister', amount = 10},
            },
            display = {
                use = true,
                position = vec3(0.0, -0.11, 1.21),
                vertical = true,
            },
        },
    },
    chair = {
        item = 'campingchair',
        prop = 'prop_skid_chair_01',
    },
    tent = {
        item = 'campingtent',
        prop = 'prop_skid_tent_cloth',
        maxUsers = 2,
        stash = {slots = 40, weight = 100000},   -- Stash slot count and maximum weight.
        codelock = true,                         -- Allow this object to receive a codelock.
    },
    sleepingBag = {
        item = 'campingsleepingbag',
        prop = 'prop_skid_sleepbag_1',
    },
    cooler = {
        item = 'campingcooler',
        prop = 'v_ret_fh_coolbox',
        stash = {slots = 10, weight = 25000},   -- Stash slot count and maximum weight.
        codelock = true,                        -- Allow this object to receive a codelock.
    },
    beerBarrel = {
        item = 'campingbeerbarrel',
        prop = 'fivecode_keg',
        cups = {empty = 'emptybeercup', full = 'fullbeercup'},
        status = {
            type = 'beer',
            default = 100,
            max = 100,
            usage = 5,
            refillItems = {
                {item = 'beerrefill', amount = 10},
            },
            display = {
                use = true,
                position = vec3(0.0, 0.0, 1.1),
                vertical = false,
            },
        },
    },
}

--[[ Light Items ]]--
Config.LightItems = {
    use = true,   -- Require an item to light a campfire.
    items = {
        {item = 'matches', remove = true, amount = 1, breakChance = 10},   -- breakChance is a percentage.
        {item = 'lighter', remove = false, amount = 1, breakChance = 0},
    },
}

--[[ Blacklisted Zones ]]--
Config.BlacklistedZones = {
    use = true,   -- Prevent camping objects from being placed in these zones.
    zones = {
        {coords = vec3(446.92, -982.53, 30.68), radius = 50},   -- Zone center and radius in meters.
        {coords = vec3(299.18, -584.84, 43.26), radius = 75},
        {coords = vec3(-465.43, 5999.51, 31.30), radius = 50},
        {coords = vec3(1838.94, 3688.99, 39.03), radius = 50},
        {coords = vec3(-1080.06, -847.53, 39.03), radius = 75},
        {coords = vec3(-457.80, -327.86, 43.62), radius = 75},
    },
}

--[[ NPC Shop ]]--
Config.NPCShop = {
    use = true,   -- Enable every configured camping shop.
    locations = {
        {
            use = true,                                       -- Enable this specific shop location.
            payment = {cash = true, bank = true},             -- Accepted payment methods.
            coords = vec4(-679.33, 5834.14, 17.31, 133.22),   -- NPC position and heading.
            npc = {
                ped = 'cs_hunter',                  -- NPC model.
                anim = 'WORLD_HUMAN_GUARD_STAND',   -- Scenario played by the NPC.
            },
            blip = {
                use = true,                                  -- Show this shop on the map.
                info = {id = 141, color = 56, size = 0.8},   -- Blip sprite, color and scale.
                title = 'Camping Shop',
            },
            target = {
                label = 'Open Shop',
                icon = 'fas fa-hand',
            },
        },
    },
    categories = {
        ['Camping Gear'] = {
            {item = 'campfire', label = 'Campfire', icon = 'campfire.png', price = 20},
            {item = 'campingchair', label = 'Camping Chair', icon = 'campingchair.png', price = 50},
            {item = 'campingtent', label = 'Camping Tent', icon = 'campingtent.png', price = 125},
            {item = 'campingsleepingbag', label = 'Sleeping Bag', icon = 'campingsleepingbag.png', price = 75},
            {item = 'campingshower', label = 'Camping Shower', icon = 'campingshower.png', price = 250},
            {item = 'campingcooler', label = 'Camping Cooler', icon = 'campingcooler.png', price = 20},
            {item = 'campingbeerbarrel', label = 'Beer Barrel', icon = 'campingbeerbarrel.png', price = 50},
        },
        ['Food & Drinks'] = {
            {item = 'smores', label = 'Smores', icon = 'smores.png', price = 3},
            {item = 'emptybeercup', label = 'Beer Cup', icon = 'emptybeercup.png', price = 2},
        },
        ['Tools & Supplies'] = {
            {item = 'lighter', label = 'Lighter', icon = 'lighter.png', price = 10},
            {item = 'matches', label = 'Matches', icon = 'matches.png', price = 5},
            {item = 'codelock', label = 'Codelock', icon = 'codelock.png', price = 25},
        },
    },
}

--[[ Custom Objects ]]--
Config.CustomObjects = {
    {
        label = 'Example Item',                         -- Name displayed in the interaction menu.
        item = 'exampleitem',                           -- Inventory item used to place the object.
        prop = 'exampleprop',                           -- Model spawned in the world.
        target = 'Interact with this example object',   -- Interaction prompt text.
        distance = 2.5,                                 -- Maximum interaction distance.
        offset = 0.50,                                  -- Vertical placement offset.
        menu = {
            {
                title = 'Test Label',
                description = 'Test Text',
                icon = 'fas fa-circle-dot',
                event = 'fivecode_camping:testtest',   -- Client event triggered by this option.
            },
            {
                title = 'Test Label 2',
                description = 'Test Text 2',
                icon = 'fas fa-circle-dot',
                event = 'fivecode_camping:testEvent2'
            },
        },
    },
}

--[[ Campfire Recipes ]]--
Config.CampfireRecipes = {
    {
        label = 'Cooked Meat',   -- The name of the item as it appears in the menu.
        item = {
            -- Items required to start cooking. These will be removed from the player's inventory.
            rawIngredients = {
                {item = 'rawmeat', label = 'Raw Meat', amount = 1},
            },

            -- Items received after cooking is complete. These will be added to the player's inventory.
            cookedIngredients = {
                {item = 'cookedmeat', amount = 1},
            },
        },

        -- Visual props displayed on the stick during cooking.
        props = {raw = 'fivecode_rawmeat', cooked = 'fivecode_cookedmeat'},
        cookTime = 15,   -- Time it will take to cook this item [In seconds].
    },
    {
        label = 'Smores',
        item = {
            rawIngredients = {
                {item = 'smores', label = 'Packaged Smores', amount = 1},
            },
            cookedIngredients = {
                {item = 'cookedsmores', amount = 1},
            },
        },
        props = {raw = 'fivecode_smores', cooked = 'fivecode_cookedsmores'},
        cookTime = 5,
    },
}
```

{% endtab %}

{% tab title="LOCALES" %}

<details>

<summary>en</summary>

```lua
Locales['en'] = {
    --[[ Interactions ]]--
    ['interact_campfire'] = 'Interact with this campfire',
    ['interact_chair'] = 'Interact with this chair',
    ['interact_tent'] = 'Interact with this tent',
    ['interact_sleepingbag'] = 'Interact with this sleeping bag',
    ['interact_shower'] = 'Interact with this shower',
    ['interact_cooler'] = 'Interact with this cooler',
    ['interact_barrel'] = 'Interact with this barrel',

    --[[ Admin Menu ]]--
    ['admin_menu_header'] = 'Admin Object Menu',
    ['admin_menu_no_objects'] = 'No objects to manage',
    ['admin_menu_title'] = 'Object Id - %s',
    ['admin_menu_description'] = 'Item: %s\nDistance: %sm\nOutline: %s',
    ['admin_menu_description_codelock'] = '\nCodelock: %s',
    ['admin_menu_owner'] = 'Owner',
    ['admin_menu_owner_description'] = 'Name: %s\nIdentifier: %s',
    ['admin_menu_teleport'] = 'Teleport',
    ['admin_menu_teleport_description'] = 'Teleport to this object.',
    ['admin_menu_destroy'] = 'Destroy',
    ['admin_menu_destroy_description'] = 'Destroy this object.',
    ['admin_menu_outline'] = 'Draw Outline',
    ['admin_menu_outline_description'] = 'Draw an outline around this object for yourself.',
    ['admin_menu_outlineremove'] = 'Remove Outline',
    ['admin_menu_outlineremove_description'] = 'Remove outline from this object.',
    ['admin_nopermissions'] = 'You don\'t have enough permissions to use this command!',
    ['admin_nostatus'] = 'This object does not use a status level!',
    ['admin_notlocked'] = 'This object does not have an active codelock!',
    ['admin_already_empty'] = 'This object is already empty!',
    ['camping_cooldown_blocked'] = 'You are blocked from camping interactions for another %s!',
    ['camping_cooldown_applied'] = 'You have been placed on a camping cooldown for %s.',
    ['camping_cooldown_removed'] = 'Your camping cooldown has been removed.',
    ['admin_camping_cooldown_applied'] = 'You placed %s on a camping cooldown for %s.',
    ['admin_camping_cooldown_removed'] = 'You removed %s\'s camping cooldown.',

    --[[ Campfire ]]--
    ['campfire'] = 'campfire',
    ['campfire_menu_header'] = 'Campfire',
    ['campfire_menu_light'] = 'Light campfire',
    ['campfire_menu_lightup'] = 'Light up',
    ['campfire_menu_light_description'] = 'Light this campfire.',
    ['campfire_lighting'] = 'Lighting campfire...',
    ['campfire_menu_cooking'] = 'Cook',
    ['campfire_menu_cooking_description'] = 'Cook in this campfire.',
    ['campfire_menu_cooking_ingredients_description'] = 'Cooking time: %ss\n\n Ingredients Needed:\n%s',
    ['campfire_cooking'] = 'Cooking %s...',
    ['campfire_menu_destroy'] = 'Destroy',
    ['campfire_menu_destroy_description'] = 'Destroy this campfire.',
    ['campfire_menu_putout'] = 'Put out',
    ['campfire_menu_putout_description'] = 'Put out this campfire.',
    ['campfire_destroying'] = 'Destroying campfire...',
    ['campfire_puttingout'] = 'Putting out campfire...',
    ['campfire_full'] = 'This campfire is full!',
    ['campfire_playeralreadylighting'] = 'Someone is already lighting up this campfire!',
    ['campfire_somebodycooking'] = 'You cannot destroy a campfire somebody is cooking on!',
    ['campfire_noitem'] = 'You don\'t have the right item to light this campfire with!',
    ['campfire_nowood'] = 'This campfire has no wood left!',
    ['campfire_menu_refill'] = 'Add wood',
    ['campfire_menu_refill_description'] = 'Add wood to this campfire.',

    --[[ Chair ]]--
    ['chair'] = 'chair',
    ['chair_control_exit'] = '[E] - Exit Chair',
    ['chair_menu_header'] = 'Camping Chair',
    ['chair_menu_sitdown'] = 'Sit down',
    ['chair_menu_sitdown_description'] = 'Sit down on the chair.',
    ['chair_playeralreadysitting'] = 'You cannot pick up a chair someone is sitting on!',

    --[[ Sleeping Bag ]]--
    ['sleepingbag'] = 'sleeping bag',
    ['sleepingbag_control_exit'] = '[E] - Exit Sleeping Bag',
    ['sleepingbag_menu_header'] = 'Sleeping Bag',
    ['sleepingbag_menu_laydown'] = 'Lay down',
    ['sleepingbag_menu_laydown_description'] = 'Lay down on this sleeping bag.',
    ['sleepingbag_somebodylayingin'] = 'You cannot pick up a sleeping bag someone is laying in!',

    --[[ Shower ]]--
    ['shower'] = 'shower',
    ['shower_control_exit'] = '[E] - Exit Shower',
    ['shower_menu_header'] = 'Camping Shower',
    ['shower_menu_turnon'] = 'Turn on',
    ['shower_menu_turnon_description'] = 'Turn on this shower.',
    ['shower_menu_turnoff'] = 'Turn off',
    ['shower_menu_turnoff_description'] = 'Turn off this shower.',
    ['shower_menu_showeryourself'] = 'Shower',
    ['shower_menu_showeryourself_description'] = 'Take a shower and clean yourself.',
    ['shower_turnedon'] = 'You cannot pick up a shower that is turned on!',
    ['shower_full'] = 'There is no space for you in this shower!',
    ['shower_toofar'] = 'You are too far away from the shower!',
    ['shower_somebodyshowering'] = 'You cannot turn off a shower somebody is showering with!',
    ['shower_empty'] = 'This shower is out of water!',
    ['shower_menu_refill'] = 'Refill water',
    ['shower_menu_refill_description'] = 'Refill water in this shower.',

    --[[ Tent ]]--
    ['tent_control_exit'] = '[E] - Exit Tent',
    ['tent_control_stash'] = '[G] - Open Stash',
    ['tent'] = 'tent',
    ['tent_menu_header'] = 'Camping Tent',
    ['tent_menu_getinside'] = 'Get inside',
    ['tent_menu_getinside_description'] = 'Get inside this tent.',
    ['tent_full'] = 'This tent is full!',
    ['tent_somebodyin'] = 'You cannot pick up a tent someone is in!',

    --[[ Cooler ]]--
    ['cooler'] = 'cooler',
    ['cooler_menu_header'] = 'Camping Cooler',
    ['cooler_menu_open'] = 'Open',
    ['cooler_menu_open_description'] = 'Open this cooler.',

    --[[ Beer Barrel ]]--
    ['beerbarrel'] = 'beer barrel',
    ['beerbarrel_menu_header'] = 'Camping Beer Barrel',
    ['beerbarrel_menu_fill'] = 'Fill',
    ['beerbarrel_menu_fill_description'] = 'Fill your cup with beer.',
    ['beerbarrel_donthavecup'] = 'You dont have a cup to fill!',
    ['beerbarrel_somebodyfilling'] = 'You cannout take a beer barrel somebody is filling their cup from!',
    ['beerbarrel_empty'] = 'This barrel is empty!',
    ['beerbarrel_menu_refill'] = 'Refill',
    ['beerbarrel_menu_refill_description'] = 'Refill this beer barrel.',

    --[[ NPC Shop ]]--
    ['npcstore_payment_no_method'] = 'No payment method available',
    ['npcstore_menu_bank'] = 'Bank',
    ['npcstore_menu_cash'] = 'Cash',
    ['npcstore_ui_title'] = 'Camping Shop',
    ['npcstore_ui_subtitle'] = 'Objects',
    ['npcstore_ui_objects'] = 'Objects',
    ['npcstore_ui_basket'] = 'Basket / Cart',
    ['npcstore_ui_items'] = 'Items',
    ['npcstore_ui_empty'] = 'Basket is empty',
    ['npcstore_ui_empty_hint'] = 'Add items to begin',
    ['npcstore_ui_add'] = 'Add',
    ['npcstore_ui_total'] = 'Total',
    ['npcstore_ui_checkout'] = 'Checkout',
    ['npcstore_ui_failed'] = 'Purchase failed',
    ['npcstore_purchased'] = 'You just purchased %s(%sx) for $%s.',
    ['npcstore_cart_purchased'] = 'You purchased %sx item(s) for $%s.',
    ['npcstore_npcenough'] = 'You dont have enough money, you are missing $%s.',

    --[[ Codelock ]]--
    ['codelock_menu_lock'] = 'Add codelock',
    ['codelock_menu_lock_description'] = 'Add codelock.',
    ['codelock_menu_unlock'] = 'Remove codelock',
    ['codelock_menu_unlock_description'] = 'Remove codelock.',
    ['codelock_menu_locked'] = ' - (locked)',
    ['codelock_menu_unlocked'] = ' - (unlocked)',
    ['codelock_menu_add_lock'] = 'Add codelock',
    ['codelock_menu_add_lock_description'] = 'Code',
    ['codelock_menu_remove_lock'] = 'Unlock Codelock',
    ['codelock_menu_remove_lock_description'] = 'Code',
    ['codelock_ui_enter'] = 'Enter',
    ['codelock_ui_4digits_required'] = '4 digits required',
    ['codelock_ui_ready'] = 'Ready',
    ['codelock_ui_enter_4digit_pin'] = 'Enter a 4 digit PIN',
    ['codelock_ui_connection_failed'] = 'Connection failed',
    ['codelock_ui_set_failed'] = 'Unable to set codelock',
    ['codelock_menu_wrong_code'] = 'Wrong code!',
    ['codelock_menu_pick_locked'] = 'You cannot pick up a locked %s!',
    ['codelock_menu_4digits'] = 'Number must have 4 digits!',
    ['codelock_menu_already_locked'] = 'This tent already has a codelock!',
    ['codelock_menu_already_unlocked'] = 'This tent does not have a codelock!',
    ['codelock_menu_not_ablt_to_lock'] = 'You are not able to lock this tent!',
    ['codelock_menu_no_codelock'] = 'You dont have a code lock!',
    ['usableitem_progressbar_eating'] = 'Eating',
    ['usableitem_progressbar_drinking'] = 'Drinking',

    --[[ Discord Logs ]]--
    ['discord_logs_player_name'] = 'Player Name:',
    ['discord_logs_player_discord'] = 'Player Discord:',
    ['discord_logs_player_char'] = 'Player Char:',
    ['discord_logs_supply_shop'] = 'Npc shop purchase',
    ['discord_logs_supply_shop_desc'] = 'Item: **%s** \n Amount: **%s** \n Price **$%s** \n Payment type: **%s**',
    ['discord_logs_admin_menu_destroyed'] = 'Destroyed object',
    ['discord_logs_admin_menu_destroyed_desc'] = 'Admin destroyed an object(**#%s**).',
    ['discord_logs_admin_menu_teleport'] = 'Object teleport',
    ['discord_logs_admin_menu_teleport_desc'] = 'Admin teleported to an object(**#%s**).',
    ['discord_logs_admin_menu_cooldown'] = 'Camping cooldown updated',
    ['discord_logs_admin_menu_cooldown_desc'] = 'Admin applied a camping cooldown of **%s** to player **%s**.',
    ['discord_logs_admin_menu_cooldown_removed_desc'] = 'Admin removed the camping cooldown of player **%s**.',
    ['discord_logs_admin_menu_deleteall'] = 'Deleted all player objects',
    ['discord_logs_admin_menu_deleteall_desc'] = 'Admin deleted all objects (**%s**) owned by **%s**.',
    ['admin_deleted_player_objects'] = 'Deleted %s camping object(s) owned by %s.',
    ['admin_no_player_objects'] = '%s has no camping objects to delete.',
    ['player_objects_deleted_by_admin'] = 'An admin removed %s of your camping object(s).',
    ['object_removed_by_admin'] = 'The object you were using was removed by an admin!',
    ['admin_object_deleted'] = 'Object #%s deleted successfully.',
    ['discord_logs_locks_used'] = 'Player used a codelock',
    ['discord_logs_locks_used_desc'] = 'Player used a codelock on an object(**#%s**).',
    ['discord_logs_locks_removed'] = 'Player removed a codelock',
    ['discord_logs_locks_removed_desc'] = 'Player removed a codelock on an object(**#%s**).',

    --[[ Admin UI ]]--
    ['admin_ui_title'] = 'Admin Objects',
    ['admin_ui_objects'] = 'Objects',
    ['admin_ui_logs'] = 'Logs',
    ['admin_ui_map'] = 'Map',
    ['admin_ui_by_id'] = 'By ID',
    ['admin_ui_nearest'] = 'Nearest',
    ['admin_ui_cooldowns'] = 'Cooldowns',
    ['admin_ui_active_cooldowns'] = 'Active Cooldowns',
    ['admin_ui_search_placeholder'] = 'Type, ID, owner, player...',
    ['admin_ui_categories'] = 'Categories',
    ['admin_ui_reset'] = 'Reset',
    ['admin_ui_action'] = 'Action',
    ['admin_ui_object'] = 'Object',
    ['admin_ui_object_id'] = 'Object ID',
    ['admin_ui_player'] = 'Player',
    ['admin_ui_server_id'] = 'Server ID',
    ['admin_ui_identifier'] = 'Identifier',
    ['admin_ui_time'] = 'Time',
    ['admin_ui_loading_logs'] = 'Loading logs...',
    ['admin_ui_no_log_entries'] = 'No log entries found',
    ['admin_ui_no_objects_found'] = 'No objects found',
    ['admin_ui_no_matching_objects'] = 'No matching objects',
    ['admin_ui_no_active_cooldowns'] = 'No active cooldowns',
    ['admin_ui_no_recent_actions'] = 'No recent actions',
    ['admin_ui_players'] = 'players',
    ['admin_ui_types'] = 'types',
    ['admin_ui_shown'] = 'shown',
    ['admin_ui_object_singular'] = 'object',
    ['admin_ui_object_plural'] = 'objects',
    ['admin_ui_log_entry_singular'] = 'log entry',
    ['admin_ui_log_entry_plural'] = 'log entries',
    ['admin_ui_id'] = 'ID',
    ['admin_ui_type'] = 'Type',
    ['admin_ui_owner'] = 'Owner',
    ['admin_ui_player_name'] = 'Player Name',
    ['admin_ui_total_objects'] = 'Total Objects',
    ['admin_ui_cooldown'] = 'Cooldown',
    ['admin_ui_camping_cooldown'] = 'Camping Cooldown',
    ['admin_ui_recent_actions'] = 'Recent Actions',
    ['admin_ui_minutes'] = 'Minutes',
    ['admin_ui_apply'] = 'Apply',
    ['admin_ui_clear'] = 'Clear',
    ['admin_ui_delete_all_player_objects'] = 'Delete All Player Objects',
    ['admin_ui_click_again_confirm'] = 'Click again to confirm',
    ['admin_ui_removing_objects'] = 'Removing Objects...',
    ['admin_ui_action_failed'] = 'Action failed',
    ['admin_ui_enter_cooldown_minutes'] = 'Enter a cooldown duration in minutes.',
    ['admin_ui_none'] = 'None',
    ['admin_ui_unknown'] = 'Unknown',
    ['admin_ui_offline'] = 'Offline',
    ['admin_ui_status'] = 'Status',
    ['admin_ui_no_status'] = 'No Status',
    ['admin_ui_level'] = 'Level',
    ['admin_ui_coords'] = 'Coords',
    ['admin_ui_created'] = 'Created',
    ['admin_ui_distance'] = 'Distance',
    ['admin_ui_codelock'] = 'Codelock',
    ['admin_ui_reveal'] = 'Reveal',
    ['admin_ui_hide'] = 'Hide',
    ['admin_ui_teleport'] = 'Teleport',
    ['admin_ui_mark'] = 'Mark',
    ['admin_ui_unmark'] = 'Unmark',
    ['admin_ui_delete'] = 'Delete',
    ['admin_ui_refill'] = 'Refill',
    ['admin_ui_empty'] = 'Empty',
    ['admin_ui_light'] = 'Light',
    ['admin_ui_extinguish'] = 'Extinguish',
    ['admin_ui_start'] = 'Start',
    ['admin_ui_stop'] = 'Stop',
    ['admin_ui_remove_lock'] = 'Remove Lock',
    ['admin_ui_copied'] = 'Copied!',
    ['admin_ui_on_cooldown'] = 'On Cooldown',
    ['admin_ui_restricted_zones'] = 'Restricted Zones',
    ['admin_ui_turned_on'] = 'Turned On',
    ['admin_ui_turned_off'] = 'Turned Off',
    ['admin_ui_locked'] = 'Locked',
    ['admin_ui_unlocked'] = 'Unlocked',
    ['admin_ui_target_player'] = 'Target: %s',
    ['admin_ui_player_cooldown'] = 'Player Cooldown',
    ['admin_ui_put_on_cooldown'] = 'Put on cooldown%s',
    ['admin_ui_set_cooldown'] = 'Set cooldown: %s%s',
    ['admin_ui_cooldown_for'] = 'for %s',
    ['admin_ui_cooldown_removed'] = 'Cooldown removed',
    ['admin_ui_cleared_cooldown'] = 'Cleared cooldown: %s',
    ['admin_ui_admin'] = 'Admin',
    ['admin_ui_deleted_all_objects'] = 'Deleted all objects (%s) of %s',
    ['admin_ui_category_campfire'] = 'Campfire',
    ['admin_ui_category_tent'] = 'Tent',
    ['admin_ui_category_cooler'] = 'Cooler',
    ['admin_ui_category_shower'] = 'Shower',
    ['admin_ui_category_chair'] = 'Chair',
    ['admin_ui_category_sleeping_bag'] = 'Sleeping Bag',
    ['admin_ui_category_beer_barrel'] = 'Beer Barrel',
    ['admin_ui_category_other'] = 'Other',
    ['admin_ui_water'] = 'Water',
    ['admin_ui_beer'] = 'Beer',
    ['admin_ui_wood'] = 'Wood',
    ['admin_ui_log_placed'] = 'Placed',
    ['admin_ui_log_picked_up'] = 'Picked Up',
    ['admin_ui_log_deleted'] = 'Deleted',
    ['admin_ui_log_admin_deleted'] = 'Admin Deleted',
    ['admin_ui_log_refilled'] = 'Refilled',
    ['admin_ui_log_admin_refilled'] = 'Admin Refilled',
    ['admin_ui_log_emptied'] = 'Emptied',
    ['admin_ui_log_admin_emptied'] = 'Admin Emptied',
    ['admin_ui_log_turned_on'] = 'Turned On',
    ['admin_ui_log_admin_turned_on'] = 'Admin Turned On',
    ['admin_ui_log_turned_off'] = 'Turned Off',
    ['admin_ui_log_admin_turned_off'] = 'Admin Turned Off',
    ['admin_ui_log_locked'] = 'Locked',
    ['admin_ui_log_unlocked'] = 'Unlocked',
    ['admin_ui_log_admin_unlocked'] = 'Admin Unlocked',
    ['admin_ui_log_cooldown_added'] = 'Cooldown Added',
    ['admin_ui_log_cooldown_removed'] = 'Cooldown Removed',
    ['admin_ui_log_cooldown_set_short'] = 'Cooldown Set',
    ['admin_ui_log_admin_set_short'] = 'Admin Set',
    ['admin_ui_log_admin_cooldown_short'] = 'Admin Cooldown',
    ['admin_ui_log_cooldown_clear_short'] = 'Cooldown Clear',
    ['admin_ui_log_admin_clear_short'] = 'Admin Clear',
    ['admin_ui_log_admin_refill_short'] = 'Admin Refill',
    ['admin_ui_log_admin_empty_short'] = 'Admin Empty',
    ['admin_ui_log_admin_on_short'] = 'Admin On',
    ['admin_ui_log_admin_off_short'] = 'Admin Off',
    ['admin_ui_log_admin_unlock_short'] = 'Admin Unlock',

    --[[ Other ]]--
    ['pickup'] = 'Pick up',
    ['pickup_description'] = 'Pick up this %s.',
    ['pickingobject'] = 'Picking up %s...',
    ['placingobject'] = 'Placing %s...',
    ['fillingbeercup'] = 'Filling cup...',
    ['refilling'] = 'Refilling...',
    ['status_description'] = 'Current object status.',
    ['status_water_level'] = 'Water Level: %s',
    ['status_beer_level'] = 'Beer Level: %s',
    ['status_wood_level'] = 'Wood Level: %s',
    ['metadata_stash_tent'] = 'This tent has a stash with stored items.',
    ['metadata_stash_cooler'] = 'Items stored in this cooler are preserved.',
    ['objectpacing_controls'] = '[E] - Place object, [SCROLLPRESS] - Cancel, [SCROLLUP/SCROLLDOWN] - Rotate',
    ['object_not_found'] = 'Object not found.',
    ['missingitem'] = 'You are missing: %s.',
    ['itembroke'] = 'Your item broke!',
    ['donthaveitem'] = 'You don\'t have the selected item.',
    ['refill_full'] = 'This is already full!',
    ['refill_noitem'] = 'You don\'t have the required item!',
    ['actioncanceled'] = 'Action was canceled!',
    ['itemcannotbeplaced'] = 'Item cannot be placed here!',
    ['cannotwhileinvehicle'] = 'You cannot do this while you are in a vehicle!',
    ['player_busy'] = 'You cannot do this right now!',
    ['occupied'] = 'This %s is occupied!',
    ['blacklistedzone'] = 'You are not allowed to place objects in your current location!',
}
```

</details>

<details>

<summary>de</summary>

```lua
Locales['de'] = {
    --[[ Interactions ]]--
    ['interact_campfire'] = 'Interagiere mit diesem Lagerfeuer',
    ['interact_chair'] = 'Interagiere mit diesem Stuhl',
    ['interact_tent'] = 'Interagiere mit diesem Zelt',
    ['interact_sleepingbag'] = 'Interagiere mit diesem Schlafsack',
    ['interact_shower'] = 'Interagiere mit dieser Dusche',
    ['interact_cooler'] = 'Interagiere mit diesem Kühler',
    ['interact_barrel'] = 'Interagiere mit diesem Fass',

    --[[ Admin Menu ]]--
    ['admin_menu_header'] = 'Admin Objekt Menü',
    ['admin_menu_no_objects'] = 'Keine Objekte zu verwalten',
    ['admin_menu_title'] = 'Objekt Id - %s',
    ['admin_menu_description'] = 'Gegenstand: %s\nEntfernung: %sm\nUmriss: %s',
    ['admin_menu_description_codelock'] = '\nCode-Schloss: %s',
    ['admin_menu_owner'] = 'Besitzer',
    ['admin_menu_owner_description'] = 'Name: %s\nKennung: %s',
    ['admin_menu_teleport'] = 'Teleportieren',
    ['admin_menu_teleport_description'] = 'Zu diesem Objekt teleportieren.',
    ['admin_menu_destroy'] = 'Zerstören',
    ['admin_menu_destroy_description'] = 'Dieses Objekt zerstören.',
    ['admin_menu_outline'] = 'Umriss zeichnen',
    ['admin_menu_outline_description'] = 'Zeichne einen Umriss um dieses Objekt für dich selbst.',
    ['admin_menu_outlineremove'] = 'Umriss entfernen',
    ['admin_menu_outlineremove_description'] = 'Entferne den Umriss von diesem Objekt.',
    ['admin_nopermissions'] = 'Du hast nicht genügend Berechtigungen, um diesen Befehl zu verwenden!',
    ['admin_nostatus'] = 'Dieses Objekt verwendet keinen Statuswert!',
    ['admin_notlocked'] = 'Dieses Objekt hat kein aktives Codeschloss!',
    ['admin_already_empty'] = 'Dieses Objekt ist bereits leer!',
    ['camping_cooldown_blocked'] = 'Du bist noch für %s von Camping-Interaktionen gesperrt!',
    ['camping_cooldown_applied'] = 'Ein Admin hat dich für %s von Camping-Interaktionen gesperrt.',
    ['camping_cooldown_removed'] = 'Deine Camping-Sperre wurde aufgehoben.',
    ['admin_camping_cooldown_applied'] = 'Du hast %s für %s mit einer Camping-Sperre belegt.',
    ['admin_camping_cooldown_removed'] = 'Du hast die Camping-Sperre von %s entfernt.',

    --[[ Campfire ]]--
    ['campfire'] = 'Lagerfeuer',
    ['campfire_menu_header'] = 'Lagerfeuer',
    ['campfire_menu_light'] = 'Lagerfeuer anzünden',
    ['campfire_menu_lightup'] = 'Anzünden',
    ['campfire_menu_light_description'] = 'Zünde dieses Lagerfeuer an.',
    ['campfire_lighting'] = 'Lagerfeuer wird angezündet...',
    ['campfire_menu_cooking'] = 'Kochen',
    ['campfire_menu_cooking_description'] = 'Koche in diesem Lagerfeuer.',
    ['campfire_menu_cooking_ingredients_description'] = 'Kochzeit: %ss\n\n Benötigte Zutaten:\n%s',
    ['campfire_cooking'] = 'Koche %s...',
    ['campfire_menu_destroy'] = 'Zerstören',
    ['campfire_menu_destroy_description'] = 'Zerstöre dieses Lagerfeuer.',
    ['campfire_menu_putout'] = 'Löschen',
    ['campfire_menu_putout_description'] = 'Lösche dieses Lagerfeuer.',
    ['campfire_destroying'] = 'Lagerfeuer wird zerstört...',
    ['campfire_puttingout'] = 'Lagerfeuer wird gelöscht...',
    ['campfire_full'] = 'Dieses Lagerfeuer ist voll!',
    ['campfire_playeralreadylighting'] = 'Jemand zündet bereits dieses Lagerfeuer an!',
    ['campfire_somebodycooking'] = 'Du kannst kein Lagerfeuer zerstören, auf dem jemand kocht!',
    ['campfire_noitem'] = 'Du hast nicht den richtigen Gegenstand, um dieses Lagerfeuer anzuzünden!',
    ['campfire_nowood'] = 'Dieses Lagerfeuer hat kein Holz mehr!',
    ['campfire_menu_refill'] = 'Holz hinzufügen',
    ['campfire_menu_refill_description'] = 'Holz zu diesem Lagerfeuer hinzufügen.',

    --[[ Chair ]]--
    ['chair'] = 'Stuhl',
    ['chair_control_exit'] = '[E] - Stuhl verlassen',
    ['chair_menu_header'] = 'Camping-Stuhl',
    ['chair_menu_sitdown'] = 'Hinsetzen',
    ['chair_menu_sitdown_description'] = 'Setze dich auf den Stuhl.',
    ['chair_playeralreadysitting'] = 'Du kannst keinen Stuhl aufheben, auf dem jemand sitzt!',

    --[[ Sleeping Bag ]]--
    ['sleepingbag'] = 'Schlafsack',
    ['sleepingbag_control_exit'] = '[E] - Schlafsack verlassen',
    ['sleepingbag_menu_header'] = 'Schlafsack',
    ['sleepingbag_menu_laydown'] = 'Hinlegen',
    ['sleepingbag_menu_laydown_description'] = 'Lege dich in diesen Schlafsack.',
    ['sleepingbag_somebodylayingin'] = 'Du kannst keinen Schlafsack aufheben, in dem jemand liegt!',

    --[[ Shower ]]--
    ['shower'] = 'Dusche',
    ['shower_control_exit'] = '[E] - Dusche verlassen',
    ['shower_menu_header'] = 'Camping-Dusche',
    ['shower_menu_turnon'] = 'Einschalten',
    ['shower_menu_turnon_description'] = 'Schalte diese Dusche ein.',
    ['shower_menu_turnoff'] = 'Ausschalten',
    ['shower_menu_turnoff_description'] = 'Schalte diese Dusche aus.',
    ['shower_menu_showeryourself'] = 'Duschen',
    ['shower_menu_showeryourself_description'] = 'Dusche dich und reinige dich.',
    ['shower_turnedon'] = 'Du kannst keine Dusche aufheben, die eingeschaltet ist!',
    ['shower_full'] = 'Es ist kein Platz für dich in dieser Dusche!',
    ['shower_toofar'] = 'Du bist zu weit von der Dusche entfernt!',
    ['shower_somebodyshowering'] = 'Du kannst keine Dusche ausschalten, in der jemand duscht!',
    ['shower_empty'] = 'Diese Dusche hat kein Wasser mehr!',
    ['shower_menu_refill'] = 'Wasser nachfüllen',
    ['shower_menu_refill_description'] = 'Wasser in dieser Dusche nachfüllen.',

    --[[ Tent ]]--
    ['tent_control_exit'] = '[E] - Zelt verlassen',
    ['tent_control_stash'] = '[G] - Vorrat öffnen',
    ['tent'] = 'Zelt',
    ['tent_menu_header'] = 'Camping-Zelt',
    ['tent_menu_getinside'] = 'Hineingehen',
    ['tent_menu_getinside_description'] = 'Gehe in dieses Zelt.',
    ['tent_full'] = 'Dieses Zelt ist voll!',
    ['tent_somebodyin'] = 'Du kannst kein Zelt aufheben, in dem jemand ist!',

    --[[ Cooler ]]--
    ['cooler'] = 'Kühler',
    ['cooler_menu_header'] = 'Camping-Kühler',
    ['cooler_menu_open'] = 'Öffnen',
    ['cooler_menu_open_description'] = 'Öffne diesen Kühler.',

    --[[ Beer Barrel ]]--
    ['beerbarrel'] = 'Bierfass',
    ['beerbarrel_menu_header'] = 'Camping-Bierfass',
    ['beerbarrel_menu_fill'] = 'Füllen',
    ['beerbarrel_menu_fill_description'] = 'Fülle deinen Becher mit Bier.',
    ['beerbarrel_donthavecup'] = 'Du hast keinen Becher zum Füllen!',
    ['beerbarrel_somebodyfilling'] = 'Du kannst kein Bierfass aufheben, aus dem jemand seinen Becher füllt!',
    ['beerbarrel_empty'] = 'Dieses Fass ist leer!',
    ['beerbarrel_menu_refill'] = 'Nachfüllen',
    ['beerbarrel_menu_refill_description'] = 'Dieses Bierfass nachfüllen.',

    --[[ NPC Shop ]]--
    ['npcstore_payment_no_method'] = 'Keine Zahlungsmethode verfügbar',
    ['npcstore_menu_bank'] = 'Bank',
    ['npcstore_menu_cash'] = 'Bargeld',
    ['npcstore_ui_title'] = 'Camping-Shop',
    ['npcstore_ui_subtitle'] = 'Objekte',
    ['npcstore_ui_objects'] = 'Objekte',
    ['npcstore_ui_basket'] = 'Warenkorb',
    ['npcstore_ui_items'] = 'Artikel',
    ['npcstore_ui_empty'] = 'Warenkorb ist leer',
    ['npcstore_ui_empty_hint'] = 'Füge Artikel hinzu',
    ['npcstore_ui_add'] = 'Hinzufügen',
    ['npcstore_ui_total'] = 'Gesamt',
    ['npcstore_ui_checkout'] = 'Kaufen',
    ['npcstore_ui_failed'] = 'Kauf fehlgeschlagen',
    ['npcstore_purchased'] = 'Du hast gerade %s(%sx) für $%s gekauft.',
    ['npcstore_cart_purchased'] = 'Du hast %sx Artikel für $%s gekauft.',
    ['npcstore_npcenough'] = 'Du hast nicht genug Geld, dir fehlen $%s.',

    --[[ Codelock ]]--
    ['codelock_menu_lock'] = 'Code-Schloss hinzufügen',
    ['codelock_menu_lock_description'] = 'Code-Schloss hinzufügen.',
    ['codelock_menu_unlock'] = 'Code-Schloss entfernen',
    ['codelock_menu_unlock_description'] = 'Code-Schloss entfernen.',
    ['codelock_menu_locked'] = ' - (gesperrt)',
    ['codelock_menu_unlocked'] = ' - (entsperrt)',
    ['codelock_menu_add_lock'] = 'Code-Schloss hinzufügen',
    ['codelock_menu_add_lock_description'] = 'Code',
    ['codelock_menu_remove_lock'] = 'Code-Schloss entsperren',
    ['codelock_menu_remove_lock_description'] = 'Code',
    ['codelock_ui_enter'] = 'Eingeben',
    ['codelock_ui_4digits_required'] = '4 Ziffern erforderlich',
    ['codelock_ui_ready'] = 'Bereit',
    ['codelock_ui_enter_4digit_pin'] = 'Gib einen 4-stelligen PIN ein',
    ['codelock_ui_connection_failed'] = 'Verbindung fehlgeschlagen',
    ['codelock_ui_set_failed'] = 'Code-Schloss konnte nicht gesetzt werden',
    ['codelock_menu_wrong_code'] = 'Falscher Code!',
    ['codelock_menu_pick_locked'] = 'Du kannst kein gesperrtes Objekt (%s) aufheben!',
    ['codelock_menu_4digits'] = 'Die Zahl muss 4 Stellen haben!',
    ['codelock_menu_already_locked'] = 'Dieses Zelt hat bereits ein Code-Schloss!',
    ['codelock_menu_already_unlocked'] = 'Dieses Zelt hat kein Code-Schloss!',
    ['codelock_menu_not_ablt_to_lock'] = 'Du kannst dieses Zelt nicht sperren!',
    ['codelock_menu_no_codelock'] = 'Du hast kein Code-Schloss!',
    ['usableitem_progressbar_eating'] = 'Essen',
    ['usableitem_progressbar_drinking'] = 'Trinken',

    --[[ Discord Logs ]]--
    ['discord_logs_player_name'] = 'Spielername:',
    ['discord_logs_player_discord'] = 'Spieler Discord:',
    ['discord_logs_player_char'] = 'Spieler Char:',
    ['discord_logs_supply_shop'] = 'Npc-Shop-Kauf',
    ['discord_logs_supply_shop_desc'] = 'Gegenstand: **%s** \n Menge: **%s** \n Preis **$%s** \n Zahlungsart: **%s**',
    ['discord_logs_admin_menu_destroyed'] = 'Objekt zerstört',
    ['discord_logs_admin_menu_destroyed_desc'] = 'Admin hat ein Objekt zerstört(**#%s**).',
    ['discord_logs_admin_menu_teleport'] = 'Objekt-Teleport',
    ['discord_logs_admin_menu_teleport_desc'] = 'Admin hat sich zu einem Objekt teleportiert(**#%s**).',
    ['discord_logs_admin_menu_cooldown'] = 'Camping-Cooldown aktualisiert',
    ['discord_logs_admin_menu_cooldown_desc'] = 'Admin hat einen Camping-Cooldown von **%s** für Spieler **%s** gesetzt.',
    ['discord_logs_admin_menu_cooldown_removed_desc'] = 'Admin hat den Camping-Cooldown von Spieler **%s** entfernt.',
    ['discord_logs_admin_menu_deleteall'] = 'Alle Spielerobjekte gelöscht',
    ['discord_logs_admin_menu_deleteall_desc'] = 'Admin hat alle Objekte (**%s**) von **%s** gelöscht.',
    ['admin_deleted_player_objects'] = '%s Camping-Objekt(e) von %s gelöscht.',
    ['admin_no_player_objects'] = '%s hat keine Camping-Objekte zum Löschen.',
    ['player_objects_deleted_by_admin'] = 'Ein Admin hat %s deiner Camping-Objekte entfernt.',
    ['object_removed_by_admin'] = 'Das verwendete Objekt wurde von einem Admin entfernt!',
    ['admin_object_deleted'] = 'Objekt #%s erfolgreich gelöscht.',
    ['discord_logs_locks_used'] = 'Spieler hat ein Code-Schloss verwendet',
    ['discord_logs_locks_used_desc'] = 'Spieler hat ein Code-Schloss an einem Objekt verwendet(**#%s**).',
    ['discord_logs_locks_removed'] = 'Spieler hat ein Code-Schloss entfernt',
    ['discord_logs_locks_removed_desc'] = 'Spieler hat ein Code-Schloss von einem Objekt entfernt(**#%s**).',

    --[[ Admin UI ]]--
    ['admin_ui_title'] = 'Admin-Objekte',
    ['admin_ui_objects'] = 'Objekte',
    ['admin_ui_logs'] = 'Protokolle',
    ['admin_ui_map'] = 'Karte',
    ['admin_ui_by_id'] = 'Nach ID',
    ['admin_ui_nearest'] = 'Nächste',
    ['admin_ui_cooldowns'] = 'Sperren',
    ['admin_ui_active_cooldowns'] = 'Aktive Sperren',
    ['admin_ui_search_placeholder'] = 'Typ, ID, Besitzer, Spieler...',
    ['admin_ui_categories'] = 'Kategorien',
    ['admin_ui_reset'] = 'Zurücksetzen',
    ['admin_ui_action'] = 'Aktion',
    ['admin_ui_object'] = 'Objekt',
    ['admin_ui_object_id'] = 'Objekt-ID',
    ['admin_ui_player'] = 'Spieler',
    ['admin_ui_server_id'] = 'Server-ID',
    ['admin_ui_identifier'] = 'Kennung',
    ['admin_ui_time'] = 'Zeit',
    ['admin_ui_loading_logs'] = 'Protokolle werden geladen...',
    ['admin_ui_no_log_entries'] = 'Keine Protokolleinträge gefunden',
    ['admin_ui_no_objects_found'] = 'Keine Objekte gefunden',
    ['admin_ui_no_matching_objects'] = 'Keine passenden Objekte',
    ['admin_ui_no_active_cooldowns'] = 'Keine aktiven Sperren',
    ['admin_ui_no_recent_actions'] = 'Keine kürzlichen Aktionen',
    ['admin_ui_players'] = 'Spieler',
    ['admin_ui_types'] = 'Typen',
    ['admin_ui_shown'] = 'angezeigt',
    ['admin_ui_object_singular'] = 'Objekt',
    ['admin_ui_object_plural'] = 'Objekte',
    ['admin_ui_log_entry_singular'] = 'Protokolleintrag',
    ['admin_ui_log_entry_plural'] = 'Protokolleinträge',
    ['admin_ui_id'] = 'ID',
    ['admin_ui_type'] = 'Typ',
    ['admin_ui_owner'] = 'Besitzer',
    ['admin_ui_player_name'] = 'Spielername',
    ['admin_ui_total_objects'] = 'Objekte insgesamt',
    ['admin_ui_cooldown'] = 'Sperre',
    ['admin_ui_camping_cooldown'] = 'Camping-Sperre',
    ['admin_ui_recent_actions'] = 'Letzte Aktionen',
    ['admin_ui_minutes'] = 'Minuten',
    ['admin_ui_apply'] = 'Anwenden',
    ['admin_ui_clear'] = 'Entfernen',
    ['admin_ui_delete_all_player_objects'] = 'Alle Spielerobjekte löschen',
    ['admin_ui_click_again_confirm'] = 'Zum Bestätigen erneut klicken',
    ['admin_ui_removing_objects'] = 'Objekte werden entfernt...',
    ['admin_ui_action_failed'] = 'Aktion fehlgeschlagen',
    ['admin_ui_enter_cooldown_minutes'] = 'Sperrdauer in Minuten eingeben.',
    ['admin_ui_none'] = 'Keine',
    ['admin_ui_unknown'] = 'Unbekannt',
    ['admin_ui_offline'] = 'Offline',
    ['admin_ui_status'] = 'Status',
    ['admin_ui_no_status'] = 'Kein Status',
    ['admin_ui_level'] = 'Füllstand',
    ['admin_ui_coords'] = 'Koordinaten',
    ['admin_ui_created'] = 'Erstellt',
    ['admin_ui_distance'] = 'Entfernung',
    ['admin_ui_codelock'] = 'Codeschloss',
    ['admin_ui_reveal'] = 'Anzeigen',
    ['admin_ui_hide'] = 'Ausblenden',
    ['admin_ui_teleport'] = 'Teleportieren',
    ['admin_ui_mark'] = 'Markieren',
    ['admin_ui_unmark'] = 'Markierung entfernen',
    ['admin_ui_delete'] = 'Löschen',
    ['admin_ui_refill'] = 'Auffüllen',
    ['admin_ui_empty'] = 'Leeren',
    ['admin_ui_light'] = 'Anzünden',
    ['admin_ui_extinguish'] = 'Löschen',
    ['admin_ui_start'] = 'Starten',
    ['admin_ui_stop'] = 'Stoppen',
    ['admin_ui_remove_lock'] = 'Schloss entfernen',
    ['admin_ui_copied'] = 'Kopiert!',
    ['admin_ui_on_cooldown'] = 'Gesperrt',
    ['admin_ui_restricted_zones'] = 'Sperrzonen',
    ['admin_ui_turned_on'] = 'Eingeschaltet',
    ['admin_ui_turned_off'] = 'Ausgeschaltet',
    ['admin_ui_locked'] = 'Gesperrt',
    ['admin_ui_unlocked'] = 'Entsperrt',
    ['admin_ui_target_player'] = 'Ziel: %s',
    ['admin_ui_player_cooldown'] = 'Spielersperre',
    ['admin_ui_put_on_cooldown'] = 'Sperre verhängen%s',
    ['admin_ui_set_cooldown'] = 'Sperre setzen: %s%s',
    ['admin_ui_cooldown_for'] = 'für %s',
    ['admin_ui_cooldown_removed'] = 'Sperre entfernt',
    ['admin_ui_cleared_cooldown'] = 'Sperre entfernt: %s',
    ['admin_ui_admin'] = 'Administrator',
    ['admin_ui_deleted_all_objects'] = 'Alle Objekte (%s) von %s gelöscht',
    ['admin_ui_category_campfire'] = 'Lagerfeuer',
    ['admin_ui_category_tent'] = 'Zelt',
    ['admin_ui_category_cooler'] = 'Kühlbox',
    ['admin_ui_category_shower'] = 'Dusche',
    ['admin_ui_category_chair'] = 'Stuhl',
    ['admin_ui_category_sleeping_bag'] = 'Schlafsack',
    ['admin_ui_category_beer_barrel'] = 'Bierfass',
    ['admin_ui_category_other'] = 'Sonstige',
    ['admin_ui_water'] = 'Wasser',
    ['admin_ui_beer'] = 'Bier',
    ['admin_ui_wood'] = 'Holz',
    ['admin_ui_log_placed'] = 'Platziert',
    ['admin_ui_log_picked_up'] = 'Aufgehoben',
    ['admin_ui_log_deleted'] = 'Gelöscht',
    ['admin_ui_log_admin_deleted'] = 'Von Admin gelöscht',
    ['admin_ui_log_refilled'] = 'Aufgefüllt',
    ['admin_ui_log_admin_refilled'] = 'Von Admin aufgefüllt',
    ['admin_ui_log_emptied'] = 'Geleert',
    ['admin_ui_log_admin_emptied'] = 'Von Admin geleert',
    ['admin_ui_log_turned_on'] = 'Eingeschaltet',
    ['admin_ui_log_admin_turned_on'] = 'Von Admin eingeschaltet',
    ['admin_ui_log_turned_off'] = 'Ausgeschaltet',
    ['admin_ui_log_admin_turned_off'] = 'Von Admin ausgeschaltet',
    ['admin_ui_log_locked'] = 'Gesperrt',
    ['admin_ui_log_unlocked'] = 'Entsperrt',
    ['admin_ui_log_admin_unlocked'] = 'Von Admin entsperrt',
    ['admin_ui_log_cooldown_added'] = 'Sperre hinzugefügt',
    ['admin_ui_log_cooldown_removed'] = 'Sperre entfernt',
    ['admin_ui_log_cooldown_set_short'] = 'Sperre gesetzt',
    ['admin_ui_log_admin_set_short'] = 'Von Admin gesetzt',
    ['admin_ui_log_admin_cooldown_short'] = 'Admin-Sperre',
    ['admin_ui_log_cooldown_clear_short'] = 'Sperre aufgehoben',
    ['admin_ui_log_admin_clear_short'] = 'Von Admin aufgehoben',
    ['admin_ui_log_admin_refill_short'] = 'Admin-Auffüllung',
    ['admin_ui_log_admin_empty_short'] = 'Admin-Leerung',
    ['admin_ui_log_admin_on_short'] = 'Admin Ein',
    ['admin_ui_log_admin_off_short'] = 'Admin Aus',
    ['admin_ui_log_admin_unlock_short'] = 'Admin-Entsperrung',

    --[[ Other ]]--
    ['pickup'] = 'Aufheben',
    ['pickup_description'] = 'Hebe dieses %s auf.',
    ['pickingobject'] = 'Hebe %s auf...',
    ['placingobject'] = 'Platziere %s...',
    ['refilling'] = 'Nachfüllen...',
    ['fillingbeercup'] ='Fülle Becher...',
    ['status_description'] = 'Aktueller Objektstatus.',
    ['status_water_level'] = 'Wasserstand: %s',
    ['status_beer_level'] = 'Bierstand: %s',
    ['status_wood_level'] = 'Holzstand: %s',
    ['metadata_stash_tent'] = 'Dieses Zelt hat ein Lager mit gespeicherten Gegenständen.',
    ['metadata_stash_cooler'] = 'Gegenstände in dieser Kühlbox bleiben erhalten.',
    ['objectpacing_controls'] = '[E] - Objekt platzieren, [SCROLLPRESS] - Abbrechen, [SCROLLUP/SCROLLDOWN] - Drehen',
    ['object_not_found'] = 'Objekt nicht gefunden.',
    ['missingitem'] = 'Dir fehlt: %s.',
    ['itembroke'] = 'Dein Gegenstand ist kaputt gegangen!',
    ['refill_full'] = 'Dies ist bereits voll!',
    ['refill_noitem'] = 'Du hast das benötigte Item nicht!',
    ['donthaveitem'] ='Du hast den ausgewählten Gegenstand nicht.',
    ['actioncanceled'] = 'Aktion wurde abgebrochen!',
    ['itemcannotbeplaced'] = 'Gegenstand kann hier nicht platziert werden!',
    ['cannotwhileinvehicle'] = 'Du kannst das nicht tun, während du in einem Fahrzeug bist!',
    ['player_busy'] = 'Du kannst das gerade nicht tun!',
    ['occupied'] = 'Dieses %s ist besetzt!',
    ['blacklistedzone'] = 'Du darfst keine Gegenstände an deinem aktuellen Standort platzieren!',
}
```

</details>

<details>

<summary>es</summary>

```lua
Locales['es'] = {
    --[[ Interactions ]]--
    ['interact_campfire'] = 'Interactuar con esta fogata',
    ['interact_chair'] = 'Interactuar con esta silla',
    ['interact_tent'] = 'Interactuar con esta tienda',
    ['interact_sleepingbag'] = 'Interactuar con este saco de dormir',
    ['interact_shower'] = 'Interactuar con esta ducha',
    ['interact_cooler'] = 'Interactuar con esta hielera',
    ['interact_barrel'] = 'Interactuar con este barril',

    --[[ Admin Menu ]]--
    ['admin_menu_header'] = 'Menú de Objetos de Admin',
    ['admin_menu_no_objects'] = 'No hay objetos para administrar',
    ['admin_menu_title'] = 'ID de Objeto - %s',
    ['admin_menu_description'] = 'Objeto: %s\nDistancia: %sm\nContorno: %s',
    ['admin_menu_description_codelock'] = '\nCandado: %s',
    ['admin_menu_owner'] = 'Propietario',
    ['admin_menu_owner_description'] = 'Nombre: %s\nIdentificador: %s',
    ['admin_menu_teleport'] = 'Teletransportar',
    ['admin_menu_teleport_description'] = 'Teletransportarse a este objeto.',
    ['admin_menu_destroy'] = 'Destruir',
    ['admin_menu_destroy_description'] = 'Destruir este objeto.',
    ['admin_menu_outline'] = 'Dibujar Contorno',
    ['admin_menu_outline_description'] = 'Dibujar un contorno alrededor de este objeto para ti.',
    ['admin_menu_outlineremove'] = 'Remover Contorno',
    ['admin_menu_outlineremove_description'] = 'Remover el contorno de este objeto.',
    ['admin_nopermissions'] = '¡No tienes permisos suficientes para usar este comando!',
    ['admin_nostatus'] = '¡Este objeto no utiliza un nivel de estado!',
    ['admin_notlocked'] = '¡Este objeto no tiene una cerradura de código activa!',
    ['admin_already_empty'] = '¡Este objeto ya está vacío!',
    ['camping_cooldown_blocked'] = '¡Estás bloqueado de las interacciones de camping durante %s más!',
    ['camping_cooldown_applied'] = 'Un admin te bloqueó las interacciones de camping durante %s.',
    ['camping_cooldown_removed'] = 'Tu bloqueo de camping ha sido eliminado.',
    ['admin_camping_cooldown_applied'] = 'Has puesto a %s en espera de camping durante %s.',
    ['admin_camping_cooldown_removed'] = 'Has eliminado la espera de camping de %s.',

    --[[ Campfire ]]--
    ['campfire'] = 'fogata',
    ['campfire_menu_header'] = 'Fogata',
    ['campfire_menu_light'] = 'Encender fogata',
    ['campfire_menu_lightup'] = 'Encender',
    ['campfire_menu_light_description'] = 'Encender esta fogata.',
    ['campfire_lighting'] = 'Encendiendo fogata...',
    ['campfire_menu_cooking'] = 'Cocinar',
    ['campfire_menu_cooking_description'] = 'Cocinar en esta fogata.',
    ['campfire_menu_cooking_ingredients_description'] = 'Tiempo de cocción: %ss\n\n Ingredientes Necesarios:\n%s',
    ['campfire_cooking'] = 'Cocinando %s...',
    ['campfire_menu_destroy'] = 'Destruir',
    ['campfire_menu_destroy_description'] = 'Destruir esta fogata.',
    ['campfire_menu_putout'] = 'Apagar',
    ['campfire_menu_putout_description'] = 'Apagar esta fogata.',
    ['campfire_destroying'] = 'Destruyendo fogata...',
    ['campfire_puttingout'] = 'Apagando fogata...',
    ['campfire_full'] = '¡Esta fogata está llena!',
    ['campfire_playeralreadylighting'] = '¡Alguien ya está encendiendo esta fogata!',
    ['campfire_somebodycooking'] = '¡No puedes destruir una fogata en la que alguien está cocinando!',
    ['campfire_noitem'] = '¡No tienes el objeto correcto para encender esta fogata!',
    ['campfire_nowood'] = '¡Esta fogata no tiene madera!',
    ['campfire_menu_refill'] = 'Añadir leña',
    ['campfire_menu_refill_description'] = 'Añadir leña a esta fogata.',

    --[[ Chair ]]--
    ['chair'] = 'silla',
    ['chair_control_exit'] = '[E] - Salir de la silla',
    ['chair_menu_header'] = 'Silla de Camping',
    ['chair_menu_sitdown'] = 'Sentarse',
    ['chair_menu_sitdown_description'] = 'Sentarse en la silla.',
    ['chair_playeralreadysitting'] = '¡No puedes recoger una silla en la que alguien está sentado!',

    --[[ Sleeping Bag ]]--
    ['sleepingbag'] = 'saco de dormir',
    ['sleepingbag_control_exit'] = '[E] - Salir del saco de dormir',
    ['sleepingbag_menu_header'] = 'Saco de Dormir',
    ['sleepingbag_menu_laydown'] = 'Acostarse',
    ['sleepingbag_menu_laydown_description'] = 'Acostarse en este saco de dormir.',
    ['sleepingbag_somebodylayingin'] = '¡No puedes recoger un saco de dormir en el que alguien está acostado!',

    --[[ Shower ]]--
    ['shower'] = 'ducha',
    ['shower_control_exit'] = '[E] - Salir de la ducha',
    ['shower_menu_header'] = 'Ducha de Camping',
    ['shower_menu_turnon'] = 'Encender',
    ['shower_menu_turnon_description'] = 'Encender esta ducha.',
    ['shower_menu_turnoff'] = 'Apagar',
    ['shower_menu_turnoff_description'] = 'Apagar esta ducha.',
    ['shower_menu_showeryourself'] = 'Ducharse',
    ['shower_menu_showeryourself_description'] = 'Ducharse y limpiarse.',
    ['shower_turnedon'] = '¡No puedes recoger una ducha que está encendida!',
    ['shower_full'] = '¡No hay espacio para ti en esta ducha!',
    ['shower_toofar'] = '¡Estás demasiado lejos de la ducha!',
    ['shower_somebodyshowering'] = '¡No puedes apagar una ducha que alguien está usando!',
    ['shower_empty'] = '¡Esta ducha no tiene agua!',
    ['shower_menu_refill'] = 'Rellenar agua',
    ['shower_menu_refill_description'] = 'Rellenar agua en esta ducha.',

    --[[ Tent ]]--
    ['tent_control_exit'] = '[E] - Salir de la tienda',
    ['tent_control_stash'] = '[G] - Abrir alacena',
    ['tent'] = 'tienda',
    ['tent_menu_header'] = 'Tienda de Camping',
    ['tent_menu_getinside'] = 'Entrar',
    ['tent_menu_getinside_description'] = 'Entrar a esta tienda.',
    ['tent_full'] = '¡Esta tienda está llena!',
    ['tent_somebodyin'] = '¡No puedes recoger una tienda en la que alguien está dentro!',

    --[[ Cooler ]]--
    ['cooler'] = 'hielera',
    ['cooler_menu_header'] = 'Hielera de Camping',
    ['cooler_menu_open'] = 'Abrir',
    ['cooler_menu_open_description'] = 'Abrir esta hielera.',

    --[[ Beer Barrel ]]--
    ['beerbarrel'] = 'barril de cerveza',
    ['beerbarrel_menu_header'] = 'Barril de Cerveza de Camping',
    ['beerbarrel_menu_fill'] = 'Llenar',
    ['beerbarrel_menu_fill_description'] = 'Llenar tu vaso con cerveza.',
    ['beerbarrel_donthavecup'] = '¡No tienes un vaso para llenar!',
    ['beerbarrel_somebodyfilling'] = '¡No puedes tomar un barril de cerveza del que alguien está llenando su vaso!',
    ['beerbarrel_empty'] = '¡Este barril está vacío!',
    ['beerbarrel_menu_refill'] = 'Rellenar',
    ['beerbarrel_menu_refill_description'] = 'Rellenar este barril de cerveza.',

    --[[ NPC Shop ]]--
    ['npcstore_payment_no_method'] = 'No hay método de pago disponible',
    ['npcstore_menu_bank'] = 'Banco',
    ['npcstore_menu_cash'] = 'Efectivo',
    ['npcstore_ui_title'] = 'Tienda de Camping',
    ['npcstore_ui_subtitle'] = 'Objetos',
    ['npcstore_ui_objects'] = 'Objetos',
    ['npcstore_ui_basket'] = 'Cesta / Carrito',
    ['npcstore_ui_items'] = 'Artículos',
    ['npcstore_ui_empty'] = 'La cesta está vacía',
    ['npcstore_ui_empty_hint'] = 'Añade artículos',
    ['npcstore_ui_add'] = 'Añadir',
    ['npcstore_ui_total'] = 'Total',
    ['npcstore_ui_checkout'] = 'Comprar',
    ['npcstore_ui_failed'] = 'Compra fallida',
    ['npcstore_purchased'] = 'Acabas de comprar %s(%sx) por $%s.',
    ['npcstore_cart_purchased'] = 'Compraste %sx artículo(s) por $%s.',
    ['npcstore_npcenough'] = 'No tienes suficiente dinero, te faltan $%s.',

    --[[ Codelock ]]--
    ['codelock_menu_lock'] = 'Añadir candado',
    ['codelock_menu_lock_description'] = 'Añadir candado.',
    ['codelock_menu_unlock'] = 'Remover candado',
    ['codelock_menu_unlock_description'] = 'Remover candado.',
    ['codelock_menu_locked'] = ' - (bloqueado)',
    ['codelock_menu_unlocked'] = ' - (desbloqueado)',
    ['codelock_menu_add_lock'] = 'Añadir candado',
    ['codelock_menu_add_lock_description'] = 'Código',
    ['codelock_menu_remove_lock'] = 'Desbloquear candado',
    ['codelock_menu_remove_lock_description'] = 'Código',
    ['codelock_ui_enter'] = 'Entrar',
    ['codelock_ui_4digits_required'] = 'Se requieren 4 digitos',
    ['codelock_ui_ready'] = 'Listo',
    ['codelock_ui_enter_4digit_pin'] = 'Ingresa un PIN de 4 digitos',
    ['codelock_ui_connection_failed'] = 'Error de conexion',
    ['codelock_ui_set_failed'] = 'No se pudo configurar el candado',
    ['codelock_menu_wrong_code'] = '¡Código incorrecto!',
    ['codelock_menu_pick_locked'] = '¡No puedes recoger un objeto bloqueado (%s)!',
    ['codelock_menu_4digits'] = '¡El número debe tener 4 dígitos!',
    ['codelock_menu_already_locked'] = '¡Esta tienda ya tiene un candado!',
    ['codelock_menu_already_unlocked'] = '¡Esta tienda no tiene un candado!',
    ['codelock_menu_not_ablt_to_lock'] = '¡No puedes bloquear esta tienda!',
    ['codelock_menu_no_codelock'] = '¡No tienes un candado!',
    ['usableitem_progressbar_eating'] = 'Comiendo',
    ['usableitem_progressbar_drinking'] = 'Bebiendo',

    --[[ Discord Logs ]]--
    ['discord_logs_player_name'] = 'Nombre del Jugador:',
    ['discord_logs_player_discord'] = 'Discord del Jugador:',
    ['discord_logs_player_char'] = 'Personaje del Jugador:',
    ['discord_logs_supply_shop'] = 'Compra en tienda NPC',
    ['discord_logs_supply_shop_desc'] = 'Objeto: **%s** \n Cantidad: **%s** \n Precio **$%s** \n Tipo de pago: **%s**',
    ['discord_logs_admin_menu_destroyed'] = 'Objeto destruido',
    ['discord_logs_admin_menu_destroyed_desc'] = 'Un admin destruyó un objeto(**#%s**).',
    ['discord_logs_admin_menu_teleport'] = 'Teletransporte de objeto',
    ['discord_logs_admin_menu_teleport_desc'] = 'Un admin se teletransportó a un objeto(**#%s**).',
    ['discord_logs_admin_menu_cooldown'] = 'Cooldown de camping actualizado',
    ['discord_logs_admin_menu_cooldown_desc'] = 'Un admin aplicó un cooldown de camping de **%s** al jugador **%s**.',
    ['discord_logs_admin_menu_cooldown_removed_desc'] = 'Un admin eliminó el cooldown de camping del jugador **%s**.',
    ['discord_logs_admin_menu_deleteall'] = 'Todos los objetos del jugador eliminados',
    ['discord_logs_admin_menu_deleteall_desc'] = 'Un admin eliminó todos los objetos (**%s**) de **%s**.',
    ['admin_deleted_player_objects'] = 'Se eliminaron %s objeto(s) de camping de %s.',
    ['admin_no_player_objects'] = '%s no tiene objetos de camping para eliminar.',
    ['player_objects_deleted_by_admin'] = 'Un administrador eliminó %s de tus objetos de camping.',
    ['object_removed_by_admin'] = '¡Un administrador eliminó el objeto que estabas usando!',
    ['admin_object_deleted'] = 'Objeto #%s eliminado correctamente.',
    ['discord_logs_locks_used'] = 'Un jugador usó un candado',
    ['discord_logs_locks_used_desc'] = 'Un jugador usó un candado en un objeto(**#%s**).',
    ['discord_logs_locks_removed'] = 'Un jugador removió un candado',
    ['discord_logs_locks_removed_desc'] = 'Un jugador removió un candado de un objeto(**#%s**).',

    --[[ Admin UI ]]--
    ['admin_ui_title'] = 'Objetos de administrador',
    ['admin_ui_objects'] = 'Objetos',
    ['admin_ui_logs'] = 'Registros',
    ['admin_ui_map'] = 'Mapa',
    ['admin_ui_by_id'] = 'Por ID',
    ['admin_ui_nearest'] = 'Más cercano',
    ['admin_ui_cooldowns'] = 'Esperas',
    ['admin_ui_active_cooldowns'] = 'Esperas activas',
    ['admin_ui_search_placeholder'] = 'Tipo, ID, propietario, jugador...',
    ['admin_ui_categories'] = 'Categorías',
    ['admin_ui_reset'] = 'Restablecer',
    ['admin_ui_action'] = 'Acción',
    ['admin_ui_object'] = 'Objeto',
    ['admin_ui_object_id'] = 'ID del objeto',
    ['admin_ui_player'] = 'Jugador',
    ['admin_ui_server_id'] = 'ID del servidor',
    ['admin_ui_identifier'] = 'Identificador',
    ['admin_ui_time'] = 'Hora',
    ['admin_ui_loading_logs'] = 'Cargando registros...',
    ['admin_ui_no_log_entries'] = 'No se encontraron registros',
    ['admin_ui_no_objects_found'] = 'No se encontraron objetos',
    ['admin_ui_no_matching_objects'] = 'No hay objetos coincidentes',
    ['admin_ui_no_active_cooldowns'] = 'No hay esperas activas',
    ['admin_ui_no_recent_actions'] = 'No hay acciones recientes',
    ['admin_ui_players'] = 'jugadores',
    ['admin_ui_types'] = 'tipos',
    ['admin_ui_shown'] = 'mostrados',
    ['admin_ui_object_singular'] = 'objeto',
    ['admin_ui_object_plural'] = 'objetos',
    ['admin_ui_log_entry_singular'] = 'registro',
    ['admin_ui_log_entry_plural'] = 'registros',
    ['admin_ui_id'] = 'ID',
    ['admin_ui_type'] = 'Tipo',
    ['admin_ui_owner'] = 'Propietario',
    ['admin_ui_player_name'] = 'Nombre del jugador',
    ['admin_ui_total_objects'] = 'Objetos totales',
    ['admin_ui_cooldown'] = 'Espera',
    ['admin_ui_camping_cooldown'] = 'Espera de camping',
    ['admin_ui_recent_actions'] = 'Acciones recientes',
    ['admin_ui_minutes'] = 'Minutos',
    ['admin_ui_apply'] = 'Aplicar',
    ['admin_ui_clear'] = 'Quitar',
    ['admin_ui_delete_all_player_objects'] = 'Eliminar todos los objetos del jugador',
    ['admin_ui_click_again_confirm'] = 'Haz clic de nuevo para confirmar',
    ['admin_ui_removing_objects'] = 'Eliminando objetos...',
    ['admin_ui_action_failed'] = 'La acción falló',
    ['admin_ui_enter_cooldown_minutes'] = 'Introduce la duración de la espera en minutos.',
    ['admin_ui_none'] = 'Ninguno',
    ['admin_ui_unknown'] = 'Desconocido',
    ['admin_ui_offline'] = 'Desconectado',
    ['admin_ui_status'] = 'Estado',
    ['admin_ui_no_status'] = 'Sin estado',
    ['admin_ui_level'] = 'Nivel',
    ['admin_ui_coords'] = 'Coordenadas',
    ['admin_ui_created'] = 'Creado',
    ['admin_ui_distance'] = 'Distancia',
    ['admin_ui_codelock'] = 'Cerradura de código',
    ['admin_ui_reveal'] = 'Mostrar',
    ['admin_ui_hide'] = 'Ocultar',
    ['admin_ui_teleport'] = 'Teletransportar',
    ['admin_ui_mark'] = 'Marcar',
    ['admin_ui_unmark'] = 'Desmarcar',
    ['admin_ui_delete'] = 'Eliminar',
    ['admin_ui_refill'] = 'Rellenar',
    ['admin_ui_empty'] = 'Vaciar',
    ['admin_ui_light'] = 'Encender',
    ['admin_ui_extinguish'] = 'Apagar',
    ['admin_ui_start'] = 'Iniciar',
    ['admin_ui_stop'] = 'Detener',
    ['admin_ui_remove_lock'] = 'Quitar cerradura',
    ['admin_ui_copied'] = '¡Copiado!',
    ['admin_ui_on_cooldown'] = 'En espera',
    ['admin_ui_restricted_zones'] = 'Zonas restringidas',
    ['admin_ui_turned_on'] = 'Encendido',
    ['admin_ui_turned_off'] = 'Apagado',
    ['admin_ui_locked'] = 'Bloqueado',
    ['admin_ui_unlocked'] = 'Desbloqueado',
    ['admin_ui_target_player'] = 'Objetivo: %s',
    ['admin_ui_player_cooldown'] = 'Espera del jugador',
    ['admin_ui_put_on_cooldown'] = 'Poner en espera%s',
    ['admin_ui_set_cooldown'] = 'Establecer espera: %s%s',
    ['admin_ui_cooldown_for'] = 'durante %s',
    ['admin_ui_cooldown_removed'] = 'Espera eliminada',
    ['admin_ui_cleared_cooldown'] = 'Espera eliminada: %s',
    ['admin_ui_admin'] = 'Administrador',
    ['admin_ui_deleted_all_objects'] = 'Eliminados todos los objetos (%s) de %s',
    ['admin_ui_category_campfire'] = 'Fogata',
    ['admin_ui_category_tent'] = 'Tienda',
    ['admin_ui_category_cooler'] = 'Hielera',
    ['admin_ui_category_shower'] = 'Ducha',
    ['admin_ui_category_chair'] = 'Silla',
    ['admin_ui_category_sleeping_bag'] = 'Saco de dormir',
    ['admin_ui_category_beer_barrel'] = 'Barril de cerveza',
    ['admin_ui_category_other'] = 'Otros',
    ['admin_ui_water'] = 'Agua',
    ['admin_ui_beer'] = 'Cerveza',
    ['admin_ui_wood'] = 'Madera',
    ['admin_ui_log_placed'] = 'Colocado',
    ['admin_ui_log_picked_up'] = 'Recogido',
    ['admin_ui_log_deleted'] = 'Eliminado',
    ['admin_ui_log_admin_deleted'] = 'Eliminado por administrador',
    ['admin_ui_log_refilled'] = 'Rellenado',
    ['admin_ui_log_admin_refilled'] = 'Rellenado por administrador',
    ['admin_ui_log_emptied'] = 'Vaciado',
    ['admin_ui_log_admin_emptied'] = 'Vaciado por administrador',
    ['admin_ui_log_turned_on'] = 'Encendido',
    ['admin_ui_log_admin_turned_on'] = 'Encendido por administrador',
    ['admin_ui_log_turned_off'] = 'Apagado',
    ['admin_ui_log_admin_turned_off'] = 'Apagado por administrador',
    ['admin_ui_log_locked'] = 'Bloqueado',
    ['admin_ui_log_unlocked'] = 'Desbloqueado',
    ['admin_ui_log_admin_unlocked'] = 'Desbloqueado por administrador',
    ['admin_ui_log_cooldown_added'] = 'Espera añadida',
    ['admin_ui_log_cooldown_removed'] = 'Espera eliminada',
    ['admin_ui_log_cooldown_set_short'] = 'Espera establecida',
    ['admin_ui_log_admin_set_short'] = 'Establecido por administrador',
    ['admin_ui_log_admin_cooldown_short'] = 'Espera administrativa',
    ['admin_ui_log_cooldown_clear_short'] = 'Espera borrada',
    ['admin_ui_log_admin_clear_short'] = 'Borrado por administrador',
    ['admin_ui_log_admin_refill_short'] = 'Relleno administrativo',
    ['admin_ui_log_admin_empty_short'] = 'Vaciado administrativo',
    ['admin_ui_log_admin_on_short'] = 'Admin encendió',
    ['admin_ui_log_admin_off_short'] = 'Admin apagó',
    ['admin_ui_log_admin_unlock_short'] = 'Desbloqueo administrativo',

    --[[ Other ]]--
    ['pickup'] = 'Recoger',
    ['pickup_description'] = 'Recoger este %s.',
    ['pickingobject'] = 'Recogiendo %s...',
    ['placingobject'] = 'Colocando %s...',
    ['refilling'] = 'Rellenando...',
    ['fillingbeercup'] ='Llenando vaso...',
    ['status_description'] = 'Estado actual del objeto.',
    ['status_water_level'] = 'Nivel de agua: %s',
    ['status_beer_level'] = 'Nivel de cerveza: %s',
    ['status_wood_level'] = 'Nivel de madera: %s',
    ['metadata_stash_tent'] = 'Esta tienda tiene un alijo con objetos guardados.',
    ['metadata_stash_cooler'] = 'Los objetos guardados en esta hielera se conservan.',
    ['objectpacing_controls'] = '[E] - Colocar objeto, [SCROLLPRESS] - Cancelar, [SCROLLUP/SCROLLDOWN] - Rotar',
    ['object_not_found'] = 'Objeto no encontrado.',
    ['missingitem'] = 'Te falta: %s.',
    ['itembroke'] = '¡Tu objeto se rompió!',
    ['refill_full'] = '¡Esto ya está lleno!',
    ['refill_noitem'] = '¡No tienes el artículo requerido!',
    ['donthaveitem'] ='No tienes el objeto seleccionado.',
    ['actioncanceled'] = '¡La acción fue cancelada!',
    ['itemcannotbeplaced'] = '¡El objeto no puede ser colocado aquí!',
    ['cannotwhileinvehicle'] = '¡No puedes hacer esto mientras estás en un vehículo!',
    ['player_busy'] = '¡No puedes hacer esto ahora!',
    ['occupied'] = '¡Este %s está ocupado!',
    ['blacklistedzone'] = '¡No tienes permitido colocar objetos en tu ubicación actual!',
}
```

</details>

<details>

<summary>cs</summary>

```lua
Locales['cs'] = {
    --[[ Interactions ]]--
    ['interact_campfire'] = 'Interakce s tímto ohněm',
    ['interact_chair'] = 'Interakce s touto židlí',
    ['interact_tent'] = 'Interakce s tímto stanem',
    ['interact_sleepingbag'] = 'Interakce s tímto spacákem',
    ['interact_shower'] = 'Interakce s touto sprchou',
    ['interact_cooler'] = 'Interakce s tímto chladičem',
    ['interact_barrel'] = 'Interakce s tímto barelem',

    --[[ Admin Menu ]]--
    ['admin_menu_header'] = 'Admin Menu Objektů',
    ['admin_menu_no_objects'] = 'Nejsou zde žádné objekty ke správě',
    ['admin_menu_title'] = 'ID Objektu - %s',
    ['admin_menu_description'] = 'Položka: %s\nVzdálenost: %sm\nObrys: %s',
    ['admin_menu_description_codelock'] = '\nZámek: %s',
    ['admin_menu_owner'] = 'Vlastník',
    ['admin_menu_owner_description'] = 'Jméno: %s\nIdentifikátor: %s',
    ['admin_menu_teleport'] = 'Teleportovat',
    ['admin_menu_teleport_description'] = 'Teleportovat se k tomuto objektu.',
    ['admin_menu_destroy'] = 'Zničit',
    ['admin_menu_destroy_description'] = 'Zničit tento objekt.',
    ['admin_menu_outline'] = 'Nakreslit obrys',
    ['admin_menu_outline_description'] = 'Nakreslit obrys kolem tohoto objektu pro sebe.',
    ['admin_menu_outlineremove'] = 'Odstranit obrys',
    ['admin_menu_outlineremove_description'] = 'Odstranit obrys z tohoto objektu.',
    ['admin_nopermissions'] = 'Nemáte dostatečná oprávnění k použití tohoto příkazu!',
    ['admin_nostatus'] = 'Tento objekt nepoužívá úroveň stavu!',
    ['admin_notlocked'] = 'Tento objekt nemá aktivní kódový zámek!',
    ['admin_already_empty'] = 'Tento objekt je již prázdný!',
    ['camping_cooldown_blocked'] = 'Máte zablokované kempovací interakce ještě na %s!',
    ['camping_cooldown_applied'] = 'Admin vám zablokoval kempovací interakce na %s.',
    ['camping_cooldown_removed'] = 'Vaše blokace kempovacích interakcí byla odstraněna.',
    ['admin_camping_cooldown_applied'] = 'Nastavil jsi hráči %s omezení kempování na %s.',
    ['admin_camping_cooldown_removed'] = 'Odebral jsi hráči %s omezení kempování.',

    --[[ Campfire ]]--
    ['campfire'] = 'ohniště',
    ['campfire_menu_header'] = 'Ohniště',
    ['campfire_menu_light'] = 'Zapálit oheň',
    ['campfire_menu_lightup'] = 'Zapálit',
    ['campfire_menu_light_description'] = 'Zapálit toto ohniště.',
    ['campfire_lighting'] = 'Zapalování ohniště...',
    ['campfire_menu_cooking'] = 'Vařit',
    ['campfire_menu_cooking_description'] = 'Vařit na tomto ohništi.',
    ['campfire_menu_cooking_ingredients_description'] = 'Doba vaření: %ss\n\n Potřebné ingredience:\n%s',
    ['campfire_cooking'] = 'Vaření %s...',
    ['campfire_menu_destroy'] = 'Zničit',
    ['campfire_menu_destroy_description'] = 'Zničit toto ohniště.',
    ['campfire_menu_putout'] = 'Uhasit',
    ['campfire_menu_putout_description'] = 'Uhasit toto ohniště.',
    ['campfire_destroying'] = 'Ničení ohniště...',
    ['campfire_puttingout'] = 'Hašení ohniště...',
    ['campfire_full'] = 'Toto ohniště je plné!',
    ['campfire_playeralreadylighting'] = 'Někdo již zapaluje toto ohniště!',
    ['campfire_somebodycooking'] = 'Nemůžete zničit ohniště, na kterém někdo vaří!',
    ['campfire_noitem'] = 'Nemáte správnou položku k zapálení tohoto ohniště!',
    ['campfire_nowood'] = 'Tomuto ohništi došlo dřevo!',
    ['campfire_menu_refill'] = 'Přidat dřevo',
    ['campfire_menu_refill_description'] = 'Přidat dřevo do tohoto ohniště.',

    --[[ Chair ]]--
    ['chair'] = 'židle',
    ['chair_control_exit'] = '[E] - Opustit židli',
    ['chair_menu_header'] = 'Kempinková židle',
    ['chair_menu_sitdown'] = 'Sednout si',
    ['chair_menu_sitdown_description'] = 'Sednout si na tuto židli.',
    ['chair_playeralreadysitting'] = 'Nemůžete zvednout židli, na které někdo sedí!',

    --[[ Sleeping Bag ]]--
    ['sleepingbag'] = 'spacák',
    ['sleepingbag_control_exit'] = '[E] - Opustit spacák',
    ['sleepingbag_menu_header'] = 'Spacák',
    ['sleepingbag_menu_laydown'] = 'Lehnout si',
    ['sleepingbag_menu_laydown_description'] = 'Lehnout si do tohoto spacáku.',
    ['sleepingbag_somebodylayingin'] = 'Nemůžete zvednout spacák, ve kterém někdo leží!',

    --[[ Shower ]]--
    ['shower'] = 'sprcha',
    ['shower_control_exit'] = '[E] - Opustit sprchu',
    ['shower_menu_header'] = 'Kempinková sprcha',
    ['shower_menu_turnon'] = 'Zapnout',
    ['shower_menu_turnon_description'] = 'Zapnout tuto sprchu.',
    ['shower_menu_turnoff'] = 'Vypnout',
    ['shower_menu_turnoff_description'] = 'Vypnout tuto sprchu.',
    ['shower_menu_showeryourself'] = 'Osprchovat se',
    ['shower_menu_showeryourself_description'] = 'Osprchovat se a očistit se.',
    ['shower_turnedon'] = 'Nemůžete zvednout sprchu, která je zapnutá!',
    ['shower_full'] = 'V této sprše není pro vás místo!',
    ['shower_toofar'] = 'Jste příliš daleko od sprchy!',
    ['shower_somebodyshowering'] = 'Nemůžete vypnout sprchu, kterou někdo používá!',
    ['shower_empty'] = 'Této sprše došla voda!',
    ['shower_menu_refill'] = 'Doplnit vodu',
    ['shower_menu_refill_description'] = 'Doplnit vodu v této sprše.',

    --[[ Tent ]]--
    ['tent_control_exit'] = '[E] - Opustit stan',
    ['tent_control_stash'] = '[G] - Otevřít úložiště',
    ['tent'] = 'stan',
    ['tent_menu_header'] = 'Kempinkový stan',
    ['tent_menu_getinside'] = 'Vstoupit dovnitř',
    ['tent_menu_getinside_description'] = 'Vstoupit do tohoto stanu.',
    ['tent_full'] = 'Tento stan je plný!',
    ['tent_somebodyin'] = 'Nemůžete zvednout stan, ve kterém někdo je!',

    --[[ Cooler ]]--
    ['cooler'] = 'chladič',
    ['cooler_menu_header'] = 'Kempinkový chladič',
    ['cooler_menu_open'] = 'Otevřít',
    ['cooler_menu_open_description'] = 'Otevřít tento chladič.',

    --[[ Beer Barrel ]]--
    ['beerbarrel'] = 'pivní sud',
    ['beerbarrel_menu_header'] = 'Kempinkový pivní sud',
    ['beerbarrel_menu_fill'] = 'Naplnit',
    ['beerbarrel_menu_fill_description'] = 'Naplnit svůj pohár pivem.',
    ['beerbarrel_donthavecup'] = 'Nemáte pohár k naplnění!',
    ['beerbarrel_somebodyfilling'] = 'Nemůžete vzít pivní sud, ze kterého někdo plní svůj pohár!',
    ['beerbarrel_empty'] = 'Tento sud je prázdný!',
    ['beerbarrel_menu_refill'] = 'Doplnit',
    ['beerbarrel_menu_refill_description'] = 'Doplnit toto pivní sudě.',

    --[[ NPC Shop ]]--
    ['npcstore_payment_no_method'] = 'Není k dispozici žádná platební metoda',
    ['npcstore_menu_bank'] = 'Banka',
    ['npcstore_menu_cash'] = 'Hotovost',
    ['npcstore_ui_title'] = 'Camping Obchod',
    ['npcstore_ui_subtitle'] = 'Objekty',
    ['npcstore_ui_objects'] = 'Objekty',
    ['npcstore_ui_basket'] = 'Košík',
    ['npcstore_ui_items'] = 'Položky',
    ['npcstore_ui_empty'] = 'Košík je prázdný',
    ['npcstore_ui_empty_hint'] = 'Přidejte itemy',
    ['npcstore_ui_add'] = 'Přidat',
    ['npcstore_ui_total'] = 'Celkem',
    ['npcstore_ui_checkout'] = 'Koupit',
    ['npcstore_ui_failed'] = 'Nákup se nezdařil',
    ['npcstore_purchased'] = 'Právě jste zakoupili %s(%sx) za $%s.',
    ['npcstore_cart_purchased'] = 'Zakoupili jste %sx položek za $%s.',
    ['npcstore_npcenough'] = 'Nemáte dostatek peněz, chybí vám $%s.',

    --[[ Codelock ]]--
    ['codelock_menu_lock'] = 'Přidat zámek',
    ['codelock_menu_lock_description'] = 'Přidat zámek.',
    ['codelock_menu_unlock'] = 'Odemknout zámek',
    ['codelock_menu_unlock_description'] = 'Odemknout zámek.',
    ['codelock_menu_locked'] = ' - (zamčeno)',
    ['codelock_menu_unlocked'] = ' - (odemčeno)',
    ['codelock_menu_add_lock'] = 'Přidat zámek',
    ['codelock_menu_add_lock_description'] = 'Kód',
    ['codelock_menu_remove_lock'] = 'Odemknout zámek',
    ['codelock_menu_remove_lock_description'] = 'Kód',
    ['codelock_ui_enter'] = 'Potvrdit',
    ['codelock_ui_4digits_required'] = 'Jsou vyzadovany 4 cislice',
    ['codelock_ui_ready'] = 'Pripraveno',
    ['codelock_ui_enter_4digit_pin'] = 'Zadejte 4mistny PIN',
    ['codelock_ui_connection_failed'] = 'Pripojeni selhalo',
    ['codelock_ui_set_failed'] = 'Zamek se nepodarilo nastavit',
    ['codelock_menu_wrong_code'] = 'Špatný kód!',
    ['codelock_menu_pick_locked'] = 'Nemůžete zvednout zamčený objekt (%s)!',
    ['codelock_menu_4digits'] = 'Číslo musí mít 4 číslice!',
    ['codelock_menu_already_locked'] = 'Tento stan již má zámek!',
    ['codelock_menu_already_unlocked'] = 'Tento stan nemá zámek!',
    ['codelock_menu_not_ablt_to_lock'] = 'Nemůžete zamknout tento stan!',
    ['codelock_menu_no_codelock'] = 'Nemáte zámek!',
    ['usableitem_progressbar_eating'] = 'Jídlo',
    ['usableitem_progressbar_drinking'] = 'Pití',

    --[[ Discord Logs ]]--
    ['discord_logs_player_name'] = 'Jméno hráče:',
    ['discord_logs_player_discord'] = 'Discord hráče:',
    ['discord_logs_player_char'] = 'Postava hráče:',
    ['discord_logs_supply_shop'] = 'Nákup v NPC obchodě',
    ['discord_logs_supply_shop_desc'] = 'Položka: **%s** \n Množství: **%s** \n Cena **$%s** \n Typ platby: **%s**',
    ['discord_logs_admin_menu_destroyed'] = 'Zničený objekt',
    ['discord_logs_admin_menu_destroyed_desc'] = 'Admin zničil objekt(**#%s**).',
    ['discord_logs_admin_menu_teleport'] = 'Teleport objektu',
    ['discord_logs_admin_menu_teleport_desc'] = 'Admin se teleportoval k objektu(**#%s**).',
    ['discord_logs_admin_menu_cooldown'] = 'Kempovací cooldown upraven',
    ['discord_logs_admin_menu_cooldown_desc'] = 'Admin nastavil kempovací cooldown **%s** hráči **%s**.',
    ['discord_logs_admin_menu_cooldown_removed_desc'] = 'Admin odstranil kempovací cooldown hráče **%s**.',
    ['discord_logs_admin_menu_deleteall'] = 'Smazány všechny objekty hráče',
    ['discord_logs_admin_menu_deleteall_desc'] = 'Admin smazal všechny objekty (**%s**) hráče **%s**.',
    ['admin_deleted_player_objects'] = 'Odstraněno %s kempovacích objektů hráče %s.',
    ['admin_no_player_objects'] = 'Hráč %s nemá žádné kempovací objekty k odstranění.',
    ['player_objects_deleted_by_admin'] = 'Administrátor odstranil %s tvých kempovacích objektů.',
    ['object_removed_by_admin'] = 'Objekt, který jsi používal, byl odstraněn administrátorem!',
    ['admin_object_deleted'] = 'Objekt #%s byl úspěšně odstraněn.',
    ['discord_logs_locks_used'] = 'Hráč použil zámek',
    ['discord_logs_locks_used_desc'] = 'Hráč použil zámek na objektu(**#%s**).',
    ['discord_logs_locks_removed'] = 'Hráč odstranil zámek',
    ['discord_logs_locks_removed_desc'] = 'Hráč odstranil zámek z objektu(**#%s**).',

    --[[ Admin UI ]]--
    ['admin_ui_title'] = 'Objekty administrátora',
    ['admin_ui_objects'] = 'Objekty',
    ['admin_ui_logs'] = 'Záznamy',
    ['admin_ui_map'] = 'Mapa',
    ['admin_ui_by_id'] = 'Podle ID',
    ['admin_ui_nearest'] = 'Nejbližší',
    ['admin_ui_cooldowns'] = 'Omezení',
    ['admin_ui_active_cooldowns'] = 'Aktivní omezení',
    ['admin_ui_search_placeholder'] = 'Typ, ID, vlastník, hráč...',
    ['admin_ui_categories'] = 'Kategorie',
    ['admin_ui_reset'] = 'Obnovit',
    ['admin_ui_action'] = 'Akce',
    ['admin_ui_object'] = 'Objekt',
    ['admin_ui_object_id'] = 'ID objektu',
    ['admin_ui_player'] = 'Hráč',
    ['admin_ui_server_id'] = 'ID serveru',
    ['admin_ui_identifier'] = 'Identifikátor',
    ['admin_ui_time'] = 'Čas',
    ['admin_ui_loading_logs'] = 'Načítání záznamů...',
    ['admin_ui_no_log_entries'] = 'Nebyly nalezeny žádné záznamy',
    ['admin_ui_no_objects_found'] = 'Nebyly nalezeny žádné objekty',
    ['admin_ui_no_matching_objects'] = 'Žádné odpovídající objekty',
    ['admin_ui_no_active_cooldowns'] = 'Žádná aktivní omezení',
    ['admin_ui_no_recent_actions'] = 'Žádné nedávné akce',
    ['admin_ui_players'] = 'hráči',
    ['admin_ui_types'] = 'typy',
    ['admin_ui_shown'] = 'zobrazeno',
    ['admin_ui_object_singular'] = 'objekt',
    ['admin_ui_object_plural'] = 'objekty',
    ['admin_ui_log_entry_singular'] = 'záznam',
    ['admin_ui_log_entry_plural'] = 'záznamy',
    ['admin_ui_id'] = 'ID',
    ['admin_ui_type'] = 'Typ',
    ['admin_ui_owner'] = 'Vlastník',
    ['admin_ui_player_name'] = 'Jméno hráče',
    ['admin_ui_total_objects'] = 'Celkem objektů',
    ['admin_ui_cooldown'] = 'Omezení',
    ['admin_ui_camping_cooldown'] = 'Omezení kempování',
    ['admin_ui_recent_actions'] = 'Nedávné akce',
    ['admin_ui_minutes'] = 'Minuty',
    ['admin_ui_apply'] = 'Použít',
    ['admin_ui_clear'] = 'Zrušit',
    ['admin_ui_delete_all_player_objects'] = 'Odstranit všechny objekty hráče',
    ['admin_ui_click_again_confirm'] = 'Potvrď opětovným kliknutím',
    ['admin_ui_removing_objects'] = 'Odstraňování objektů...',
    ['admin_ui_action_failed'] = 'Akce selhala',
    ['admin_ui_enter_cooldown_minutes'] = 'Zadej délku omezení v minutách.',
    ['admin_ui_none'] = 'Žádné',
    ['admin_ui_unknown'] = 'Neznámý',
    ['admin_ui_offline'] = 'Odpojen',
    ['admin_ui_status'] = 'Stav',
    ['admin_ui_no_status'] = 'Bez stavu',
    ['admin_ui_level'] = 'Úroveň',
    ['admin_ui_coords'] = 'Souřadnice',
    ['admin_ui_created'] = 'Vytvořeno',
    ['admin_ui_distance'] = 'Vzdálenost',
    ['admin_ui_codelock'] = 'Kódový zámek',
    ['admin_ui_reveal'] = 'Zobrazit',
    ['admin_ui_hide'] = 'Skrýt',
    ['admin_ui_teleport'] = 'Teleportovat',
    ['admin_ui_mark'] = 'Označit',
    ['admin_ui_unmark'] = 'Zrušit označení',
    ['admin_ui_delete'] = 'Odstranit',
    ['admin_ui_refill'] = 'Doplnit',
    ['admin_ui_empty'] = 'Vyprázdnit',
    ['admin_ui_light'] = 'Zapálit',
    ['admin_ui_extinguish'] = 'Uhasit',
    ['admin_ui_start'] = 'Spustit',
    ['admin_ui_stop'] = 'Zastavit',
    ['admin_ui_remove_lock'] = 'Odstranit zámek',
    ['admin_ui_copied'] = 'Zkopírováno!',
    ['admin_ui_on_cooldown'] = 'Omezení aktivní',
    ['admin_ui_restricted_zones'] = 'Zakázané zóny',
    ['admin_ui_turned_on'] = 'Zapnuto',
    ['admin_ui_turned_off'] = 'Vypnuto',
    ['admin_ui_locked'] = 'Zamčeno',
    ['admin_ui_unlocked'] = 'Odemčeno',
    ['admin_ui_target_player'] = 'Cíl: %s',
    ['admin_ui_player_cooldown'] = 'Omezení hráče',
    ['admin_ui_put_on_cooldown'] = 'Nastavit omezení%s',
    ['admin_ui_set_cooldown'] = 'Nastavit omezení: %s%s',
    ['admin_ui_cooldown_for'] = 'na %s',
    ['admin_ui_cooldown_removed'] = 'Omezení odstraněno',
    ['admin_ui_cleared_cooldown'] = 'Omezení odstraněno: %s',
    ['admin_ui_admin'] = 'Administrátor',
    ['admin_ui_deleted_all_objects'] = 'Odstraněny všechny objekty (%s) hráče %s',
    ['admin_ui_category_campfire'] = 'Ohniště',
    ['admin_ui_category_tent'] = 'Stan',
    ['admin_ui_category_cooler'] = 'Chladič',
    ['admin_ui_category_shower'] = 'Sprcha',
    ['admin_ui_category_chair'] = 'Židle',
    ['admin_ui_category_sleeping_bag'] = 'Spacák',
    ['admin_ui_category_beer_barrel'] = 'Pivní sud',
    ['admin_ui_category_other'] = 'Ostatní',
    ['admin_ui_water'] = 'Voda',
    ['admin_ui_beer'] = 'Pivo',
    ['admin_ui_wood'] = 'Dřevo',
    ['admin_ui_log_placed'] = 'Umístěno',
    ['admin_ui_log_picked_up'] = 'Zvednuto',
    ['admin_ui_log_deleted'] = 'Odstraněno',
    ['admin_ui_log_admin_deleted'] = 'Odstraněno administrátorem',
    ['admin_ui_log_refilled'] = 'Doplněno',
    ['admin_ui_log_admin_refilled'] = 'Doplněno administrátorem',
    ['admin_ui_log_emptied'] = 'Vyprázdněno',
    ['admin_ui_log_admin_emptied'] = 'Vyprázdněno administrátorem',
    ['admin_ui_log_turned_on'] = 'Zapnuto',
    ['admin_ui_log_admin_turned_on'] = 'Zapnuto administrátorem',
    ['admin_ui_log_turned_off'] = 'Vypnuto',
    ['admin_ui_log_admin_turned_off'] = 'Vypnuto administrátorem',
    ['admin_ui_log_locked'] = 'Zamčeno',
    ['admin_ui_log_unlocked'] = 'Odemčeno',
    ['admin_ui_log_admin_unlocked'] = 'Odemčeno administrátorem',
    ['admin_ui_log_cooldown_added'] = 'Omezení přidáno',
    ['admin_ui_log_cooldown_removed'] = 'Omezení odstraněno',
    ['admin_ui_log_cooldown_set_short'] = 'Omezení nastaveno',
    ['admin_ui_log_admin_set_short'] = 'Nastaveno administrátorem',
    ['admin_ui_log_admin_cooldown_short'] = 'Omezení administrátora',
    ['admin_ui_log_cooldown_clear_short'] = 'Omezení zrušeno',
    ['admin_ui_log_admin_clear_short'] = 'Zrušeno administrátorem',
    ['admin_ui_log_admin_refill_short'] = 'Doplnění administrátorem',
    ['admin_ui_log_admin_empty_short'] = 'Vyprázdnění administrátorem',
    ['admin_ui_log_admin_on_short'] = 'Admin zapnul',
    ['admin_ui_log_admin_off_short'] = 'Admin vypnul',
    ['admin_ui_log_admin_unlock_short'] = 'Odemčení administrátorem',

    --[[ Other ]]--
    ['pickup'] = 'Zvednout',
    ['pickup_description'] = 'Zvednout tento %s.',
    ['pickingobject'] = 'Zvedání %s...',
    ['placingobject'] = 'Umísťování %s...',
    ['refilling'] = 'Doplňování...',
    ['fillingbeercup'] ='Plnění poháru...',
    ['status_description'] = 'Aktuální stav objektu.',
    ['status_water_level'] = 'Hladina vody: %s',
    ['status_beer_level'] = 'Hladina piva: %s',
    ['status_wood_level'] = 'Hladina dřeva: %s',
    ['metadata_stash_tent'] = 'Tento stan má skrýš s uloženými předměty.',
    ['metadata_stash_cooler'] = 'Předměty uložené v této chladicí bedně zůstanou zachovány.',
    ['objectpacing_controls'] = '[E] - Umístit objekt, [SCROLLPRESS] - Zrušit, [SCROLLUP/SCROLLDOWN] - Otočit',
    ['object_not_found'] = 'Objekt nebyl nalezen.',
    ['missingitem'] = 'Chybí vám: %s.',
    ['itembroke'] = 'Vaše položka se rozbila!',
    ['refill_full'] = 'Toto je již plné!',
    ['refill_noitem'] = 'Nemáš požadovaný předmět!',
    ['donthaveitem'] ='Nemáte vybranou položku.',
    ['actioncanceled'] = 'Akce byla zrušena!',
    ['itemcannotbeplaced'] = 'Položku nelze umístit zde!',
    ['cannotwhileinvehicle'] = 'Nemůžete to udělat, když jste ve vozidle!',
    ['player_busy'] = 'Nemůžete to udělat právě teď!',
    ['occupied'] = 'Tento %s je obsazen!',
    ['blacklistedzone'] = 'Nemůžete umísťovat objekty na vaší aktuální pozici!',
}
```

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