Any idea how to translate the 'Back' Value in the button with cb language files?
Hi some1new, not sure how to translate that 'Back' value, you could just cut and paste the characters into the html code, something from this:
<FORM><INPUT TYPE="BUTTON" VALUE="Back" ONCLICK="history.go(-1)"></FORM>
to this: (using 戻る for Back ... used google translate for 'go back' in Japanese)
<FORM><INPUT TYPE="BUTTON" VALUE="戻る" ONCLICK="history.go(-1)"></FORM>
Is that helpful?