23 CFLocaleRef myCFLocale = CFLocaleCopyCurrent();
24 NSLocale *myNSLocale = (NSLocale *)myCFLocale;
25 [myNSLocale autorelease];
31 NSString *nsIdentifier = myNSLocale.languageCode;
32 NSString *nsIdentifier_country = myNSLocale.countryCode;
33 if (nsIdentifier.length != 0 && nsIdentifier_country.length != 0) {
34 nsIdentifier = [NSString stringWithFormat:
@"%@_%@", nsIdentifier, nsIdentifier_country];