mirror of https://github.com/WerWolv/ImHex.git
13 lines
258 B
C++
13 lines
258 B
C++
|
#include <hex/plugin.hpp>
|
||
|
|
||
|
namespace hex::plugin::builtin {
|
||
|
|
||
|
void registerLanguageEnUS() {
|
||
|
ContentRegistry::Language::registerLanguage("English (US)", "en-US");
|
||
|
|
||
|
ContentRegistry::Language::addLocalizations("en-US", {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|