> For the complete documentation index, see [llms.txt](https://codebyrave.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codebyrave.gitbook.io/docs/resources/cr-enchanted-scoreboard/configuration/language.md).

# Language

{% hint style="warning" %}
In order to change lanuage of the resource, u need to follow these steps.
{% endhint %}

{% hint style="info" %}
Go to `CR_scoreboard/html/index.html`and change the code lines below:
{% endhint %}

{% hint style="danger" %}
**Note:** please dont change the **span-id** from **icon-row** or the resource won't work or change at all, follow the line of **br />** to intergrate the language.
{% endhint %}

## Index.html

```
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>RVE Scoreboard Sidebar</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
    <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css" rel="stylesheet" />
    <link rel="stylesheet" href="style.css"> <!-- Link to the external CSS -->
</head>
<body>

<div id="scoreboard">
    <div class="logo-container">
        <img src="logo.png" alt="Server Logo" />
    </div>

    <div class="icon-row">
        <div class="item"><i class="bi bi-shield-fill"></i><br />Police <span id="police">0</span></div>
        <div class="item"><i class="bi bi-truck-front-fill"></i><br />Ambulance <span id="ambulance">0</span></div>
        <div class="item"><i class="bi bi-wrench-adjustable"></i><br />Mechanic <span id="mechanic">0</span></div>
        <div class="item"><i class="bi bi-mask"></i><br />Criminal <span id="criminal">0</span></div>
        <div class="item"><i class="bi bi-person-fill"></i><br />Players <span id="player">0</span></div>
    </div>

    <div class="footer">
        <span>VERSION 1.0.0</span>
        <span id="clock" class="footer-clock"></span>
        <div class="social-links">
            <a href="https://discord.com/your-server-link" onclick="openLink(event)"> <i class="fab fa-discord"></i> </a>
            <a href="https://www.tiktok.com/@yourusername" onclick="openLink(event)"> <i class="fab fa-tiktok"></i> </a>
            <a href="https://www.youtube.com/channel/your-channel-id" onclick="openLink(event)"> <i class="fab fa-youtube"></i> </a>
        </div>
    </div>
</div>

<main>
    <h1>Welcome to the server!</h1>
    <p>This space is optional to fill with your own content. Without it, the right side will remain empty.</p>
</main>

<script src="script.js"></script> <!-- Link to the external JavaScript -->

</body>
</html>

```


---

# 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://codebyrave.gitbook.io/docs/resources/cr-enchanted-scoreboard/configuration/language.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.
