Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to include the internationalization of my application, and only for testing purposes I added a simple line in the file Localizable.string.

This is my whole file:

"Test locale" = "Test locale"

And when I try run my application I get this error:

Localizable.strings:0: error: validation failed: The data couldn’t be read because it has been corrupted.

I've tried changing the "Text Encoding" to UTF-16 but nothing resolved.

Any ideia?

Thanks in advance.

share|improve this question

2 Answers

up vote 21 down vote accepted

If this is your whole file, change it to:

"Test locale" = "Test locale";

share|improve this answer
1  
Oh God, how I was stupid, very simple. Thank you. – Paulo Rodrigues Apr 16 '12 at 20:57

In my case, it was like this:

/* Comment for Very Long Sentence */
"Very Long Sentence Very Long Sentence Very Long Sentence Very Long Sentence " =;
"Very Long Sentence Very Long Sentence Very Long Sentence Very Long Sentence ";

(Notice the ' = ; ' instead of ' = ' at the end of the first line)

Hope it helps someone...

share|improve this answer
Happens a lot when you copy/paste without checking... – NicolasMiari Jul 17 '12 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.