Skip to content

Language manager is a tool that will allows you to make your application available in any language.

Notifications You must be signed in to change notification settings

andrii-androshchuk/language-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Language Manager

Language manager is a tool that will allows you to make your application available in any language.

It is possible by creating special vocabularies and save them into .ini files, after that by using our static library you may access to it inside from C++ application.

To create .ini files you need to download application for Windows, or you may create them by yourself following structure of .ini file

C++ example

String file_path = "D:\\TheProject\\Language\\main.ini";
LanguageManager *lm = new LanguageManager(file_path);

lm->uploadVocabulary("deu");
lm->uploadVocabulary("eng", true);

String hello_in_english = lm->get("say.hello");
String hello_in_german 	= lm->get("say.hello", "deu");

About

Language manager is a tool that will allows you to make your application available in any language.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages