fix: checkout payment-description fallback hardcoded Russian regardless of locale
getPaymentDescription()'s final fallback ('Покупка на Маркетплейсе')
ignored the active language. Moved to a translated key.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -615,7 +615,7 @@ export class CartComponent implements OnDestroy {
|
||||
return hostname;
|
||||
}
|
||||
|
||||
return 'Покупка на Маркетплейсе';
|
||||
return this.i18n.t('cart.paymentDescriptionFallback');
|
||||
}
|
||||
|
||||
private generateOrderId(): string {
|
||||
|
||||
Reference in New Issue
Block a user