mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
minimal size for optimal display to ensure to be able to display all languages Change-Id: Id3c81185fa44017bc4fcca5db0c8d0a6c115f6fb
15 lines
157 B
C++
15 lines
157 B
C++
#include <escher/i18n.h>
|
|
|
|
namespace I18n {
|
|
|
|
const char * translate(Message m, Language l) {
|
|
return nullptr;
|
|
}
|
|
|
|
int numberOfLanguages() {
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
|