- Posts: 34
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Your version was released on 26/09/2022, so it is almost 1 year old now and hasn't received any update, bug fix or security patch since then. I highly recommend to consider an update to the latest LS 5.x version.5.4.3+220926
Please Log in to join the conversation.
$(document).on('ready pjax:scriptcomplete',function(){ var labels = { 'en': 'New label', 'fr': 'Nouvelle étiquette', 'de': 'Neues label', 'es': 'Nueva etiqueta', }; var lang = $('html').attr('lang'); if(lang in labels) { $('.btn.selector--inputondemand-addlinebutton').text(labels[lang]); } });
Please Log in to join the conversation.
$(document).on('ready pjax:scriptcomplete',function(){ var labels = { 'en': '<i class="fa fa-plus"></i> Add line', 'fr': '<i class="fa fa-plus"></i> Ajouter une ligne', }; var lang = $('html').attr('lang'); if(lang in labels) { $('.btn.selector--inputondemand-addlinebutton').text(labels[lang]); } });
Please Log in to join the conversation.
$('.btn.selector--inputondemand-addlinebutton').text(labels[lang]);
$('.btn.selector--inputondemand-addlinebutton').html(labels[lang]);
Please Log in to join the conversation.
Please Log in to join the conversation.