Plugin used customer's settings from browser, but most of customers where from Germany and they notices that sometimes PayPal display message in English.
I decided to use static value.
You can change them in the file PaymentInfo.cshtml
Comment them.
var ppp = PAYPAL.apps.PPP({
"approvalUrl": "@Html.Raw(Model.ApprovalUrl)",
"placeholder": "ppplus",
"mode": "@Model.Mode",
// "language": "de_DE",
// "country": "DE",
"language": "@Model.Language",
"country": "@Model.Country",
"showPuiOnSandbox":"true",
showLoadingIndicator: true,
onLoad: function() {
$('#ppplus iframe').width('100%');
}
});
$(document).ready(function () {
$('.payment-info-next-step-button, .confirm-order-button').hide();
//$('.payment-info-next-step-button, .confirm-order-button').show().prop("onclick", null).unbind().click(submitpaypalplus);
});
Or download new ZIP file from our site.
I changed plugin and build the new release with this fix.
PayPal works only in several countries.