When I try to run my project, I get this error, pointing to my localized .strings file:
read failed: The operation couldn’t be completed. (
XCBUtil.PropertyListConversionError
error 1.)
What can I do to fix this issue?
There is a formatting error inside the .string file that the error is pointing at. Localizable .strings files should contain strings in quotes (if they contain more than one word and/or special characters) and semicolons at the end of lines, like such:
string = translation;
"another string" = "another translation";
Please refer to this solution to find the error.
You should execute
/usr/bin/plutil -lint <path to .strings file>
in Terminal to find the exact issue.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With