Re: [MacRuby-devel] NSLocaliszed* functions missing

2010-05-20 Thread Dave Baldwin
Thanks, That did the trick. Docs didn't say about it being a macro, unless I overlooked it. Dave. On 19 May 2010, at 17:04, Ed wrote: > Hi Dave, > > NSLocalizedStringFromTable is a C macro defined in NSBundle.h that wraps a > call to localizedStringForKey:value:table:. > > You can call the

Re: [MacRuby-devel] NSLocaliszed* functions missing

2010-05-19 Thread Ed
Hi Dave, NSLocalizedStringFromTable is a C macro defined in NSBundle.h that wraps a call to localizedStringForKey:value:table:. You can call the localize method directly by using something like: NSBundle.mainBundle.localizedStringForKey('key', value:'value', table:'table'). HTH, Ed