paymentservice/resources/lang/en/stripe.php

57 lines
5.1 KiB
PHP
Raw Permalink Normal View History

2023-08-14 12:01:40 +00:00
<?php
//https://gist.github.com/Ladinstar/4655e57bd25099c553956280270b3c83
return [
"account_closed" => "The customer's bank account has been closed",
"account_already_exists" => "Account with that email already exists",
"account_country_invalid_address" => "The country of the account or business address is invalid for the account's country",
"account_error_country_change_requires_additional_steps" => "Your account has already onboarded as a Connect platform",
"account_information_mismatch" => "Account information mismatches with one another",
"account_invalid" => "Invalid account ID",
"account_number_invalid" => "The bank account number provided is invalid (e.g., missing digits)",
"amount_too_large" => "The specified amount is greater than the maximum amount allowed. Use a lower amount and try again",
"amount_too_small" => "The specified amount is less than the minimum amount allowed. Use a higher amount and try again",
"api_key_expired" => "The API key provided has expired",
"authentication_required" => "Authentication required for this action",
"balance_insufficient" => "Insufficient balance to perform the requested action",
"bank_account_bad_routing_numbers" => "The bank account is known to not support the currency in question",
"bank_account_declined" => "The bank account provided can not be used to charge, either because it is not verified yet or it is not supported",
"debit_not_authorized" => "The customer has notified their bank that this payment was unauthorized.",
"card_declined" => "The card has been declined",
"card_decline_rate_limit_exceeded" => "This card has been declined too many times. You can try to charge this card again after 24 hours",
"cardholder_phone_number_required" => "You must have a phone number on file for Issuing Cardholders who will be creating EU cards",
"expired_card" => "The card has expired. Check the expiration date or use a different card.",
"incorrect_cvc" => "The card's security code is incorrect. Check the card's address or use a different card.",
"incorrect_address" => "The card's address is incorrect. Check the card's address or use a different card.",
"incorrect_zip" => "The card's postal code is incorrect. Check the card's postal code or use a different card.",
"insufficient_funds" => "The customer's account has insufficient funds to cover this payment.",
"invalid_charge_amount" => "The specified amount is invalid",
"invalid_cvc" => "The card's security code is invalid. Check the card's security code or use a different card.",
"invalid_expiry_month" => "The card's expiration month is incorrect. Check the expiration date or use a different card.",
"invalid_expiry_year" => "The card's expiration year is incorrect. Check the expiration date or use a different card.",
"invalid_number" => "The card number is invalid. Check the card details or use a different card.",
"processing_error" => "An error occurred while processing the card. Try again later or with a different payment method.",
"generic_decline" => "The card has been declined for an unknown reason",
"lost_card" => "Payment has been declined, as the bank card has been reported lost.",
"merchant_blacklist" => "The payment has been refused, because it matches an entry in the blocklist",
"not_permitted" => "The payment is not authorized",
"try_again_later" => "The card has been refused for an unknown reason.",
"stolen_card" => "Payment has been refused because the bank card has been reported stolen.",
"pin_try_exceeded" => "The number of authorized attempts to enter the PIN code has been exceeded.",
"offline_pin_required" => "The card has been refused, as it requires a PIN code.",
"online_or_offline_pin_required" => "The card has been refused because it requires a PIN code.",
"fraudulent" => "The payment has been refused because it has been identified as potentially fraudulent.",
"currency_not_supported" => "The specified currency is not supported by this bank card.",
"card_velocity_exceeded" => "The customer has exceeded the balance or credit limit available on their bank card.",
"card_not_supported" => "This type of payment is not supported by this bank card.",
"call_issuer" => "The card has been declined for an unknown reason.",
"approve_with_id" => "It is not possible to authorize the payment",
"duplicate_transaction" => "A transaction for the same amount with the same credit card information was submitted just recently.",
"issuer_not_available" => "The card issuer cannot be reached, so the payment cannot be authorized.",
"new_account_information_available" => "The bank card, or the account to which it is connected, is invalid.",
"no_action_taken" => "The card has been declined for an unknown reason.",
"pickup_card" => "The customer cannot use this card to make this payment (it may have been reported lost or stolen).",
"withdrawal_count_limit_exceeded" => "The customer has exceeded the balance or credit limit available on his bank card.",
"transaction_not_allowed" => "The card has been refused for an unknown reason.",
"testmode_decline" => "The card used is a test card"
];