issuer_response_codes 0.3.8 → 0.3.9
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 +1 -1
- data/.rubocop.yml +30 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile +9 -6
- data/Gemfile.lock +67 -34
- data/bin/tapioca +27 -0
- data/bin/test +7 -0
- data/issuer_response_codes.gemspec +3 -1
- data/lib/issuer_response_codes/code/behaviour/dsl.rb +45 -0
- data/lib/issuer_response_codes/code/behaviour.rb +25 -0
- data/lib/issuer_response_codes/code.rb +40 -21
- data/lib/issuer_response_codes/context.rb +11 -15
- data/lib/issuer_response_codes/locale_library.rb +12 -29
- data/lib/issuer_response_codes/tds_code.rb +10 -7
- data/lib/issuer_response_codes/version.rb +2 -2
- data/lib/issuer_response_codes.rb +7 -6
- data/lib/locale/cs.yml +0 -25
- data/lib/locale/da.yml +0 -12
- data/lib/locale/de.yml +0 -25
- data/lib/locale/ee.yml +0 -12
- data/lib/locale/en.yml +0 -25
- data/lib/locale/es.yml +1 -28
- data/lib/locale/fi.yml +1 -28
- data/lib/locale/fr.yml +1 -28
- data/lib/locale/hr.yml +1 -28
- data/lib/locale/hu.yml +0 -25
- data/lib/locale/it.yml +1 -30
- data/lib/locale/ja.yml +0 -25
- data/lib/locale/lt.yml +0 -12
- data/lib/locale/lv.yml +0 -12
- data/lib/locale/nl.yml +1 -28
- data/lib/locale/pl.yml +2 -34
- data/lib/locale/pt.yml +1 -28
- data/lib/locale/ru.yml +0 -25
- data/lib/locale/sk.yml +0 -25
- data/lib/locale/sv.yml +0 -12
- data/lib/locale/uk.yml +0 -25
- data/sorbet/config +7 -0
- data/sorbet/rbi/annotations/.gitattributes +1 -0
- data/sorbet/rbi/annotations/minitest.rbi +119 -0
- data/sorbet/rbi/annotations/rainbow.rbi +269 -0
- data/sorbet/rbi/gems/.gitattributes +1 -0
- data/sorbet/rbi/gems/ast@2.4.3.rbi +585 -0
- data/sorbet/rbi/gems/lint_roller@1.1.0.rbi +86 -0
- data/sorbet/rbi/gems/minitest@5.25.5.rbi +1547 -0
- data/sorbet/rbi/gems/parallel@1.27.0.rbi +291 -0
- data/sorbet/rbi/gems/racc@1.8.1.rbi +160 -0
- data/sorbet/rbi/gems/rake@12.3.3.rbi +3020 -0
- data/sorbet/rbi/gems/rubocop-espago@1.1.8.rbi +9 -0
- data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +1318 -0
- data/sorbet/rbi/gems/unicode-display_width@3.1.4.rbi +132 -0
- data/sorbet/rbi/gems/unicode-emoji@4.0.4.rbi +251 -0
- data/sorbet/rbi/todo.rbi +7 -0
- data/sorbet/tapioca/config.yml +30 -0
- data/sorbet/tapioca/require.rb +4 -0
- metadata +39 -3
@@ -1,32 +1,35 @@
|
|
1
|
+
# typed: true
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module IssuerResponseCodes
|
4
5
|
# 3D Secure reject reason code.
|
5
6
|
class TdsCode < Code
|
6
|
-
|
7
|
+
FRAUDULENT_IDS = %w[09 10 11].to_set #: Set[String]
|
8
|
+
|
9
|
+
#: -> String
|
7
10
|
def humanize
|
8
11
|
"#{reason} #{behaviour}"
|
9
12
|
end
|
10
13
|
|
11
14
|
alias description humanize
|
12
15
|
|
13
|
-
|
16
|
+
#: -> String
|
14
17
|
def reason
|
15
18
|
LOCALE_LIBRARY[
|
16
19
|
path: id,
|
17
20
|
scope: "tds_status_codes.targeted.#{target}",
|
18
21
|
locale: locale,
|
19
|
-
default: :unknown
|
22
|
+
default: :unknown,
|
20
23
|
]
|
21
24
|
end
|
22
25
|
|
23
|
-
|
26
|
+
#: -> String
|
24
27
|
def behaviour
|
25
28
|
behaviour_str = LOCALE_LIBRARY[
|
26
29
|
path: id,
|
27
30
|
scope: 'tds_status_codes.behaviour',
|
28
31
|
locale: locale,
|
29
|
-
default: :unknown
|
32
|
+
default: :unknown,
|
30
33
|
]
|
31
34
|
|
32
35
|
return behaviour_str unless fraud_notice && fraudulent_code?
|
@@ -34,9 +37,9 @@ module IssuerResponseCodes
|
|
34
37
|
"#{behaviour_str} #{LOCALE_LIBRARY[path: 'tds_status_codes.fraud_notice']}"
|
35
38
|
end
|
36
39
|
|
37
|
-
|
40
|
+
#: -> bool
|
38
41
|
def fraudulent_code?
|
39
|
-
|
42
|
+
FRAUDULENT_IDS.include?(id)
|
40
43
|
end
|
41
44
|
|
42
45
|
end
|
@@ -1,6 +1,7 @@
|
|
1
|
+
# typed: true
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require '
|
4
|
+
require 'sorbet-runtime'
|
4
5
|
|
5
6
|
require_relative 'issuer_response_codes/version'
|
6
7
|
require_relative 'issuer_response_codes/locale_library'
|
@@ -12,11 +13,11 @@ module IssuerResponseCodes
|
|
12
13
|
class IllegalTarget < StandardError; end
|
13
14
|
class IllegalLocale < StandardError; end
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
AVAILABLE_LOCALES =
|
16
|
+
AVAILABLE_TARGETS =
|
17
|
+
::Set.new(%i[merchant cardholder]).freeze #: Set[Symbol]
|
18
|
+
|
19
|
+
AVAILABLE_LOCALES =
|
20
|
+
::Set.new(%i[en pl da de ee it lt lv sv es fi fr hr nl pt uk ja cs sk hu]).freeze #: Set[Symbol]
|
19
21
|
|
20
|
-
# @return [LocaleLibrary]
|
21
22
|
LOCALE_LIBRARY = LocaleLibrary.new
|
22
23
|
end
|
data/lib/locale/cs.yml
CHANGED
@@ -2,10 +2,6 @@ cs:
|
|
2
2
|
tds_status_codes:
|
3
3
|
suggestion: 'Návrh'
|
4
4
|
fraud_notice: 'Transakce s tímto kódem mohou být považovány za podvodné.'
|
5
|
-
fraudulent_codes:
|
6
|
-
'09': true
|
7
|
-
'10': true
|
8
|
-
'11': true
|
9
5
|
behaviour:
|
10
6
|
unknown: 'Kontaktujte prosím náš tým podpory.'
|
11
7
|
'01': Zkuste to prosím znovu.
|
@@ -110,27 +106,6 @@ cs:
|
|
110
106
|
issuer_response_codes:
|
111
107
|
suggestion: 'Návrh'
|
112
108
|
fraud_notice: 'DŮLEŽITÉ UPOZORNĚNÍ: Je zakázáno opakovat transakce, které skončily tímto kódem. Může to být považováno za pokus o podvod!'
|
113
|
-
fraudulent_codes:
|
114
|
-
'04': true
|
115
|
-
'B04': true
|
116
|
-
'07': true
|
117
|
-
'12': true
|
118
|
-
'14': true
|
119
|
-
'B14': true
|
120
|
-
'15': true
|
121
|
-
'B15': true
|
122
|
-
'41': true
|
123
|
-
'B41': true
|
124
|
-
'43': true
|
125
|
-
'B43': true
|
126
|
-
'54': true
|
127
|
-
'B54': true
|
128
|
-
'57': true
|
129
|
-
'59': true
|
130
|
-
'63': true
|
131
|
-
'R0': true
|
132
|
-
'R1': true
|
133
|
-
'R3': true
|
134
109
|
behaviour:
|
135
110
|
unknown: Kontaktujte prosím náš tým podpory.
|
136
111
|
'00': "Zkuste to prosím znovu nebo kontaktujte prodejce."
|
data/lib/locale/da.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
da:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': true
|
5
|
-
'10': true
|
6
|
-
'11': true
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Please contact our support team.'
|
9
5
|
'01': Please try again.
|
@@ -108,14 +104,6 @@ da:
|
|
108
104
|
issuer_response_codes:
|
109
105
|
suggestion: 'Suggestion'
|
110
106
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
111
|
-
fraudulent_codes:
|
112
|
-
'04': true
|
113
|
-
'B04': true
|
114
|
-
'07': true
|
115
|
-
'41': true
|
116
|
-
'B41': true
|
117
|
-
'43': true
|
118
|
-
'B43': true
|
119
107
|
behaviour:
|
120
108
|
'00': "Prøv igen senere, kontakt med sælger eller med Espago Support Team."
|
121
109
|
'05': "Tjek venligst dine kortindstillinger for disse transaktionstyper eller brug et andet kort."
|
data/lib/locale/de.yml
CHANGED
@@ -2,10 +2,6 @@ de:
|
|
2
2
|
tds_status_codes:
|
3
3
|
suggestion: 'Vorschlag'
|
4
4
|
fraud_notice: 'Transaktionen mit diesem Code können als betrügerisch angesehen werden.'
|
5
|
-
fraudulent_codes:
|
6
|
-
'09': true
|
7
|
-
'10': true
|
8
|
-
'11': true
|
9
5
|
behaviour:
|
10
6
|
unknown: 'Bitte kontaktieren Sie unser Support-Team.'
|
11
7
|
'01': Bitte versuchen Sie es erneut.
|
@@ -110,27 +106,6 @@ de:
|
|
110
106
|
issuer_response_codes:
|
111
107
|
suggestion: 'Vorschlag'
|
112
108
|
fraud_notice: 'WICHTIGER HINWEIS: Es ist verboten, Transaktionen erneut zu versuchen, die mit diesem Code endeten. Es kann als Betrugsversuch erkannt werden!'
|
113
|
-
fraudulent_codes:
|
114
|
-
'04': true
|
115
|
-
'B04': true
|
116
|
-
'07': true
|
117
|
-
'12': true
|
118
|
-
'14': true
|
119
|
-
'B14': true
|
120
|
-
'15': true
|
121
|
-
'B15': true
|
122
|
-
'41': true
|
123
|
-
'B41': true
|
124
|
-
'43': true
|
125
|
-
'B43': true
|
126
|
-
'54': true
|
127
|
-
'B54': true
|
128
|
-
'57': true
|
129
|
-
'59': true
|
130
|
-
'63': true
|
131
|
-
'R0': true
|
132
|
-
'R1': true
|
133
|
-
'R3': true
|
134
109
|
behaviour:
|
135
110
|
unknown: Bitte kontaktieren Sie mit unserem Support-Team.
|
136
111
|
'00': "Bitte versuchen Sie es später noch einmal oder kontaktieren Sie mit dem Verkäufer"
|
data/lib/locale/ee.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
ee:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': true
|
5
|
-
'10': true
|
6
|
-
'11': true
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Please contact our support team.'
|
9
5
|
'01': Please try again.
|
@@ -108,14 +104,6 @@ ee:
|
|
108
104
|
issuer_response_codes:
|
109
105
|
suggestion: 'Suggestion'
|
110
106
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
111
|
-
fraudulent_codes:
|
112
|
-
'04': true
|
113
|
-
'B04': true
|
114
|
-
'07': true
|
115
|
-
'41': true
|
116
|
-
'B41': true
|
117
|
-
'43': true
|
118
|
-
'B43': true
|
119
107
|
behaviour:
|
120
108
|
'00': "Palun proovige hiljem uuesti, võtke ühendust müüja või Espago klienditoega."
|
121
109
|
'05': "Palun kontrollige oma antud liiki tehinguid käsitlevaid kaardi seadeid või kasutage teist kaarti."
|
data/lib/locale/en.yml
CHANGED
@@ -2,10 +2,6 @@ en:
|
|
2
2
|
tds_status_codes:
|
3
3
|
suggestion: 'Suggestion'
|
4
4
|
fraud_notice: 'Transactions with this code may be considered fraudulent.'
|
5
|
-
fraudulent_codes:
|
6
|
-
'09': true
|
7
|
-
'10': true
|
8
|
-
'11': true
|
9
5
|
behaviour:
|
10
6
|
unknown: 'Please contact our support team.'
|
11
7
|
'01': Please try again.
|
@@ -110,27 +106,6 @@ en:
|
|
110
106
|
issuer_response_codes:
|
111
107
|
suggestion: 'Suggestion'
|
112
108
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
113
|
-
fraudulent_codes:
|
114
|
-
'04': true
|
115
|
-
'B04': true
|
116
|
-
'07': true
|
117
|
-
'12': true
|
118
|
-
'14': true
|
119
|
-
'B14': true
|
120
|
-
'15': true
|
121
|
-
'B15': true
|
122
|
-
'41': true
|
123
|
-
'B41': true
|
124
|
-
'43': true
|
125
|
-
'B43': true
|
126
|
-
'54': true
|
127
|
-
'B54': true
|
128
|
-
'57': true
|
129
|
-
'59': true
|
130
|
-
'63': true
|
131
|
-
'R0': true
|
132
|
-
'R1': true
|
133
|
-
'R3': true
|
134
109
|
behaviour:
|
135
110
|
unknown: Please contact our support team.
|
136
111
|
'00': "Please try again or contact the seller."
|
data/lib/locale/es.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
es:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': verdadero
|
5
|
-
'10': verdadero
|
6
|
-
'11': verdadero
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Póngase en contacto con nuestro servicio de asistencia.'
|
9
5
|
'01': Inténtelo otra vez.
|
@@ -122,27 +118,6 @@ es:
|
|
122
118
|
issuer_response_codes:
|
123
119
|
suggestion: 'Sugerencia'
|
124
120
|
fraud_notice: 'NOTA: ¡No repita las cargas para esta tarjeta! ¡Esto puede considerarse un intento de fraude!'
|
125
|
-
fraudulent_codes:
|
126
|
-
'04': verdadero
|
127
|
-
'B04': verdadero
|
128
|
-
'07': verdadero
|
129
|
-
'12': verdadero
|
130
|
-
'14': verdadero
|
131
|
-
'B14': verdadero
|
132
|
-
'15': verdadero
|
133
|
-
'B15': verdadero
|
134
|
-
'41': verdadero
|
135
|
-
'B41': verdadero
|
136
|
-
'43': verdadero
|
137
|
-
'B43': verdadero
|
138
|
-
'54': verdadero
|
139
|
-
'B54': verdadero
|
140
|
-
'57': verdadero
|
141
|
-
'59': verdadero
|
142
|
-
'63': verdadero
|
143
|
-
'R0': verdadero
|
144
|
-
'R1': verdadero
|
145
|
-
'R3': verdadero
|
146
121
|
behaviour:
|
147
122
|
unknown: Póngase en contacto con nuestro servicio de asistencia.
|
148
123
|
'00': "Vuelva a intentarlo más tarde o póngase en contacto con el vendedor."
|
@@ -236,9 +211,7 @@ es:
|
|
236
211
|
targeted:
|
237
212
|
merchant:
|
238
213
|
<<: *issuer_response_code
|
239
|
-
'00': "Rechazo de transacción a nivel del operador. El pago fue rechazado debido a: 1) falta de respuesta del banco; 2) bloqueo de la cuenta del vendedor; 3) uso de un tipo de tarjeta no admitido o datos de tarjeta incorrectos.
|
240
|
-
|
241
|
-
Compruebe que la cuenta del vendedor con el agente de facturación está activa y configurada correctamente en Espago."
|
214
|
+
'00': "Rechazo de transacción a nivel del operador. El pago fue rechazado debido a: 1) falta de respuesta del banco; 2) bloqueo de la cuenta del vendedor; 3) uso de un tipo de tarjeta no admitido o datos de tarjeta incorrectos.\nCompruebe que la cuenta del vendedor con el agente de facturación está activa y configurada correctamente en Espago."
|
242
215
|
'1A': "Se requiere autenticación fuerte (SCA)."
|
243
216
|
'B1A': "Se requiere autenticación fuerte (SCA)."
|
244
217
|
'01': "Código propio del emisor de la tarjeta."
|
data/lib/locale/fi.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
fi:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': totta
|
5
|
-
'10': totta
|
6
|
-
'11': totta
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Ota yhteyttä tukiosastoomme.'
|
9
5
|
'01': Yritä uudelleen.
|
@@ -122,27 +118,6 @@ fi:
|
|
122
118
|
issuer_response_codes:
|
123
119
|
suggestion: 'Ehdotus'
|
124
120
|
fraud_notice: 'HUOMAUTUS: Älä toista tämän kortin veloitusta! Tätä voidaan pitää petoksen yrityksenä!'
|
125
|
-
fraudulent_codes:
|
126
|
-
'04': totta
|
127
|
-
'B04': totta
|
128
|
-
'07': totta
|
129
|
-
'12': totta
|
130
|
-
'14': totta
|
131
|
-
'B14': totta
|
132
|
-
'15': totta
|
133
|
-
'B15': totta
|
134
|
-
'41': totta
|
135
|
-
'B41': totta
|
136
|
-
'43': totta
|
137
|
-
'B43': totta
|
138
|
-
'54': totta
|
139
|
-
'B54': totta
|
140
|
-
'57': totta
|
141
|
-
'59': totta
|
142
|
-
'63': totta
|
143
|
-
'R0': totta
|
144
|
-
'R1': totta
|
145
|
-
'R3': totta
|
146
121
|
behaviour:
|
147
122
|
unknown: Ota yhteyttä tukiosastoomme.
|
148
123
|
'00': "Yritä myöhemmin uudelleen tai ota yhteys jälleenmyyjään."
|
@@ -236,9 +211,7 @@ fi:
|
|
236
211
|
targeted:
|
237
212
|
merchant:
|
238
213
|
<<: *issuer_response_code
|
239
|
-
'00': "Operaattoritason tapahtuman hylkääminen. Maksu hylättiin seuraavista syistä: 1) pankilta ei saatu vastausta; 2) myyjän tili on suljettu; 3) korttityyppi ei ole tuettu tai kortin tiedot ovat virheelliset.
|
240
|
-
|
241
|
-
Tarkista, onko myyjän tili laskutusagentissa aktiivinen ja oikein määritetty Espagossa."
|
214
|
+
'00': "Operaattoritason tapahtuman hylkääminen. Maksu hylättiin seuraavista syistä: 1) pankilta ei saatu vastausta; 2) myyjän tili on suljettu; 3) korttityyppi ei ole tuettu tai kortin tiedot ovat virheelliset.\nTarkista, onko myyjän tili laskutusagentissa aktiivinen ja oikein määritetty Espagossa."
|
242
215
|
'1A': "Vahva todennus (SCA) vaaditaan."
|
243
216
|
'B1A': "Vahva todennus (SCA) vaaditaan."
|
244
217
|
'01': "Kortin myöntäjän oma koodi."
|
data/lib/locale/fr.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
fr:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': vrai
|
5
|
-
'10': vrai
|
6
|
-
'11': vrai
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Veuillez contacter notre service d''assistance.'
|
9
5
|
'01': Veuillez réessayer.
|
@@ -122,27 +118,6 @@ fr:
|
|
122
118
|
issuer_response_codes:
|
123
119
|
suggestion: 'Suggestion'
|
124
120
|
fraud_notice: 'ATTENTION : Ne pas répéter les prélèvements pour cette carte ! Cela peut être considéré comme une tentative de fraude !'
|
125
|
-
fraudulent_codes:
|
126
|
-
'04': vrai
|
127
|
-
'B04': vrai
|
128
|
-
'07': vrai
|
129
|
-
'12': vrai
|
130
|
-
'14': vrai
|
131
|
-
'B14': vrai
|
132
|
-
'15': vrai
|
133
|
-
'B15': vrai
|
134
|
-
'41': vrai
|
135
|
-
'B41': vrai
|
136
|
-
'43': vrai
|
137
|
-
'B43': vrai
|
138
|
-
'54': vrai
|
139
|
-
'B54': vrai
|
140
|
-
'57': vrai
|
141
|
-
'59': vrai
|
142
|
-
'63': vrai
|
143
|
-
'R0': vrai
|
144
|
-
'R1': vrai
|
145
|
-
'R3': vrai
|
146
121
|
behaviour:
|
147
122
|
unknown: Veuillez contacter notre service d'assistance.
|
148
123
|
'00': "Veuillez réessayer plus tard ou contacter votre revendeur."
|
@@ -236,9 +211,7 @@ fr:
|
|
236
211
|
targeted:
|
237
212
|
merchant:
|
238
213
|
<<: *issuer_response_code
|
239
|
-
'00': "Rejet de la transaction au niveau de l'opérateur. Le paiement a été rejeté pour les raisons suivantes 1) absence de réponse de la banque ; 2) blocage du compte du Vendeur ; 3) utilisation d'un type de carte non pris en charge ou de données de carte incorrectes.
|
240
|
-
|
241
|
-
Vérifiez que le compte vendeur de l'agent de règlement est actif et correctement configuré dans Espago."
|
214
|
+
'00': "Rejet de la transaction au niveau de l'opérateur. Le paiement a été rejeté pour les raisons suivantes 1) absence de réponse de la banque ; 2) blocage du compte du Vendeur ; 3) utilisation d'un type de carte non pris en charge ou de données de carte incorrectes.\nVérifiez que le compte vendeur de l'agent de règlement est actif et correctement configuré dans Espago."
|
242
215
|
'1A': "Authentification forte (SCA) requise."
|
243
216
|
'B1A': "Authentification forte (SCA) requise."
|
244
217
|
'01': "Code propre à l'émetteur de la carte."
|
data/lib/locale/hr.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
hr:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': true
|
5
|
-
'10': true
|
6
|
-
'11': true
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Obratite se našem timu za podršku.'
|
9
5
|
'01': Pokušajte ponovno.
|
@@ -122,27 +118,6 @@ hr:
|
|
122
118
|
issuer_response_codes:
|
123
119
|
suggestion: 'Prijedlog'
|
124
120
|
fraud_notice: 'NAPOMENA: ne ponavljajte terećenja za ovu karticu! Ovo se može smatrati pokušajem prijevare!'
|
125
|
-
fraudulent_codes:
|
126
|
-
'04': true
|
127
|
-
'B04': true
|
128
|
-
'07': true
|
129
|
-
'12': true
|
130
|
-
'14': true
|
131
|
-
'B14': true
|
132
|
-
'15': true
|
133
|
-
'B15': true
|
134
|
-
'41': true
|
135
|
-
'B41': true
|
136
|
-
'43': true
|
137
|
-
'B43': true
|
138
|
-
'54': true
|
139
|
-
'B54': true
|
140
|
-
'57': true
|
141
|
-
'59': true
|
142
|
-
'63': true
|
143
|
-
'R0': true
|
144
|
-
'R1': true
|
145
|
-
'R3': true
|
146
121
|
behaviour:
|
147
122
|
unknown: Obratite se našem timu za podršku.
|
148
123
|
'00': "Pokušajte ponovno kasnije ili se obratite prodavaču."
|
@@ -236,9 +211,7 @@ hr:
|
|
236
211
|
targeted:
|
237
212
|
merchant:
|
238
213
|
<<: *issuer_response_code
|
239
|
-
'00': "Odbijanje transakcije na razini operatera. Plaćanje je odbijeno zbog: 1) izostanka odgovora banke; 2) suspenzije računa Trgovca; 3) uporabe nepodržane vrste kartice ili netočnih podataka o kartici.
|
240
|
-
|
241
|
-
Provjerite je li račun prodavatelja kod agenta za namiru aktivan i pravilno konfiguriran u Espago-u."
|
214
|
+
'00': "Odbijanje transakcije na razini operatera. Plaćanje je odbijeno zbog: 1) izostanka odgovora banke; 2) suspenzije računa Trgovca; 3) uporabe nepodržane vrste kartice ili netočnih podataka o kartici.\nProvjerite je li račun prodavatelja kod agenta za namiru aktivan i pravilno konfiguriran u Espago-u."
|
242
215
|
'1A': "Potrebna je snažna autentikacija (SCA)."
|
243
216
|
'B1A': "Potrebna je snažna autentikacija (SCA)."
|
244
217
|
'01': "Vlastiti kod izdavatelja kartice."
|
data/lib/locale/hu.yml
CHANGED
@@ -2,10 +2,6 @@ hu:
|
|
2
2
|
tds_status_codes:
|
3
3
|
suggestion: 'Javaslat'
|
4
4
|
fraud_notice: 'Az ilyen kóddal rendelkező tranzakciók csalásnak minősülhetnek.'
|
5
|
-
fraudulent_codes:
|
6
|
-
'09': true
|
7
|
-
'10': true
|
8
|
-
'11': true
|
9
5
|
behaviour:
|
10
6
|
unknown: 'Kérjük, vegye fel a kapcsolatot ügyfélszolgálatunkkal.'
|
11
7
|
'01': Kérjük, próbálja újra.
|
@@ -110,27 +106,6 @@ hu:
|
|
110
106
|
issuer_response_codes:
|
111
107
|
suggestion: 'Javaslat'
|
112
108
|
fraud_notice: 'FONTOS FIGYELMEZTETÉS: Tilos az ilyen kóddal végződő tranzakciókat újrapróbálni. Ez csalási kísérletnek minősülhet!'
|
113
|
-
fraudulent_codes:
|
114
|
-
'04': true
|
115
|
-
'B04': true
|
116
|
-
'07': true
|
117
|
-
'12': true
|
118
|
-
'14': true
|
119
|
-
'B14': true
|
120
|
-
'15': true
|
121
|
-
'B15': true
|
122
|
-
'41': true
|
123
|
-
'B41': true
|
124
|
-
'43': true
|
125
|
-
'B43': true
|
126
|
-
'54': true
|
127
|
-
'B54': true
|
128
|
-
'57': true
|
129
|
-
'59': true
|
130
|
-
'63': true
|
131
|
-
'R0': true
|
132
|
-
'R1': true
|
133
|
-
'R3': true
|
134
109
|
behaviour:
|
135
110
|
unknown: Kérjük, vegye fel a kapcsolatot ügyfélszolgálatunkkal.
|
136
111
|
'00': "Kérjük, próbálja újra vagy lépjen kapcsolatba az eladóval."
|
data/lib/locale/it.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
it:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': true
|
5
|
-
'10': true
|
6
|
-
'11': true
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Si prega di contattare il nostro team di supporto.'
|
9
5
|
'01': Si prega di riprovare.
|
@@ -108,27 +104,6 @@ it:
|
|
108
104
|
issuer_response_codes:
|
109
105
|
suggestion: 'Suggerimento'
|
110
106
|
fraud_notice: 'AVVISO IMPORTANTE: È vietato ripetere le transazioni che terminano con questo codice. Potrebbe essere riconosciuto come un tentativo di frode!'
|
111
|
-
fraudulent_codes:
|
112
|
-
'04': true
|
113
|
-
'B04': true
|
114
|
-
'07': true
|
115
|
-
'12': true
|
116
|
-
'14': true
|
117
|
-
'B14': true
|
118
|
-
'15': true
|
119
|
-
'B15': true
|
120
|
-
'41': true
|
121
|
-
'B41': true
|
122
|
-
'43': true
|
123
|
-
'B43': true
|
124
|
-
'54': true
|
125
|
-
'B54': true
|
126
|
-
'57': true
|
127
|
-
'59': true
|
128
|
-
'63': true
|
129
|
-
'R0': true
|
130
|
-
'R1': true
|
131
|
-
'R3': true
|
132
107
|
behaviour:
|
133
108
|
unknown: Si prega di contattare il nostro team di supporto.
|
134
109
|
'00': "Riprova a eseguire la transazione oppure.."
|
@@ -221,11 +196,7 @@ it:
|
|
221
196
|
targeted:
|
222
197
|
merchant:
|
223
198
|
<<: *issuer_response_code
|
224
|
-
'00': "Rifiuto dell'operazione da parte del prestatore di servizi di pagamento. Il pagamento è stato rifiutato
|
225
|
-
1) Il sistema di autorizzazione bancaria non risponde
|
226
|
-
2) Il conto del venditore è bloccato
|
227
|
-
3) I dati della carta non sono corretti o la carta utilizzata non è approvata per questo pagamento
|
228
|
-
Verifica che il conto del venditore dall'acquirente è attivo e correttamente configurato in Espago.."
|
199
|
+
'00': "Rifiuto dell'operazione da parte del prestatore di servizi di pagamento. Il pagamento è stato rifiutato perché\n1) Il sistema di autorizzazione bancaria non risponde\n2) Il conto del venditore è bloccato\n3) I dati della carta non sono corretti o la carta utilizzata non è approvata per questo pagamento\nVerifica che il conto del venditore dall'acquirente è attivo e correttamente configurato in Espago.."
|
229
200
|
'1A': "Rifiuto."
|
230
201
|
'B1A': "Rifiuto."
|
231
202
|
'01': "Codice personale dell'emittente della carta."
|
data/lib/locale/ja.yml
CHANGED
@@ -2,10 +2,6 @@ ja:
|
|
2
2
|
tds_status_codes:
|
3
3
|
suggestion: '提案'
|
4
4
|
fraud_notice: 'このコードを使用した取引は不正行為とみなされる可能性があります。'
|
5
|
-
fraudulent_codes:
|
6
|
-
'09': true
|
7
|
-
'10': true
|
8
|
-
'11': true
|
9
5
|
behaviour:
|
10
6
|
unknown: 'サポートチームにお問い合わせください。'
|
11
7
|
'01': もう一度お試しください。
|
@@ -110,27 +106,6 @@ ja:
|
|
110
106
|
issuer_response_codes:
|
111
107
|
suggestion: '提案'
|
112
108
|
fraud_notice: '重要なお知らせ: このコードで終了した取引を再試行することは禁止されています。不正行為とみなされる可能性があります!'
|
113
|
-
fraudulent_codes:
|
114
|
-
'04': true
|
115
|
-
'B04': true
|
116
|
-
'07': true
|
117
|
-
'12': true
|
118
|
-
'14': true
|
119
|
-
'B14': true
|
120
|
-
'15': true
|
121
|
-
'B15': true
|
122
|
-
'41': true
|
123
|
-
'B41': true
|
124
|
-
'43': true
|
125
|
-
'B43': true
|
126
|
-
'54': true
|
127
|
-
'B54': true
|
128
|
-
'57': true
|
129
|
-
'59': true
|
130
|
-
'63': true
|
131
|
-
'R0': true
|
132
|
-
'R1': true
|
133
|
-
'R3': true
|
134
109
|
behaviour:
|
135
110
|
unknown: サポートチームにお問い合わせください。
|
136
111
|
'00': "もう一度お試しいただくか、販売者にお問い合わせください。"
|
data/lib/locale/lt.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
lt:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': true
|
5
|
-
'10': true
|
6
|
-
'11': true
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Please contact our support team.'
|
9
5
|
'01': Please try again.
|
@@ -108,14 +104,6 @@ lt:
|
|
108
104
|
issuer_response_codes:
|
109
105
|
suggestion: 'Suggestion'
|
110
106
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
111
|
-
fraudulent_codes:
|
112
|
-
'04': true
|
113
|
-
'B04': true
|
114
|
-
'07': true
|
115
|
-
'41': true
|
116
|
-
'B41': true
|
117
|
-
'43': true
|
118
|
-
'B43': true
|
119
107
|
behaviour:
|
120
108
|
'00': "Prašome bandyti vėliau, susisiekti su Pardavėju arba Espago palaikymo komanda."
|
121
109
|
'05': "Patikrinkite kortelės nustatymus šiems mokėjimų tipams arba naudokite kitą kortelę."
|
data/lib/locale/lv.yml
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
lv:
|
2
2
|
tds_status_codes:
|
3
|
-
fraudulent_codes:
|
4
|
-
'09': true
|
5
|
-
'10': true
|
6
|
-
'11': true
|
7
3
|
behaviour:
|
8
4
|
unknown: 'Please contact our support team.'
|
9
5
|
'01': Please try again.
|
@@ -108,14 +104,6 @@ lv:
|
|
108
104
|
issuer_response_codes:
|
109
105
|
suggestion: 'Suggestion'
|
110
106
|
fraud_notice: 'IMPORTANT NOTICE: It is forbidden to retry transactions that ended with this code. It may be recognized as a fraud attempt!'
|
111
|
-
fraudulent_codes:
|
112
|
-
'04': true
|
113
|
-
'B04': true
|
114
|
-
'07': true
|
115
|
-
'41': true
|
116
|
-
'B41': true
|
117
|
-
'43': true
|
118
|
-
'B43': true
|
119
107
|
behaviour:
|
120
108
|
'00': "Lūdzu mēģiniet vēlreiz! Sazinieties ar pārdevēju vai Espago atbalsta komandu."
|
121
109
|
'05': "Lūdzu pārbaudiet kartes iestatījumus šiem darījumu veidiem vai lietojiet citu karti."
|