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

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/

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.

Phone gap integration in iOS

i have developed iphone application almost, but for some screen i need to use already made functionality in java scripting, so i thought of using Phone gap, will it be possible to add this in already present project .
suggest me with your expert answers
thank you .
I think that is not possible to integrate phonegap with native app.
My suggestion if you just need to use javascript, html and css in your native app why are you looking for Phonegap ? Use UIWebView instead.

api for showing native calculator in iOS app

I have to create app which has requirement to integrate calculator. I want to know that is there any api which will show a calculator. or i have to create the calculator?
I searched on google but it was showing me calculator application.
Thanks in advance
NO, You have create the calculator and integrate it with application
I don't believe there is any particular API for interacting with the built-in calculator.
You are also unable to launch other applications from within your application, unless you are using URL Schemes (here is a long list of supported schemes), so you will need to create your own calculator.
Here is a similar question: Launch an app from within another (iPhone)

Free API to translate English to Spanish in 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.

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.