---
url: https://gudhub.com/docs/ssr-ssg/website/configs/language-config/
title: "Language Config\n                #"
description: "The langConfig array defines the language specific text for various UI components and labels in the application. It ensures localized content is displayed based"
lang: uk
updated: 2026-09-11T14:07:59.775Z
---

# Language Config [#](https://gudhub.com/docs/ssr-ssg/website/configs/language-config/#language-config)

The `langConfig` array defines the language-specific text for various UI components and labels in the application. It ensures localized content is displayed based on the selected language.

## Structure of langConfig [#](https://gudhub.com/docs/ssr-ssg/website/configs/language-config/#structure-of-langconfig)

Each object in the array represents a specific language configuration with the following properties:

### **Properties** [#](https://gudhub.com/docs/ssr-ssg/website/configs/language-config/#properties)

| **Property Name** | **Type** | **Description** |
| :-- | :-- | :-- |
| `langCode` | `string` | Language code (e.g., 'en' for English, 'de' for German). |
| `defaultLang` | `boolean` | Optional; indicates if this language is the default one for the application. |
| `phone` | `string` | Translation for "Phone". |
| `address` | `string` | Translation for "Address". |
| `email` | `string` | Translation for "Email". |
| `company` | `string` | Translation for "Company". |
| `categories` | `string` | Translation for "Categories". |
| `copyright` | `string` | Translation for "Copyright". |
| `webDevelopmentBy` | `string` | Translation for "Web Development by". |
| `moreDetails` | `string` | Translation for "More details". |
| `readMore` | `string` | Translation for "Read more". |

Copy

```javascript
export const langConfig = [
    {
        langCode: "string",
        defaultLang: boolean,
        phone: "string",
        address: "string",
        email: "string",
        company: "string",
        categories: "string",
        copyright: "string",
        webDevelopmentBy: "string",
        moreDetails: "string",
        readMore: "string"
    }
];
```
