Plugin has to send to PayPal the language from the nop store.
Open the file PaymentInfo.cshtml
and change these values
old code
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%');
}
new code
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%');
}