> For the complete documentation index, see [llms.txt](https://doc.var-fivem.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.var-fivem.com/gardener-job/configuration/translate.md).

# Translate

```lua
Shared.Locale = {
    Active = "Press ~INPUT_PICKUP~ to ~g~activated your gardener~s~ service",
    Desactive = "Press ~INPUT_PICKUP~ to ~r~desactivated your gardener~s~ service",
    AlreadyVeh = "A vehicle is already parked on site",
    Activated = "You have ~g~activated~s~ your gardener ~g~service~s~",
    Desactivated = "You have ~r~desactivated~s~ your gardener ~r~service~s~",
    ModelNotCorespond = "This ~r~vehicle model does not correspond~s~ to the requested vehicle",
    StartingPoint = "Go to the ~b~starting points~s~ noted on the map.",
    Pickup = "Press ~INPUT_PICKUP~ to ~g~pick up the sheets~s~",
    Approach = "Approach the vehicle to throw the bag in the trunk",
    Throw = "Press ~INPUT_PICKUP~ to ~g~throw away your bag~s~",
    Sellbag = "Press ~INPUT_PICKUP~ to ~g~sell~s~ your ~g~bag of leaves~s~",
    StopSelling = "Press ~INPUT_PICKUP~ to ~r~stop the selling~s~",
    VehNotInZone = "The ~r~harvesting vehicle~s~ must be in the ~r~harvesting zone~s~",
    NoMoreBag = "You don't have a ~r~bag of leaves~s~ to sell",
    InvFull = "You ~r~cannot carry more item~s~, your inventory is ~r~full~s~"
}

function SellSucess(Payout)
    return "You ~g~sell~s~ a bag of leaves for ~g~<C>"..Payout.."$~s~</C>"
end
```


---

# 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, and the optional `goal` query parameter:

```
GET https://doc.var-fivem.com/gardener-job/configuration/translate.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
