I would like to localize my constants. Constants are defined and declared the usual way:
extern NSString * const kStringName; NSString * const kStringName = @\"
A const variable may already optimized at compile time so you can't change it at runtime. You simply can't have const localized strings.