We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a8b2b2 commit bfd8ae4Copy full SHA for bfd8ae4
Core/Source/DTLocalizableStringScanner.m
@@ -288,15 +288,21 @@ - (NSString *)_scanParameter
288
}
289
else if (character == '"')
290
{
291
- quotedString = [self _scanQuotedString];
+ if (quotedString) {
292
+ quotedString = [[quotedString substringToIndex:quotedString.length-1]
293
+ stringByAppendingString:[[self _scanQuotedString] substringFromIndex:1]];
294
+ }
295
+ else {
296
+ quotedString = [self _scanQuotedString];
297
298
299
else
300
301
_currentIndex++;
302
303
304
- if (quotedString)
305
+ if (quotedString)
306
307
return quotedString;
308
0 commit comments