Ŀ
 MENU.RC 


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

ID_VIEW_MENU : Menu = {
    Panels : Items = {
        ID_SHOW_LEFT_PANEL : Item = {
            Text = ID_SHOW_LEFT_PANEL
            Key = ID_SHOW_LEFT_PANEL
        }

        ID_SHOW_RIGHT_PANEL : Item = {
            Text = ID_SHOW_RIGHT_PANEL
            Key = ID_SHOW_RIGHT_PANEL
        }
    }

    OrderBy : Items = {
        ...
    }

    ...
}

ID_SHOW_LEFT_PANEL : String = {
    Text.En = "Show/hide left panel"
    Key.En = "~left"

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

ID_SHOW_RIGHT_PANEL : String = {
    Text.En = "Show/hide right panel"
    Key.En = "~right"

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

...

Ŀ
 KEYS.RC 


ID_SHOW_LEFT_PANEL : Key = {
    Scan_code = SC_F1
    Modifiers = SC_CTRL
}

ID_SHOW_RIGHT_PANEL : Key = {
    Scan_code = SC_F2
    Modifiers = SC_CTRL
}

...
