Localization on JavaScript
To change the existing localization, you can use the localizationDictionary property provided by the Document Reader SDK. This will remap any string value found in the native API.
To see all the localization keys, explore the RegulaSDK.strings file at platforms/ios/Pods/DocumentReader/DocumentReader.xcframework/ios-arm64/DocumentReader.framework/en.lproj/RegulaSDK.strings
See the example of how you can override any existing localization provided by the Document Reader SDK:
DocumentReader.instance.localizationDictionary = {
"strStatus": "Custom status message",
"strLookingDocument": "Custom looking for document message"
};