Inherits Function.
Returns strings from a language pack in the current localization target by their keys. Can be called before authorization.
Returns object_ptr<LanguagePackStrings>.
Public Fields | |
string | language_pack_id_ |
Language pack identifier of the strings to be returned. | |
array< string > | keys_ |
Language pack keys of the strings to be returned; leave empty to request all available strings. | |
Public Types | |
using | ReturnType = object_ptr< languagePackStrings > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getLanguagePackStrings () | |
getLanguagePackStrings (string const &language_pack_id_, array< string > &&keys_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 1246259088 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which returns strings from a language pack in the current localization target by their keys. Can be called before authorization.
Returns object_ptr<LanguagePackStrings>.
getLanguagePackStrings | ( | string const & | language_pack_id_, |
array< string > && | keys_ | ||
) |
Creates a function, which returns strings from a language pack in the current localization target by their keys. Can be called before authorization.
Returns object_ptr<LanguagePackStrings>.
[in] | language_pack_id_ | Language pack identifier of the strings to be returned. |
[in] | keys_ | Language pack keys of the strings to be returned; leave empty to request all available strings. |
|
finalvirtual |