Why doesn't genstrings convert NSLocalizedStringFromTable entries to table.strings?
Posted
by juan tendero
on Stack Overflow
See other posts from Stack Overflow
or by juan tendero
Published on 2010-06-15T09:20:55Z
Indexed on
2010/06/15
9:22 UTC
Read the original article
Hit count: 491
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?
© Stack Overflow or respective owner