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

# Boss Menu

<mark style="color:$info;">Are you looking to enhance your FiveM server with a professional business management experience? Look no further! Our Boss Menu system delivers a clean, modern, and intuitive interface that allows company owners to manage employees, finances, vehicles, recruitment, stashes, and organization statistics all in one place. Designed for immersive roleplay, it provides everything needed to efficiently run and grow any organization on your server.</mark>

<table data-view="cards"><thead><tr><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td>Buy yours now</td><td><a href="https://unknown-development.tebex.io/package/bossmenu">https://unknown-development.tebex.io/package/bossmenu</a></td></tr><tr><td>Checkout all our scripts</td><td><a href="https://unknown-development.tebex.io/category/resources">https://unknown-development.tebex.io/category/resources</a></td></tr></tbody></table>

## Showcase

YT video here

## Config

{% tabs %}
{% tab title="config/config.lua" %}

```lua
Config = {}

-- ─── FRAMEWORK ──────────────────────────────────────────────
Config.Framework = 'qb' -- 'esx', 'qb' (Use also 'qb' for qbx)

-- ─── INTEGRATIONS ───────────────────────────────────────────
Config.Target      = 'ox_target'        -- 'ox_target', 'qb-target'
Config.Notify      = 'ox_lib'           -- 'ox_lib', 'qb-core', 'esx', 'okokNotify'
Config.Inventory   = 'ox'               -- 'ox' or 'qb'. Note: Stash movement history is not supported with qb-inventory.
Config.Banking     = 'unknown_banking'  -- 'unknown_banking', 'fd_banking', 'RxBanking', 'tgg-banking', 'wasabi_banking', 'p_banking', 'renewed', 'qb-management', or false to disable integrations
Config.Phone       = 'lb-phone'         -- 'lb-phone' or false to disable phone notifications
Config.UseItem     = 'boss_tablet'      -- Item name to open boss menu, or false to disable
Config.DutyItem    = 'boss_duty_tablet' -- Item name to open shift management, or false to disable

-- ─── MAP TRACKING ───────────────────────────────────────────
Config.GpsItem      = 'boss_gps' -- Item name for GPS tracking, or false to use standard 'duty' tracking (show all on-duty employees)

-- ─── LOCALE ─────────────────────────────────────────────────
Config.Locale = 'en' -- 'en', 'lt'

-- ─── GENERAL ────────────────────────────────────────────────
Config.Debug         = false        -- Debug mode
Config.BossMenuCommand = 'bossmenu' -- Set command name to open the boss menu, or false to disable

-- ─── MODULES ────────────────────────────────────────────────
Config.EnabledFeatures = {
    finances    = true,  -- Financial logs & management tab
    duty        = true,  -- Duty time tracking tab
    map         = true,  -- Employee live tracking map tab
    vehicles    = true,  -- Vehicles management tab
    stash       = true,  -- Stash/Inventory management tab
    recruitment = true,  -- Recruitment points tab
}

-- ─── ANIMATIONS ─────────────────────────────────────────────────────
Config.Animations = {
    menu_item_command = {
        dict = 'amb@world_human_seat_wall_tablet@female@base',
        name = 'base',
        prop = 'prop_cs_tablet',
        bone = 57005,
        offset = vec3(0.17, 0.10, -0.13),
        rotation = vec3(20.0, 180.0, 180.0)
    },
    menu_target = {
        dict = 'anim@scripted@ulp_missions@computerhack@heeled@',
        name = 'hacking_loop',
    },
}

-- ─── BOSS MENUS ─────────────────────────────────────────────
Config.BossMenus = {
    ['police'] = {
        coords = vec3(448.22, -973.53, 30.68),
        size = vec3(1.5, 1.5, 1.5),
        rotation = 90.0,
        minGrade = 3, -- Minimum job grade required to access this menu
        stashes = {'police_stash', 'policelocker'}, -- Used to view stash information via the boss menu (ox_inventory stash id)
        defaultGarage = 'Police', -- Used when returning a car from impound ("Return to Garage" button)
        bankAccount = 'SHARED_POLICE_01' -- Society bank account code / IBAN (used for unknown_banking, tgg-banking, wasabi_banking, renewed)
    },
    ['ambulance'] = {
        coords = vec3(311.22, -593.53, 43.28),
        size = vec3(1.5, 1.5, 1.5),
        rotation = 90.0,
        minGrade = 3, -- Minimum job grade required to access this menu
        stashes = {'ambulance_stash'}, -- Used to view stash information via the boss menu (ox_inventory stash id)
        defaultGarage = 'Pillbox', -- Used when returning a car from impound ("Return to Garage" button)
        bankAccount = 'SHARED_EMS_01' -- Society bank account code / IBAN (used for unknown_banking, tgg-banking, wasabi_banking, renewed)
    },
    ['mechanic'] = {
        coords = vec3(-348.22, -133.53, 39.00),
        size = vec3(1.5, 1.5, 1.5),
        rotation = 90.0,
        minGrade = 3, -- Minimum job grade required to access this menu
        stashes = {'mechanic_stash'}, -- Used to view stash information via the boss menu (ox_inventory stash id)
        defaultGarage = 'Mechanic', -- Used when returning a car from impound ("Return to Garage" button)
        bankAccount = 'SHARED_MECHANIC_01' -- Society bank account code / IBAN (used for unknown_banking, tgg-banking, wasabi_banking, renewed)
    }
}

-- ─── DUTY POINTS ───────────────────────────────────────────
Config.DutyPoints = {
    ['police'] = {
        coords = vec3(440.8004, -981.1658, 30.6896),
        size = vec3(1.5, 1.5, 1.5),
        rotation = 90.0,
    },
    ['ambulance'] = {
        coords = vec3(307.22, -595.53, 43.28),
        size = vec3(1.5, 1.5, 1.5),
        rotation = 90.0,
    },
    ['mechanic'] = {
        coords = vec3(-352.22, -135.53, 39.00),
        size = vec3(1.5, 1.5, 1.5),
        rotation = 90.0,
    }
}

-- ─── UI ─────────────────────────────────────────────────────
Config.UIColor = '#a78bfa'         -- Accent color for the entire UI (hex format)
Config.BackgroundColor = '#080c14' -- Main background color of the UI
Config.TextColor = '#f1f5f9'       -- Main text color of the UI
Config.CanChangeColour = true        -- Can players change their UI colors in Settings? If false, appearance settings are disabled

-- ─── WEBHOOKS ───────────────────────────────────────────────
Config.Webhooks = {
    ['hire']        = 'https://discord.com/api/webhooks/',
    ['fire']        = 'https://discord.com/api/webhooks/',
    ['promote']     = 'https://discord.com/api/webhooks/',
    ['demote']      = 'https://discord.com/api/webhooks/',
    ['deposit']     = 'https://discord.com/api/webhooks/',
    ['withdraw']    = 'https://discord.com/api/webhooks/',
    ['permissions'] = 'https://discord.com/api/webhooks/',
}

-- ─── GARAGE SUPPORT ─────────────────────────────────────────
Config.GarageScript = 'jg'              -- 'jg', 'rx'
Config.VehicleTable = 'player_vehicles' -- Table name where vehicles are stored
Config.UnimpoundTime = 60               -- Time in seconds to return vehicle to garage

-- ─── JG GARAGES SETTINGS ────────────────────────────────────
-- You can define allowed garages for each job here, so vehicles can only be transferred between these garages.
-- If a job is not defined here, it will list all available garages on the server.
Config.JGAccessibleGarages = {
    ['police']    = { 'Police', 'Police Air' }, -- List of garage names/IDs
    ['ambulance'] = { 'Pillbox', 'EMS Air' },
    ['mechanic']  = { 'Mechanic' }
}

-- ─── RX GARAGES SETTINGS ────────────────────────────────────
--    ██     ██  █████  ██████  ███    ██ ██ ███    ██  ██████  
--    ██     ██ ██   ██ ██   ██ ████   ██ ██ ████   ██ ██       
--    ██  █  ██ ███████ ██████  ██ ██  ██ ██ ██ ██  ██ ██   ███ 
--    ██ ███ ██ ██   ██ ██   ██ ██  ██ ██ ██ ██  ██ ██ ██    ██ 
--     ███ ███  ██   ██ ██   ██ ██   ████ ██ ██   ████  ██████  
--                                                              
--                                                              
-- The job garage MUST be of the shared type, otherwise the system will not work properly.
-- 
Config.RxSharedGarages = {
    ['police']    = {'Police'},         -- Can be a list
    ['ambulance'] = 'Ambulance Garage', -- Or a single string
    ['mechanic']  = 'Mechanic Garage',
}

-- ─── RECRUITMENT POINTS ──────────────────────────────────────
Config.RecruitmentPoints = {
    ['police'] = {
        coords = vec3(441.5449, -978.8530, 30.6896),
        size = vec3(1.0, 1.0, 1.0),
        rotation = 90.0,
        label = 'Apply for Police'
    },
    ['ambulance'] = {
        coords = vec3(304.9683, -596.1519, 42.9652),
        size = vec3(1.0, 1.0, 1.0),
        rotation = 90.0,
        label = 'Apply for EMS'
    },
    ['mechanic'] = {
        coords = vec3(1153.9883, -780.8344, 57.3041),
        size = vec3(1.0, 1.0, 1.0),
        rotation = 90.0,
        label = 'Apply for Mechanics'
    }
}

```

