using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Web;
namespace Zhaizj.Framework {
///
/// 获取某个 app 的语言包
///
public class alang {
///
/// 根据 app 的类型 t 获取某 key 的语言值
///
/// app 的类型
/// 语言 key
///
public static String get( Type t, String key ) {
LanguageSetting ls = lang.getByApp( t );
return ls == null ? null : ls.get( key );
}
}
}