2018-07-12 20:24:55 +02:00
|
|
|
---
|
|
|
|
title: langPackDifference
|
2018-12-26 02:56:50 +01:00
|
|
|
description: Lang pack difference
|
2018-07-12 20:24:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: langPackDifference
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
Lang pack difference
|
|
|
|
|
2018-07-12 20:24:55 +02:00
|
|
|
### Attributes:
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|lang\_code|[string](../types/string.md) | Yes|Lang code|
|
|
|
|
|from\_version|[int](../types/int.md) | Yes|From version|
|
|
|
|
|version|[int](../types/int.md) | Yes|Version|
|
|
|
|
|strings|Array of [LangPackString](../types/LangPackString.md) | Yes|Strings|
|
2018-07-12 20:24:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [LangPackDifference](../types/LangPackDifference.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2018-07-12 20:24:55 +02:00
|
|
|
$langPackDifference = ['_' => 'langPackDifference', 'lang_code' => 'string', 'from_version' => int, 'version' => int, 'strings' => [LangPackString, LangPackString]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
Or, if you're into Lua:
|
2018-07-12 20:24:55 +02:00
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2018-07-12 20:24:55 +02:00
|
|
|
langPackDifference={_='langPackDifference', lang_code='string', from_version=int, version=int, strings={LangPackString}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|