{% endtab %}
{% endtabs %}

## Locales

{% tabs %}
{% tab title="locales/locales.lua" %}

```lua
Locales = {
    ['en'] = {
        -- Sidebar / Navigation
        ['nav_overview'] = "Overview",
        ['nav_employees'] = "Employees",
        ['nav_finances'] = "Finances",
        ['nav_statistics'] = "Statistics",
        ['nav_duty_logs'] = "Duty Logs",
        ['nav_map'] = "Map",
        ['nav_vehicles'] = "Vehicles",
        ['nav_stash'] = "Stash",
        ['nav_recruitment'] = "Recruitment",
        ['nav_settings'] = "Settings",
        ['nav_close'] = "Close",
        
        -- Dashboard
        ['dash_title'] = "Dashboard Overview",
        ['dash_desc'] = "Welcome back, boss. Here is your company summary.",
        ['total_funds'] = "Total Funds",
        ['weekly_profit'] = "Weekly Profit",
        ['weekly_expenses'] = "Weekly Expenses",
        ['total_employees'] = "Total Employees",
        ['total_vehicles'] = "Total Vehicles",
        ['weekly_hours'] = "Weekly Hours",
        ['organization'] = "Organization",

        -- Employees
        ['on_duty'] = "On Duty",
        ['off_duty'] = "Off Duty",
        ['employee_management'] = "Employee Management",
        ['employee_desc'] = "Manage your staff, grades, and monitor duty status.",
        ['name'] = "Name",
        ['citizen_id'] = "Citizen ID",
        ['grade'] = "Grade",
        ['status'] = "Status",
        ['actions'] = "Actions",
        ['hire'] = "Hire Employee",
        ['manage_btn'] = "Manage",
        ['fire_employee'] = "Fire Employee",
        ['give_bonus'] = "Give Bonus",
        ['bonus_history'] = "Bonus History",
        ['permissions'] = "Permissions",
        ['save_permissions'] = "Save Permissions",

        -- Finances
        ['finances'] = "Finances",
        ['finances_desc'] = "Manage your company's society funds.",
        ['society_balance'] = "Society Balance",
        ['deposit_funds'] = "Deposit Funds",
        ['withdraw_funds'] = "Withdraw Funds",
        ['enter_amount'] = "Enter amount...",
        ['deposit'] = "Deposit",
        ['withdraw'] = "Withdraw",
        ['recent_transactions'] = "Recent Transactions",
        ['type'] = "Type",
        ['amount'] = "Amount",
        ['date'] = "Date",
        ['bonus_txt'] = "Bonus",

        -- Stats & Duty
        ['stat_title'] = "Employee Statistics",
        ['stat_desc'] = "Overview of individual employee performance.",
        ['stat_hours'] = "Hours Worked",
        ['stat_invoices'] = "Invoices Issued",
        ['stat_revenue'] = "Revenue Generated",
        ['logs_title'] = "Employee Duty Logs",
        ['logs_desc'] = "Review employee shift times and weekly totals.",
        ['logs_clockin'] = "Clock In",
        ['logs_clockout'] = "Clock Out",
        ['logs_duration'] = "Duration",

        -- Map
        ['map_title'] = "Employee Map",
        ['map_desc'] = "Live tracking of on-duty employees.",
        ['reload_map'] = "Reload Map",

        -- Vehicles & Stash
        ['veh_title'] = "Job Vehicles",
        ['veh_desc'] = "Manage and monitor your fleet",
        ['in_garage'] = "IN GARAGE",
        ['out_garage'] = "OUT",
        ['fuel'] = "Fuel",
        ['engine'] = "Engine",
        ['body'] = "Body",
        ['transfer_btn'] = "Transfer",
        ['rank'] = "Rank",
        ['stash_title'] = "Stash Management",
        ['stash_desc'] = "Monitor company storage and item history.",
        ['select_stash_placeholder'] = "Select a stash...",
        ['inventory_items'] = "Inventory Items",
        ['item'] = "Item",
        ['quantity'] = "Quantity",
        ['movement_history'] = "Movement History",
        ['user'] = "User",
        ['action'] = "Action",
        ['time'] = "Time",

        -- Recruitment
        ['recruit_title'] = "Recruitment",
        ['recruit_desc'] = "Manage applications and interview questions.",
        ['application_questions'] = "Application Questions",
        ['save_all_questions'] = "Save All Questions",
        ['submitted_applications'] = "Submitted Applications",
        ['applicant'] = "Applicant",
        ['view_period'] = "View",
        ['hiring_status'] = "Hiring Status",
        ['hiring_status_desc'] = "Accepting applications",

        -- Settings
        ['settings_title'] = "Settings",
        ['settings_desc'] = "Personalize your interface and preferences.",
        ['appearance'] = "Appearance",
        ['appearance_desc'] = "Customize the look and feel",
        ['settings_primary'] = "Primary Color",
        ['settings_primary_desc'] = "Used for buttons and highlights",
        ['settings_bg'] = "Background Color",
        ['settings_bg_desc'] = "Main app background",
        ['settings_text'] = "Text Color",
        ['settings_text_desc'] = "Primary text color",
        ['general'] = "General",
        ['general_desc'] = "System settings",
        ['settings_language'] = "Language",
        ['settings_language_desc'] = "Choose your preferred language",
        ['settings_save'] = "Save Settings",
        ['settings_reset'] = "Reset to Default",
        ['settings_disabled'] = "Disabled",

        -- Notifications (Server / Client)
        ['notify_hired'] = "Player hired!",
        ['notify_hired_as'] = "You were hired as ",
        ['notify_already_working'] = "Player is already working in this company!",
        ['notify_player_not_found'] = "Player not found!",
        ['notify_no_self_action'] = "You cannot perform this action on yourself!",
        ['notify_fired'] = "Employee fired!",
        ['notify_grade_updated'] = "Employee grade updated!",
        ['notify_no_permission'] = "You do not have permission to use this command.",
        ['notify_no_access'] = "You do not have access to this menu!",
        ['notify_bonus_given'] = "Bonus given!",
        ['notify_invalid_amount'] = "Invalid amount entered.",
        ['notify_missing_funds'] = "Not enough funds in society account.",
        
        ['notify_no_own_permissions'] = "You cannot change your own permissions!",
        ['notify_permissions_updated'] = "Permissions updated!",
        ['notify_deposited'] = "Deposited $",
        ['notify_not_enough_money'] = "Not enough money!",
        ['notify_withdrew'] = "Withdrew $",
        ['notify_received_bonus_1'] = "You received a $",
        ['notify_received_bonus_2'] = " bonus!",
        ['notify_bonus_sent_1'] = "Bonus of $",
        ['notify_bonus_sent_2'] = " sent to ",
        ['notify_exclamation'] = "!",
        ['notify_vehicle'] = "Vehicle ",
        ['notify_returned_to'] = " returned to ",
        ['notify_questions_saved'] = "Questions saved!",
        ['notify_hiring_enabled'] = "Hiring Enabled!",
        ['notify_hiring_disabled'] = "Hiring Disabled!",
        ['notify_not_for_job'] = "This item is not for your job!",
        ['notify_gps_disabled'] = "GPS tracking disabled.",
        ['notify_gps_enabled'] = "GPS tracking enabled!",
        ['notify_app_for'] = "Application for ",
        ['notify_accepted'] = " accepted!",
        ['notify_app_rejected'] = "Application rejected.",
        ['phone_cv_title'] = "CV",
        ['phone_cv_status_accepted'] = "accepted",
        ['phone_cv_status_rejected'] = "rejected",
        ['phone_cv_status_content'] = "Your CV for %s was %s.",
        ['notify_pending_app'] = "You already have a pending application for this job!",
        ['notify_app_submitted'] = "Your application has been submitted!",
        ['notify_not_accepting'] = "This organization is not accepting applications right now.",
        ['notify_hiring_closed'] = "Hiring is currently closed.",
        ['notify_not_hiring'] = "This organization is not currently hiring!",
        ['notify_no_menus'] = "No boss menus configured.",
        ['notify_left_work_zone_1'] = "Employee ",
        ['notify_left_work_zone_2'] = " left work zone: ",
        ['disabled'] = "Disabled",
        
        ['details_btn'] = "Details",
        ['back_btn'] = "Back to Summary",
        ['week_label'] = "Week",
        ['impounded'] = "Impounded",
        ['grade_label'] = "Grade",
        ['all_grades'] = "All grades",
        ['return_garage'] = "Return to Garage",
        ['no_vehicles'] = "No job vehicles found.",
        ['add_nickname'] = "Add nickname",
        ['question_label'] = "QUESTION",
        ['required_label'] = "Required",
        ['enter_question'] = "Enter question...",
        ['no_questions'] = "No questions created yet.",
        ['no_applications'] = "No applications found.",
        ['end_shift'] = "End Shift",
        ['start_shift'] = "Start Shift",
        ['session_started'] = "Session started...",
        ['not_on_shift'] = "You are currently not on shift.",
        ['current_session'] = "Current Session",
        ['shifts_label'] = "shifts",
        ['no_shift_activity'] = "No activity logged this week.",
        ['active_label'] = "Active",
        ['no_stash_items'] = "No items in stash.",
        ['no_stash_activity'] = "No stash activity recorded yet.",
        ['hire_player'] = "Hire Player",
        ['cancel_btn'] = "Cancel",
        ['send_btn'] = "Send",
        ['change_grade'] = "CHANGE GRADE",
        ['apply_btn'] = "Apply",
        ['select_grade'] = "Select grade...",
        ['loading'] = "Loading...",
        ['view_label'] = "VIEW",
        ['edit_label'] = "EDIT",
        ['no_bonuses'] = "No bonuses received yet.",
        ['failed_load'] = "Failed to load history.",
        ['bonus_from'] = "from",
        ['loading_history'] = "Loading history...",
        ['no_duty_records'] = "No duty records found for this week.",
        ['no_statistics'] = "No statistics available for this period.",
        ['loading_duty'] = "Loading duty records...",
        ['loading_stats'] = "Loading statistics...",
        ['error_loading'] = "Error loading data.",
        ['no_transactions'] = "No recent transactions.",
        ['release_label'] = "Release:",
        ['status_label'] = "Status:",
        ['police_hold'] = "POLICE HOLD",
        ['reason_label'] = "Reason:",
        ['officer_label'] = "Officer:",
        ['transporting'] = "Transporting vehicle...",
        ['current_week'] = "Current",
        ['player_server_id'] = "PLAYER SERVER ID",
        
        ['shift_management'] = "Shift Management",
        ['this_weeks_activity'] = "This Week's Activity",
        ['shifts_on'] = "Shifts on",
        ['boss_menu_title'] = "BOSS MENU",
        ['tracking'] = "Tracking:",
        ['hire_desc'] = "Add a new member to your organization",
        ['manage_emp_title'] = "Manage Employee",
        ['cannot_manage_self'] = "You cannot change your grade, fire or give bonus to yourself.",
        ['transfer_vehicle'] = "Transfer Vehicle",
        ['select_target_garage'] = "Select Target Garage",
        ['select_garage'] = "Select garage...",
        ['confirm_transfer'] = "Confirm Transfer",
        ['review_application'] = "Review Application",
        ['reject'] = "Reject",
        ['accept'] = "Accept",
        ['organization_application'] = "Organization Application",
        ['submit_application'] = "Submit Application",
        
        ['employee'] = "Employee",
        ['weekly_total'] = "Weekly Total",
        ['back'] = "Back",
        
        ['add'] = "Add",
        ['condition'] = "Condition",
        ['select_stash'] = "Select Stash:",
        ['enter_id'] = "Enter ID (e.g. 1)...",
        ['view_btn'] = "View",
        ['accepted'] = "accepted",
        ['rejected'] = "rejected",
        ['pending'] = "pending",
        ['notify_success_title'] = "Success",
        ['notify_error_title'] = "Error",
        ['notify_warning_title'] = "Warning",
        ['notify_info_title'] = "Info",
        ['applying_for_prefix'] = "Applying for",
        ['type_your_answer'] = "Type your answer here...",

        -- Map Controls & Zones
        ['map_controls'] = "Map Controls",
        ['draw_area'] = "Draw Area",
        ['polygon'] = "Polygon",
        ['circle'] = "Circle",
        ['layers_saved_zones'] = "Layers / Saved Zones",
        ['save_zone_area'] = "Save Zone Area",
        ['edit_zone_area'] = "Edit Zone Area",
        ['zone_name_label'] = "Zone Name",
        ['zone_name_placeholder'] = "e.g. Police Station",
        ['layer_group_label'] = "Layer Group",
        ['color_label'] = "Color",
        ['geofence_alert_label'] = "Geofence Alert (Work Zone)",
        ['geofence_alert_desc'] = "Alerts bosses if any on-duty employee leaves this area.",
        ['save_zone_btn'] = "Save Zone",
        ['create_new_group'] = "Create New Group",
        ['close_btn'] = "Close",

        -- Geofence Violations Modal
        ['zone_name_th'] = "Zone Name",
        ['left_at_th'] = "Left At",
        ['returned_at_th'] = "Returned At",
        ['duration_outside_th'] = "Duration Outside",
        ['work_zone_violations_title'] = "Work Zone Violations",
        ['work_zone_violations_desc'] = "The following log details when this employee left their designated work zone(s) during this shift.",
        ['zone_transits_title'] = "Zone Transits",
        ['zone_transits_desc'] = "The following log details the times this employee traveled between different work zones during this shift.",

        -- Map Drawing Tooltips
        ['draw_poly_start'] = "Click to start drawing shape.",
        ['draw_poly_cont'] = "Click to continue drawing shape.",
        ['draw_poly_end'] = "Click first point to close this shape.",
        ['draw_circle_start'] = "Click and drag to draw circle.",
        ['draw_circle_radius'] = "Radius",
        ['draw_simpleshape_end'] = "Release mouse to finish drawing.",

        -- Notes & Warnings
        ['employee_of_the_week'] = "Employee of the Week",
        ['warnings'] = "Warnings",
        ['issue_btn'] = "Issue",
        ['enter_reason'] = "Enter reason...",
        ['no_warnings'] = "No warnings issued.",
        ['private_notes'] = "Private Notes",
        ['add_btn'] = "Add",
        ['enter_note'] = "Enter note...",
        ['no_notes'] = "No notes added.",
        ['worked_this_week'] = "worked this week",

        ['months_long'] = "January,February,March,April,May,June,July,August,September,October,November,December",
        ['months_short'] = "Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
        ['weekdays'] = "Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday",

        -- Target labels
        ['target_boss_menu'] = "Open Boss Menu",
        ['target_shift_management'] = "Shift Management",
        ['target_apply_job'] = "Apply for Job",

        ['no_reason'] = "No reason",
        ['not_available'] = "N/A",
        
        ['unnamed_area'] = "Unnamed Area",
        ['default_layer'] = "Default",

        ['notify_warning_issued'] = "Warning issued successfully",
        ['notify_warning_deleted'] = "Warning deleted",
        ['notify_note_added'] = "Note added successfully",
        ['notify_note_deleted'] = "Note deleted"
    },

    ['lt'] = {
        -- Sidebar / Navigation
        ['nav_overview'] = "Apžvalga",
        ['nav_employees'] = "Darbuotojai",
        ['nav_finances'] = "Finansai",
        ['nav_statistics'] = "Statistika",
        ['nav_duty_logs'] = "Darbo Žurnalai",
        ['nav_map'] = "Žemėlapis",
        ['nav_vehicles'] = "Transportas",
        ['nav_stash'] = "Sandėlis",
        ['nav_recruitment'] = "Įdarbinimas",
        ['nav_settings'] = "Nustatymai",
        ['nav_close'] = "Uždaryti",
        ['on_duty'] = "Pamainoje",
        ['off_duty'] = "Ne Pamainoje",
        
        -- Dashboard
        ['dash_title'] = "Pagrindinė Panelė",
        ['dash_desc'] = "Sveiki sugrįžę, vade. Štai jūsų įmonės suvestinė.",
        ['total_funds'] = "Bendras Likutis",
        ['weekly_profit'] = "Savaitės Pelnas",
        ['weekly_expenses'] = "Savaitės Išlaidos",
        ['total_employees'] = "Visi Darbuotojai",
        ['total_vehicles'] = "Aktyvus Transportas",
        ['weekly_hours'] = "Savaitės Valandos",
        ['organization'] = "Organizacija",

        -- Employees
        ['employee_management'] = "Darbuotojų Valdymas",
        ['employee_desc'] = "Valdykite personalą, rangus ir stebėkite statusą.",
        ['name'] = "Vardas",
        ['citizen_id'] = "Asmens Kodas",
        ['grade'] = "Rangas",
        ['status'] = "Būsena",
        ['actions'] = "Veiksmai",
        ['hire'] = "Įdarbinti",
        ['manage_btn'] = "Valdyti",
        ['fire_employee'] = "Atleisti Darbuotoją",
        ['give_bonus'] = "Išmokėti Premiją",
        ['bonus_history'] = "Premijų Istorija",
        ['permissions'] = "Leidimai",
        ['save_permissions'] = "Išsaugoti Leidimus",

        -- Finances
        ['finances'] = "Finansai",
        ['finances_desc'] = "Valdykite įmonės biudžetą ir išlaidas.",
        ['society_balance'] = "Įmonės Likutis",
        ['deposit_funds'] = "Įnešti lėšas",
        ['withdraw_funds'] = "Išimti lėšas",
        ['enter_amount'] = "Įveskite sumą...",
        ['deposit'] = "Įnešti",
        ['withdraw'] = "Išimti",
        ['recent_transactions'] = "Paskutinės Operacijos",
        ['type'] = "Tipas",
        ['amount'] = "Suma",
        ['date'] = "Data",
        ['bonus_txt'] = "Premija",

        -- Stats & Duty
        ['stat_title'] = "Darbuotojų Statistika",
        ['stat_desc'] = "Individualių darbuotojų rezultatų apžvalga.",
        ['stat_hours'] = "Išdirbtos Valandos",
        ['stat_invoices'] = "Išrašytos Sąskaitos",
        ['stat_revenue'] = "Sugeneruotas Pelnas",
        ['logs_title'] = "Darbo Laiko Žurnalai",
        ['logs_desc'] = "Peržiūrėkite darbuotojų pamainų trukmę.",
        ['logs_clockin'] = "Pradžia",
        ['logs_clockout'] = "Pabaiga",
        ['logs_duration'] = "Trukmė",

        -- Map
        ['map_title'] = "Darbuotojų Žemėlapis",
        ['map_desc'] = "Tiesioginis dirbančių darbuotojų stebėjimas.",
        ['reload_map'] = "Perkrauti",

        -- Vehicles & Stash
        ['veh_title'] = "Darbo Transportas",
        ['veh_desc'] = "Valdykite ir stebėkite įmonės transporto priemones.",
        ['in_garage'] = "GARAŽE",
        ['out_garage'] = "IŠVARYTAS",
        ['fuel'] = "Degalai",
        ['engine'] = "Variklis",
        ['body'] = "Kėbulas",
        ['transfer_btn'] = "Perkelti",
        ['rank'] = "Rangas",
        ['stash_title'] = "Sandėlio Valdymas",
        ['stash_desc'] = "Stebėkite įmonės saugyklą ir daiktų judėjimą.",
        ['select_stash_placeholder'] = "Pasirinkti sandėlį...",
        ['inventory_items'] = "Inventoriaus Daiktai",
        ['item'] = "Daiktas",
        ['quantity'] = "Kiekis",
        ['movement_history'] = "Judėjimo Istorija",
        ['user'] = "Vartotojas",
        ['action'] = "Veiksmas",
        ['time'] = "Laikas",

        -- Recruitment
        ['recruit_title'] = "Įdarbinimas",
        ['recruit_desc'] = "Valdykite paraiškas ir interviu klausimus.",
        ['application_questions'] = "Paraiškos Klausimai",
        ['save_all_questions'] = "Išsaugoti Visus Klausimus",
        ['submitted_applications'] = "Pateiktos Paraiškos",
        ['applicant'] = "Kandidatas",
        ['view_period'] = "Peržiūrėti",
        ['hiring_status'] = "Įdarbinimo Statusas",
        ['hiring_status_desc'] = "Priimamos paraiškos",

        -- Settings
        ['settings_title'] = "Nustatymai",
        ['settings_desc'] = "Pritaikykite aplinkos spalvas ir kalbą.",
        ['appearance'] = "Išvaizda",
        ['appearance_desc'] = "Tinkinkite išvaizdą",
        ['settings_primary'] = "Pagrindinė Spalva",
        ['settings_primary_desc'] = "Naudojama mygtukams",
        ['settings_bg'] = "Fono Spalva",
        ['settings_bg_desc'] = "Pagrindinis programos fonas",
        ['settings_text'] = "Teksto Spalva",
        ['settings_text_desc'] = "Pagrindinė teksto spalva",
        ['general'] = "Bendri",
        ['general_desc'] = "Sistemos nustatymai",
        ['settings_language'] = "Kalba",
        ['settings_language_desc'] = "Pasirinkite norimą kalbą",
        ['settings_save'] = "Išsaugoti",
        ['settings_reset'] = "Atstatyti",
        ['settings_disabled'] = "Neįgalinta",

        -- Notifications
        ['notify_hired'] = "Darbuotojas įdarbintas!",
        ['notify_hired_as'] = "Buvote įdarbintas (-a) kaip ",
        ['notify_already_working'] = "Žaidėjas jau dirba šioje įmonėje!",
        ['notify_player_not_found'] = "Žaidėjas nerastas!",
        ['notify_no_self_action'] = "Negalite atlikti šio veiksmo su savimi!",
        ['notify_fired'] = "Darbuotojas atleistas!",
        ['notify_grade_updated'] = "Darbuotojo rangas atnaujintas!",
        ['notify_no_permission'] = "Neturite teisių naudoti šią komandą.",
        ['notify_no_access'] = "Neturite prieigos prie šio meniu!",
        ['notify_bonus_given'] = "Premija sėkmingai išmokėta!",
        ['notify_invalid_amount'] = "Įvesta netinkama suma.",
        ['notify_missing_funds'] = "Įmonės sąskaitoje nepakanka lėšų.",
        
        ['notify_no_own_permissions'] = "Negalite keisti savo teisių!",
        ['notify_permissions_updated'] = "Teisės atnaujintos!",
        ['notify_deposited'] = "Įnešta $",
        ['notify_not_enough_money'] = "Nepakanka pinigų!",
        ['notify_withdrew'] = "Išimta $",
        ['notify_received_bonus_1'] = "Gavote $",
        ['notify_received_bonus_2'] = " premiją!",
        ['notify_bonus_sent_1'] = "Premija $",
        ['notify_bonus_sent_2'] = " išsiųsta ",
        ['notify_exclamation'] = "!",
        ['notify_vehicle'] = "Transporto priemonė ",
        ['notify_returned_to'] = " grąžinta į ",
        ['notify_questions_saved'] = "Klausimai išsaugoti!",
        ['notify_hiring_enabled'] = "Įdarbinimas įjungtas!",
        ['notify_hiring_disabled'] = "Įdarbinimas išjungtas!",
        ['notify_not_for_job'] = "Šis daiktas neskirtas jūsų darbui!",
        ['notify_gps_disabled'] = "GPS sekimas išjungtas.",
        ['notify_gps_enabled'] = "GPS sekimas įjungtas!",
        ['notify_app_for'] = "Paraiška žaidėjui ",
        ['notify_accepted'] = " priimta!",
        ['notify_app_rejected'] = "Paraiška atmesta.",
        ['phone_cv_title'] = "CV",
        ['phone_cv_status_accepted'] = "priimtas",
        ['phone_cv_status_rejected'] = "atmestas",
        ['phone_cv_status_content'] = "Jūsų CV darbe %s, buvo %s.",
        ['notify_pending_app'] = "Jūs jau turite laukiančią paraišką šiam darbui!",
        ['notify_app_submitted'] = "Jūsų paraiška pateikta!",
        ['notify_not_accepting'] = "Ši organizacija šiuo metu nepriima paraiškų.",
        ['notify_hiring_closed'] = "Įdarbinimas šiuo metu uždarytas.",
        ['notify_not_hiring'] = "Ši organizacija šiuo metu neieško darbuotojų!",
        ['notify_no_menus'] = "Nėra sukonfigūruotų vadovo meniu.",
        ['notify_left_work_zone_1'] = "Darbuotojas ",
        ['notify_left_work_zone_2'] = " paliko darbo zoną: ",
        
        ['details_btn'] = "Detalės",
        ['back_btn'] = "Atgal į suvestinę",
        ['week_label'] = "Savaitė",
        ['impounded'] = "Konfiskuotas",
        ['grade_label'] = "Laipsnis",
        ['all_grades'] = "Visi laipsniai",
        ['return_garage'] = "Grąžinti į garažą",
        ['no_vehicles'] = "Nerasta jokių darbo transporto priemonių.",
        ['add_nickname'] = "Pridėti slapyvardį",
        ['question_label'] = "KLAUSIMAS",
        ['required_label'] = "Privalomas",
        ['enter_question'] = "Įveskite klausimą...",
        ['no_questions'] = "Dar nėra sukurtų klausimų.",
        ['no_applications'] = "Nerasta jokių paraiškų.",
        ['end_shift'] = "Baigti pamainą",
        ['start_shift'] = "Pradėti pamainą",
        ['session_started'] = "Sesija prasidėjo...",
        ['not_on_shift'] = "Šiuo metu nesate pamainoje.",
        ['current_session'] = "Dabartinė sesija",
        ['shifts_label'] = "pamainos",
        ['no_shift_activity'] = "Šią savaitę nebuvo jokio aktyvumo.",
        ['active_label'] = "Aktyvus",
        ['no_stash_items'] = "Sandėlyje nėra daiktų.",
        ['no_stash_activity'] = "Kol kas nėra jokios sandėlio veiklos.",
        ['hire_player'] = "Įdarbinti žaidėją",
        ['cancel_btn'] = "Atšaukti",
        ['send_btn'] = "Siųsti",
        ['change_grade'] = "PAKEISTI LAIPSNĮ",
        ['apply_btn'] = "Taikyti",
        ['select_grade'] = "Pasirinkite laipsnį...",
        ['loading'] = "Kraunama...",
        ['view_label'] = "ŽIŪRĖTI",
        ['edit_label'] = "REDAGUOTI",
        ['no_bonuses'] = "Premijų dar negauta.",
        ['failed_load'] = "Nepavyko užkrauti istorijos.",
        ['bonus_from'] = "nuo",
        ['loading_history'] = "Kraunama istorija...",
        ['no_duty_records'] = "Šiai savaitei budėjimo įrašų nerasta.",
        ['no_statistics'] = "Šiam laikotarpiui statistikos nėra.",
        ['loading_duty'] = "Kraunami budėjimo įrašai...",
        ['loading_stats'] = "Kraunama statistika...",
        ['error_loading'] = "Klaida kraunant duomenis.",
        ['no_transactions'] = "Nėra naujausių operacijų.",
        ['release_label'] = "Išleidimas:",
        ['status_label'] = "Būsena:",
        ['police_hold'] = "POLICIJOS SULAIKYMAS",
        ['reason_label'] = "Priežastis:",
        ['officer_label'] = "Pareigūnas:",
        ['transporting'] = "Transportuojama transporto priemonė...",
        ['current_week'] = "Dabartinė",
        ['player_server_id'] = "ŽAIDĖJO SERVERIO ID",
        
        ['shift_management'] = "Pamainų Valdymas",
        ['this_weeks_activity'] = "Šios Savaitės Veikla",
        ['shifts_on'] = "Pamainos",
        ['boss_menu_title'] = "VADOVO MENIU",
        ['tracking'] = "Stebimi:",
        ['hire_desc'] = "Priimkite naują narį į organizaciją",
        ['manage_emp_title'] = "Valdyti Darbuotoją",
        ['cannot_manage_self'] = "Jūs negalite keisti savo rango, atleisti savęs ar skirti sau premijos.",
        ['transfer_vehicle'] = "Perkelti Transporto Priemonę",
        ['select_target_garage'] = "Pasirinkite Tikslinį Garažą",
        ['select_garage'] = "Pasirinkite garažą...",
        ['confirm_transfer'] = "Patvirtinti Perkėlimą",
        ['review_application'] = "Peržiūrėti Paraišką",
        ['reject'] = "Atmesti",
        ['accept'] = "Priimti",
        ['organization_application'] = "Organizacijos Paraiška",
        ['submit_application'] = "Pateikti Paraišką",
        
        ['employee'] = "Darbuotojas",
        ['weekly_total'] = "Savaitės Viso",
        ['back'] = "Atgal",
        
        ['add'] = "Pridėti",
        ['condition'] = "Būklė",
        ['select_stash'] = "Pasirinkite Sandėlį:",
        ['enter_id'] = "Įveskite ID (pvz. 1)...",
        ['view_btn'] = "Peržiūrėti",
        ['accepted'] = "priimta",
        ['rejected'] = "atmesta",
        ['pending'] = "laukiama",
        ['notify_success_title'] = "Sėkminga",
        ['notify_error_title'] = "Klaida",
        ['notify_warning_title'] = "Įspėjimas",
        ['notify_info_title'] = "Informacija",
        ['applying_for_prefix'] = "Kandidatuojama į",
        ['type_your_answer'] = "Įrašykite savo atsakymą čia...",

        -- Žemėlapio valdikliai ir zonos
        ['map_controls'] = "Žemėlapio valdikliai",
        ['draw_area'] = "Piešti zoną",
        ['polygon'] = "Daugiakampis",
        ['circle'] = "Apskritimas",
        ['layers_saved_zones'] = "Sluoksniai / Išsaugotos zonos",
        ['save_zone_area'] = "Išsaugoti zoną",
        ['edit_zone_area'] = "Redaguoti zoną",
        ['zone_name_label'] = "Zonos pavadinimas",
        ['zone_name_placeholder'] = "pvz. Policijos nuovada",
        ['layer_group_label'] = "Sluoksnio grupė",
        ['color_label'] = "Spalva",
        ['geofence_alert_label'] = "Geofence pranešimas (Darbo zona)",
        ['geofence_alert_desc'] = "Įspėja vadovus, jei budintis darbuotojas palieka šią zoną.",
        ['save_zone_btn'] = "Išsaugoti zoną",
        ['create_new_group'] = "Sukurti naują grupę",
        ['close_btn'] = "Uždaryti",

        -- Geofence pažeidimų modalas
        ['zone_name_th'] = "Zonos pavadinimas",
        ['left_at_th'] = "Išėjo",
        ['returned_at_th'] = "Grįžo",
        ['duration_outside_th'] = "Trukmė už zonos",
        ['work_zone_violations_title'] = "Darbo zonos pažeidimai",
        ['work_zone_violations_desc'] = "Šis žurnalas rodo, kada darbuotojas paliko savo darbo zoną(-as) šios pamainos metu.",
        ['zone_transits_title'] = "Zonų pakeitimai",
        ['zone_transits_desc'] = "Šis žurnalas rodo laikus, kada darbuotojas keliavo tarp skirtingų darbo zonų šios pamainos metu.",

        -- Map Drawing Tooltips
        ['draw_poly_start'] = "Spustelėkite, norėdami pradėti piešti formą.",
        ['draw_poly_cont'] = "Spustelėkite, norėdami tęsti formos piešimą.",
        ['draw_poly_end'] = "Spustelėkite pirmąjį tašką, kad uždarytumėte šią formą.",
        ['draw_circle_start'] = "Spustelėkite ir vilkite, kad nupieštumėte apskritimą.",
        ['draw_circle_radius'] = "Spindulys",
        ['draw_simpleshape_end'] = "Atleiskite pelę, kad baigtumėte piešti.",

        -- Notes & Warnings
        ['employee_of_the_week'] = "Savaitės Darbuotojas",
        ['warnings'] = "Įspėjimai",
        ['issue_btn'] = "Išduoti",
        ['enter_reason'] = "Įveskite priežastį...",
        ['no_warnings'] = "Įspėjimų nėra.",
        ['private_notes'] = "Privatūs Užrašai",
        ['add_btn'] = "Pridėti",
        ['enter_note'] = "Įveskite užrašą...",
        ['no_notes'] = "Užrašų nėra.",
        ['worked_this_week'] = "dirbo šią savaitę",

        ['months_long'] = "Sausio,Vasario,Kovo,Balandžio,Gegužės,Birželio,Liepos,Rugpjūčio,Rugsėjo,Spalio,Lapkričio,Gruodžio",
        ['months_short'] = "Sau,Vas,Kov,Bal,Geg,Bir,Lie,Rgp,Rgs,Spa,Lap,Gru",
        ['weekdays'] = "Sekmadienis,Pirmadienis,Antradienis,Trečiadienis,Ketvirtadienis,Penktadienis,Šeštadienis",

        -- Target labels
        ['target_boss_menu'] = "Atidaryti Boss Meniu",
        ['target_shift_management'] = "Pamainos Valdymas",
        ['target_apply_job'] = "Pildyti CV",

        ['no_reason'] = "Nėra priežasties",
        ['not_available'] = "N/A",
        
        ['unnamed_area'] = "Be pavadinimo",
        ['default_layer'] = "Pagrindinis",

        ['notify_warning_issued'] = "Įspėjimas sėkmingai išduotas",
        ['notify_warning_deleted'] = "Įspėjimas ištrintas",
        ['notify_note_added'] = "Užrašas sėkmingai pridėtas",
        ['notify_note_deleted'] = "Užrašas ištrintas"
    }
}

```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://unknown-development.gitbook.io/unknown-development/scripts/unknown_bossmenu.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.
