From d4547144286abbad0a4de6198fcbffdcdad081fe Mon Sep 17 00:00:00 2001 From: paxcut Date: Thu, 19 Mar 2026 06:02:46 -0700 Subject: [PATCH] fix for langs unit tests. I noticed a while back that the string Constants was defined twice in the english language file, so I removed the first one to what ended up in this pr. Apparently some other commit removed the second one so when i rebased the code this ended up deleting both instances thus producing the unit test failure that I assumed was not something I needed to worry about. --- plugins/builtin/romfs/lang/en_US.json | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/builtin/romfs/lang/en_US.json b/plugins/builtin/romfs/lang/en_US.json index 1217b3902..f1f63797e 100644 --- a/plugins/builtin/romfs/lang/en_US.json +++ b/plugins/builtin/romfs/lang/en_US.json @@ -769,6 +769,7 @@ "hex.builtin.view.bookmarks.tooltip.open_in_view": "Open in new View", "hex.builtin.view.bookmarks.tooltip.unlock": "Unlock", "hex.builtin.view.command_palette.name": "Command Palette", + "hex.builtin.view.find.constants": "Constants", "hex.builtin.view.data_inspector.menu.copy": "Copy Value", "hex.builtin.view.data_inspector.menu.edit": "Edit Value", "hex.builtin.view.data_inspector.execution_error": "Custom row evaluation error",