我正在为我遇到的问题寻找解决方案或建议。我有一堆将本地化的 ASPX 页面,还有一堆需要支持 6 种语言的文本。
进行翻译的人员将无法访问 Visual Studio,可能最简单的工具是 Excel。如果我们使用 Excel 甚至导出到 CSV,我们需要能够导入以移动到 .resx 文件。那么,最好的方法是什么?
我知道这个问题,将 Visual Studio 资源文件转换为文本文件?已经使用 Resx 编辑器,但更简单的解决方案将是首选。
我正在为我遇到的问题寻找解决方案或建议。我有一堆将本地化的 ASPX 页面,还有一堆需要支持 6 种语言的文本。
进行翻译的人员将无法访问 Visual Studio,可能最简单的工具是 Excel。如果我们使用 Excel 甚至导出到 CSV,我们需要能够导入以移动到 .resx 文件。那么,最好的方法是什么?
我知道这个问题,将 Visual Studio 资源文件转换为文本文件?已经使用 Resx 编辑器,但更简单的解决方案将是首选。
我不确定您正在寻找的答案有多全面,但如果您真的只是使用 [string, string] 对进行本地化,并且您只是在寻找一种快速加载资源的方法(.resx)包含翻译结果的文件,那么以下将作为一种相当快速、低技术含量的解决方案。
要记住的是 .resx 文件只是 XML 文档,因此应该可以从外部代码段手动将数据加载到资源中。以下示例在 VS2005 和 VS2008 中对我有用:
namespace SampleResourceImport
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
string filePath = @"[file path to your resx file]";
doc.Load(filePath);
XmlElement root = doc.DocumentElement;
XmlElement datum = null;
XmlElement value = null;
XmlAttribute datumName = null;
XmlAttribute datumSpace = doc.CreateAttribute("xml:space");
datumSpace.Value = "preserve";
// The following mocks the actual retrieval of your localized text
// from a CSV or ?? document...
// CSV parsers are common enough that it shouldn't be too difficult
// to find one if that's the direction you go.
Dictionary<string, string> d = new Dictionary<string, string>();
d.Add("Label1", "First Name");
d.Add("Label2", "Last Name");
d.Add("Label3", "Date of Birth");
foreach (KeyValuePair<string, string> pair in d)
{
datum = doc.CreateElement("data");
datumName = doc.CreateAttribute("name");
datumName.Value = pair.Key;
value = doc.CreateElement("value");
value.InnerText = pair.Value;
datum.Attributes.Append(datumName);
datum.Attributes.Append(datumSpace);
datum.AppendChild(value);
root.AppendChild(datum);
}
doc.Save(filePath);
}
}
}
显然,上述方法不会为您的资源生成代码隐藏,但是在 Visual Studio 中打开资源文件并切换资源的可访问性修饰符将为您(重新)生成静态属性。
如果您正在寻找一个完全基于 XML 的解决方案(相对于 CSV 或 Excel 互操作),您还可以指示您的翻译人员将他们翻译的内容存储在 Excel 中,另存为 XML,然后使用 XPath 检索您的本地化信息。唯一需要注意的是文件大小往往会变得非常臃肿。
祝你好运。
我遇到了类似的问题,并意识到从 excel 文件创建 .resx 文件的最简单方法是使用 excel 的连接函数为 . resx 文件,然后在任何文本编辑器中手动将生成的行复制到 .resx 文件。因此,假设您在 excel 文档的 A 列中有“名称”,在 excel 文档的 B 列中有“值”。在 C 列中使用以下公式
=CONCATENATE("<data name=","""",A14,""" xml:space=""preserve"">","<value>", B14, "</value>", "</data>")
您将获得资源的数据节点。然后,您可以将此公式复制到所有行,然后将 C 列的内容复制到 .resx 文件中。
如果它在 csv 中,这里有一个快速的 Ruby 脚本来生成数据元素。
require 'csv'
require 'builder'
file = ARGV[0]
builder = Builder::XmlMarkup.new(:indent => 2)
CSV.foreach(file) do |row|
builder.data(:name => row[0], "xml:space" => :preserve) {|d| d.value(row[1]) }
end
File.open(file + ".xml", 'w') { |f| f.write(builder.target!) }