2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: langPackDifference
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Changes to the app's localization pack
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: langPackDifference
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Changes to the app's localization pack
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|lang\_code|[string](../types/string.md) | Yes|Language code|
|
|
|
|
|from\_version|[int](../types/int.md) | Yes|Previous version number|
|
|
|
|
|version|[int](../types/int.md) | Yes|New version number|
|
2019-03-29 21:12:30 +01:00
|
|
|
|strings|Array of [LangPackString](../types/LangPackString.md) | Yes|Strings|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [LangPackDifference](../types/LangPackDifference.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$langPackDifference = ['_' => 'langPackDifference', 'lang_code' => 'string', 'from_version' => int, 'version' => int, 'strings' => [LangPackString, LangPackString]];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
langPackDifference={_='langPackDifference', lang_code='string', from_version=int, version=int, strings={LangPackString}}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|