XCode localization and SVN problem
I added three localization to my project in XCode bu开发者_如何学运维t I can commit to SVN only default language 'English' but another two I can't. Next to 'Localizable.strings(SomeLanguage)' I have only 'A' but can't add it to repo. What am I missing here? First time work with localization, XCode 4...
An 'A' next to the filename when you run svn stat
means that the file has already been added. In order to make that change in the repository, you need to commit the change:
svn commit -m "Adding localizations for Hungarian and Urdu."
精彩评论