issuer_response_codes 0.3.12 → 0.3.13
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/.github/workflows/ci.yml +2 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +45 -41
- data/lib/issuer_response_codes/version.rb +1 -1
- data/lib/locale/cs.yml +51 -0
- data/lib/locale/da.yml +51 -0
- data/lib/locale/de.yml +51 -0
- data/lib/locale/ee.yml +51 -0
- data/lib/locale/en.yml +51 -0
- data/lib/locale/es.yml +51 -0
- data/lib/locale/fi.yml +51 -0
- data/lib/locale/fr.yml +51 -0
- data/lib/locale/hr.yml +51 -0
- data/lib/locale/hu.yml +51 -0
- data/lib/locale/it.yml +51 -0
- data/lib/locale/ja.yml +51 -0
- data/lib/locale/lt.yml +51 -0
- data/lib/locale/lv.yml +51 -0
- data/lib/locale/nl.yml +51 -0
- data/lib/locale/pl.yml +51 -0
- data/lib/locale/pt.yml +51 -0
- data/lib/locale/ru.yml +51 -0
- data/lib/locale/sk.yml +51 -0
- data/lib/locale/sv.yml +51 -0
- data/lib/locale/uk.yml +51 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f66b583216c118403079edb2ed6257e06221d97679522e034c32e0b47aa31f99
|
|
4
|
+
data.tar.gz: b6fc128819bed58ebeff1d4bb09f790f9cd2ff4ec25bb3913f513c98b3fea564
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd27135937530ff7467bcdeee3a98bde4d2287552e5ff2ceb87b75d70e60404a1311d0da5c5628f5c51504cb55bd5187b3079290971df06a82fcf2793b4614e2
|
|
7
|
+
data.tar.gz: 2ceeb3efe65fffbe95be5e3ba680d5006b2e096e5f9b0446e7fea1c1be7a7df66bfa0b23bcdb07e44f90d95c2a5ccbf0fb1485620f4fcab9bec6d81b6b2b0f24
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -13,12 +13,12 @@ jobs:
|
|
|
13
13
|
CI: true
|
|
14
14
|
strategy:
|
|
15
15
|
matrix:
|
|
16
|
-
ruby-version: ['3.
|
|
16
|
+
ruby-version: ['3.3', '3.4', '4.0']
|
|
17
17
|
steps:
|
|
18
18
|
- name: Checkout code
|
|
19
19
|
uses: actions/checkout@v3
|
|
20
20
|
- name: Install Ruby and gems
|
|
21
|
-
uses: ruby/setup-ruby@v1
|
|
21
|
+
uses: ruby/setup-ruby@v1
|
|
22
22
|
with:
|
|
23
23
|
ruby-version: ${{ matrix.ruby-version }}
|
|
24
24
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.4.
|
|
1
|
+
3.4.10
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.13] - 2026.09.20
|
|
9
|
+
|
|
10
|
+
- Add new category of Issuer Response Codes `Mxx`, for `Merchant Advice Code` mapping
|
|
11
|
+
|
|
8
12
|
## [0.3.12] - 2026.03.19
|
|
9
13
|
|
|
10
14
|
- Add `E2` response code
|
data/Gemfile
CHANGED
|
@@ -8,7 +8,7 @@ gemspec
|
|
|
8
8
|
gem 'bundler', '~> 2.6' # library manager
|
|
9
9
|
gem 'byebug', '~> 12.0' # debugger
|
|
10
10
|
gem 'minitest', '~> 5.25' # test framework
|
|
11
|
-
gem 'rake', '~>
|
|
11
|
+
gem 'rake', '~> 13.4' # automation
|
|
12
12
|
gem 'rubocop', '~> 1.77' # linter
|
|
13
13
|
gem 'rubocop-espago', '~> 1.1' # linter config
|
|
14
14
|
gem 'rubocop-sorbet', '~> 0.10' # linter config for sorbet
|
data/Gemfile.lock
CHANGED
|
@@ -1,97 +1,101 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
issuer_response_codes (0.3.
|
|
4
|
+
issuer_response_codes (0.3.13)
|
|
5
5
|
sorbet-runtime (~> 0.5)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
10
|
ast (2.4.3)
|
|
11
|
-
benchmark (0.
|
|
11
|
+
benchmark (0.5.0)
|
|
12
12
|
byebug (12.0.0)
|
|
13
13
|
erubi (1.13.1)
|
|
14
|
-
json (2.
|
|
14
|
+
json (2.19.4)
|
|
15
15
|
language_server-protocol (3.17.0.5)
|
|
16
16
|
lint_roller (1.1.0)
|
|
17
17
|
logger (1.7.0)
|
|
18
|
-
minitest (5.
|
|
18
|
+
minitest (5.27.0)
|
|
19
19
|
netrc (0.11.0)
|
|
20
|
-
parallel (
|
|
21
|
-
parser (3.3.
|
|
20
|
+
parallel (2.0.1)
|
|
21
|
+
parser (3.3.11.1)
|
|
22
22
|
ast (~> 2.4.1)
|
|
23
23
|
racc
|
|
24
|
-
prism (1.
|
|
24
|
+
prism (1.9.0)
|
|
25
25
|
racc (1.8.1)
|
|
26
26
|
rainbow (3.1.1)
|
|
27
|
-
rake (
|
|
28
|
-
rbi (0.3.
|
|
27
|
+
rake (13.4.2)
|
|
28
|
+
rbi (0.3.10)
|
|
29
29
|
prism (~> 1.0)
|
|
30
|
-
rbs (>=
|
|
31
|
-
rbs (4.
|
|
30
|
+
rbs (>= 4.0.1)
|
|
31
|
+
rbs (4.1.0.pre.1)
|
|
32
32
|
logger
|
|
33
|
-
prism (>= 1.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
prism (>= 1.6.0)
|
|
34
|
+
tsort
|
|
35
|
+
regexp_parser (2.12.0)
|
|
36
|
+
require-hooks (0.2.3)
|
|
37
|
+
rexml (3.4.4)
|
|
38
|
+
rubocop (1.86.1)
|
|
38
39
|
json (~> 2.3)
|
|
39
40
|
language_server-protocol (~> 3.17.0.2)
|
|
40
41
|
lint_roller (~> 1.1.0)
|
|
41
|
-
parallel (
|
|
42
|
+
parallel (>= 1.10)
|
|
42
43
|
parser (>= 3.3.0.2)
|
|
43
44
|
rainbow (>= 2.2.2, < 4.0)
|
|
44
45
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
45
|
-
rubocop-ast (>= 1.
|
|
46
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
46
47
|
ruby-progressbar (~> 1.7)
|
|
47
48
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
48
|
-
rubocop-ast (1.
|
|
49
|
+
rubocop-ast (1.49.1)
|
|
49
50
|
parser (>= 3.3.7.2)
|
|
50
|
-
prism (~> 1.
|
|
51
|
-
rubocop-espago (1.
|
|
51
|
+
prism (~> 1.7)
|
|
52
|
+
rubocop-espago (1.2.0)
|
|
52
53
|
rubocop
|
|
53
|
-
rubocop-sorbet (0.
|
|
54
|
+
rubocop-sorbet (0.12.0)
|
|
54
55
|
lint_roller
|
|
55
56
|
rubocop (>= 1.75.2)
|
|
56
57
|
ruby-progressbar (1.13.0)
|
|
57
|
-
sorbet (0.
|
|
58
|
-
sorbet-static (= 0.
|
|
59
|
-
sorbet-runtime (0.
|
|
60
|
-
sorbet-static (0.
|
|
61
|
-
sorbet-static (0.
|
|
62
|
-
sorbet-static-and-runtime (0.
|
|
63
|
-
sorbet (= 0.
|
|
64
|
-
sorbet-runtime (= 0.
|
|
65
|
-
spoom (1.7.
|
|
58
|
+
sorbet (0.6.13145)
|
|
59
|
+
sorbet-static (= 0.6.13145)
|
|
60
|
+
sorbet-runtime (0.6.13145)
|
|
61
|
+
sorbet-static (0.6.13145-universal-darwin)
|
|
62
|
+
sorbet-static (0.6.13145-x86_64-linux)
|
|
63
|
+
sorbet-static-and-runtime (0.6.13145)
|
|
64
|
+
sorbet (= 0.6.13145)
|
|
65
|
+
sorbet-runtime (= 0.6.13145)
|
|
66
|
+
spoom (1.7.12)
|
|
66
67
|
erubi (>= 1.10.0)
|
|
67
68
|
prism (>= 0.28.0)
|
|
68
69
|
rbi (>= 0.3.3)
|
|
69
|
-
rbs (>= 4.0.0.dev.
|
|
70
|
+
rbs (>= 4.0.0.dev.5)
|
|
70
71
|
rexml (>= 3.2.6)
|
|
71
72
|
sorbet-static-and-runtime (>= 0.5.10187)
|
|
72
73
|
thor (>= 0.19.2)
|
|
73
|
-
tapioca (0.
|
|
74
|
+
tapioca (0.18.0)
|
|
74
75
|
benchmark
|
|
75
76
|
bundler (>= 2.2.25)
|
|
76
77
|
netrc (>= 0.11.0)
|
|
77
78
|
parallel (>= 1.21.0)
|
|
78
|
-
rbi (>= 0.3.
|
|
79
|
+
rbi (>= 0.3.7)
|
|
79
80
|
require-hooks (>= 0.2.2)
|
|
80
81
|
sorbet-static-and-runtime (>= 0.5.11087)
|
|
81
|
-
spoom (>= 1.7.
|
|
82
|
+
spoom (>= 1.7.9)
|
|
82
83
|
thor (>= 1.2.0)
|
|
84
|
+
tsort
|
|
83
85
|
yard-sorbet
|
|
84
|
-
thor (1.
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
thor (1.5.0)
|
|
87
|
+
tsort (0.2.0)
|
|
88
|
+
unicode-display_width (3.2.0)
|
|
89
|
+
unicode-emoji (~> 4.1)
|
|
90
|
+
unicode-emoji (4.2.0)
|
|
91
|
+
yard (0.9.43)
|
|
89
92
|
yard-sorbet (0.9.0)
|
|
90
93
|
sorbet-runtime
|
|
91
94
|
yard
|
|
92
95
|
|
|
93
96
|
PLATFORMS
|
|
94
97
|
arm64-darwin-24
|
|
98
|
+
arm64-darwin-25
|
|
95
99
|
x86_64-linux
|
|
96
100
|
|
|
97
101
|
DEPENDENCIES
|
|
@@ -99,7 +103,7 @@ DEPENDENCIES
|
|
|
99
103
|
byebug (~> 12.0)
|
|
100
104
|
issuer_response_codes!
|
|
101
105
|
minitest (~> 5.25)
|
|
102
|
-
rake (~>
|
|
106
|
+
rake (~> 13.4)
|
|
103
107
|
rubocop (~> 1.77)
|
|
104
108
|
rubocop-espago (~> 1.1)
|
|
105
109
|
rubocop-sorbet (~> 0.10)
|
data/lib/locale/cs.yml
CHANGED
|
@@ -177,6 +177,23 @@ cs:
|
|
|
177
177
|
'N3': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
178
178
|
'P5': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
179
179
|
'R2': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
180
|
+
'M01': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
181
|
+
'M02': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
182
|
+
'M03': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
183
|
+
'M04': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
184
|
+
'M05': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
185
|
+
'M21': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
186
|
+
'M22': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
187
|
+
'M24': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
188
|
+
'M25': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
189
|
+
'M26': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
190
|
+
'M27': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
191
|
+
'M28': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
192
|
+
'M29': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
193
|
+
'M30': "Zkuste to prosím znovu později nebo kontaktujte vydavatele pro vysvětlení."
|
|
194
|
+
'M40': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
195
|
+
'M41': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
196
|
+
'M43': "Použijte prosím jinou kartu nebo kontaktujte vydavatele pro vysvětlení."
|
|
180
197
|
universal: &issuer_response_code
|
|
181
198
|
unknown: "Neznámý důvod."
|
|
182
199
|
'75': "Překročen povolený počet pokusů o zadání PINu."
|
|
@@ -251,6 +268,23 @@ cs:
|
|
|
251
268
|
'R0': "Příkaz k zastavení platby."
|
|
252
269
|
'R1': "Příkaz ke zrušení autorizace."
|
|
253
270
|
'R3': "Příkaz ke zrušení všech autorizací."
|
|
271
|
+
'M01': "Nové informace o účtu jsou k dispozici."
|
|
272
|
+
'M02': "Zkuste to později."
|
|
273
|
+
'M03': "Nezkoušejte to znovu."
|
|
274
|
+
'M04': "Nesplněny požadavky na token pro tento typ tokenu."
|
|
275
|
+
'M05': "Sjednaná hodnota nebyla schválena."
|
|
276
|
+
'M21': "Zastavit opakovanou platbu."
|
|
277
|
+
'M22': "Obchodník nesplňuje podmínky pro kód produktu."
|
|
278
|
+
'M24': "Zkuste to znovu po 1 hodině."
|
|
279
|
+
'M25': "Zkuste to znovu po 24 hodinách."
|
|
280
|
+
'M26': "Zkuste to znovu po 2 dnech."
|
|
281
|
+
'M27': "Zkuste to znovu po 4 dnech."
|
|
282
|
+
'M28': "Zkuste to znovu po 6 dnech."
|
|
283
|
+
'M29': "Zkuste to znovu po 8 dnech."
|
|
284
|
+
'M30': "Zkuste to znovu po 10 dnech."
|
|
285
|
+
'M40': "Nedobíjecí předplacená karta spotřebitele."
|
|
286
|
+
'M41': "Jednorázové virtuální číslo karty spotřebitele."
|
|
287
|
+
'M43': "Víceúčelové virtuální číslo karty spotřebitele."
|
|
254
288
|
cardholder:
|
|
255
289
|
<<: *issuer_response_code
|
|
256
290
|
'00': "Platba selhala."
|
|
@@ -302,3 +336,20 @@ cs:
|
|
|
302
336
|
'R0': "Platba zamítnuta vydavatelem - příkaz k zastavení platby."
|
|
303
337
|
'R1': "Platba zamítnuta vydavatelem - příkaz ke zrušení autorizace."
|
|
304
338
|
'R3': "Platba zamítnuta vydavatelem - příkaz ke zrušení všech autorizací."
|
|
339
|
+
'M01': "Platba zamítnuta vydavatelem."
|
|
340
|
+
'M02': "Platba zamítnuta vydavatelem."
|
|
341
|
+
'M03': "Platba zamítnuta vydavatelem."
|
|
342
|
+
'M04': "Platba zamítnuta vydavatelem."
|
|
343
|
+
'M05': "Platba zamítnuta vydavatelem."
|
|
344
|
+
'M21': "Platba zamítnuta vydavatelem."
|
|
345
|
+
'M22': "Platba zamítnuta vydavatelem."
|
|
346
|
+
'M24': "Platba zamítnuta vydavatelem."
|
|
347
|
+
'M25': "Platba zamítnuta vydavatelem."
|
|
348
|
+
'M26': "Platba zamítnuta vydavatelem."
|
|
349
|
+
'M27': "Platba zamítnuta vydavatelem."
|
|
350
|
+
'M28': "Platba zamítnuta vydavatelem."
|
|
351
|
+
'M29': "Platba zamítnuta vydavatelem."
|
|
352
|
+
'M30': "Platba zamítnuta vydavatelem."
|
|
353
|
+
'M40': "Platba zamítnuta vydavatelem."
|
|
354
|
+
'M41': "Platba zamítnuta vydavatelem."
|
|
355
|
+
'M43': "Platba zamítnuta vydavatelem."
|
data/lib/locale/da.yml
CHANGED
|
@@ -154,6 +154,23 @@ da:
|
|
|
154
154
|
'E5': "Please try again later or contact your card issuer to get more details"
|
|
155
155
|
'R0': "Please contact your card issuer to get more details and try again later."
|
|
156
156
|
'R1': "Please contact your card issuer to get more details and try again later."
|
|
157
|
+
'M01': "Please use a different card or contact the issuer for clarification."
|
|
158
|
+
'M02': "Please try again later or contact the issuer for clarification."
|
|
159
|
+
'M03': "Please use a different card or contact the issuer for clarification."
|
|
160
|
+
'M04': "Please use a different card or contact the issuer for clarification."
|
|
161
|
+
'M05': "Please use a different card or contact the issuer for clarification."
|
|
162
|
+
'M21': "Please use a different card or contact the issuer for clarification."
|
|
163
|
+
'M22': "Please use a different card or contact the issuer for clarification."
|
|
164
|
+
'M24': "Please try again later or contact the issuer for clarification."
|
|
165
|
+
'M25': "Please try again later or contact the issuer for clarification."
|
|
166
|
+
'M26': "Please try again later or contact the issuer for clarification."
|
|
167
|
+
'M27': "Please try again later or contact the issuer for clarification."
|
|
168
|
+
'M28': "Please try again later or contact the issuer for clarification."
|
|
169
|
+
'M29': "Please try again later or contact the issuer for clarification."
|
|
170
|
+
'M30': "Please try again later or contact the issuer for clarification."
|
|
171
|
+
'M40': "Please use a different card or contact the issuer for clarification."
|
|
172
|
+
'M41': "Please use a different card or contact the issuer for clarification."
|
|
173
|
+
'M43': "Please use a different card or contact the issuer for clarification."
|
|
157
174
|
universal: &issuer_response_code
|
|
158
175
|
'00': "En fejl opstod. Transaktionen blev afvist af Elavon på grund af ikke-understøttet korttype eller forkerte kortdata, intet svar fra udsteder / bank eller inaktiv Merchant-konto."
|
|
159
176
|
'05': "Banken har afvist transaktionen på grund af sikkerhedskontrol (brugt kort understøtter ikke tilbagebetalinger eller betaling uden CVV-kode), midlerne er blevet frosset eller grænsen overskredet, eller kortet understøtter ikke MOTO / internet-transaktioner."
|
|
@@ -207,6 +224,23 @@ da:
|
|
|
207
224
|
'B41': "Lost card."
|
|
208
225
|
'43': "Stolen card."
|
|
209
226
|
'B43': "Stolen card."
|
|
227
|
+
'M01': "New account information available"
|
|
228
|
+
'M02': "Try Again Later"
|
|
229
|
+
'M03': "Do Not Try again"
|
|
230
|
+
'M04': "Token requirements not fulfilled for this token type"
|
|
231
|
+
'M05': "Negotiated value not approved"
|
|
232
|
+
'M21': "Stop recurring payment"
|
|
233
|
+
'M22': "Merchant does not qualify for product code"
|
|
234
|
+
'M24': "Retry after 1 hour"
|
|
235
|
+
'M25': "Retry after 24 hours"
|
|
236
|
+
'M26': "Retry after 2 days"
|
|
237
|
+
'M27': "Retry after 4 days"
|
|
238
|
+
'M28': "Retry after 6 days"
|
|
239
|
+
'M29': "Retry after 8 days"
|
|
240
|
+
'M30': "Retry after 10 days"
|
|
241
|
+
'M40': "Consumer non-reloadable prepaid card"
|
|
242
|
+
'M41': "Consumer single-use virtual card number"
|
|
243
|
+
'M43': "Consumer multi-use virtual card number"
|
|
210
244
|
cardholder:
|
|
211
245
|
<<: *issuer_response_code
|
|
212
246
|
'04': "Your bank has declined this transaction."
|
|
@@ -216,3 +250,20 @@ da:
|
|
|
216
250
|
'B41': "Your bank has declined this transaction."
|
|
217
251
|
'43': "Your bank has declined this transaction."
|
|
218
252
|
'B43': "Your bank has declined this transaction."
|
|
253
|
+
'M01': "Payment rejected by the issuer"
|
|
254
|
+
'M02': "Payment rejected by the issuer"
|
|
255
|
+
'M03': "Payment rejected by the issuer"
|
|
256
|
+
'M04': "Payment rejected by the issuer"
|
|
257
|
+
'M05': "Payment rejected by the issuer"
|
|
258
|
+
'M21': "Payment rejected by the issuer"
|
|
259
|
+
'M22': "Payment rejected by the issuer"
|
|
260
|
+
'M24': "Payment rejected by the issuer"
|
|
261
|
+
'M25': "Payment rejected by the issuer"
|
|
262
|
+
'M26': "Payment rejected by the issuer"
|
|
263
|
+
'M27': "Payment rejected by the issuer"
|
|
264
|
+
'M28': "Payment rejected by the issuer"
|
|
265
|
+
'M29': "Payment rejected by the issuer"
|
|
266
|
+
'M30': "Payment rejected by the issuer"
|
|
267
|
+
'M40': "Payment rejected by the issuer"
|
|
268
|
+
'M41': "Payment rejected by the issuer"
|
|
269
|
+
'M43': "Payment rejected by the issuer"
|
data/lib/locale/de.yml
CHANGED
|
@@ -178,6 +178,23 @@ de:
|
|
|
178
178
|
'N3': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
179
179
|
'P5': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
180
180
|
'R2': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
181
|
+
'M01': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
182
|
+
'M02': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
183
|
+
'M03': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
184
|
+
'M04': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
185
|
+
'M05': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
186
|
+
'M21': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
187
|
+
'M22': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
188
|
+
'M24': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
189
|
+
'M25': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
190
|
+
'M26': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
191
|
+
'M27': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
192
|
+
'M28': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
193
|
+
'M29': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
194
|
+
'M30': "Bitte versuchen Sie es später erneut oder kontaktieren Sie den Herausgeber für Klarstellungen."
|
|
195
|
+
'M40': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
196
|
+
'M41': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
197
|
+
'M43': "Verwenden Sie eine andere Karte Der Karteninhaber sollte sich mit seiner Bank in Verbindung setzen."
|
|
181
198
|
universal: &issuer_response_code
|
|
182
199
|
unknown: "Unknown reason."
|
|
183
200
|
'75': "Zahlung wurde von Bank abgelehnt. Zulässige Anzahl von PIN-Eintrittsprüfungen überschritten."
|
|
@@ -252,6 +269,23 @@ de:
|
|
|
252
269
|
'R0': "Zahlung nicht wiederholen."
|
|
253
270
|
'R1': "Zahlung nicht wiederholen."
|
|
254
271
|
'R3': "Zahlung nicht wiederholen."
|
|
272
|
+
'M01': "Neue Kontoinformationen verfügbar."
|
|
273
|
+
'M02': "Später erneut versuchen."
|
|
274
|
+
'M03': "Nicht erneut versuchen."
|
|
275
|
+
'M04': "Token-Anforderungen für diesen Token-Typ nicht erfüllt."
|
|
276
|
+
'M05': "Ausgehandelter Betrag nicht genehmigt."
|
|
277
|
+
'M21': "Wiederkehrende Zahlung stoppen."
|
|
278
|
+
'M22': "Händler erfüllt nicht die Anforderungen für den Produktcode."
|
|
279
|
+
'M24': "Erneut versuchen nach 1 Stunde."
|
|
280
|
+
'M25': "Erneut versuchen nach 24 Stunden."
|
|
281
|
+
'M26': "Erneut versuchen nach 2 Tagen."
|
|
282
|
+
'M27': "Erneut versuchen nach 4 Tagen."
|
|
283
|
+
'M28': "Erneut versuchen nach 6 Tagen."
|
|
284
|
+
'M29': "Erneut versuchen nach 8 Tagen."
|
|
285
|
+
'M30': "Erneut versuchen nach 10 Tagen."
|
|
286
|
+
'M40': "Nicht wiederaufladbare Prepaid-Karte des Verbrauchers."
|
|
287
|
+
'M41': "Virtuelle Einweg-Kartennummer des Verbrauchers."
|
|
288
|
+
'M43': "Virtuelle Mehrweg-Kartennummer des Verbrauchers."
|
|
255
289
|
cardholder:
|
|
256
290
|
<<: *issuer_response_code
|
|
257
291
|
'00': "Zahlung ist abgehlent."
|
|
@@ -303,3 +337,20 @@ de:
|
|
|
303
337
|
'R0': "Zahlung wurde von Bank abgelehnt Automatisches Sicherheitssystem hat die Zahlung gestoppt."
|
|
304
338
|
'R1': "Zahlung wurde von Bank abgelehnt Automatisches Sicherheitssystem hat die Zahlung gestoppt."
|
|
305
339
|
'R3': "Zahlung wurde von Bank abgelehnt Automatisches Sicherheitssystem hat die Zahlung gestoppt."
|
|
340
|
+
'M01': "Zahlung wurde von Bank abgelehnt."
|
|
341
|
+
'M02': "Zahlung wurde von Bank abgelehnt."
|
|
342
|
+
'M03': "Zahlung wurde von Bank abgelehnt."
|
|
343
|
+
'M04': "Zahlung wurde von Bank abgelehnt."
|
|
344
|
+
'M05': "Zahlung wurde von Bank abgelehnt."
|
|
345
|
+
'M21': "Zahlung wurde von Bank abgelehnt."
|
|
346
|
+
'M22': "Zahlung wurde von Bank abgelehnt."
|
|
347
|
+
'M24': "Zahlung wurde von Bank abgelehnt."
|
|
348
|
+
'M25': "Zahlung wurde von Bank abgelehnt."
|
|
349
|
+
'M26': "Zahlung wurde von Bank abgelehnt."
|
|
350
|
+
'M27': "Zahlung wurde von Bank abgelehnt."
|
|
351
|
+
'M28': "Zahlung wurde von Bank abgelehnt."
|
|
352
|
+
'M29': "Zahlung wurde von Bank abgelehnt."
|
|
353
|
+
'M30': "Zahlung wurde von Bank abgelehnt."
|
|
354
|
+
'M40': "Zahlung wurde von Bank abgelehnt."
|
|
355
|
+
'M41': "Zahlung wurde von Bank abgelehnt."
|
|
356
|
+
'M43': "Zahlung wurde von Bank abgelehnt."
|
data/lib/locale/ee.yml
CHANGED
|
@@ -154,6 +154,23 @@ ee:
|
|
|
154
154
|
'E5': "Please try again later or contact your card issuer to get more details"
|
|
155
155
|
'R0': "Please contact your card issuer to get more details and try again later."
|
|
156
156
|
'R1': "Please contact your card issuer to get more details and try again later."
|
|
157
|
+
'M01': "Please use a different card or contact the issuer for clarification."
|
|
158
|
+
'M02': "Please try again later or contact the issuer for clarification."
|
|
159
|
+
'M03': "Please use a different card or contact the issuer for clarification."
|
|
160
|
+
'M04': "Please use a different card or contact the issuer for clarification."
|
|
161
|
+
'M05': "Please use a different card or contact the issuer for clarification."
|
|
162
|
+
'M21': "Please use a different card or contact the issuer for clarification."
|
|
163
|
+
'M22': "Please use a different card or contact the issuer for clarification."
|
|
164
|
+
'M24': "Please try again later or contact the issuer for clarification."
|
|
165
|
+
'M25': "Please try again later or contact the issuer for clarification."
|
|
166
|
+
'M26': "Please try again later or contact the issuer for clarification."
|
|
167
|
+
'M27': "Please try again later or contact the issuer for clarification."
|
|
168
|
+
'M28': "Please try again later or contact the issuer for clarification."
|
|
169
|
+
'M29': "Please try again later or contact the issuer for clarification."
|
|
170
|
+
'M30': "Please try again later or contact the issuer for clarification."
|
|
171
|
+
'M40': "Please use a different card or contact the issuer for clarification."
|
|
172
|
+
'M41': "Please use a different card or contact the issuer for clarification."
|
|
173
|
+
'M43': "Please use a different card or contact the issuer for clarification."
|
|
157
174
|
universal: &issuer_response_code
|
|
158
175
|
'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."
|
|
159
176
|
'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."
|
|
@@ -207,6 +224,23 @@ ee:
|
|
|
207
224
|
'B41': "Lost card."
|
|
208
225
|
'43': "Stolen card."
|
|
209
226
|
'B43': "Stolen card."
|
|
227
|
+
'M01': "New account information available"
|
|
228
|
+
'M02': "Try Again Later"
|
|
229
|
+
'M03': "Do Not Try again"
|
|
230
|
+
'M04': "Token requirements not fulfilled for this token type"
|
|
231
|
+
'M05': "Negotiated value not approved"
|
|
232
|
+
'M21': "Stop recurring payment"
|
|
233
|
+
'M22': "Merchant does not qualify for product code"
|
|
234
|
+
'M24': "Retry after 1 hour"
|
|
235
|
+
'M25': "Retry after 24 hours"
|
|
236
|
+
'M26': "Retry after 2 days"
|
|
237
|
+
'M27': "Retry after 4 days"
|
|
238
|
+
'M28': "Retry after 6 days"
|
|
239
|
+
'M29': "Retry after 8 days"
|
|
240
|
+
'M30': "Retry after 10 days"
|
|
241
|
+
'M40': "Consumer non-reloadable prepaid card"
|
|
242
|
+
'M41': "Consumer single-use virtual card number"
|
|
243
|
+
'M43': "Consumer multi-use virtual card number"
|
|
210
244
|
cardholder:
|
|
211
245
|
<<: *issuer_response_code
|
|
212
246
|
'04': "Your bank has declined this transaction."
|
|
@@ -216,3 +250,20 @@ ee:
|
|
|
216
250
|
'B41': "Your bank has declined this transaction."
|
|
217
251
|
'43': "Your bank has declined this transaction."
|
|
218
252
|
'B43': "Your bank has declined this transaction."
|
|
253
|
+
'M01': "Payment rejected by the issuer"
|
|
254
|
+
'M02': "Payment rejected by the issuer"
|
|
255
|
+
'M03': "Payment rejected by the issuer"
|
|
256
|
+
'M04': "Payment rejected by the issuer"
|
|
257
|
+
'M05': "Payment rejected by the issuer"
|
|
258
|
+
'M21': "Payment rejected by the issuer"
|
|
259
|
+
'M22': "Payment rejected by the issuer"
|
|
260
|
+
'M24': "Payment rejected by the issuer"
|
|
261
|
+
'M25': "Payment rejected by the issuer"
|
|
262
|
+
'M26': "Payment rejected by the issuer"
|
|
263
|
+
'M27': "Payment rejected by the issuer"
|
|
264
|
+
'M28': "Payment rejected by the issuer"
|
|
265
|
+
'M29': "Payment rejected by the issuer"
|
|
266
|
+
'M30': "Payment rejected by the issuer"
|
|
267
|
+
'M40': "Payment rejected by the issuer"
|
|
268
|
+
'M41': "Payment rejected by the issuer"
|
|
269
|
+
'M43': "Payment rejected by the issuer"
|
data/lib/locale/en.yml
CHANGED
|
@@ -177,6 +177,23 @@ en:
|
|
|
177
177
|
"N3": "Please use a different card or contact the issuer for clarification."
|
|
178
178
|
"P5": "Please use a different card or contact the issuer for clarification."
|
|
179
179
|
"R2": "Please use a different card or contact the issuer for clarification."
|
|
180
|
+
"M01": "Please use a different card or contact the issuer for clarification."
|
|
181
|
+
"M02": "Please try again later or contact the issuer for clarification."
|
|
182
|
+
"M03": "Please use a different card or contact the issuer for clarification."
|
|
183
|
+
"M04": "Please use a different card or contact the issuer for clarification."
|
|
184
|
+
"M05": "Please use a different card or contact the issuer for clarification."
|
|
185
|
+
"M21": "Please use a different card or contact the issuer for clarification."
|
|
186
|
+
"M22": "Please use a different card or contact the issuer for clarification."
|
|
187
|
+
"M24": "Please try again later or contact the issuer for clarification."
|
|
188
|
+
"M25": "Please try again later or contact the issuer for clarification."
|
|
189
|
+
"M26": "Please try again later or contact the issuer for clarification."
|
|
190
|
+
"M27": "Please try again later or contact the issuer for clarification."
|
|
191
|
+
"M28": "Please try again later or contact the issuer for clarification."
|
|
192
|
+
"M29": "Please try again later or contact the issuer for clarification."
|
|
193
|
+
"M30": "Please try again later or contact the issuer for clarification."
|
|
194
|
+
"M40": "Please use a different card or contact the issuer for clarification."
|
|
195
|
+
"M41": "Please use a different card or contact the issuer for clarification."
|
|
196
|
+
"M43": "Please use a different card or contact the issuer for clarification."
|
|
180
197
|
universal: &issuer_response_code
|
|
181
198
|
unknown: "Unknown reason."
|
|
182
199
|
"75": "Allowable number of PIN entry tries exceeded."
|
|
@@ -251,6 +268,23 @@ en:
|
|
|
251
268
|
"R0": "Stop Payment Order."
|
|
252
269
|
"R1": "Revocation of authorization order."
|
|
253
270
|
"R3": "Revocation of all authorizations order."
|
|
271
|
+
"M01": "New account information available"
|
|
272
|
+
"M02": "Try Again Later"
|
|
273
|
+
"M03": "Do Not Try again"
|
|
274
|
+
"M04": "Token requirements not fulfilled for this token type"
|
|
275
|
+
"M05": "Negotiated value not approved"
|
|
276
|
+
"M21": "Stop recurring payment"
|
|
277
|
+
"M22": "Merchant does not qualify for product code"
|
|
278
|
+
"M24": "Retry after 1 hour"
|
|
279
|
+
"M25": "Retry after 24 hours"
|
|
280
|
+
"M26": "Retry after 2 days"
|
|
281
|
+
"M27": "Retry after 4 days"
|
|
282
|
+
"M28": "Retry after 6 days"
|
|
283
|
+
"M29": "Retry after 8 days"
|
|
284
|
+
"M30": "Retry after 10 days"
|
|
285
|
+
"M40": "Consumer non-reloadable prepaid card"
|
|
286
|
+
"M41": "Consumer single-use virtual card number"
|
|
287
|
+
"M43": "Consumer multi-use virtual card number"
|
|
254
288
|
cardholder:
|
|
255
289
|
<<: *issuer_response_code
|
|
256
290
|
"00": "Payment failed."
|
|
@@ -302,3 +336,20 @@ en:
|
|
|
302
336
|
"R0": "Payment rejected by the issuer - Stop Payment Order."
|
|
303
337
|
"R1": "Payment rejected by the issuer - Revocation of authorization order."
|
|
304
338
|
"R3": "Payment rejected by the issuer - Revocation of all authorizations order."
|
|
339
|
+
"M01": "Payment rejected by the issuer"
|
|
340
|
+
"M02": "Payment rejected by the issuer"
|
|
341
|
+
"M03": "Payment rejected by the issuer"
|
|
342
|
+
"M04": "Payment rejected by the issuer"
|
|
343
|
+
"M05": "Payment rejected by the issuer"
|
|
344
|
+
"M21": "Payment rejected by the issuer"
|
|
345
|
+
"M22": "Payment rejected by the issuer"
|
|
346
|
+
"M24": "Payment rejected by the issuer"
|
|
347
|
+
"M25": "Payment rejected by the issuer"
|
|
348
|
+
"M26": "Payment rejected by the issuer"
|
|
349
|
+
"M27": "Payment rejected by the issuer"
|
|
350
|
+
"M28": "Payment rejected by the issuer"
|
|
351
|
+
"M29": "Payment rejected by the issuer"
|
|
352
|
+
"M30": "Payment rejected by the issuer"
|
|
353
|
+
"M40": "Payment rejected by the issuer"
|
|
354
|
+
"M41": "Payment rejected by the issuer"
|
|
355
|
+
"M43": "Payment rejected by the issuer"
|
data/lib/locale/es.yml
CHANGED
|
@@ -189,6 +189,23 @@ es:
|
|
|
189
189
|
'N3': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
190
190
|
'P5': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
191
191
|
'R2': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
192
|
+
'M01': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
193
|
+
'M02': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
194
|
+
'M03': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
195
|
+
'M04': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
196
|
+
'M05': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
197
|
+
'M21': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
198
|
+
'M22': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
199
|
+
'M24': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
200
|
+
'M25': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
201
|
+
'M26': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
202
|
+
'M27': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
203
|
+
'M28': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
204
|
+
'M29': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
205
|
+
'M30': "Vuelva a intentarlo más tarde o póngase en contacto con su banco."
|
|
206
|
+
'M40': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
207
|
+
'M41': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
208
|
+
'M43': "Utilice otra tarjeta o póngase en contacto con su banco."
|
|
192
209
|
universal: &issuer_response_code
|
|
193
210
|
unknown: Causa desconocida
|
|
194
211
|
'75': "Se ha superado el límite de intentos de introducción de CVV/CVC/PIN incorrectos."
|
|
@@ -263,6 +280,23 @@ es:
|
|
|
263
280
|
'R0': "Ha habido una solicitud para retener más pagos."
|
|
264
281
|
'R1': "Ha habido una solicitud para retener más pagos."
|
|
265
282
|
'R3': "Ha habido una solicitud para retener todos los pagos."
|
|
283
|
+
'M01': "Nueva información de cuenta disponible."
|
|
284
|
+
'M02': "Vuelva a intentarlo más tarde."
|
|
285
|
+
'M03': "No vuelva a intentarlo."
|
|
286
|
+
'M04': "No se cumplen los requisitos de token para este tipo de token."
|
|
287
|
+
'M05': "Valor negociado no aprobado."
|
|
288
|
+
'M21': "Detener el pago recurrente."
|
|
289
|
+
'M22': "El comercio no cumple los requisitos para el código de producto."
|
|
290
|
+
'M24': "Vuelva a intentarlo después de 1 hora."
|
|
291
|
+
'M25': "Vuelva a intentarlo después de 24 horas."
|
|
292
|
+
'M26': "Vuelva a intentarlo después de 2 días."
|
|
293
|
+
'M27': "Vuelva a intentarlo después de 4 días."
|
|
294
|
+
'M28': "Vuelva a intentarlo después de 6 días."
|
|
295
|
+
'M29': "Vuelva a intentarlo después de 8 días."
|
|
296
|
+
'M30': "Vuelva a intentarlo después de 10 días."
|
|
297
|
+
'M40': "Tarjeta prepago no recargable del consumidor."
|
|
298
|
+
'M41': "Número de tarjeta virtual de un solo uso del consumidor."
|
|
299
|
+
'M43': "Número de tarjeta virtual de uso múltiple del consumidor."
|
|
266
300
|
cardholder:
|
|
267
301
|
<<: *issuer_response_code
|
|
268
302
|
'00': "El pago ha fallado."
|
|
@@ -313,3 +347,20 @@ es:
|
|
|
313
347
|
'R0': "Pago rechazado por el banco: se solicitó la retención de la autorización."
|
|
314
348
|
'R1': "Pago rechazado por el banco: se solicitó la retención de la autorización."
|
|
315
349
|
'R3': "Pago rechazado por el banco: se solicitó la retención de la autorización."
|
|
350
|
+
'M01': "Pago rechazado por el banco."
|
|
351
|
+
'M02': "Pago rechazado por el banco."
|
|
352
|
+
'M03': "Pago rechazado por el banco."
|
|
353
|
+
'M04': "Pago rechazado por el banco."
|
|
354
|
+
'M05': "Pago rechazado por el banco."
|
|
355
|
+
'M21': "Pago rechazado por el banco."
|
|
356
|
+
'M22': "Pago rechazado por el banco."
|
|
357
|
+
'M24': "Pago rechazado por el banco."
|
|
358
|
+
'M25': "Pago rechazado por el banco."
|
|
359
|
+
'M26': "Pago rechazado por el banco."
|
|
360
|
+
'M27': "Pago rechazado por el banco."
|
|
361
|
+
'M28': "Pago rechazado por el banco."
|
|
362
|
+
'M29': "Pago rechazado por el banco."
|
|
363
|
+
'M30': "Pago rechazado por el banco."
|
|
364
|
+
'M40': "Pago rechazado por el banco."
|
|
365
|
+
'M41': "Pago rechazado por el banco."
|
|
366
|
+
'M43': "Pago rechazado por el banco."
|