Skip to content

Document Reader SDK Localization

By default, the application’s localization is inherited from the OS. To set the language independently of the system locale, use the following property at startup:

DocReader.shared.languageLocaleCode = "es-ES"
[RGLDocReader shared].languageLocaleCode = @"es-ES";
DocumentReader.Instance().locale = "es-ES"
DocumentReader.Instance().locale = "es-ES";
DocumentReader.instance.locale = "es-ES";
DocumentReader.instance.locale = "es-ES"
DocumentReader.setLocale("es-ES", _ => { }, _ => { })
DocumentReader.setLocale("es-ES")
DocumentReader.setLocale("es-ES", function (m) { }, function (e) { })
// Android
DocumentReader.Instance().Locale = "es-ES";

// iOS
RGLDocReader.Shared.LanguageLocaleCode = "es-ES";

To navigate to the detailed localization guides, pick the platform of interest:

For the list of supported interface languages and their platform-specific codes, see Supported Languages.

Info

Wrappers will retrieve language values directly from the native platforms (iOS and Android).