Paypal in Spanish?

dlove93
Contributor
Contributor

Hello there 🙂

 

So I cerated a paypal button spanish page and it seems to work only when indicated "Espana" as the country...

 

But what about the other countries like Peru, Colombia etc... I'd like for it to be in the Spanish language for all countries...

 

How do I do this?

 

Please let me know -- thank you! 🙂

Daniel

Login to Me Too
2 REPLIES 2

snowshoe
Frequent Advisor
Frequent Advisor

One option would be to force the language in your item button code.   The examples below are assuming you're manually coding your item buttons.

 

TIP: The country code is going to override the "lc" variable.   For Example, if you have the "lc" variable set to "ES" or Spain and the country set to "US" the country is going to be "US", and the language displayed is going to be the default language of English. 

 <input type="hidden" name="lc" value="ES">
 <input type="hidden" name="country" value="US"> 


TIP: Force a language: 

 Mexico
 <input type="hidden" name="locale.x" value="es_XC">
 <input type="hidden" name="lc" value="MX">
 <input type="hidden" name="currency_code" value="MXN">
 <input type="hidden" name="country" value="MX">

 France
 <input type="hidden" name="locale.x" value="fr_XC">
 <input type="hidden" name="lc" value="FR">
 <input type="hidden" name="currency_code" value="EUR">
 <input type="hidden" name="country" value="FR">

 

Login to Me Too

Jesus_G
New Community Member

Hello, Snowshoe.
I've the same problem with the Paypal site language: I'm spanish and I would like to read and write at the Paypal site in spanish, but I can't change it.
I can't find how to change english language for spanish language anywhere.

Can you help me, please?

Thank you in advance.

Jesus.

 

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.