LanguageData Model
Overview
Stores multilingual translations and language configurations.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | Auto generated id | ❌ |
| key | string | Key represents a specific word or phrase in the language | ✅ |
| value | string | The value of the transltion for the key in the specific language | ✅ |
| module | string | Optional module name where this translation applies | ❌ |
| selectedLanguages | any | List of selected languages where this translation applies | ❌ |
| language_id | string | Id representing the language of this translation | ✅ |
| user_id | string | Optional user id of the person who created or modified this translation | ❌ |
| created_at | date | Timestamp of creation | ❌ |
| modified_at | date | Timestamp of modification | ❌ |
Sample JSON
{
"id": "example_value",
"key": "example_value",
"value": "example_value",
"module": "example_value",
"selectedLanguages": "example_value",
"language_id": "example_value",
"user_id": "example_value",
"created_at": "example_value",
"modified_at": "example_value"
}