创建动态多语言网站

时间:2013-11-09 07:37:00

标签: asp.net asp.net-mvc multilingual resx

我打算实施一个多语言网站,所以我的第一个想法是使用 resx 文件,但我有一个要求让每个文本都可以从管理中编辑,

can i do such a feature with resx files or should I store them in a database (schemaless) or is there a better way to do this?

2 个答案:

答案 0 :(得分:1)

您可以使用XML文件进行翻译,在应用程序启动时解析它们并将翻译存储在缓存中。您可以使用FileSystemWatcher类来查看有人更新文件的时间,然后使缓存无效。

答案 1 :(得分:1)

您可以使用xml或sql表。 你应该为管理员准备一个页面并列出所有翻译的单词。 语言管理员登录的基础,更新单词到您的表或xml文件的翻译。 另外,为了获得最佳性能,请将每个语言单词加载到系统捕获。

写一些这样的代码,用于将单词输入表或xml。

<%=PLang.GetString("YourWordInEnglish")%>

在你的aspx中

...................

public static string GetString(string word)
    {
        try
        {
            if (String.IsNullOrWhiteSpace(word)) return "";
            Dictionary<string, string> resourcesDictionary = GetResource(GetLanguageID());

            if (resourcesDictionary != null)
            {
                if (!resourcesDictionary.ContainsKey(word.ToLower()))
                {
                    Expression exp = new Expression();
                    exp.Word = exp.Translation = word;
                    exp.LanguageID = GetLanguageID();
                    exp.SiteID = Globals.GetSiteID();
                    if (exp.SiteID == 0 && exp.LanguageID == 0)
                        return word;

                    if (FLClass.createExpression(exp, ref resourcesDictionary) > 0)
                        return resourcesDictionary[word];
                    else
                        return word;

                }
                return resourcesDictionary[word.ToLower()];
            }
            else
                return word;
        }
        catch
        {
            return word;
        }
    }

................... 编辑功能

 public class ViewExpressionListEdit : BaseWebService
{
    [WebMethod(EnableSession = true)]
    public bool updateExpression(ExpressionService expressionService)
    {
        Expression expression = new Expression();
        expression.ExpressionID = expressionService.ExpressionID;
        expression.Translation = expressionService.Translation;
        expression.LanguageID = expressionService.LanguageID;
        expression.SiteID = Globals.GetSiteID();
        return FLClass.updateExpression(expression);
    }
}