IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label naming. Show all posts
Showing posts with label naming. Show all posts

Sunday, January 6, 2013

Re: Selection of Localizable.strings and .strings file naming?

I'm guessing that most use the default naming of the localization strings files, which are packaged with related localized files in the appropriate resource folder - your screenshot is just showing that there are three localizations for that name.

 

You can use any name you want when creating a strings file - Foundation's NSLocalizedString just uses the default Localizable.string file name by calling NSBundle's localizedStringForKey:value:table: method with a nil value for the table.  You can use other names by calling that method or by using Foundation's NSLocalizedStringFromTable, passing the desired table name (the file to use).


View the original article here

Friday, January 4, 2013

Selection of Localizable.strings and .strings file naming?


Hi Apple Developer Folks,



In the process of embedding Internalization for strings in my project, I referred to the "InternationalMountains" sample code project.



In that project there are three languages supported, English, French and Chinese.



What I do not understand is why all three Localizable.strings files have been checked in Localization section of the File Inspector.



This is the case for the other two such files, as well. 



(See the full sized image at http://www.drake.org/images/AllThreeBoxes.jpg )



Also, I have one other question:  "What is the suggested mechanism for controlling the NAMING of the Localizable.strings files?"



If I wanted to name the files something like "StandardApp.strings" or "ProApp.strings" - where and how would that be accomplished?



As it is, if the files are not named "Localizable.strings" - the NSLocalizedString(key, comment); calls do not work as intended.



Thanks very much!


View the original article here