# Translate

```lua
Shared.Locale = {
    BoardText = "LOS SANTOS POLICE DEPT",
    Male = "Male",
	Female = "Female",
    Left = "Left",
    Right = "Right",
    Select = "Select",
    Delete = "Delete",
    CreateNew = "Create new",
    NoMoreSlot = "You no longer have any slots to create a character",
    ConfirmToDelete = "Are you sure you want to delete this character ? Write '"..Shared.WordConfirm.."'",
    ConfirmToCreateNew = "Are you sure you want to create a new character ? Write '"..Shared.WordConfirm.."'",
    CantCreateMore = "You can't create more character",
    --- Command
    -- Argument
    Identifier = "Player identifier",
    CitizenId = "Player citizenid", -- For QBCore
    CharSlot = "Slot number of the character",
    CommandSlots = "# of slots",
    -- Help
    DeleteCharacter = "Permanent character removal",
    SetSlots = "Set multicharacter slots number of a player",
    DisableChar = "Disable a given character of a player",
    EnabledChar = "Enable a given character of a player",
    RemoveSlots = "Remove multicharacter slots number of a player",
    -- Notif
    CharDeleted = function(CitizenId) return "Successfully removed player character "..CitizenId end,
    SlotsAdd = function(Slots, Identifier) return "You added "..Slots.." slots to "..Identifier.."" end,
    SlotsEdit = function(Slots, Identifier) return "You set "..Slots.." slots to "..Identifier.."" end,
    SlotsRemove = function(Identifier) return "You removed slots to "..Identifier.."" end,
    CharEnabled = function(Identifier) return "You enabled character of "..Identifier.."" end,
    CharDisabled = function(Identifier) return "You disabled character of "..Identifier.."" end,
    CharNotFound = function(Identifier) return "You disabled character of "..Identifier.."" end
}
```


---

# Agent Instructions: 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://doc.var-fivem.com/multi-character/configuration/translate.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.
