Reply To: Does automatically generated text appear only in English?

PennController for IBEX Forums Support Does automatically generated text appear only in English? Reply To: Does automatically generated text appear only in English?

#10731
grachek
Participant

oops replying again because of a typo in my previous code example

//change progress bar text
const replaceProgressBarText = ()=>{
  const progressBarText = $(“.PennController-PennController > div”);
  if (progressBarText.length > 0 && progressBarText[0].innerHTML.match(/^<p>progress/))
    progressBarText.html(“<p>プログレスバー</p>”);
  window.requestAnimationFrame( replaceProgressBarText );
};
window.requestAnimationFrame( replaceProgressBarText );