Mobile
...
iOS
Customisation
customising your ios integration you can customise the payment experience for the consumer by configuring the following ui behaviour properties in the jpconfiguration object ui configuration you have flexibility on how the payment experience looks to the consumer the jpconfiguration object has a uiconfiguration property of type jpuiconfiguration this allows you to enable | disable the address verification service show | hide the amount in the payments widget show | hide the amount in the payment button enable | disable consumers entering the cv2 code enable | disable consumers entering the cardholder name enable | disable consumers entering the billing information you can also override some of the default ios theming options see docid\ prt4f78qmrsju1ghjawgm an example of the jpuiconfiguration object jpuiconfiguration uiconfig = \[jpuiconfiguration new]; uiconfig shouldpaymentmethodsdisplayamount = no; uiconfig shouldpaymentbuttondisplayamount = no; uiconfig isavsenabled = yes; uiconfig shouldaskforcsc = yes; uiconfig shouldaskforcardholdername = yes; uiconfig shouldaskforbillinginformation = yes; configuration uiconfiguration = uiconfig; the jpuiconfiguration instance is set as part of the jpconfiguration object that is passed to our transactions setting up an incremental authorisation the incremental authorisation feature allows you to increment the value of your original pre authorisation for scenarios where you need to charge your customer a higher total amount by incrementing the pre authorisation value, you will be able to capture the total amount that you wish to charge your customer when you are ready this feature is not available with all acquirers check with our customer service team, or your account manager for your eligibility to use this the isallowincrement flag is a part of the main jpconfiguration config object, and can be set directly during configuration setup set the isallowincrement flag to true if present = it is automatically applied for preauth requests if no value is provided = then false is set by default example jpconfiguration configuration = \[\[jpconfiguration alloc] initwith …]; ( ) configuration isallowincrement = yes; setting the primary account details it is mandatory for merchants who have an mcc code of 6012 , 6051 and 7299 to submit additional information about the primary account holder in primaryaccountdetails property for payment pre authorisation to set the primary account details when using an alternative payment method, see docid 09p1cru0cbxjkzea 0zpi to set the primary account details to be sent with the transaction set the primaryaccountdetails property of the jpconfiguration object jpprimaryaccountdetails accountdetails; accountdetails = \[jpprimaryaccountdetails new]; accountdetails name = @"example name"; accountdetails accountnumber = @"example number"; accountdetails dateofbirth = @"example date"; accountdetails postcode = @"example post code"; configuration primaryaccountdetails = accountdetails; changing the default supported card networks to select the card networks to support set the supportedcardnetworks property of the jpconfiguration object with one or more values from this list true 244 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type for the purpose of this exercise, visa and mastercard are set as the supported card networks configuration supportedcardnetworks = jpcardnetworktypevisa | jpcardnetworktypemastercard; setting a card address to set the card address when using an alternative payment method, see docid 09p1cru0cbxjkzea 0zpi to send additional card address details with the transaction set the cardaddress parameter in the jpconfiguration object jpaddress cardaddress = \[\[jpcardaddress alloc] initwithaddress1 @"address 1" address2 @"address 2" town @"example town" postcode @"ex4 mpl3" countrycode @"gb" state\ nil ]; the above properties are optional , so set only the ones you need changing the default payment methods by default, all payment methods are displayed in the payments widget (as long as the required parameters are set) you have the flexibility to include the payment methods you support, with pre defined initialisers for each payment method to set the payment methods set the paymentmethods property in the jpconfiguration object with your list of payment methods configuration paymentmethods = jppaymentmethodcard; for the purpose of this exercise, card is set as the supported payment method ios styles and themes to apply your own custom styles and theme options, override the following payment ui elements initialise the theme object jptheme theme = \[jptheme new]; override the fonts theme largetitle = \[uifont systemfontofsize 20 0f]; theme body = \[uifont fontwithname @"avenir" size 14 0f]; override the button properties theme buttoncolor = uicolor yellowcolor; theme buttontitlecolor = uicolor blackcolor; theme buttoncornerradius = 15 0f; set a custom back button image theme backbuttonimage = \[uiimage imagenamed @"my custom icon"]; add the jptheme instance to the jpuiconfiguration object configuration uiconfiguration theme = theme; payment reference and metadata you can enable some additional information to be sent within a transaction, for example information to help with reconciliation or receipt tracking setting up the paymentreference and metadata properties can allow for paymentreference unique payment reference for the transaction metadata any additional details you require, specific to your organisation or internal systems set up paymentreference and metadata properties //pass the paymentreference within the jpreference object with your transaction myreference = \[\[jpreference alloc] initwithconsumerreference @"my reference" paymentreference @"my payment reference"]; //set the metadata property to send metadata with your transaction myreference metadata = @{ @"my key" @"my value" } adding a new language you can add any language you need override some or all of the translations of an existing language the judokit ios sdk supports en (default), fr, es generally, language translations follows the ios localisation process, utilising " lproj directories" and localizable strings files use existing translations to use or test one of judopay's default language translations, change the language on your ios device settings → general → language & region → iphone language the translation will be applied automatically override existing translations identify the sdk string keys the sdk uses string resources defined in its localizable strings file you can find the list of all the docid\ prt4f78qmrsju1ghjawgm below to modify the value of an existing string, add a new one with the same key to the localizable strings file in your ios project this will override the sdk value of this string, if your app supports multiple languages , ensure you add translations for the overridden string in the corresponding lproj directories for example fr lproj for french, es lproj for spanish also, remember to declare any new language in " project > info > localizations " this will ensure the translation is recognised by the framework to add a new language identify the sdk string keys and prepare the translations for all values in the language you wish to add or override you can find the list of all string keys below in your app’s project directory, create a new lproj folder for the language you want to add ensure you use the correct language and region codes for example es lproj for spanish zh hans lproj for simplified chinese inside the new language folder, create a localizable strings file if one does not already exist within the newly created localizable strings file ensure you provide the translations for all string keys used by the sdk, otherwise the translation may end up incomplete declare the new language in " project > info > localizations " this will ensure the translation is recognised by the framework when overriding or adding new string keys, be careful to avoid string key conflicts between the sdk and your app any matching key will cause your app’s value to override the sdk's default value, which could potentially lead to unintended behaviour, or mismatched translations language customisation here you will find a comprehensive list of the sdk string keys, detailing the translation key, language examples (en, es, fr), the component and the relevant screens in the payment flow where these are used payment methods save as default payment method true 168,103,100,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen choose a payment method true 222,86,95,96,106 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen cards true 139,84,102,93,110 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen displayed when more than one payment method is available add card true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen no cards added message true 122,101,132,121,107 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen save card error message true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen (when trying to add a new card) card title true 180,95,103,87,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen card title input error message true 171,113,108,95,106 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen card subtitle true 164,80,108,96,119 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card true 175,94,111,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen save button true 143,77,78,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen visa card title true 182,101,96,90,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen mastercard card title true 190,105,103,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen maestro card title true 169,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen amex card title true 148,113,114,95,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen jcb card title true 173,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen china union pay card title true 214,87,99,100,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen discover card title true 176,112,95,92,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen diners club card title true 192,95,85,84,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen listed card will expire soon message true 188,128,81,81,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen listed card expires soon message true 152,109,100,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen listed card expired warning message true 111,72,81,63,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen card is expired warning message true 146,92,111,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen connected cards true 179,100,103,102,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen no connected cards warning message true 150,108,104,99,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen button done true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen (edit connected cards mode) button edit true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen button cancel true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen (delete card alert) card details screen billing details screen customise card screen scan card screen cancel button error alert ok button true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen delete card button true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen delete card title true 185,103,85,110,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen delete card confirmation message true 183,107,112,116,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen you will pay true 150,95,98,95,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen transaction timeout title true 157,107,108,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen transaction timeout reason this translation key is not currently used in the ui it can be stored in the backend and used for error reporting true 161,116,113,112,104 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type transaction error response message true 157,106,106,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen (for save card) transaction error response reason this translation key is not currently used in the ui it can be stored in the backend and used for error reporting true 166,129,126,126,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type transaction unsuccessful title true 142,122,110,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen (when apple pay is enabled as a payment method) apple pay not supported error title true 196,101,98,100,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen payment methods opening alert implemented by the merchant, so the ui may differ apple pay not supported error message true 177,128,126,125,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen payment methods opening alert implemented by the merchant, so the ui may differ apple pay missing items error title true 153,114,114,114,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay missing items error message true 147,124,121,120,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay shipping error title true 159,114,114,115,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay shipping error message true 175,101,101,96,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay merchant id error title true 170,104,98,111,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay merchant id error message true 170,118,114,114,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay invalid country code error title true 156,114,113,113,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay invalid country code error message true 163,116,114,115,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay transaction configuration error title true 176,127,125,125,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay transaction configuration error message true 176,114,115,114,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay configuration error implemented by the merchant, so the ui may differ apple pay recurring payment error title true 233,105,100,100,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment error message true 203,120,121,119,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment url error title true 198,113,113,113,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment url error message true 182,120,120,119,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment billing error title true 221,146,138,137,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment billing error message true 189,116,115,114,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment amount error title true 165,99,98,91,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment amount error message true 175,127,126,126,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment label error title true 188,117,110,111,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ apple pay recurring payment label error message true 188,120,121,121,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen apple pay recurring payment configuration error implemented by the merchant, so the ui may differ card details check card true 146,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details (check card) screen billing details (check card) screen save card true 137,92,132,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details (save card) screen scan card true 185,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen scan card hint title true 169,107,108,111,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used scan card screen scan card hint subtitle true 235,78,85,82,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used scan card screen scan card confirmation button true 199,80,96,82,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen scan card settings message true 146,88,119,97,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen scan card permissions error title true 150,107,104,146,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen scan card permissions error message true 154,130,119,132,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen scan card restrictions error title true 204,100,102,106,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen scan card restrictions error message true 204,115,124,119,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen scan card ios simulator error title true 203,100,111,116,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when opening the scan card screen refers to the ios simulator cardholder name hint true 186,103,106,108,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name too short error message true 175,106,106,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name special characters error message true 184,111,104,107,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name required this translation key is not currently used in the ui it can be stored in the backend and used for error reporting true 135,101,99,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type card number hint true 138,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen card number input error message true 156,107,125,119,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen invalid card number reason this translation key is not currently used in the ui it can be stored in the backend and used for error reporting true 163,125,120,120,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type expiry date input error message true 195,73,102,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen card network not supported message true 153,93,114,95,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen card network {name} not supported message true 183,94,100,112,111 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen unsupported card network reason this translation key is not currently used in the ui it can be stored in the backend and used for error reporting true 180,115,114,115,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type date hint true 143,74,81,80,104 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen security code input error message true 204,86,96,96,124 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen card continue button true 156,93,93,93,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when billing details is the next screen footer encryption text true 154,111,139,125,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen billing details billing details title true 170,81,84,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen add address line true 150,103,103,102,121 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen back button true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen email hint true 184,93,81,77,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen email input error message true 157,120,112,118,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen country hint true 195,93,81,77,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen card entry screen if the address verification service feature is on , and the request for billing details is off us state hint true 138,93,89,80,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is us us state input error message true 206,85,99,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is us state or union territory hint true 146,93,101,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is india state or territory input error message true 146,93,101,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is india province or territory hint true 146,93,101,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is canada province or territory input error message true 179,96,113,113,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is canada province or region hint true 146,93,101,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is china province or region input error message true 167,108,101,107,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is china mobile number hint true 183,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen mobile number input error message true 160,106,105,107,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen invalid phone code this translation key is not currently used in the ui it can be stored in the backend and used for error reporting true 148,126,117,117,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type address line hint true 145,93,90,81,124 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen address input error message true 173,117,108,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen city hint true 176,81,95,79,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen city input error message true 148,118,110,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen postcode hint true 165,85,120,111,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen card entry screen if the address verification service feature is on , aand the request for billing details is off postcode input error message true 182,90,76,73,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen card entry screen if the address verification service feature is on , and the request for billing details is off zip code input error message true 139,118,119,129,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen card entry screen if the address verification service feature is on , and the request for billing details is off pay now button true 147,92,106,150,110 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when billing details are not going to be displayed as the next screen billing details screen payment methods screen pay now button pay amount button true 137,95,98,104,170 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen billing details screen amount label in payment button ui option enabled general transaction error messages internet connection error title true 159,107,104,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ internet connection error message true 162,121,108,108,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ judo id error title true 148,119,119,117,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ judo id error message true 139,124,125,124,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid judo id error title true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid judo id error message true 144,123,123,123,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid consumer reference error title true 157,94,92,93,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid consumer reference error message true 148,129,130,128,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ currency error title true 161,95,92,91,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ currency error message true 161,120,121,119,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid currency error title true 148,119,117,119,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid currency error message true 148,118,119,115,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid amount error title true 148,106,105,106,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid amount error message true 148,117,117,120,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ transaction request failed error title true 148,112,114,113,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ transaction request failed error message true 160,134,133,134,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ transaction request failed no underlying reason title true 139,119,114,113,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ transaction request failed no underlying reason message true 172,110,98,97,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ transaction cancelled by user error title true 133,125,125,123,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ transaction cancelled by user error message true 141,121,113,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ invalid token payment transaction error title true 179,224,228,223,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ invalid token payment transaction error message true 175,141,126,127,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ preauth properties error title true 148,174,173,173,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ preauth properties error message true 148,106,94,96,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used configuration error implemented by the merchant, so the ui may differ json response error title true 232,96,99,94,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ json response error message true 236,97,99,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used transaction error alert implemented by the merchant, so the ui may differ recommendation server error title true 179,142,143,169,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation transaction error implemented by the merchant, so the ui may differ recommendation server error message true 173,141,141,141,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation transaction error implemented by the merchant, so the ui may differ recommendation server response error title true 180,145,143,141,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation transaction error implemented by the merchant, so the ui may differ recommendation server response error message true 174,142,142,142,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation transaction error implemented by the merchant, so the ui may differ recommendation server invalid authorisation type title true 178,141,141,141,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid authorisation type message true 171,141,142,144,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid url title true 183,141,141,142,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid url message true 167,141,143,142,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid public key title true 190,142,141,144,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid public key message true 173,142,144,142,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid timeout title true 145,149,150,152,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ recommendation server invalid timeout message true 183,141,144,142,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used recommendation configuration error implemented by the merchant, so the ui may differ