我有以下代碼如何從英語翻譯成法語使用C#
private void button1_Click(object sender, EventArgs e)
{
ResXResourceReader resourceReader = new ResXResourceReader("EN-US.resx");
foreach (DictionaryEntry dictonary in resourceReader)
{
//call google API to translate the entry
MessageBox.Show(dictonary.Key.ToString() + ":\t" + dictonary.Value.ToString());
}
resourceReader.Close();
}
在上面的例子裏,我讀的資源文件,並在消息框顯示。我需要知道我怎麼能叫谷歌Web服務或東西,(在我的例子中,法語)整個資源文件到一個新的語言翻譯,請不要讓我知道。我感謝您的支持。
您的項目翻譯這不是維護,他們會打破你的應用程序,恕不另行通知的方式。 – 2010-10-18 18:29:31
不可能。而是僱用專業翻譯。 – Juliet 2010-10-18 18:32:37
你要調用谷歌翻譯在運行時爲你的每一個靜態的字符串?!? – EboMike 2010-10-18 18:34:12