In my source code I have some lines like NSLocalizedStringFromTable(@"Info", @"en", @"Title of this view")
. When I subsequently call genstrings -o en.lproj ./Classes/*.m
I would not get the expected file en.strings
but Localized.strings
, although I've read in the genstrings-manpage that it would generate a table.strings file from NSLocalizedStringFromTable(a, table, c) function. Am I wrong? How would I create a table.strings file then?