I originally was using this:

[status setStringValue:[NSString localizedStringWithFormat:
                        @"%1$i entries, %2$i selected",
                         [[stack words] count],
                         [listView numberOfSelectedRows]]];

but, found it didn't work. Changing it to the following works.

[status setStringValue:[NSString localizedStringWithFormat:
                       _(@"%1$i entries, %2$i selected"),
                         [[stack words] count],
                         [listView numberOfSelectedRows]]];

shouldn't localizedStringWithFormat return the localized string without the additional _()?

Thanks
Rob



_______________________________________________
Help-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-gnustep

Reply via email to