diff --git a/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml.cs b/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml.cs
index f0bdde6b..faab6897 100644
--- a/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml.cs
+++ b/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml.cs
@@ -36,11 +36,11 @@ private async void AuthTestBtn_Click(object sender, RoutedEventArgs e)
Trans.TranslatorInit(TransAppIDBox.Text, TransSecretKeyBox.Text);
if (await Trans.TranslateAsync("apple", "zh", "en") != null)
{
- HandyControl.Controls.Growl.Success($"腾讯私人{Application.Current.Resources["APITest_Success_Hint"]}");
+ HandyControl.Controls.Growl.Success($"腾讯云{Application.Current.Resources["APITest_Success_Hint"]}");
}
else
{
- HandyControl.Controls.Growl.Error($"腾讯私人{Application.Current.Resources["APITest_Error_Hint"]}\n{Trans.GetLastError()}");
+ HandyControl.Controls.Growl.Error($"腾讯云{Application.Current.Resources["APITest_Error_Hint"]}\n{Trans.GetLastError()}");
}
}
@@ -70,7 +70,7 @@ private async void TransTestBtn_Click(object sender, RoutedEventArgs e)
}
else
{
- HandyControl.Controls.Growl.Error($"腾讯私人{Application.Current.Resources["APITest_Error_Hint"]}\n{Trans.GetLastError()}");
+ HandyControl.Controls.Growl.Error($"腾讯云{Application.Current.Resources["APITest_Error_Hint"]}\n{Trans.GetLastError()}");
}
}
}
diff --git a/MisakaTranslator-WPF/lang/en-US.xaml b/MisakaTranslator-WPF/lang/en-US.xaml
index a8ee318e..5ac37726 100644
--- a/MisakaTranslator-WPF/lang/en-US.xaml
+++ b/MisakaTranslator-WPF/lang/en-US.xaml
@@ -55,7 +55,7 @@
General
百度翻译 Baidu Translate
腾讯翻译君 Tencent AI Translate
- 腾讯私人翻译 Tencent TMT
+ 腾讯云翻译 Tencent TMT
Jbeijing
金山快译 Kingsoft FastAIT
译典通 Dr.eye
@@ -89,7 +89,7 @@
DeepL (network required) provides better translation among them English, Japanese and Chinese. You need to apply for the translation services, acquire the authentication key, and then fill in below before testing. If the API is tested as invalid, you can refer to official Baidu documentations with the error codes. It is likely to incur charges, "Check API quota" will lead you to the dashboard of DeepL Translate.
DeepL authentication key
- Tencent TMT API (腾讯私人翻译, network required) supports multilingual translation with better support for Japanese and Chinese. You need to apply for the API (on the website in Chinese), get access to the SecretId and SecretKey, and then fill in below before testing. If the API is tested as invalid, you can refer to official Tencent documentations with the error codes. Previous version of API is likely to incur charges, "Check API quota" will lead you to the dashboard of Tencent TMT.
+ Tencent TMT API (腾讯云翻译, network required) supports multilingual translation with better support for Japanese and Chinese. You need to apply for the API (on the website in Chinese), get access to the SecretId and SecretKey, and then fill in below before testing. If the API is tested as invalid, you can refer to official Tencent documentations with the error codes. Previous version of API is likely to incur charges, "Check API quota" will lead you to the dashboard of Tencent TMT.
SecretId
SecretKey
diff --git a/MisakaTranslator-WPF/lang/zh-CN.xaml b/MisakaTranslator-WPF/lang/zh-CN.xaml
index 711cbd0f..837ab8ad 100644
--- a/MisakaTranslator-WPF/lang/zh-CN.xaml
+++ b/MisakaTranslator-WPF/lang/zh-CN.xaml
@@ -53,7 +53,7 @@
通用设置
百度翻译API
腾讯翻译君
- 腾讯私人
+ 腾讯云
Jbeijing
金山快译
译典通
@@ -88,8 +88,8 @@
DeepL API 密钥
腾讯翻译(私人)API支持多种语言互译,对日语、汉语的Galgame互译支持较好,需要联网使用;您需要先申请该API并创建一个密钥,获取SecretId和SecretKey后填入下方相应位置并进行测试认证;如果认证出现错误,请根据错误码至腾讯翻译API官方文档获取解决办法;腾讯旧版翻译API部分版本可能会产生某些费用,您可以使用额度查询按钮进入控制台确认。
- 腾讯私人API SecretId
- 腾讯私人API SecretKey
+ 腾讯云API SecretId
+ 腾讯云API SecretKey
腾讯翻译(翻译君)API支持多种语言互译,对英语、日语、汉语的互译支持较好,需要联网使用;您需要先申请腾讯翻译API并开通一个应用,获取appID和密钥后填入下方相应位置并进行测试认证;如果认证出现错误,请根据错误码至腾讯翻译API官方文档获取解决办法;腾讯翻译API部分版本可能会产生某些费用,您可以使用额度查询按钮进入控制台确认。
翻译君API appID
diff --git a/TranslatorLibrary/CommonFunction.cs b/TranslatorLibrary/CommonFunction.cs
index 1dfc1007..11330bfb 100644
--- a/TranslatorLibrary/CommonFunction.cs
+++ b/TranslatorLibrary/CommonFunction.cs
@@ -24,7 +24,7 @@ public static class CommonFunction
{ "无翻译" , "NoTranslator"},
{ "百度翻译" , "BaiduTranslator" },
{ "腾讯翻译君" , "TencentFYJTranslator" },
- { "腾讯私人翻译" , "TencentOldTranslator" },
+ { "腾讯云翻译" , "TencentOldTranslator" },
{ "彩云小译" , "CaiyunTranslator" },
{ "小牛翻译" , "XiaoniuTranslator"},
{ "IBM翻译" , "IBMTranslator"},