GithubHelp home page GithubHelp logo

Comments (3)

Envek avatar Envek commented on July 17, 2024

I've meet the limit of 10000 chars last autumn, so you may need to split long texts to chunks and translate each chunk separately.

Something like this (here I'm trying to split text by paragraphs):

translated = if value.length <= 10000
  translator.translate value, from: params[:from_locale], to: params[:to_locale], content_type: 'text/html'
else
  chunks = []
  start = 0
  while (value.length - start) > 10000 do
    finish = value.rindex("\n", start+10000)
    chunks << value[start..(finish || -1)]
    start = finish+1
    break if finish.nil?
  end
  chunks << value[start..-1]
  chunks.map do |chunk|
    translator.translate chunk, from: params[:from_locale], to: params[:to_locale], content_type: 'text/html'
  end.join
end

from bing_translator-gem.

nguyenchiencong avatar nguyenchiencong commented on July 17, 2024

thanks. I've also done something similar

from bing_translator-gem.

Envek avatar Envek commented on July 17, 2024

At the docs there is 10000 chars limit declared: http://msdn.microsoft.com/en-us/library/ff512437.aspx

So, your question answer is YES, there is a quota. Feel free to close issue.

from bing_translator-gem.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.