stevku's workshop
  • 🚕stevku_taxijob
    • shared/config.lua
    • shared/translate.lua
    • client/provide.lua
  • STEVKU_CARTRANSMITTER
    • shared/config.lua
    • shared/translate.lua
    • client/provide.lua
  • stevku_medicalpc
    • shared/config.lua
    • server/provide.lua
    • Incident API
  • STEVKU_PAGERS
    • client/provide.lua
    • shared/config.lua
    • shared/translate.lua
    • Pager API
Powered by GitBook
On this page
  1. stevku_taxijob

shared/translate.lua

All you can find in shared/translate.lua

translate = {
    ["course"] = {
        start  = "You started the course.",
        finish = "You finished the course, head back to the taxi stop.",
        new    = "You have been assigned a new course, going from <strong>%s</strong> to <strong>%s</strong>. Estimated earnings: <strong>%s$</strong>. When you get there, honk to let the passenger know to get on."
    },
    ["duty"] = {
        on  = "You are now open to courses, head to the taxi stop.",
        off = "You aren't taking any courses from now."
    },
    ["garage"] = {
        put_in               = "You putted in to the garage the taxi: <strong>%s</strong>",
        unauthorized_vehicle = "You can't put in this vehicle!",
        not_out              = "This car isn't out of the garage!",
        marked               = "You marked the position of your car.",
        out                  = "This car is out of the garage!"
    },
    ["blips"] = {
        npc   = "# Passanger pickup",
        point = "# Passanger drop-off",
        stop  = "Taxi Stop"
    },
    ["menu"] = {
        ["main"] = {
            title = "Vehicles Menu",
            buy   = "Buy Vehicle",
            list  = "Vehicles List"
        },
        ["buy"] = {
            title = 'Buy Vehicle'
        },
        ["buy_method"] = {
            cash = "Pay by cash",
            loan = "Company Loan (-30% to pay off the car)"
        },
        ["list"] = {
            title = "Vehicles List",
            none  = "You don't have any car."
        },
        ["vehicle"] = {
            label    = "Vehicle: <strong>%s</strong>",
            plate    = "Plate: <strong>%s</strong>",
            loan     = "Company Loan: <strong>%s</strong>",
            garage   = "In the garage: <strong>%s</strong>",
            take_out = "Take out from garage",
            mark     = "Mark position"
        },
        ["actions"] = {
            title      = "Job Menu",
            players    = "<strong>-=-=-=- Players -=-=-=-</strong>",
            start      = "Start course",
            finish     = "End course",
            npc        = "<strong>-=-=-=- NPC -=-=-=-</strong>",
            toggle     = "Start / End Duty",
            not_in_car = "You aren't in the taxi!"
        }
    },
    ["pay"] = {
        not_enough  = "You don't have enough cash to buy this car!",
        cash        = "You bought car by cash!",
        loan        = "You took out car as a company loan, you will receive -30% from each completed course until the value of the vehicle is paid off.",
        paid_off    = "You paid off your car!"
    }
}
Previousshared/config.luaNextclient/provide.lua

Last updated 1 year ago

🚕