Locale codes for iPhone lproj folders
You can just call them English.lproj, Spanish.lproj, etc. The “abbreviated names” are actually IETF language tags (i.e. BCP 47), except that you use pt_PT.lproj instead of pt-PT.lproj. The actual interpretation routine is in https://github.com/apple/swift-corelibs-foundation/blob/master/CoreFoundation/PlugIn.subproj/CFBundle_Locale.c, determined by the CFBundleGetLocalizationInfoForLocalization function. Replicated here: | lproj identifiers | L# | C# | Display name | |:——————————-|:—-|:—-|:—————————| | en_US … Read more