i1n will scan your Xcode project and compare the keys in your english localization file to all other available languages.
The result is a report with all keys available in for english but missing for other languages.
This project is still in early stages.
This is a swift script file written in Swift 3, and assume you have Xcode 8 installed.
Add execution permissions to the main.swift:
chmod +x main.swift
Copy & Rename the main.swift to folder in your PATH, for example:
sudo cp main.swift /usr/local/bin/i1n
Run the i1n script from the root of your project (assuming i1n exists at /usr/local/bin/i1n):
i1n
Sample output:
You can run i1n on the Demo project to see it in action.
Running i1n -a will add the missing keys to the localization files with their english values.
To Catalin Rosu for the HTML template!