-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4159 from Laravel-Lang/patch/2024-01-10/10-14
[source]: Added Cashier Stripe 15 support
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace LaravelLang\Lang\Plugins\Cashier\Stripe; | ||
|
||
use LaravelLang\Publisher\Plugins\Plugin; | ||
|
||
class V15 extends Plugin | ||
{ | ||
protected ?string $vendor = 'laravel/cashier'; | ||
|
||
protected string $version = '^15.0'; | ||
|
||
public function files(): array | ||
{ | ||
return [ | ||
'cashier/stripe/15.x/stripe.json' => '{locale}.json', | ||
]; | ||
} | ||
} |