mirror of
https://github.com/BluePointLilac/ContextMenuManager.git
synced 2026-01-14 05:00:54 +08:00
修正部分文本
This commit is contained in:
@@ -241,7 +241,7 @@ namespace ContextMenuManager
|
||||
public static string WinXSorted => GetValue("WinXSorted");
|
||||
public static string RestoreDefault => GetValue("RestoreDefault");
|
||||
public static string DeleteGroup => GetValue("DeleteGroup");
|
||||
public static string FailedToReadNetworkFile => GetValue("FailedToReadNetworkFile");
|
||||
public static string NetworkDtaReadFailed => GetValue("NetworkDtaReadFailed");
|
||||
}
|
||||
|
||||
/// <summary>其他文本</summary>
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
|
||||
@@ -209,7 +209,7 @@ AuthorityProtection = 此菜单注册表项目可能受安全软件保护,\r\n
|
||||
WinXSorted = 为优化排序功能已对部分项目重新编号,\r\n需要重启文件资源管理器应用效果
|
||||
RestoreDefault = 确认还原为默认菜单项目?
|
||||
DeleteGroup = 确认永久删除此组及组内所有菜单项目?
|
||||
FailedToReadNetworkFile = 网络文件读取失败!
|
||||
NetworkDtaReadFailed = 网络数据读取失败!
|
||||
|
||||
[Tip]
|
||||
RestartExplorer = 重启Explorer会使桌面闪烁片刻, 正常现象无需担心,\r\n或者你也可以稍后重启或注销计算机使你的操作生效
|
||||
|
||||
@@ -57,7 +57,7 @@ namespace ContextMenuManager
|
||||
{
|
||||
if(isManual)
|
||||
{
|
||||
MessageBoxEx.Show(AppString.Message.FailedToReadNetworkFile);
|
||||
MessageBoxEx.Show(AppString.Message.NetworkDtaReadFailed);
|
||||
url = AppConfig.RequestUseGithub ? GithubLatest : GiteeReleases;
|
||||
ExternalProgram.OpenUrl(url);
|
||||
}
|
||||
@@ -123,7 +123,7 @@ namespace ContextMenuManager
|
||||
contents = contents.Replace("\n", Environment.NewLine);
|
||||
File.WriteAllText(filePath, contents, Encoding.Unicode);
|
||||
}
|
||||
if(!flag) MessageBoxEx.Show(AppString.Message.FailedToReadNetworkFile);
|
||||
if(!flag) MessageBoxEx.Show(AppString.Message.NetworkDtaReadFailed);
|
||||
}
|
||||
|
||||
/// <summary>显示语言下载对话框</summary>
|
||||
@@ -134,7 +134,7 @@ namespace ContextMenuManager
|
||||
XmlDocument doc = GetWebJsonToXml(url);
|
||||
if(doc == null)
|
||||
{
|
||||
MessageBoxEx.Show(AppString.Message.FailedToReadNetworkFile);
|
||||
MessageBoxEx.Show(AppString.Message.NetworkDtaReadFailed);
|
||||
return false;
|
||||
}
|
||||
Dictionary<string, string> langs = new Dictionary<string, string>();
|
||||
@@ -172,7 +172,7 @@ namespace ContextMenuManager
|
||||
//contents = File.ReadAllText(@"..\..\..\Donate.md");//用于求和更新Donate.md文件
|
||||
if(contents == null)
|
||||
{
|
||||
MessageBoxEx.Show(AppString.Message.FailedToReadNetworkFile);
|
||||
MessageBoxEx.Show(AppString.Message.NetworkDtaReadFailed);
|
||||
url = AppConfig.RequestUseGithub ? GithubDonate : GiteeDonate;
|
||||
ExternalProgram.OpenUrl(url);
|
||||
}
|
||||
|
||||
@@ -209,7 +209,7 @@ AuthorityProtection = 此菜单注册表项目可能受安全软件保护,\r\n
|
||||
WinXSorted = 为优化排序功能已对部分项目重新编号,\r\n需要重启文件资源管理器应用效果
|
||||
RestoreDefault = 确认还原为默认菜单项目?
|
||||
DeleteGroup = 确认永久删除此组及组内所有菜单项目?
|
||||
FailedToReadNetworkFile = 网络文件读取失败!
|
||||
NetworkDtaReadFailed = 网络数据读取失败!
|
||||
|
||||
[Tip]
|
||||
RestartExplorer = 重启Explorer会使桌面闪烁片刻, 正常现象无需担心,\r\n或者你也可以稍后重启或注销计算机使你的操作生效
|
||||
|
||||
Reference in New Issue
Block a user