> For the complete documentation index, see [llms.txt](https://docs.dashboardjs.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dashboardjs.net/configuration-options/config/internationalization-and-localization.md).

# 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 ...');
            }
          }
        }
      }
    }
  }
};


```
