You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
I have forked the plug-in and made my own support for comments including the UI. Please check #32 or https://github.com/marchv/Lin-Xcode5. Please note that the comments are expected to be on the previous line:
/* My 1st comment */
"my1stKey" = "My 1st string";
/* My 2nd comment */
"my2ndKey" = "My 2nd string";
Feedback is welcome :)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Fails to properly parse existing entries in Localizable.strings files that contain comments.
Patch LNLocalizationCollection.m, reloadLocalizations:
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.
The text was updated successfully, but these errors were encountered: