Viewing 4 replies - 1 through 4 (of 4 total)
  • I looked at your site.

    The problem only shows up on some of your posts and some work fine like this one:
    https://brian.dobberteen.com/code/calling-a-pagemethod-with-jquery/
    but the result is that it translates the code also.

    The problem is somewhere in the jquery translate plugin where it stops for some reason.

    This problem could be fixed by modifying the JavaScript to skip the divs where class="syntaxhighlighter ". The jquery translate plugin has an easy way to do this but it would take some extra work to add an option for the administration panel.

    If you want to experiment try opening the file jquery.translate-1.3.9.min.js and find:

    not:".translate_block"
    

    near the end and change that to:

    not:".translate_block, .syntaxhighlighter"
    
    Thread Starter baby_wilson

    (@baby_wilson)

    Thanks so much for the guidance! The solution offered worked perfectly!

    Thanks again!

    – baby_wilson
    https://brian.dobberteen.com

    natenewz

    (@natenewz)

    This fix also works for a similiar problem using google-code-prettyify plugin. This may be a good option for the administration control panel.

    monodistortion

    (@monodistortion)

    Yes, when I saw this problem I considered adding an administration option for it but it’s getting a little advanced and I’m not sure how common this problem is.

    For you I think you can change that part to:

    not:".translate_block, pre"
    
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Google AJAX Translation] Translation stops upon reaching SyntaxHighlighter code block’ is closed to new replies.