is this not possible? i have all my NSMenuItems hooked up and localized fine, but the NSMenu title is not being localized
i can't seem to hook up the NSMenu in IB, only it's NSMenuItem, so maybe this is why it's not working? i've attached the proj.
any help would be great.
Code:
#import <Cocoa/Cocoa.h>
@interface AppController : NSObject
{
//Main Menu Outlets
IBOutlet id MenuItem1;
IBOutlet id MenuItem2;
}
@end
#import "AppController.h"
static NSString * CONSTMenuItem1;
static NSString * CONSTMenuItem2;
@implementation AppController
- (void)awakeFromNib
{
CONSTMenuItem1 = NSLocalizedString (@"ENGLISH MENU", nil);
[MenuItem1 setTitle:CONSTMenuItem1];
CONSTMenuItem2 = NSLocalizedString (@"English Item...", nil);
[MenuItem2 setTitle:CONSTMenuItem2];
}
@end
i can't seem to hook up the NSMenu in IB, only it's NSMenuItem, so maybe this is why it's not working? i've attached the proj.
any help would be great.