# Internationalization & Localization

You can translate any names, labels, fields, actions ....etc simply by adding a translation property to it's enclosing brace in the config object

```javascript
const config = {
  tabs: {
    'User Profiles': {
      translation: {
        'ar-AE':'ملفات تعريف المستخدم'
      },
      recordSettings:{
        fields: {
          Date: { 
            name: "Date of Birth", 
            translation: { 
              "ar-AE": "السن" 
            }
          }
        }
        actions: {
          'More details...': {
            icon: 'info-icon',
            translation: {
              'ar-AE': 'معلومات أخرى'
            },
            onClick: function(){
              alert('Clicked More Info ...');
            }
          }
        }
      }
    }
  }
};


```


---

# 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://docs.dashboardjs.net/configuration-options/config/internationalization-and-localization.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.
