# MD for: https://www.mercadopago.com.uy/developers/es/docs/checkout-bricks/payment-brick/visual-customizations/change-texts.md \> CLIENT\_SIDE > > h1 > > Change texts It is possible to change the texts that are loaded in Brick. For this, in Brick's initialization object, it is necessary to send the \`customization.visual.texts\` object with the desired text values. If the customized texts are larger than the available space, the displayed text will be \*\*interrupted up to the maximum size allowed and the excess will be replaced by the symbol "..."\*\*. Also pay attention to the fact that custom texts ignore empty values. > WARNING > > Attention > > Changed texts overwrite the language settings passed to Brick. Customizable texts are displayed below. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { customization: { visual: { texts: { formTitle: "string", emailSectionTitle: "string", installmentsSectionTitle: "string", cardholderName: { label: "string", placeholder: "string", }, email: { label: "string", placeholder: "string", }, cardholderIdentification: { label: "string", }, cardNumber: { label: "string", placeholder: "string", }, expirationDate: { label: "string", placeholder: "string", }, securityCode: { label: "string", placeholder: "string", }, entityType: { placeholder: "string", label: "string", }, financialInstitution: { placeholder: "string", label: "string", }, selectInstallments: "string", selectIssuerBank: "string", formSubmit: "string", paymentMethods: { newCreditCardTitle: "string", creditCardTitle: "string", creditCardValueProp: " string", newDebitCardTitle: "string", debitCardTitle: "string", debitCardValueProp: "string", ticketTitle: "string", ticketValueProp: "string", }, }, }, }, }; ``` Copiar ``` const customization = { visual: { texts: { formTitle: "string", emailSectionTitle: "string", installmentsSectionTitle: "string", cardholderName: { label: "string", placeholder: "string", }, email: { label: "string", placeholder: "string", }, cardholderIdentification: { label: "string", }, cardNumber: { label: "string", placeholder: "string", }, expirationDate: { label: "string", placeholder: "string", }, securityCode: { label: "string", placeholder: "string", }, entityType: { placeholder: "string", label: "string", }, financialInstitution: { placeholder: "string", label: "string", }, selectInstallments: "string", selectIssuerBank: "string", formSubmit: "string", paymentMethods: { newCreditCardTitle: "string", creditCardTitle: "string", creditCardValueProp: "string", newDebitCardTitle: "string", debitCardTitle: "string", debitCardValueProp: "string", ticketTitle: "string", ticketValueProp: "string", }, }, }, }; ``` Copiar To change the texts of offline payment methods (tickets, Pix and ATM, for example), within the \`paymentMethods\` object, use the pattern \`{paymentMethodId}{ValueProp/Title} \`. > NOTE > > Important > > Customized texts will only be displayed if these values appear in Brick. For example, if payment with \`ticket\` is not enabled, the texts referring to the ticket in Brick will not be displayed.