1
0
mirror of synced 2024-09-25 03:58:27 +02:00
ImHex/plugins/windows/source/plugin_windows.cpp
xtex 5edc0b876c
i18n: Chinese(Simplified) (#303)
* feat(i18n): add Chinese(Simplified) translations

* feat: keep console window on Windows for debug builds

* feat(18n)

* feat(i18n): improve Chinese translation

* fix: unify the line terminators

* feat(build): formatting

* fix: exclude from SysWow64 for 64bits windows

* Revert "fix: exclude from SysWow64 for 64bits windows"

This reverts commit a6d66a4a56.

* Revert "feat: keep console window on Windows for debug builds"

This reverts commit 9fd4699c9f.
2021-09-20 18:41:22 +02:00

26 lines
444 B
C++

#include <hex/plugin.hpp>
#include "views/view_tty_console.hpp"
namespace hex::plugin::windows {
void registerLanguageEnUS();
void registerLanguageZhCN();
void addFooterItems();
}
IMHEX_PLUGIN_SETUP("Windows", "WerWolv", "Windows-only features") {
using namespace hex::plugin::windows;
ContentRegistry::Views::add<ViewTTYConsole>();
registerLanguageEnUS();
registerLanguageZhCN();
addFooterItems();
}