Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone - Localizable.strings with double quotes escape character

Inside the Localizable.strings file, if I add the escape character ", the file fails the building process.

For example:

"Now open ""Phone"" application" = "Maintenant ouvert ""Téléphone"" application";

I get an error due to this line. If commented out, it works just fine.

like image 611
Abdalrahman Shatou Avatar asked Apr 28 '12 17:04

Abdalrahman Shatou


1 Answers

You have to escape the quote marks with a backslash:

"Now open \"Phone\" application" = "Maintenant ouvert \"Téléphone\" application";
like image 131
Costique Avatar answered Oct 11 '22 19:10

Costique