diff --git a/source/cashier/stripe/15.x/stripe.json b/source/cashier/stripe/15.x/stripe.json new file mode 100644 index 00000000000..f3f4bdbd861 --- /dev/null +++ b/source/cashier/stripe/15.x/stripe.json @@ -0,0 +1,6 @@ +{ + "Confirm Payment": "Confirm Payment", + "Confirm your :amount payment": "Confirm your :amount payment", + "Extra confirmation is needed to process your payment. Please continue to the payment page by clicking on the button below.": "Extra confirmation is needed to process your payment. Please continue to the payment page by clicking on the button below.", + "Payment Confirmation": "Payment Confirmation" +} diff --git a/src/Plugin.php b/src/Plugin.php index 4c60db7042c..1cf78a43cdb 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -19,6 +19,7 @@ class Plugin extends Provider Plugins\Cashier\Stripe\Master::class, Plugins\Cashier\Stripe\V13::class, Plugins\Cashier\Stripe\V14::class, + Plugins\Cashier\Stripe\V15::class, Plugins\Fortify\Master::class, Plugins\Fortify\V1::class, diff --git a/src/Plugins/Cashier/Stripe/V15.php b/src/Plugins/Cashier/Stripe/V15.php new file mode 100644 index 00000000000..c325ac0e860 --- /dev/null +++ b/src/Plugins/Cashier/Stripe/V15.php @@ -0,0 +1,21 @@ + '{locale}.json', + ]; + } +}