# Comments for Translators

Sometimes, it's important to provide the translator with additional context or a description to ensure the translation is accurate. We can include a companion key for each translation key that requires extra information to achieve this.&#x20;

This companion key is post-fixed with `.comment`, as shown in the example below:

{% code title="en.json" %}

```json
{
  "hello": "",
  "hello.comment": "Write a comment for the translator"
}
```

{% endcode %}

These comment keys are not meant to be included in the final bundle, so we can use the [`transloco-optimize`](/transloco/developer-tools/optimize.md) library to remove them when building for production.

The library automatically removes these comment keys from the translation files specified in the given path, ensuring that only the necessary translation data is included in the final output.


---

# 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://jsverse.gitbook.io/transloco/additional-functionality/comments-for-translators.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.
