issuer_response_codes 0.1.3 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +11 -9
- data/README.md +107 -8
- data/lib/issuer_response_codes.rb +1 -0
- data/lib/issuer_response_codes/code.rb +8 -2
- data/lib/issuer_response_codes/context.rb +4 -0
- data/lib/issuer_response_codes/locale_library.rb +1 -0
- data/lib/issuer_response_codes/tds_code.rb +36 -0
- data/lib/issuer_response_codes/version.rb +1 -1
- data/lib/locale/da.yml +85 -38
- data/lib/locale/ee.yml +86 -38
- data/lib/locale/en.yml +84 -37
- data/lib/locale/lt.yml +85 -38
- data/lib/locale/lv.yml +85 -38
- data/lib/locale/pl.yml +84 -37
- data/lib/locale/sv.yml +85 -38
- metadata +3 -2
data/lib/locale/ee.yml
CHANGED
@@ -1,41 +1,89 @@
|
|
1
1
|
ee:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
2
|
+
tds_status_codes:
|
3
|
+
fraudulent_codes:
|
4
|
+
'09': true
|
5
|
+
'10': true
|
6
|
+
'11': true
|
7
|
+
universal: &universal_tds_status_codes
|
8
|
+
unknown: "Unknown reason."
|
9
|
+
'01': Card authentication failed
|
10
|
+
'02': Unknown Device
|
11
|
+
'03': Unsupported Device
|
12
|
+
'04': Exceeds authentication frequency limit
|
13
|
+
'05': Expired card
|
14
|
+
'06': Invalid card number
|
15
|
+
'07': Invalid transaction
|
16
|
+
'08': No Card record
|
17
|
+
'12': Transaction not permitted to cardholder
|
18
|
+
'13': Cardholder not enrolled in service
|
19
|
+
'14': Transaction timed out at the ACS
|
20
|
+
'15': Low confidence
|
21
|
+
'16': Medium confidence
|
22
|
+
'17': High confidence
|
23
|
+
'18': Very High confidence
|
24
|
+
'19': Exceeds ACS maximum challenges
|
25
|
+
'20': Non-Payment transaction not supported
|
26
|
+
'21': 3RI transaction not supported
|
27
|
+
'22': ACS technical issue
|
28
|
+
'23': Decoupled Authentication required by ACS but not requested by 3DS Requestor
|
29
|
+
'24': 3DS Requestor Decoupled Max Expiry Time exceeded
|
30
|
+
'25': Decoupled Authentication was provided insufficient time to authenticate cardholder. ACS will not make attempt
|
31
|
+
'26': Authentication attempted but not performed by the cardholder
|
32
|
+
|
33
|
+
targeted:
|
34
|
+
cardholder:
|
35
|
+
<<: *universal_tds_status_codes
|
36
|
+
'09': Card authentication failed # Security failure
|
37
|
+
'10': Card authentication failed # Stolen card
|
38
|
+
'11': Card authentication failed # Suspected fraud
|
39
|
+
merchant:
|
40
|
+
<<: *universal_tds_status_codes
|
41
|
+
'09': Security failure
|
42
|
+
'10': Stolen card
|
43
|
+
'11': Suspected fraud
|
44
|
+
|
36
45
|
issuer_response_codes:
|
37
46
|
suggestion: 'Suggestion'
|
38
47
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
48
|
+
fraudulent_codes:
|
49
|
+
'04': true
|
50
|
+
'07': true
|
51
|
+
'41': true
|
52
|
+
'43': true
|
53
|
+
universal: &issuer_response_code
|
54
|
+
'00': "Tekkis viga. Tehing lükati Elavoni poolt tagasi sobimatu kaardiliigi, valede kaardiandmete, väljaandja / panga loa puudumise või kaupmehe suletud konto tõttu."
|
55
|
+
'05': "Pank lükkas tehingu tagasi, kuna turvalisuskontrollis avastati puudusi (kasutatud kaardiga ei saa teostada korduvtehinguid / makseid ilma CVV-koodita), rahalised vahendid on külmutatud, limiidid ületatud või kaart ei toeta MOTO-/internetitehinguid."
|
56
|
+
'13': "MOTO/eCommerce mitteaktiivne või summa limiit ületatud."
|
57
|
+
'14': "Kehtetu kaardi number."
|
58
|
+
'N7': "Vale CVV-kood."
|
59
|
+
'51': "Puuduvad piisavad vahendid."
|
60
|
+
'54': "Kehtivuse kaotanud kaart."
|
61
|
+
'57': "Pank lükkas tehingu tagasi, kuna antud krediitkaarti ei saa seda liiki tehingu teostamiseks kasutada (eCommerce, MOTO või korduvtehing)."
|
62
|
+
'61': "MOTO/eCommerce mitteaktiivne või summa limiit ületatud."
|
63
|
+
'82': "Vale CVV-kood."
|
64
|
+
# incomplete translations
|
65
|
+
unknown: "Unknown reason."
|
66
|
+
'01': "Authorization Error."
|
67
|
+
'02': "Authorization Error."
|
68
|
+
'03': "Authorization Error."
|
69
|
+
'12': "No privileges to execute this transaction for your card."
|
70
|
+
'30': "Your bank has declined this transaction"
|
71
|
+
'58': "Your bank has declined this transaction as this credit card cannot be used for this type of transaction (eccommerce, MOTO or recurring)."
|
72
|
+
'59': "Your bank has declined this transaction"
|
73
|
+
'62': "Your card can be not supported due to restrictions placed on the card or Seller country exclusion (imposition an embargo), or bank blocked a card eg. due to unacceptable debit balance."
|
74
|
+
'65': "Activity count limit exceeded."
|
75
|
+
'75': "Invalid activity count limit exceeded."
|
76
|
+
'78': "Inactive card."
|
77
|
+
'91': "Temporary issuer error."
|
78
|
+
'92': "Temporary issuer error."
|
79
|
+
'94': "Temporary issuer error."
|
80
|
+
'96': "Temporary issuer error."
|
81
|
+
'98': "Temporary issuer error."
|
82
|
+
'E3': "Transaction not executed due to a 3D-Secure error."
|
83
|
+
'E4': "Transaction not executed due to a negative 3D-Secure confirmation from your bank."
|
84
|
+
'E5': "Temporary 3D-Secure error."
|
85
|
+
'R0': "Refused by Issuer because Customer requested stop of specific recurring payments."
|
86
|
+
'R1': "Refused by Issuer because Customer requested stop of all recurring payments."
|
39
87
|
behaviour:
|
40
88
|
'00': "Palun proovige hiljem uuesti, võtke ühendust müüja või Espago klienditoega."
|
41
89
|
'05': "Palun kontrollige oma antud liiki tehinguid käsitlevaid kaardi seadeid või kasutage teist kaarti."
|
@@ -52,12 +100,12 @@ ee:
|
|
52
100
|
'01': "Please contact your card issuer."
|
53
101
|
'02': "Please contact your card issuer."
|
54
102
|
'03': "Please contact your card issuer and try again later."
|
55
|
-
'04': "Please contact your card issuer and try again later.
|
56
|
-
'07': "Please contact your card issuer and try again later.
|
103
|
+
'04': "Please contact your card issuer and try again later."
|
104
|
+
'07': "Please contact your card issuer and try again later."
|
57
105
|
'12': "Please contact your card issuer to get more details and try again later."
|
58
106
|
'30': "Please contact your card issuer to get more details and try again later."
|
59
|
-
'41': "Please contact your card issuer to get more details and try again later.
|
60
|
-
'43': "Please contact your card issuer to get more details and try again later.
|
107
|
+
'41': "Please contact your card issuer to get more details and try again later."
|
108
|
+
'43': "Please contact your card issuer to get more details and try again later."
|
61
109
|
'58': "Please check your card settings for those transaction types or use another card."
|
62
110
|
'59': "Please contact your card issuer to get more details and try again later."
|
63
111
|
'62': "Please contact your bank."
|
data/lib/locale/en.yml
CHANGED
@@ -1,55 +1,102 @@
|
|
1
1
|
en:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
2
|
+
tds_status_codes:
|
3
|
+
fraudulent_codes:
|
4
|
+
'09': true
|
5
|
+
'10': true
|
6
|
+
'11': true
|
7
|
+
universal: &universal_tds_status_codes
|
8
|
+
unknown: "Unknown reason."
|
9
|
+
'01': Card authentication failed
|
10
|
+
'02': Unknown Device
|
11
|
+
'03': Unsupported Device
|
12
|
+
'04': Exceeds authentication frequency limit
|
13
|
+
'05': Expired card
|
14
|
+
'06': Invalid card number
|
15
|
+
'07': Invalid transaction
|
16
|
+
'08': No Card record
|
17
|
+
'12': Transaction not permitted to cardholder
|
18
|
+
'13': Cardholder not enrolled in service
|
19
|
+
'14': Transaction timed out at the ACS
|
20
|
+
'15': Low confidence
|
21
|
+
'16': Medium confidence
|
22
|
+
'17': High confidence
|
23
|
+
'18': Very High confidence
|
24
|
+
'19': Exceeds ACS maximum challenges
|
25
|
+
'20': Non-Payment transaction not supported
|
26
|
+
'21': 3RI transaction not supported
|
27
|
+
'22': ACS technical issue
|
28
|
+
'23': Decoupled Authentication required by ACS but not requested by 3DS Requestor
|
29
|
+
'24': 3DS Requestor Decoupled Max Expiry Time exceeded
|
30
|
+
'25': Decoupled Authentication was provided insufficient time to authenticate cardholder. ACS will not make attempt
|
31
|
+
'26': Authentication attempted but not performed by the cardholder
|
32
|
+
|
33
|
+
targeted:
|
34
|
+
cardholder:
|
35
|
+
<<: *universal_tds_status_codes
|
36
|
+
'09': Card authentication failed # Security failure
|
37
|
+
'10': Card authentication failed # Stolen card
|
38
|
+
'11': Card authentication failed # Suspected fraud
|
39
|
+
merchant:
|
40
|
+
<<: *universal_tds_status_codes
|
41
|
+
'09': Security failure
|
42
|
+
'10': Stolen card
|
43
|
+
'11': Suspected fraud
|
35
44
|
issuer_response_codes:
|
36
45
|
suggestion: 'Suggestion'
|
37
46
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
47
|
+
fraudulent_codes:
|
48
|
+
'04': true
|
49
|
+
'07': true
|
50
|
+
'41': true
|
51
|
+
'43': true
|
52
|
+
universal: &issuer_response_code
|
53
|
+
unknown: "Unknown reason."
|
54
|
+
'00': "Transaction rejected due to no response from issuer/bank, inactive Merchant account, used not supported card or incorrect card data."
|
55
|
+
'01': "Authorization Error."
|
56
|
+
'02': "Authorization Error."
|
57
|
+
'03': "Authorization Error."
|
58
|
+
'05': "The bank has declined the transaction due to security check (used card doesn't support recurring payments/ payment without CVV code), the funds have been frozen or limit exceeded, or card doesn't support MOTO/internet transactions."
|
59
|
+
'12': "No privileges to execute this transaction for your card."
|
60
|
+
'13': "Please check settings of your account and configurations of limits."
|
61
|
+
'14': "Invalid card number."
|
62
|
+
'30': "Your bank has declined this transaction"
|
63
|
+
'N7': "Negative CVV results."
|
64
|
+
'51': "Insufficient funds."
|
65
|
+
'54': "Expired card."
|
66
|
+
'57': "Bank/Issuer has declined the transaction as this credit card cannot be used for this type of transaction (eccommerce, MOTO or recurring)."
|
67
|
+
'58': "Your bank has declined this transaction as this credit card cannot be used for this type of transaction (eccommerce, MOTO or recurring)."
|
68
|
+
'59': "Your bank has declined this transaction"
|
69
|
+
'62': "Your card can be not supported due to restrictions placed on the card or Seller country exclusion (imposition an embargo), or bank blocked a card eg. due to unacceptable debit balance."
|
70
|
+
'61': "Your bank has declined this transaction"
|
71
|
+
'65': "Activity count limit exceeded."
|
72
|
+
'75': "Invalid activity count limit exceeded."
|
73
|
+
'78': "Inactive card."
|
74
|
+
'82': "Negative CVV results."
|
75
|
+
'91': "Temporary issuer error."
|
76
|
+
'92': "Temporary issuer error."
|
77
|
+
'94': "Temporary issuer error."
|
78
|
+
'96': "Temporary issuer error."
|
79
|
+
'98': "Temporary issuer error."
|
80
|
+
'E3': "Transaction not executed due to a 3D-Secure error."
|
81
|
+
'E4': "Transaction not executed due to a negative 3D-Secure confirmation from your bank."
|
82
|
+
'E5': "Temporary 3D-Secure error."
|
83
|
+
'R0': "Refused by Issuer because Customer requested stop of specific recurring payments."
|
84
|
+
'R1': "Refused by Issuer because Customer requested stop of all recurring payments."
|
38
85
|
behaviour:
|
39
86
|
unknown: "Please contact our support team."
|
40
87
|
'00': "Check the card's data or please try again later."
|
41
88
|
'01': "Please contact your card issuer."
|
42
89
|
'02': "Please contact your card issuer."
|
43
90
|
'03': "Please contact your card issuer and try again later."
|
44
|
-
'04': "Please contact your card issuer and try again later.
|
91
|
+
'04': "Please contact your card issuer and try again later."
|
45
92
|
'05': "Please check your card settings for those transaction types or use another card."
|
46
|
-
'07': "Please contact your card issuer and try again later.
|
93
|
+
'07': "Please contact your card issuer and try again later."
|
47
94
|
'12': "Please contact your card issuer to get more details and try again later."
|
48
95
|
'13': "Please contact your card issuer and try again later."
|
49
96
|
'14': "Check entered data and try again."
|
50
97
|
'30': "Please contact your card issuer to get more details and try again later."
|
51
|
-
'41': "Please contact your card issuer to get more details and try again later.
|
52
|
-
'43': "Please contact your card issuer to get more details and try again later.
|
98
|
+
'41': "Please contact your card issuer to get more details and try again later."
|
99
|
+
'43': "Please contact your card issuer to get more details and try again later."
|
53
100
|
'N7': "Check entered data and try again."
|
54
101
|
'51': "Please check funds on your account and try again later."
|
55
102
|
'54': "Please check your card or try another."
|
data/lib/locale/lt.yml
CHANGED
@@ -1,41 +1,88 @@
|
|
1
1
|
lt:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
2
|
+
tds_status_codes:
|
3
|
+
fraudulent_codes:
|
4
|
+
'09': true
|
5
|
+
'10': true
|
6
|
+
'11': true
|
7
|
+
universal: &universal_tds_status_codes
|
8
|
+
unknown: "Unknown reason."
|
9
|
+
'01': Card authentication failed
|
10
|
+
'02': Unknown Device
|
11
|
+
'03': Unsupported Device
|
12
|
+
'04': Exceeds authentication frequency limit
|
13
|
+
'05': Expired card
|
14
|
+
'06': Invalid card number
|
15
|
+
'07': Invalid transaction
|
16
|
+
'08': No Card record
|
17
|
+
'12': Transaction not permitted to cardholder
|
18
|
+
'13': Cardholder not enrolled in service
|
19
|
+
'14': Transaction timed out at the ACS
|
20
|
+
'15': Low confidence
|
21
|
+
'16': Medium confidence
|
22
|
+
'17': High confidence
|
23
|
+
'18': Very High confidence
|
24
|
+
'19': Exceeds ACS maximum challenges
|
25
|
+
'20': Non-Payment transaction not supported
|
26
|
+
'21': 3RI transaction not supported
|
27
|
+
'22': ACS technical issue
|
28
|
+
'23': Decoupled Authentication required by ACS but not requested by 3DS Requestor
|
29
|
+
'24': 3DS Requestor Decoupled Max Expiry Time exceeded
|
30
|
+
'25': Decoupled Authentication was provided insufficient time to authenticate cardholder. ACS will not make attempt
|
31
|
+
'26': Authentication attempted but not performed by the cardholder
|
32
|
+
|
33
|
+
targeted:
|
34
|
+
cardholder:
|
35
|
+
<<: *universal_tds_status_codes
|
36
|
+
'09': Card authentication failed # Security failure
|
37
|
+
'10': Card authentication failed # Stolen card
|
38
|
+
'11': Card authentication failed # Suspected fraud
|
39
|
+
merchant:
|
40
|
+
<<: *universal_tds_status_codes
|
41
|
+
'09': Security failure
|
42
|
+
'10': Stolen card
|
43
|
+
'11': Suspected fraud
|
36
44
|
issuer_response_codes:
|
37
45
|
suggestion: 'Suggestion'
|
38
46
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
47
|
+
fraudulent_codes:
|
48
|
+
'04': true
|
49
|
+
'07': true
|
50
|
+
'41': true
|
51
|
+
'43': true
|
52
|
+
universal: &issuer_response_code
|
53
|
+
'00': "Įvyko klaida. Elavon atmetė mokėjimą dėl netinkamos mokėjimo kortelės rūšies, neteisingų kortelės duomenų, negauto atsakymo iš banko/kortelės išdavėjo arba neaktyvios Prekybininko paskyros."
|
54
|
+
'05': "Bankas atmetė mokėjimą saugumo patikros metu (naudojama kortelė nepalaiko periodinių mokėjimų/mokėjimų be kortelės saugos (CVV) kodo), lėšos buvo užšaldytos, limitas viršytas arba mokėjimo kortelė nepalaiko nuotolinių/internetinių mokėjimų."
|
55
|
+
'13': "Bankas atmetė mokėjimą."
|
56
|
+
'14': "Kortelės numeris neteisingas."
|
57
|
+
'N7': "Kortelės saugos kodas (CVV) neteisingas."
|
58
|
+
'51': "Nepakanka lėšų sąskaitoje."
|
59
|
+
'54': "Kortelė negalioja."
|
60
|
+
'57': "Bankas atmetė mokėjimą, nes ši kreditinė kortelė negali būti naudojama šiam mokėjimų tipui (elektroninei prekybai, nuotoliniams ar periodiniams mokėjimams)."
|
61
|
+
'61': "Bankas atmetė mokėjimą."
|
62
|
+
'82': "Kortelės saugos kodas (CVV) neteisingas."
|
63
|
+
# incomplete translations
|
64
|
+
unknown: "Unknown reason."
|
65
|
+
'01': "Authorization Error."
|
66
|
+
'02': "Authorization Error."
|
67
|
+
'03': "Authorization Error."
|
68
|
+
'12': "No privileges to execute this transaction for your card."
|
69
|
+
'30': "Your bank has declined this transaction"
|
70
|
+
'58': "Your bank has declined this transaction as this credit card cannot be used for this type of transaction (eccommerce, MOTO or recurring)."
|
71
|
+
'59': "Your bank has declined this transaction"
|
72
|
+
'62': "Your card can be not supported due to restrictions placed on the card or Seller country exclusion (imposition an embargo), or bank blocked a card eg. due to unacceptable debit balance."
|
73
|
+
'65': "Activity count limit exceeded."
|
74
|
+
'75': "Invalid activity count limit exceeded."
|
75
|
+
'78': "Inactive card."
|
76
|
+
'91': "Temporary issuer error."
|
77
|
+
'92': "Temporary issuer error."
|
78
|
+
'94': "Temporary issuer error."
|
79
|
+
'96': "Temporary issuer error."
|
80
|
+
'98': "Temporary issuer error."
|
81
|
+
'E3': "Transaction not executed due to a 3D-Secure error."
|
82
|
+
'E4': "Transaction not executed due to a negative 3D-Secure confirmation from your bank."
|
83
|
+
'E5': "Temporary 3D-Secure error."
|
84
|
+
'R0': "Refused by Issuer because Customer requested stop of specific recurring payments."
|
85
|
+
'R1': "Refused by Issuer because Customer requested stop of all recurring payments."
|
39
86
|
behaviour:
|
40
87
|
'00': "Prašome bandyti vėliau, susisiekti su Pardavėju arba Espago palaikymo komanda."
|
41
88
|
'05': "Patikrinkite kortelės nustatymus šiems mokėjimų tipams arba naudokite kitą kortelę."
|
@@ -52,12 +99,12 @@ lt:
|
|
52
99
|
'01': "Please contact your card issuer."
|
53
100
|
'02': "Please contact your card issuer."
|
54
101
|
'03': "Please contact your card issuer and try again later."
|
55
|
-
'04': "Please contact your card issuer and try again later.
|
56
|
-
'07': "Please contact your card issuer and try again later.
|
102
|
+
'04': "Please contact your card issuer and try again later."
|
103
|
+
'07': "Please contact your card issuer and try again later."
|
57
104
|
'12': "Please contact your card issuer to get more details and try again later."
|
58
105
|
'30': "Please contact your card issuer to get more details and try again later."
|
59
|
-
'41': "Please contact your card issuer to get more details and try again later.
|
60
|
-
'43': "Please contact your card issuer to get more details and try again later.
|
106
|
+
'41': "Please contact your card issuer to get more details and try again later."
|
107
|
+
'43': "Please contact your card issuer to get more details and try again later."
|
61
108
|
'58': "Please check your card settings for those transaction types or use another card."
|
62
109
|
'59': "Please contact your card issuer to get more details and try again later."
|
63
110
|
'62': "Please contact your bank."
|
data/lib/locale/lv.yml
CHANGED
@@ -1,41 +1,88 @@
|
|
1
1
|
lv:
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
2
|
+
tds_status_codes:
|
3
|
+
fraudulent_codes:
|
4
|
+
'09': true
|
5
|
+
'10': true
|
6
|
+
'11': true
|
7
|
+
universal: &universal_tds_status_codes
|
8
|
+
unknown: "Unknown reason."
|
9
|
+
'01': Card authentication failed
|
10
|
+
'02': Unknown Device
|
11
|
+
'03': Unsupported Device
|
12
|
+
'04': Exceeds authentication frequency limit
|
13
|
+
'05': Expired card
|
14
|
+
'06': Invalid card number
|
15
|
+
'07': Invalid transaction
|
16
|
+
'08': No Card record
|
17
|
+
'12': Transaction not permitted to cardholder
|
18
|
+
'13': Cardholder not enrolled in service
|
19
|
+
'14': Transaction timed out at the ACS
|
20
|
+
'15': Low confidence
|
21
|
+
'16': Medium confidence
|
22
|
+
'17': High confidence
|
23
|
+
'18': Very High confidence
|
24
|
+
'19': Exceeds ACS maximum challenges
|
25
|
+
'20': Non-Payment transaction not supported
|
26
|
+
'21': 3RI transaction not supported
|
27
|
+
'22': ACS technical issue
|
28
|
+
'23': Decoupled Authentication required by ACS but not requested by 3DS Requestor
|
29
|
+
'24': 3DS Requestor Decoupled Max Expiry Time exceeded
|
30
|
+
'25': Decoupled Authentication was provided insufficient time to authenticate cardholder. ACS will not make attempt
|
31
|
+
'26': Authentication attempted but not performed by the cardholder
|
32
|
+
|
33
|
+
targeted:
|
34
|
+
cardholder:
|
35
|
+
<<: *universal_tds_status_codes
|
36
|
+
'09': Card authentication failed # Security failure
|
37
|
+
'10': Card authentication failed # Stolen card
|
38
|
+
'11': Card authentication failed # Suspected fraud
|
39
|
+
merchant:
|
40
|
+
<<: *universal_tds_status_codes
|
41
|
+
'09': Security failure
|
42
|
+
'10': Stolen card
|
43
|
+
'11': Suspected fraud
|
36
44
|
issuer_response_codes:
|
37
45
|
suggestion: 'Suggestion'
|
38
46
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
47
|
+
fraudulent_codes:
|
48
|
+
'04': true
|
49
|
+
'07': true
|
50
|
+
'41': true
|
51
|
+
'43': true
|
52
|
+
universal: &issuer_response_code
|
53
|
+
'00': "Notikusi kļūda. Elavon atteicis darījumu, jo netiek atbalstīts kartes veids, kartes dati ir nepareizi, nav saņemta atbilde no izdevēja/bankas vai tirgotāja konts nav aktīvs."
|
54
|
+
'05': "Banka ir atteikusi darījumu drošības pārbaudes dēļ (lietotā karte neatbalsta automātiskus maksājumus/maksājumu bez CVV koda) vai arī naudas līdzekļi ir iesaldēti, ticis pārsniegts limits, vai karte neatbalsta MOTO/interneta darījumus."
|
55
|
+
'13': "MOTO/e-komercija neaktīva vai pārsniegts summas limits."
|
56
|
+
'14': "Nepareizs kartes numurs."
|
57
|
+
'N7': "Negatīvi CVV rezultāti."
|
58
|
+
'51': "Nepietiek naudas līdzekļu."
|
59
|
+
'54': "Kartei beidzies termiņš."
|
60
|
+
'57': "Kartes turētājam šis darījuma veids nav atļauts. Banka ir atteikusi darījumu, jo šo kredītkarti nevar lietot šim darījuma veidam (e-komercija, MOTO vai automātiskais maksājums)."
|
61
|
+
'61': "MOTO/e-komercija neaktīva vai pārsniegts summas limits."
|
62
|
+
'82': "Negatīvi CVV rezultāti."
|
63
|
+
# incomplete translations
|
64
|
+
unknown: "Unknown reason."
|
65
|
+
'01': "Authorization Error."
|
66
|
+
'02': "Authorization Error."
|
67
|
+
'03': "Authorization Error."
|
68
|
+
'12': "No privileges to execute this transaction for your card."
|
69
|
+
'30': "Your bank has declined this transaction"
|
70
|
+
'58': "Your bank has declined this transaction as this credit card cannot be used for this type of transaction (eccommerce, MOTO or recurring)."
|
71
|
+
'59': "Your bank has declined this transaction"
|
72
|
+
'62': "Your card can be not supported due to restrictions placed on the card or Seller country exclusion (imposition an embargo), or bank blocked a card eg. due to unacceptable debit balance."
|
73
|
+
'65': "Activity count limit exceeded."
|
74
|
+
'75': "Invalid activity count limit exceeded."
|
75
|
+
'78': "Inactive card."
|
76
|
+
'91': "Temporary issuer error."
|
77
|
+
'92': "Temporary issuer error."
|
78
|
+
'94': "Temporary issuer error."
|
79
|
+
'96': "Temporary issuer error."
|
80
|
+
'98': "Temporary issuer error."
|
81
|
+
'E3': "Transaction not executed due to a 3D-Secure error."
|
82
|
+
'E4': "Transaction not executed due to a negative 3D-Secure confirmation from your bank."
|
83
|
+
'E5': "Temporary 3D-Secure error."
|
84
|
+
'R0': "Refused by Issuer because Customer requested stop of specific recurring payments."
|
85
|
+
'R1': "Refused by Issuer because Customer requested stop of all recurring payments."
|
39
86
|
behaviour:
|
40
87
|
'00': "Lūdzu mēģiniet vēlreiz! Sazinieties ar pārdevēju vai Espago atbalsta komandu."
|
41
88
|
'05': "Lūdzu pārbaudiet kartes iestatījumus šiem darījumu veidiem vai lietojiet citu karti."
|
@@ -52,12 +99,12 @@ lv:
|
|
52
99
|
'01': "Please contact your card issuer."
|
53
100
|
'02': "Please contact your card issuer."
|
54
101
|
'03': "Please contact your card issuer and try again later."
|
55
|
-
'04': "Please contact your card issuer and try again later.
|
56
|
-
'07': "Please contact your card issuer and try again later.
|
102
|
+
'04': "Please contact your card issuer and try again later."
|
103
|
+
'07': "Please contact your card issuer and try again later."
|
57
104
|
'12': "Please contact your card issuer to get more details and try again later."
|
58
105
|
'30': "Please contact your card issuer to get more details and try again later."
|
59
|
-
'41': "Please contact your card issuer to get more details and try again later.
|
60
|
-
'43': "Please contact your card issuer to get more details and try again later.
|
106
|
+
'41': "Please contact your card issuer to get more details and try again later."
|
107
|
+
'43': "Please contact your card issuer to get more details and try again later."
|
61
108
|
'58': "Please check your card settings for those transaction types or use another card."
|
62
109
|
'59': "Please contact your card issuer to get more details and try again later."
|
63
110
|
'62': "Please contact your bank."
|