我只是不能让本地化工作。

我有一个类库。现在我想在那里创建resx文件,并根据线程区域性返回一些值。

我该怎么做呢?


当前回答

Add a Resource file to your project (you can call it "strings.resx") by doing the following: Right-click Properties in the project, select Add -> New Item... in the context menu, then in the list of Visual C# Items pick "Resources file" and name it strings.resx. Add a string resouce in the resx file and give it a good name (example: name it "Hello" with and give it the value "Hello") Save the resource file (note: this will be the default resource file, since it does not have a two-letter language code) Add references to your program: System.Threading and System.Globalization

运行以下代码:

Console.WriteLine(Properties.strings.Hello);

它应该打印“Hello”。

现在,添加一个名为“strings.fr.resx”的新资源文件(注意“fr”部分;这个将包含法语的资源)。添加与字符串中同名的字符串资源。resx,但是值为法语(Name="Hello", value ="Salut")。现在,如果你运行下面的代码,它应该打印Salut:

Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("fr-FR");
Console.WriteLine(Properties.strings.Hello);

系统会为“fr-FR”寻找资源。它不会找到一个(因为我们在您的文件中指定了“fr”)。然后它将返回到检查“fr”,它找到(并使用)。

下面的代码,将打印“Hello”:

Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");
Console.WriteLine(Properties.strings.Hello);

这是因为它没有找到任何“en- us”资源,也没有“en”资源,因此它将退回到默认值,即我们从一开始添加的资源。

如果需要,您可以创建包含更特定资源的文件(例如,在法国和加拿大分别为法语创建strings.fr-FR.resx和strings.fr-CA.resx)。在每个这样的文件中,您将需要为那些与它将返回的资源不同的字符串添加资源。如果一个文本在法国和加拿大是相同的,你可以把它放在strings.fr.resx中,而在加拿大法语中不同的字符串可以放在strings.fr- ca .resx中。

其他回答

你可以使用Lexical。本地化¹允许将默认值和区域性特定值嵌入到代码中,并在外部本地化文件中扩展为进一步的区域性(如.json或.resx)。

public class MyClass
{
    /// <summary>
    /// Localization root for this class.
    /// </summary>
    static ILine localization = LineRoot.Global.Type<MyClass>();

    /// <summary>
    /// Localization key "Ok" with a default string, and couple of inlined strings for two cultures.
    /// </summary>
    static ILine ok = localization.Key("Success")
            .Text("Success")
            .fi("Onnistui")
            .sv("Det funkar");

    /// <summary>
    /// Localization key "Error" with a default string, and couple of inlined ones for two cultures.
    /// </summary>
    static ILine error = localization.Key("Error")
            .Format("Error (Code=0x{0:X8})")
            .fi("Virhe (Koodi=0x{0:X8})")
            .sv("Sönder (Kod=0x{0:X8})");

    public void DoOk()
    {
        Console.WriteLine( ok );
    }

    public void DoError()
    {
        Console.WriteLine( error.Value(0x100) );
    }
}

此外,@Fredrik Mörk关于字符串的伟大回答,要添加本地化到一个表单,请执行以下操作:

将表单的属性“Localizable”设置为true 将表单的Language属性更改为您想要的语言(从一个漂亮的下拉菜单中) 翻译这种形式的控件,并在需要时移动它们(把那些非常长的完整的法语句子塞进去!)

编辑:这篇MSDN关于Windows窗体本地化的文章不是我链接的原始文章…但如果需要的话,可能会提供更多线索。(旧的已经被拿走了)

一个修复和细化的@Fredrik Mörk答案。

添加一个字符串。resx资源文件到您的项目(或不同的文件名) 将Access Modifier设置为Public(在打开的字符串中)。Resx文件标签) 在resx文件中添加一个字符串资源:(例如:name Hello, value Hello) 保存资源文件

Visual Studio自动生成相应的strings类,它实际上放在strings. designer .cs中。类位于您希望放置新创建的.cs文件的相同名称空间中。

这段代码总是输出Hello,因为这是默认资源,没有特定于语言的资源可用:

Console.WriteLine(strings.Hello);

现在添加一个新的特定于语言的资源:

添加strings.fr.resx(法语) 添加一个与前面相同名称,但值不同的字符串:(name Hello, value Salut)

下面的代码打印Salut:

Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("fr-FR");
Console.WriteLine(strings.Hello);

使用什么资源取决于thread . currentthread . currentuicculture。它的设置取决于Windows UI语言设置,也可以像本例中那样手动设置。点击这里了解更多。

您可以添加特定国家的资源,如strings.fr-FR.resx或strings.fr-CA.resx。

要使用的字符串按优先级顺序确定:

来自特定国家的资源,如strings.fr-CA.resx 从特定于语言的资源,如strings.fr.resx 从默认的strings.resx

注意,特定于语言的资源会生成附属程序集。

还可以在这里了解CurrentCulture与CurrentUICulture的不同之处。

Add a Resource file to your project (you can call it "strings.resx") by doing the following: Right-click Properties in the project, select Add -> New Item... in the context menu, then in the list of Visual C# Items pick "Resources file" and name it strings.resx. Add a string resouce in the resx file and give it a good name (example: name it "Hello" with and give it the value "Hello") Save the resource file (note: this will be the default resource file, since it does not have a two-letter language code) Add references to your program: System.Threading and System.Globalization

运行以下代码:

Console.WriteLine(Properties.strings.Hello);

它应该打印“Hello”。

现在,添加一个名为“strings.fr.resx”的新资源文件(注意“fr”部分;这个将包含法语的资源)。添加与字符串中同名的字符串资源。resx,但是值为法语(Name="Hello", value ="Salut")。现在,如果你运行下面的代码,它应该打印Salut:

Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("fr-FR");
Console.WriteLine(Properties.strings.Hello);

系统会为“fr-FR”寻找资源。它不会找到一个(因为我们在您的文件中指定了“fr”)。然后它将返回到检查“fr”,它找到(并使用)。

下面的代码,将打印“Hello”:

Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");
Console.WriteLine(Properties.strings.Hello);

这是因为它没有找到任何“en- us”资源,也没有“en”资源,因此它将退回到默认值,即我们从一开始添加的资源。

如果需要,您可以创建包含更特定资源的文件(例如,在法国和加拿大分别为法语创建strings.fr-FR.resx和strings.fr-CA.resx)。在每个这样的文件中,您将需要为那些与它将返回的资源不同的字符串添加资源。如果一个文本在法国和加拿大是相同的,你可以把它放在strings.fr.resx中,而在加拿大法语中不同的字符串可以放在strings.fr- ca .resx中。

F.Mörk的回答很好。但是如果您想要更新翻译,或者在应用程序发布后添加新的语言,就会陷入困境,因为您总是必须重新编译它以生成resources.dll。

下面是手动编译资源dll的解决方案。它使用resgen.exe和al.exe工具(与sdk一起安装)。

假设你有一个Strings.fr.resx资源文件,你可以用以下批处理编译一个资源dll:

resgen.exe /compile Strings.fr.resx,WpfRibbonApplication1.Strings.fr.resources 
Al.exe /t:lib /embed:WpfRibbonApplication1.Strings.fr.resources /culture:"fr" /out:"WpfRibbonApplication1.resources.dll"
del WpfRibbonApplication1.Strings.fr.resources
pause

确保在文件名中保留原始的名称空间(这里是“WpfRibbonApplication1”)