I am using ibtool for the first time, and I'm getting a frustrating error. I have already extracted the strings from an .xib (yes I'm localizing) and made the desired modifications, but when I try to create the localized .xib I get this error:
I understand that the tool is saying it has no inputs, but I am sure that the input file directory is correct.
Here is the command I put in before I got the error:
Am I doing something wrong? Can anyone help me get this working properly?
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.ibtool.errors</key>
<array>
<dict>
<key>description</key>
<string>Not enough arguments provided; where is the input document to operate on?</string>
</dict>
</array>
</dict>
</plist>
I understand that the tool is saying it has no inputs, but I am sure that the input file directory is correct.
Here is the command I put in before I got the error:
Code:
ibtool --strings-file /Users/MainUser/Desktop/ItemDetailViewController.strings --write...
Am I doing something wrong? Can anyone help me get this working properly?