CodeWorks
YoutubeDiscordTebex
  • Welcome!
  • Main
    • How can i download my script
    • How can i transfer my script
    • Whats escrow system?
  • Errors
    • You lack the required entitlement to use cdw-*
  • Scripts
    • Boss Menu
      • Installation
      • Configuration
      • Language Files
      • Events / Export List
      • Editable Files
        • sv_utils.lua
        • cl_utils.lua
        • cl_mugshot.lua
    • Hud System
      • Installation
      • Configuration
      • Language Files
      • Events / Export List
      • Editable Files
        • sv_utils.lua
        • cl_utils.lua
      • Integrations
        • QB Core
          • Notification
          • Progressbar
        • ESX
          • Notification
          • Progressbar
        • ox_lib
          • Notification
          • Progressbar
  • GPS & Bodycam
    • GPS System
      • Installation
      • Configuration
      • Language Files
      • Editable Files
        • sv_utils.lua
        • cl_utils.lua
    • Bodycam System
      • Installation
      • Configuration
      • Language Files
      • Editable Files
        • sv_utils.lua
        • cl_utils.lua
Powered by GitBook
On this page
  1. Scripts
  2. Boss Menu

Language Files

To add a new language file, copy any of the existing language files and rename it. Then, update Config.locales["en"] to use the language prefix of your choice. After that, modify the file as needed and set Config.locale to your desired language

locates/en.lua
Config.locales["en"] = {
    log = {
        withdraw = "Wihdrawed money",
        deposit = "Deposited money",
        hired = "Hired to job",
        fired = "Fired from job",
    },
    ui = {
        header = "Manage",
        menubtn = "Menu",
        employees = "Employees",
        bills = "Invoices",
        finance = "Finance",
        logs = "Logs",
        employeeList = "Employee List",
        hire = "Hire",
        accessStorage = "Storage",
        StashStatus = "Stash Status",
        namefilter = "Name (A-Z)",
        filterall = "All",
        filteractive = "Active",
        filterinactive = "Inactive",
        employee = "Employee",
        status = "Status",
        grade = "Grade",
        duty = "Duty",
        actions = "Actions",
        businessSummary = "Business Summary",
        safeStatus = "Safe Balance",
        totalEmployees = "Total Employees",
        totalExpenses = "Total Expenses",
        lastActions = "Last Actions",
        allActions = "See All Actions",
        allEmployees = "All Employees",
        totalBills = "Total Invoices",
        totalBillAmount = "Total Invoice Amount",
        performance = "Performance",
        billManagement = "Invoice Management",
        filterPending = "Pending",
        filterPaid = "Paid",
        filterLate = "Overdue",
        createBill = "Create Invoice",
        createBillText = "To create a new invoice, select a client and fill in the details.",
        invoiceId = "Invoice ID",
        client = "Client",
        amount = "Amount",
        date = "Date",
        dueDate = "Due Date",
        generalManagement = "General Management",
        quickActions = "Quick Actions",
        totalBalance = "Total Balance",
        totalExpenses = "Total Expenses",
        totalIncome = "Total Income",
        totalProfit = "Total Profit",
        deposit = "Deposit",
        withdraw = "Withdraw",
        totalProduct = "Total Products",
        totalCapacity = "Total Capacity", 
        inventoryManagement = "Inventory Management",
        action = "Action",
        actionHistory = "Action History",
        hiretext = "To hire an employee, select a player and fill the details.",
        salary = "Salary",
        storageAccess = "Storage Access",
        storageAccessText = "Permission to access and control the storage.",
        safeAccess = "Safe Access",
        safeAccessText = "Permission to access and control the safe.",
        cancel = "Cancel",
        employeeDetails = "Employee Details",
        totalDuty = "Total Duty",
        permissions = "Permissions",
        recentInvoices = "Recent Invoices",
        editSalaryGrade = "Edit Salary/Grade",
        fire = "Fire Employee",
        save = "Save",
        confirm = "Confirm",
        confirmChanges = "Are you sure you want to confirm the changes?",
        newSalary = "New Salary",
        newGrade = "New Grade",
        fireReason = "Reason for Firing",
        invoicePayment = "Invoice Payment",
        invoiceSummary = "Invoice Summary",
        payInvoice = "Pay Invoice",
        invoiceDetails = "Invoice Details",
        cancelInvoice = "Cancel Invoice",
        depositSafe = "Deposit to Safe",
        withdrawSafe = "Withdraw from Safe",
        hour = "hour",
        active = "Active",
        passive = "Passive",
        piece = "Piece",
        details = "Details",
        summary = "Summary",
        logDetails = "Log Details",
        name_az = "Name (A-Z)",
        name_za = "Name (Z-A)",
        overtime_high_low = "Overtime (H - L)",
        overtime_low_high = "Overtime (L - H)",
        performance_high_low = "Performance (H - L)",
        performance_low_high = "Performance (L - H)",
        all = "All",
        active = "Active",
        inactive = "Inactive",

        filter_all = "All",
        filter_pending = "Pending",
        filter_paid = "Paid",
        filter_late = "Late",
        no_close_players = "No close players found",
        not_same_job = "You are not part of this job",
        not_boss = "You're not the boss of this job",
        not_permission = "You don't have permission to do this",
        dont_spam = "Do not spam the menu",
    },
}
PreviousConfigurationNextEvents / Export List

Last updated 9 days ago