• Resolved peterforensys

    (@peterforensys)


    Hi!

    In the Timepicker Field I allowed the Increments option. I set 5 in the minutes. Then in the form on the frontend If I input a number to the minutes field which is not multiple of 5, the next error message shows below the field: Please enter a multiple of 5.

    I downloaded Loco Translate to translate this “Please enter a multiple of 5.” text but I did not find the text in the translation file. Can you update the .pot file with this text so we can translate it?

    Thanks,
    Peter

    • This topic was modified 10 months ago by peterforensys. Reason: grammar
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @peterforensys,

    I could notice the behaviour. I’m checking with our Forminator team to see if there is any way to translate the mentioned text.

    Will keep you posted once we get further feedback asap.

    Kind Regards,

    Nithin

    Plugin Support Dmytro – WPMU DEV Support

    (@wpmudevsupport16)

    Hello @peterforensys,

    I hope you’re doing great today!

    We’ve got an update from the developers, that unfortunately, this particular string is defined in the external jQuery library, and is not currently translatable.

    Our techs are looking for possible improvements in future plugin versions, but we can’t give any ETA right now, I’m afraid.

    We are checking if there’s any possible workaround which could be implemented as a PHP snippet (a must-use plugin). We’ll be updating you once there’s further feedback to share.

    Best Regards,
    Dmytro

    Thread Starter peterforensys

    (@peterforensys)

    Hi!
    ChatGPT helped me with this code and it is working for now:

    jQuery(function($){
    if ($.validator && $.validator.messages) {
    $.validator.messages.step = function(params, element) {
    var step = $(element).attr('step');
    if (step) {
    return "Kérjük, " + step + " perces lépésközzel add meg az időpontot.";
    } else {
    return "Kérjük, érvényes értéket adjon meg.";
    }
    };
    }
    });
    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @peterforensys

    I’m glad that this issue is resolved. I will mark this as resolved. Feel free to reply if you have any questions.

    Best Regards,
    Amin

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Missing translations’ is closed to new replies.