You are viewing limited content. For full access, please sign in.

Question

Question

How can I hide (or translate) the "date will be captured on form submission" message

asked on March 24, 2023

I'm still learning Java/CSS so hopefully this is a basic question. When you select required and current_date as the default for a date, the message "date will be required..." shows up. I need to have that show up in French, but I'm not sure how to identify the class/type etc to make that happen ... You help is appreciated!

Capture.PNG
Capture.PNG (4.46 KB)
0 0

Answer

SELECTED ANSWER
replied on March 28, 2023

When you choose French as the Language, do you click this Box? It's under the 3 dots to right of your language choice.

0 0
replied on March 28, 2023

Thank you. Gosh so simple. Appreciate the help.

0 0

Replies

replied on March 24, 2023

If your Browser Language is set to French, it should translate automatically. Are you attempting to have a mult-language Form where you can switch between languages?

0 0
replied on March 24, 2023

Thank you! This is the information I was looking for. I would eventually like to have a multi language form, but this is good for now!

0 0
replied on March 27, 2023

Actually I changed my browser language and the text is still in english... Also the "sign" button name is english too. So I'm not quite fixed :-(

0 0
replied on March 27, 2023

Hi Dominique

Is your version of Laserfiche OnPrem or Cloud?

If OnPrem, when you open Laserfiche Forms, are the menues in Forms itself in French after changing your browser language (You have to close and reopen the browser after making the change). Which browser are you using?

0 0
replied on March 27, 2023

Our Laserfiche is on Prem and I'm using chrome (we publish forms to the web).  We do french and english forms, the default being english.  I changed my language preference in Chrome to French and restarted my browser as well.  The menus are still in English in the browser after the change.  Thanks!

0 0
replied on March 27, 2023

WHat verion of Laserfiche Forms are you running?

0 0
replied on March 28, 2023

Laserfiche Forms Professional Version 10.4.5.316

0 0
replied on April 7, 2023

Is there any way to do this in JS to avoid having the user select their language and make the form automatically change that label?

0 0
replied on April 11, 2023 Show version history

Been playing around with this code below found on the web. Found putting the form labels in French and then letting Google translate to English is better than the other way around. I'm not a coder, so I expect there are better ways to do this, but something to start with.

 

$.getScript("//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit");

function googleTranslateElementInit() {
    new google.translate.TranslateElement({
        pageLanguage: 'En', 
        includedLanguages: 'fr,en', 
        autoDisplay: false
        }, 'google_translate_element');

    var a = document.querySelector("#google_translate_element select");
        a.selectedIndex=1;
        a.dispatchEvent(new Event('change'));
}

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.