App is written in Objective-c, but it also needs some c files. And the c files contain some strings need to be localized. Such as:
sprintf("%dx%d, %d balls", w, h, ballCount);
printf("Hello");
Usually Objective-c can get localized string like this:
NSString* text = [NSString stringWithFormat: NSLocalizedString(@"%dx%d, %d balls",@""), w, h, ballCount];
NSString* text2 = NSLocalizedString(@"Hello",@"");
Localizable.strings
"%dx%d, %d balls" = "%dx%d, %d couilles";
"Hello" = "Bonjour";
Can c file read localized string files like Objective-c?