I downloaded the three20 library:
And I opened the TTCatalog sample project that comes with this library:
http://img16.imageshack.us/img16/3183/screenshot20100302at752.png
As you can see, there are lots of Localizable.strings files.
When I opened the iPhone simulator and changed its language to for example French in the settings, the text on the button still remains in English:
http://img69.imageshack.us/img69/9775/screenshot20100302at812.png
I already checked that there is definitely a corresponding entry for the text "See All" in the Localization.strings of French.
Why and what are the steps to make it use the Localizable.strings files?
(This sample project does not come with any nib/xib file)
EDIT:
After adding the following XML in Info.plist:
...
<dict>
...
<key>CFBundleLocalizations</key>
<array>
<string>de</string>
<string>en</string>
<string>es</string>
<string>fr</string>
<string>it</string>
<string>ja</string>
<string>zh_cn</string>
<string>zh_tw</string>
</array>
</dict>
...
It works now!