I'm with Pawel Dyda on this but I'd would go further still.
When you have complex data structures that need localization you'd be wise to wrap these things to support any scenario.
Now, when I say complex data structure, I'm not trying to complicate things, but what you tend to realize going international is that every country has their own way of doing things. Things like names, addresses, phone numbers that are largely culture specific need to be treated as such and you should have a presentation layer in your application that gets this. It should also be highly customizable if you wanna be successful.
The culture specific stuff in .NET is great, to some extent, but it's not enough to rely on composite formatting strings.