Free API to translate English to Spanish in iPhone - iphone

I want to develop an application that translate a given sentence in English to Spanish, and vice-versa the limitation is that I don't have to use online facility like Google Translator.
I visited some links that says its not possible, some of them are
How to implement language translator facility in an iphone application?
Your favorite natural language parser? how do I use it, is there any API that uses it?
Thanks

You could use Apertium for this.
I see that there is an Apertium offline translator app for android.
The code is open source on sourceforge and can probably be adapted to an iPhone.

There isn't a free API where you can download and use it offline. You'd have to use something like the Google Translate API which needs an Internet Connection. Alternatively you could build your own parser and translation tool.

Related

Is there any library for sinhalese language in flutter localization?

I’m developing a mobile application using flutter to be used in my country. i have to use Sinhalese language(SriLankan) font in the mobile UIs. I have searched in the Flutter Community and i was unable to find a proper solution.I want to know whether there is a flutter_localization library that can be used in my application?
I suggest that you use this Medium post as a guide. Although it implements Arabic and English as demonstration it will be beneficial to you since one of them is left-to-right and the other is right-to-left.
Yes you can use this article to integrate localisation in app.
Article it's really quick to integrate in app.
However if your language isn't supported by flutter_localizations library even though you can provide support using above class as mentioned on article.
here is snap
You have to implement localization in App. I found a simple example for the same here.

How to integrate google translator gadget like funcationality to convert the ios app language

When we open any page in browser google provide tool to convert language.
i want to know it is possible for ios app to convert whole app or any screen of App using google language converter.
Also let me know way to do it.
Thanks.
There is no tool to do this but ios has multi language support that can be achieved using NSLocalizedString.
Heres a very good tutorial for this
http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-localization-with-nslocalizedstring/

How can you recognize sign language in a mobile application?

Is it possible to recognize sign language (like American Sign Language, ASL) in an iPhone or Android application?
Are there libraries that are available to do this? If not, how would you suggest I get started in writing an application that could recognize sign language?
Yes, it should be possible with the video camera. However, I am not aware of an existing code base that supports this. You could look into OpenCV. It is available for both iPhone and android.

Localizing an already developed application using google translater

"How to localize a project i.e., already developed in some language by using Google translater". please tell me i have n't any idea on that.
Please, don't use Google translator for localizing your app! Google translator is a mechanic translator, not a human. The results are not very good. (Try to read an instruction book which was translated from Chinese to English ;) )
If your app is popular or has some fans, ask the community for some nativ speaker. Or if you have an payed app, you could go to some kind of a translator-agency.
Use Google Language API. There is a lot of documentation and help here

Does iPhone support XML-RPC?

Does iPhone support XML-RPC, Is their any open source framework which I can use?
Checkout the source for the wordpress app. They might be using XML-RPC. :)
http://iphone.wordpress.org/
"Airsource Ltd" is really really incredibly wrong about that document. That document is specific to Mac OS X and NOT the iPhone. In fact (almost) all Apple iPhone documentation is hidden away behind a login page and a licence agreement. Most of the technologies that document refer to (e.g. AppleScript) do not even exist on the iPhone.
Amit, you'll have Zero luck if you follow Airsource's advice. You will however do ok if you do as "Lounges" says and go grab the wordpress source code. It looks like they rolled their own XMLRPC library for use on the iPhone.
As for SOAP - you're on your own. You might be able to find an opensource SOAP library built on top of libxml2 though. Good luck.
Yes iPhone support XML-RPC and wordpress opensource application is best example of it,
but from performance aspect I must say JSON is better to use with iPhone application,
from here https://github.com/stig/json-framework/ u can download JSON parser.