123456789101112131415161718192021222324252627282930313233343536 |
- /*
- * Copyright © 2011-2012 Nokia Corporation. All rights reserved.
- * Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation.
- * Other product and company names mentioned herein may be trademarks
- * or trade names of their respective owners.
- * See LICENSE.TXT for license information.
- */
- namespace wprestaurantapp
- {
- /// <summary>
- /// Helper class for accessing application resources from XAML, especially for localization
- /// </summary>
- public class LocalizedStrings
- {
- /// <summary>
- /// Constructor
- /// </summary>
- public LocalizedStrings()
- {
- }
- /// <summary>
- /// Class variable for instance of AppResources
- /// </summary>
- private static wprestaurantapp.AppResources localizedResources = new wprestaurantapp.AppResources();
- /// <summary>
- /// Property for accessing AppResources
- /// </summary>
- public wprestaurantapp.AppResources LocalizedResources { get { return localizedResources; } }
- }
- }
|