# MD for: https://www.mercadopago.com.br/developers/pt/docs/checkout-bricks/additional-content/select-language.md \> CLIENT\_SIDE > > h1 > > Select language You can select the Brick language in two different ways: at the time of initialization of the Brick or via SDK. > WARNING > > Attention > > It's only possible to modify the language of the Bricks that operate directly within your store. such as the \[Payment\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/payment-brick/introduction) and \[Card Payment\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/card-payment-brick/introduction). \> In the case of the \[Wallet Brick\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/wallet-brick/introduction) and the \[Payment Brick of Mercado Pago Wallet and Installments without a card,\](https://www.mercadopago.com.br/developers/en/docs/checkout-bricks/payment-brick/payment-submission/wallet-credits) the user is redirected to the Mercado Pago payment environment, and since the interface is independent, it cannot be translated according to the specific settings defined for the store. ## Select language while initializing To select the language when starting the Brick, insert the code below into your project paying attention to the \`locale\` parameter, which must be filled in with the defined language following the following pattern: \`es\` , \`pt-BR\` and \`en\` for Spanish, Portuguese and English respectively. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { ..., locale: 'en', } ``` Copiar ``` import { initMercadoPago } from '@mercadopago/sdk-react'; initMercadoPago('YOUR_PUBLIC_KEY', {locale: 'pt-BR'}); ``` Copiar \## Select language via SDK To select the language via SDK, insert the code below into your project and fill the \`locale\` parameter with the desired language following the pattern shown in the following table. * [javascript ](#editor%5F3) * [react-jsx ](#editor%5F4) javascript react-jsx ``` const mp = new MercadoPago('YOUR_PUBLIC_KEY', { locale: 'en-US', }) ``` Copiar ``` import { initMercadoPago } from '@mercadopago/sdk-react'; initMercadoPago('YOUR_PUBLIC_KEY', {locale: 'pt-BR'}); ``` Copiar | Language | Country | Value | |---|---|---| | Spanish | Argentina | 'es-AR' | | Spanish | Chile | 'es-CL' | | Spanish | Colombia | 'es-CO' | | Spanish | Mexico | ​​'es-MX' | | Spanish | Venezuela | 'es-VE' | | Spanish | Uruguay | 'es-UY' | | Spanish | Peru | 'es-PE' | | Portuguese | Brazil | 'pt-BR' | | English | U.S | 'en-US' |