> Hello,
>
[quoted text clipped - 5 lines]
> Is NSSavePanel not localized? (why?) or do I something wrong here?
> How can I fix this?
You say that you're running OS X/Japanese, but this doesn't really make
sense. Localization on OS X (aside from stuff like boot process messages
and the login window) is handled on purely a per-application basis. What's
more, every application has only a single localization, which is chosen
at startup based on the available lproj directories and the user's current
localization rankings as set in the International pane of System
Preferences.
The point of all this is, does your application actually have a
Japanese.lproj? If not, then your application won't choose a Japanese
localization, not even for system-provided stuff which has the
localization available.

Signature
Michael Ash
Rogue Amoeba Software
Alexander Grau - 31 Oct 2005 11:52 GMT
>>Hello,
>>
[quoted text clipped - 13 lines]
> localization rankings as set in the International pane of System
> Preferences.
Yes, I did not mention that we have a proprietary translation system (as
we ported C++ code to Mac with mixed Cocoa for the GUI). All strings are
assigned to GUI elements at runtime...
> The point of all this is, does your application actually have a
> Japanese.lproj? If not, then your application won't choose a Japanese
> localization, not even for system-provided stuff which has the
> localization available.
Oops, did not know this - you are right, there is no Japanese.lproj...
I'm sure that might solve this
Thanks Michael!