Module tdlight.api

Class TdApi.GetLanguagePackString

Enclosing class:
TdApi

public static final class TdApi.GetLanguagePackString extends TdApi.Function<TdApi.LanguagePackStringValue>
Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously. Returns LanguagePackStringValue
  • Field Details

    • languagePackDatabasePath

      public String languagePackDatabasePath
      Path to the language pack database in which strings are stored.
    • localizationTarget

      public String localizationTarget
      Localization target to which the language pack belongs.
    • languagePackId

      public String languagePackId
      Language pack identifier.
    • key

      public String key
      Language pack key of the string to be returned.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • GetLanguagePackString

      public GetLanguagePackString()
      Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously. Returns LanguagePackStringValue
    • GetLanguagePackString

      public GetLanguagePackString(String languagePackDatabasePath, String localizationTarget, String languagePackId, String key)
      Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously. Returns LanguagePackStringValue
      Parameters:
      languagePackDatabasePath - String Path to the language pack database in which strings are stored.
      localizationTarget - String Localization target to which the language pack belongs.
      languagePackId - String Language pack identifier.
      key - String Language pack key of the string to be returned.
    • GetLanguagePackString

      public GetLanguagePackString(DataInput input) throws IOException
      Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously. Returns LanguagePackStringValue
      Throws:
      IOException
  • Method Details