yavsc/web/Helpers/T.cs

24 lines
461 B
C#

10 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Configuration;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.Net.Mail;
using Yavsc;
using System.Globalization;
10 years ago
using Yavsc.Model;
10 years ago
10 years ago
namespace Yavsc.Helpers
10 years ago
{
public class T
{
10 years ago
public static string GetString(string msg)
10 years ago
{
10 years ago
string tr = LocalizedText.ResourceManager.GetString (msg.Replace (" ", "_"));
return tr==null?msg:tr;
10 years ago
}
}
}