feat: add invoice
This commit is contained in:
@@ -119,6 +119,9 @@ return [
|
||||
'amount' => 'Amount',
|
||||
'credits_expected' => 'Expected credits',
|
||||
'credits_granted' => 'Granted credits',
|
||||
'invoice_url' => 'Invoice URL',
|
||||
'invoice_pdf_url' => 'Invoice PDF',
|
||||
'invoice_email_sent_at' => 'Invoice email sent at',
|
||||
'stripe_event_id' => 'Stripe event ID',
|
||||
'stripe_event_type' => 'Event',
|
||||
'stripe_customer_id' => 'Stripe customer ID',
|
||||
|
||||
@@ -31,6 +31,10 @@ return [
|
||||
'legal_documents' => [
|
||||
'not_found' => 'Legal document not found.',
|
||||
],
|
||||
'billing' => [
|
||||
'active_subscription_exists' => 'You already have an active subscription.',
|
||||
'no_active_subscription' => 'There is no active subscription to manage.',
|
||||
],
|
||||
'notifications' => [
|
||||
'test_title' => 'Test',
|
||||
'test_body' => 'Test notification from the Laravel API.',
|
||||
|
||||
@@ -33,4 +33,19 @@ return [
|
||||
'password_confirmation' => 'Confirm password',
|
||||
'submit' => 'Update password',
|
||||
],
|
||||
'payment_invoice' => [
|
||||
'subject' => 'Your Bowli invoice',
|
||||
'title' => 'Your invoice is available',
|
||||
'greeting' => 'Hi :name,',
|
||||
'default_name' => 'there',
|
||||
'intro' => 'Thanks for your payment. Your summary and invoice link are below.',
|
||||
'product' => 'Product',
|
||||
'default_product' => 'Bowli credits',
|
||||
'credits' => 'Credits',
|
||||
'amount' => 'Amount',
|
||||
'unknown_amount' => 'Amount unavailable',
|
||||
'action' => 'View my invoice',
|
||||
'pdf_link' => 'PDF link:',
|
||||
'footer' => 'If you have any question, simply reply to this email.',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -119,6 +119,9 @@ return [
|
||||
'amount' => 'Montant',
|
||||
'credits_expected' => 'Crédits attendus',
|
||||
'credits_granted' => 'Crédits crédités',
|
||||
'invoice_url' => 'URL facture',
|
||||
'invoice_pdf_url' => 'PDF facture',
|
||||
'invoice_email_sent_at' => 'Email facture envoyé le',
|
||||
'stripe_event_id' => 'Stripe event ID',
|
||||
'stripe_event_type' => 'Événement',
|
||||
'stripe_customer_id' => 'Stripe customer ID',
|
||||
|
||||
@@ -31,6 +31,10 @@ return [
|
||||
'legal_documents' => [
|
||||
'not_found' => 'Document légal introuvable.',
|
||||
],
|
||||
'billing' => [
|
||||
'active_subscription_exists' => 'Tu as déjà un abonnement en cours.',
|
||||
'no_active_subscription' => 'Aucun abonnement actif à gérer.',
|
||||
],
|
||||
'notifications' => [
|
||||
'test_title' => 'Test',
|
||||
'test_body' => 'Notification test depuis Laravel API.',
|
||||
|
||||
@@ -33,4 +33,19 @@ return [
|
||||
'password_confirmation' => 'Confirmer le mot de passe',
|
||||
'submit' => 'Modifier le mot de passe',
|
||||
],
|
||||
'payment_invoice' => [
|
||||
'subject' => 'Ta facture Bowli',
|
||||
'title' => 'Ta facture est disponible',
|
||||
'greeting' => 'Bonjour :name,',
|
||||
'default_name' => 'à toi',
|
||||
'intro' => 'Merci pour ton paiement. Tu trouveras ci-dessous le récapitulatif et le lien vers ta facture.',
|
||||
'product' => 'Produit',
|
||||
'default_product' => 'Crédits Bowli',
|
||||
'credits' => 'Crédits',
|
||||
'amount' => 'Montant',
|
||||
'unknown_amount' => 'Montant indisponible',
|
||||
'action' => 'Voir ma facture',
|
||||
'pdf_link' => 'Lien PDF :',
|
||||
'footer' => 'Si tu as une question, réponds simplement à cet email.',
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user