This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Description
Fails to properly parse existing entries in Localizable.strings files that contain comments.
Patch LNLocalizationCollection.m, reloadLocalizations:
- regular expression ending ";$ better ending ";(.*)$ to allow any characters after terminator, before line ending.
- change the line:
if (result.range.location != NSNotFound && result.numberOfRanges == 5) {
to:
if (result.range.location != NSNotFound && result.numberOfRanges >= 5) {
because firstMatchInString: may return a range (no. 6) for the comments.