MadelineProto/old_docs/API_docs_v71/methods/langpack_getStrings.md

69 lines
1.4 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: langpack.getStrings
2018-03-23 17:44:33 +01:00
description: Get language pack strings
2017-10-14 11:50:46 +02:00
---
## Method: langpack.getStrings
[Back to methods index](index.md)
2018-03-23 17:44:33 +01:00
Get language pack strings
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 17:44:33 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2018-03-27 14:41:50 +02:00
|lang\_code|[string](../types/string.md) | Yes|Language code|
|keys|Array of [string](../types/string.md) | Yes|Keys|
2017-10-14 11:50:46 +02:00
### Return type: [Vector\_of\_LangPackString](../types/LangPackString.md)
### Can bots use this method: **NO**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-10-14 11:50:46 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-10-14 11:50:46 +02:00
}
include 'madeline.php';
2017-10-14 11:50:46 +02:00
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Vector_of_LangPackString = $MadelineProto->langpack->getStrings(['lang_code' => 'string', 'keys' => ['string', 'string'], ]);
2017-10-14 11:50:46 +02:00
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-10-14 11:50:46 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/langpack.getStrings`
Parameters:
lang_code - Json encoded string
keys - Json encoded array of string
Or, if you're into Lua:
```
Vector_of_LangPackString = langpack.getStrings({lang_code='string', keys={'string'}, })
```
2018-03-27 14:41:50 +02:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|LANG_PACK_INVALID|The provided language pack is invalid|