加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Lang.cs 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
谢进伟 提交于 2019-11-15 21:44 . 初始化
//Copyright (c) 2012 Stefan Moebius (mail@stefanmoebius.de)
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace xpsviewer
{
class Lang
{
public static string translate(string en, string de, string fr)
{
/*
French 1036
French (Belgium) 2060
French (Canadian) 3084
French (Luxembourg) 5132
French (Swiss) 4108
*/
/*
German 1031
German (Austrian) 3079
German (Liechtenstein) 5127
German (Luxembourg) 4103
German (Swiss) 2055
*/
int lcid = Thread.CurrentThread.CurrentUICulture.LCID;
if (lcid == 1031 || lcid == 3079 || lcid == 5127 || lcid == 4103 || lcid == 2055) // German
return de;
if (lcid == 1036 || lcid == 2060 || lcid == 3084 || lcid == 5132 || lcid == 4108) // French
return fr;
return en;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化