1 using CodecUTApp.Resources; 2 3 namespace CodecUTApp 4 { 5 /// <summary> 6 /// Provides access to string resources. 7 /// </summary> 8 public class LocalizedStrings 9 { 10 private static AppResources _localizedResources = new AppResources(); 11 12 public AppResources LocalizedResources { get { return _localizedResources; } } 13 } 14 }