Skip to content

Commit 6ae6ba5

Browse files
Add missing Advanced string (arduino#1104)
1 parent 439cdfb commit 6ae6ba5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

arduino-ide-extension/src/browser/contributions/settings.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ export class Settings extends SketchContribution {
4949
) + '...',
5050
order: '0',
5151
});
52-
registry.registerSubmenu(ArduinoMenus.FILE__ADVANCED_SUBMENU, 'Advanced');
52+
registry.registerSubmenu(
53+
ArduinoMenus.FILE__ADVANCED_SUBMENU,
54+
nls.localize('arduino/menu/advanced', 'Advanced')
55+
);
5356
}
5457

5558
override registerKeybindings(registry: KeybindingRegistry): void {

i18n/en.json

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@
237237
"zipLibrary": "Library"
238238
},
239239
"menu": {
240+
"advanced": "Advanced",
240241
"sketch": "Sketch",
241242
"tools": "Tools"
242243
},

0 commit comments

Comments
 (0)