Implement localization all throughout ImHex

English only for now, additional languages will come in the future
This commit is contained in:
WerWolv
2021-02-11 23:09:45 +01:00
parent 9227fba474
commit 36a4930b35
26 changed files with 897 additions and 403 deletions

View File

@@ -2,6 +2,8 @@
namespace hex::plugin::builtin {
void registerLanguageEnUS();
void registerDataInspectorEntries();
void registerToolEntries();
void registerPatternLanguageFunctions();
@@ -9,22 +11,20 @@ namespace hex::plugin::builtin {
void registerSettings();
void registerDataProcessorNodes();
void registerLanguageEnUS();
}
IMHEX_PLUGIN_SETUP {
using namespace hex::plugin::builtin;
registerLanguageEnUS();
registerDataInspectorEntries();
registerToolEntries();
registerPatternLanguageFunctions();
registerCommandPaletteCommands();
registerSettings();
registerDataProcessorNodes();
registerLanguageEnUS();
}