yavsc/web/Helpers/T.cs

24 lines
461 B
C#

12 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;
11 years ago
using Yavsc.Model;
12 years ago
11 years ago
namespace Yavsc.Helpers
12 years ago
{
public class T
{
11 years ago
public static string GetString(string msg)
12 years ago
{
11 years ago
string tr = LocalizedText.ResourceManager.GetString (msg.Replace (" ", "_"));
return tr==null?msg:tr;
12 years ago
}
}
}