Wie ändere ich den Text auf Deutsch?

  • goodfella030
    Gefragt am 12. Oktober 2024 um 16:25

    Des weiteren, würde ich die Text gerne auf deutsch haben - wie kann ich das ändern?

    Es geht um die Fortschrittsanzeige Image 1 Screenshot 20 Screenshot 10

    completed = vollständig
    Fields = fehlende Angaben

  • Reymae Jotform Support
    Geantwortet am 12. Oktober 2024 um 17:10

    Hi André,

    You can make the progress bar texts translated by injecting a Custom CSS code into your form. Let me show you how:

    1. First, copy this code:

    /*Translate the texts*/
    #progressTextCompleted { 
      color: transparent; 
    }

    #progressTextCompleted:before { 
      content: "vollständig"
      color: #232b2b
    }

    #status_text1 {
       color: transparent;
    }

    #status_text1:before {
       content: "fehlende Angaben";
       color: #232b2b;
       margin-right: -150px !important;
    }
    /*Code ends here*/

    2. In Form Builder, click on the Paint Roller icon on the right side of the page to open Form Designer.

    3. Now, in the Form Designer menu, click on the Styles tab, scroll down and paste the code into the Inject Custom CSS. That's it. The code is automatically saved.

    Wie ändere ich den Text auf Deutsch? Image 1 Screenshot 30

    Take a look at the screenshot below to see my results:

    Wie ändere ich den Text auf Deutsch? Image 2 Screenshot 41

    We also have a guide to help you learn How to Inject Custom CSS Codes.

    Let us know if you have any other questions.