Paypal translation is incorrect

  • McMediaPro
    Asked on March 11, 2017 at 4:49 AM

    Second question : 

    Paypal integration for subscription 

    Abonnement (25,00 CAD for each year)

    It does not translate it should be (25,00 CAD annuellement)

    Here is in the PAYPAL membership

    Paypal translation is incorrect Image 1 Screenshot 20

    Thanks

  • Support_Management Jotform Support
    Replied on March 11, 2017 at 5:23 AM

    Looks like it's not included in the translation part yet. A workaround is to use CSS to hide the English text then replace it with your own translation.

    .form-product-details span:nth-child(2) {

      display: none;

    }

    .form-product-details:after {

      content: 'Annuellement )';

    }

    Complete guide: How-to-Inject-Custom-CSS-Codes 

    Just replace the content: part if you prefer to change it.

  • McMediaPro
    Replied on March 12, 2017 at 6:44 PM

    Thanks it worked