How to internationalize the DockyContextMenu?
Posted: Mon Jan 15, 2024 12:47 pm
Hi there
Is there a way to internationalize the OS4 DockyContextMenu?
So far, I create the DockyContextMenu like this:
Beacause the menu is created with @MENU, GetCatalogString() can't be used, but then, I couldn't find a way to rename menuitems at a later stage and I can't use CreateMenu() to create the DockyContextMenu, either, because its ID is needed in @OPTIONS.
I'm I missing something or is this simply not possible?
Cheers,
Michael
Is there a way to internationalize the OS4 DockyContextMenu?
So far, I create the DockyContextMenu like this:
Code: Select all
@MENU 1, {
{ "Docky", {
{ "Play/Pause", ID = "dockmenPlayPause" },
{ "Previous", ID = "dockmenPrevious" },
{ "Next", ID = "dockmenNext" } }
}
}
@OPTIONS { RegisterApplication = True, DockyContextMenu = 1 }I'm I missing something or is this simply not possible?
Cheers,
Michael