I did some reading on localization in iOS and it seems like the two main things are localizing the nib file, and using the NSLocalizedString to grab the localized string from the string file. For our app, we have a sqlite database (using the FMDB wrapper) for the majority of our content we display. In this scenario, how would we localize our app? Do we need a Chinese version of our database? Or do we need a Chinese strings file that serves as a lookup table from the strings we pull out from our database. Like if in the database there is a description of a car, do we then look for that description in the strings file? I haven't really seen any examples on localization with a database.
Thanks!