Properly set fallback locale

This commit is contained in:
confused-Techie 2024-08-09 19:57:35 -07:00
parent 6381419534
commit 0783bb8fbe
2 changed files with 2 additions and 2 deletions

View File

@ -530,7 +530,7 @@ describe('ContextMenuManager', function() {
stringKey: "Hello Pulsar",
otherStringKey: "Goodbye Pulsar"
}
}, "en-US");
}, "en");
contextMenu.add({
'.parent': [

View File

@ -116,7 +116,7 @@ describe('MenuManager', function() {
stringKey: "Hello Pulsar",
otherStringKey: "Goodbye Pulsar"
}
}, "en-US");
}, "en");
const disposable = menu.add([
{ label: '%example.stringKey%', submenu: [{ label: '%example.otherStringKey%', command: 'b' }] }