1

I hate editing the strings files in xcode!

I tried to open the file as ASCII, it is better but you see only one line of the string.

Is there an option I missed?

And does anyone know a good editor for .strings files?

shannoga
  • 19,649
  • 20
  • 104
  • 169

3 Answers3

2

.strings files should almost always be UTF-16, as outlined in Localizing String Resources.

TextEdit should work okay as long as it's properly interpreting the .strings files as UTF-16.

NSGod
  • 22,699
  • 3
  • 58
  • 66
2

Property List Editor is no longer available by default as of OS X 10.7. We are now expected to edit plist files using bloated XCode 4.

However, it's possible to get the old Snow Leopard version of the Property List Editor working on Lion:

svth
  • 1,303
  • 1
  • 14
  • 23
1

Use Property List Editor in /Developer/Applications/Utilities/

Or if you prefer text editor, get BBEdit if you haven't yet. Every Mac programmer should have a copy.

Stephen Chu
  • 12,724
  • 1
  • 35
  • 46