Translation issue
Translation issue
- Subject: Translation issue
- From: Michael Wu <email@hidden>
- Date: Tue, 16 Aug 2005 20:43:46 -0400
When I use the following:
[[NSOpenPanel openPanel] beginSheetForDirectory:nil file:nil types:nil
modalForWindow:myWindow
modalDelegate:self
didEndSelector:@selector(myPanelDidEnd:returnCode:contextInfo:)
contextInfo: nil];
At the myPanelDidEnd call, I use:
if (returnCode == NSOKButton)
{
NSArray *userSelected = [openPanel filenames];
if ( [userSelected count] > 0 )
{
[myTextField setTitleWithMnemonic: [userSelected
objectAtIndex:0]];
}
}
Why the path returns "English translated" word in some system
directory? e.g. /Library /Document, while I am in Japanese UI and
the /Library and /Document are showing in Japanese on the UI. If I
create a Japanese directory, the path will return the correct
Japanese directory name.
Is there a way to force return in "Native" language for these system
directories?
Thanks in advance.
mwu.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden