mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
fix: Titlebar button localization keys still being inside the windows plugin
This commit is contained in:
@@ -476,6 +476,8 @@
|
||||
"hex.builtin.setting.proxy.enable": "Proxy aktivieren",
|
||||
"hex.builtin.setting.proxy.url": "Proxy URL",
|
||||
"hex.builtin.setting.proxy.url.tooltip": "http(s):// oder socks5:// (z.B, http://127.0.0.1:1080)",
|
||||
"hex.builtin.title_bar_button.debug_build": "Debug build",
|
||||
"hex.builtin.title_bar_button.feedback": "Feedback hinterlassen",
|
||||
"hex.builtin.tools.ascii_table": "ASCII Tabelle",
|
||||
"hex.builtin.tools.ascii_table.octal": "Oktal anzeigen",
|
||||
"hex.builtin.tools.base_converter": "Basiskonverter",
|
||||
|
||||
@@ -484,6 +484,8 @@
|
||||
"hex.builtin.setting.proxy.enable": "Enable Proxy",
|
||||
"hex.builtin.setting.proxy.url": "Proxy URL",
|
||||
"hex.builtin.setting.proxy.url.tooltip": "http(s):// or socks5:// (e.g., http://127.0.0.1:1080)",
|
||||
"hex.builtin.title_bar_button.debug_build": "Debug build",
|
||||
"hex.builtin.title_bar_button.feedback": "Leave Feedback",
|
||||
"hex.builtin.tools.ascii_table": "ASCII table",
|
||||
"hex.builtin.tools.ascii_table.octal": "Show octal",
|
||||
"hex.builtin.tools.base_converter": "Base converter",
|
||||
|
||||
@@ -474,6 +474,8 @@
|
||||
"hex.builtin.setting.proxy.enable": "Proxy 활성화",
|
||||
"hex.builtin.setting.proxy.url": "Proxy 경로",
|
||||
"hex.builtin.setting.proxy.url.tooltip": "http(s):// 혹은 socks5:// (예., http://127.0.0.1:1080)",
|
||||
"hex.builtin.title_bar_button.debug_build": "디버그 빌드",
|
||||
"hex.builtin.title_bar_button.feedback": "피드백 남기기",
|
||||
"hex.builtin.tools.ascii_table": "ASCII 테이블",
|
||||
"hex.builtin.tools.ascii_table.octal": "8진수 표시",
|
||||
"hex.builtin.tools.base_converter": "진수 변환기",
|
||||
|
||||
@@ -474,6 +474,8 @@
|
||||
"hex.builtin.setting.proxy.enable": "",
|
||||
"hex.builtin.setting.proxy.url": "",
|
||||
"hex.builtin.setting.proxy.url.tooltip": "",
|
||||
"hex.builtin.title_bar_button.debug_build": "Compilação de depuração",
|
||||
"hex.builtin.title_bar_button.feedback": "Deixar Feedback",
|
||||
"hex.builtin.tools.ascii_table": "ASCII table",
|
||||
"hex.builtin.tools.ascii_table.octal": "Mostrar octal",
|
||||
"hex.builtin.tools.base_converter": "Base converter",
|
||||
|
||||
@@ -474,6 +474,8 @@
|
||||
"hex.builtin.setting.proxy.enable": "启用代理",
|
||||
"hex.builtin.setting.proxy.url": "代理 URL",
|
||||
"hex.builtin.setting.proxy.url.tooltip": "http(s):// 或 socks5://(如 http://127.0.0.1:1080)",
|
||||
"hex.builtin.title_bar_button.debug_build": "调试构建",
|
||||
"hex.builtin.title_bar_button.feedback": "反馈",
|
||||
"hex.builtin.tools.ascii_table": "ASCII 表",
|
||||
"hex.builtin.tools.ascii_table.octal": "显示八进制",
|
||||
"hex.builtin.tools.base_converter": "基本进制转换",
|
||||
|
||||
@@ -474,6 +474,8 @@
|
||||
"hex.builtin.setting.proxy.enable": "啟用 Proxy",
|
||||
"hex.builtin.setting.proxy.url": "Proxy 網址",
|
||||
"hex.builtin.setting.proxy.url.tooltip": "http(s):// 或 socks5:// (例如 http:127.0.0.1:1080)",
|
||||
"hex.builtin.title_bar_button.debug_build": "除錯組建",
|
||||
"hex.builtin.title_bar_button.feedback": "意見回饋",
|
||||
"hex.builtin.tools.ascii_table": "ASCII 表",
|
||||
"hex.builtin.tools.ascii_table.octal": "Show octal",
|
||||
"hex.builtin.tools.base_converter": "進位轉換工具",
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace hex::plugin::builtin {
|
||||
|
||||
void addTitleBarButtons() {
|
||||
#if defined(DEBUG)
|
||||
ContentRegistry::Interface::addTitleBarButton(ICON_VS_DEBUG, "hex.windows.title_bar_button.debug_build", []{
|
||||
ContentRegistry::Interface::addTitleBarButton(ICON_VS_DEBUG, "hex.builtin.title_bar_button.debug_build", []{
|
||||
if (ImGui::GetIO().KeyCtrl) {
|
||||
// Explicitly trigger a segfault by writing to an invalid memory location
|
||||
// Used for debugging crashes
|
||||
@@ -36,7 +36,7 @@ namespace hex::plugin::builtin {
|
||||
});
|
||||
#endif
|
||||
|
||||
ContentRegistry::Interface::addTitleBarButton(ICON_VS_SMILEY, "hex.windows.title_bar_button.feedback", []{
|
||||
ContentRegistry::Interface::addTitleBarButton(ICON_VS_SMILEY, "hex.builtin.title_bar_button.feedback", []{
|
||||
hex::openWebpage("https://github.com/WerWolv/ImHex/discussions/categories/feedback");
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user