27 lines
872 B
C#
27 lines
872 B
C#
//-----------------------------------------------------------------------------
|
|
// <copyright file="LocalizedStrings.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <sience>16.07.2013</sience>
|
|
//-----------------------------------------------------------------------------
|
|
namespace CampusAppWP8
|
|
{
|
|
using CampusAppWPortalLib8.Resources;
|
|
|
|
/// <summary>Localized strings. </summary>
|
|
public class LocalizedStrings
|
|
{
|
|
/// <summary>The localized resources. </summary>
|
|
private static AppResources localizedResources = new AppResources();
|
|
|
|
/// <summary>Gets the localized resources. </summary>
|
|
/// <value>The localized resources. </value>
|
|
public AppResources LocalizedResources
|
|
{
|
|
get
|
|
{
|
|
return localizedResources;
|
|
}
|
|
}
|
|
}
|
|
} |