# Passing locale to PayPal component
Both PaymentPaypalProvider.vue
and PaymentPaypalExpressProvider.vue
components have props named locale
. You can use it to overwrite the locale used by PayPal buttons
:
<template>
<PaymentPaypalProvider
locale="de_AT"
/>
<PaymentPaypalExpressProvider
locale="pt_BR"
/>
</template>