where would you place "localization & globalization" in an enterprise application 3-layered builded in c# WPF with MVVM and Prism? I mean in an application built like the pattern describe in msdn (http://msdn.microsoft.com/en-us/library/ee658124.aspx) in which layer would you put the logic for localization? what kind of approach would you use (resx files, db...)?
Resx files
but this is NOT a trivial subject and there isn't any one standard approach, with the major ones being:
Recommended references: Sacha Barber, Josh Smith, and ResX.
My preference is to use a combination of (3) and (4), although I needed to modify the code for the extension a bit. So I will typically have
HTH,
Berryl