Ŀ
 Menu.rc 


#include "Frame.h"
#include "Keys.rc"

Menu, APP/MENU/MAIN_WINDOW/VIEW = {
    Items, Panels = {
        Item, APP/MENU_ITEM/VIEW/SHOW_LEFT_FM_PANEL = {
            Text = APP/STR/MENU_ITEM/VIEW/SHOW_LEFT_FM_PANEL
            Key = APP/KEY/MENU_ITEM/VIEW/SHOW_LEFT_FM_PANEL
        }

        Item, APP/MENU_ITEM/VIEW/SHOW_RIGHT_FM_PANEL = {
            Text = APP/STR/MENU_ITEM/VIEW/SHOW_RIGHT_FM_PANEL
            Key = APP/KEY/MENU_ITEM/VIEW/SHOW_RIGHT_FM_PANEL
        }
    }

    Items, OrderBy = {
        ...
    }

    ...
}

String, APP/STR/MENU_ITEM/VIEW/SHOW_LEFT_FM_PANEL = {
    Text.En = "Show/hide left panel"
    Key.En = "~left"

    Text.Ru = "/  "
    Key.Ru = "~"
}

String, APP/STR/MENU_ITEM/VIEW/SHOW_RIGHT_FM_PANEL = {
    Text.En = "Show/hide right panel"
    Key.En = "~right"

    Text.Ru = "/ ࠢ "
    Key.Ru = "~ࠢ"
}

...

Ŀ
 Keys.rc 


Key, APP/KEY/MENU_ITEM/VIEW/SHOW_LEFT_FM_PANEL = {
    Scan_code = SC_F1
    Modifiers = SC_CTRL
}

Key, APP/KEY/MENU_ITEM/VIEW/SHOW_RIGHT_FM_PANEL = {
    Scan_code = SC_F2
    Modifiers = SC_CTRL
}

...
