This repository represents the solution to the assignment. The primary goal was to create two mobile applications, as an example representing the usage of multiple cloud services for translation game, with an evaluation of spoken language based on a dynamic cloud dictionary database.
-
iOS - represents the iOS part of the Translation Game & contains the commented Swift implementation solution of the mentioned assignment.
-
Android - represents the Android part of the Translation Game & contains the commented Java implementation solution of the mentioned assignment.
-
Web - represents the administrator's access to the Real-Time Firebase Database & contains a React web application for performing basic CRUD operations like Create, Read, Update, and Delete with Login and Logout.
In this part, we will introduce the implementation of used technologies with a small theoretical overview. The main use case represents the improvement of the user's pronunciation ability with a simple gamification aspect and image examples. The images and words for translation are stored on the cloud database, which ensures a clear way for improving the capacity of available words through web administrator without an update or any change in implementation.
The main user flow begins with language selection and random word fetch from the database. The next step contains word translation through IBM Watson and image content presentation for the user. After successful speech recognition of word pronunciation, the app grants the user with tone and "Continue" popup.
IBM Watson™ Language Translator service grants multiple IBM provided translation models and offers 1,000,000 characters translation per month for free.
Supported languages: Arabic, Bulgarian, Catalan, Chinese (Simplified & Traditional), Croatian, Czech, Danish, Dutch, English, Estonian, Finnish, French, German, Greek, Hebrew, Hindi, Hungarian, Irish (Gaelic), Italian, Indonesian, Japanese, Korean, Latvian, Lithuanian, Malay, Norwegian, Polish, Portuguese (Brazil), Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Urdu and Vietnamese
pod 'IBMWatsonLanguageTranslatorV3', '~> 3.4.0'
implementation 'com.ibm.watson:ibm-watson:8.4.0'
Watson services are using token-based Identity and Access Management (IAM) authentication.
let authenticator = WatsonIAMAuthenticator(apiKey: "{apikey}")
let languageTranslator = LanguageTranslator(version: "{version}", authenticator: authenticator)
languageTranslator.serviceURL = "{url}"
IamAuthenticator authenticator = new IamAuthenticator("{apikey}");
LanguageTranslator languageTranslator = new LanguageTranslator("{version}", authenticator);
languageTranslator.setServiceUrl("{url}");
Translates the input text from the source language to the target language. A target language or translation model ID is required.
func translate(text: [String],
modelID: String? = nil,
source: String? = nil,
target: String? = nil,
headers: [String: String]? = nil,
completionHandler: @escaping (WatsonResponse<TranslationResult>?, WatsonError?) -> Void)
ServiceCall<TranslationResult> translate(TranslateOptions translateOptions)
The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client.
pod 'Firebase/Database'
import Firebase
FirebaseApp.configure()
var ref: DatabaseReference!
ref = Database.database().reference()
// Get the first word from a database
ref.child("1").observeSingleEvent(of: .value, with: { (snapshot) in
// Get value
let value = snapshot.value as? String
}) { (error) in
print(error.localizedDescription)
}
implementation 'com.google.firebase:firebase-database:19.3.0'
FirebaseDatabase database = FirebaseDatabase.getInstance();
DatabaseReference ref = database.getReference();
//Get the first word from a database
ref.child("1").addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
// Get value
String value = dataSnapshot.getValue()
}
}
});
The speech framework recognizes spoken words in recorded or live audio. The service relies on Apple’s and Google's servers for speech recognition and requires a network connection.