LocalizedStrings.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright © 2011-2012 Nokia Corporation. All rights reserved.
  3. * Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation.
  4. * Other product and company names mentioned herein may be trademarks
  5. * or trade names of their respective owners.
  6. * See LICENSE.TXT for license information.
  7. */
  8. namespace wprestaurantapp
  9. {
  10. /// <summary>
  11. /// Helper class for accessing application resources from XAML, especially for localization
  12. /// </summary>
  13. public class LocalizedStrings
  14. {
  15. /// <summary>
  16. /// Constructor
  17. /// </summary>
  18. public LocalizedStrings()
  19. {
  20. }
  21. /// <summary>
  22. /// Class variable for instance of AppResources
  23. /// </summary>
  24. private static wprestaurantapp.AppResources localizedResources = new wprestaurantapp.AppResources();
  25. /// <summary>
  26. /// Property for accessing AppResources
  27. /// </summary>
  28. public wprestaurantapp.AppResources LocalizedResources { get { return localizedResources; } }
  29. }
  30. }