diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/OpenRecentFileCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/OpenRecentFileCommand.cs
index 85d5372..0db5fe1 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/OpenRecentFileCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/OpenRecentFileCommand.cs
@@ -18,13 +18,13 @@ namespace MiniSqlQuery.Commands
/// Initializes a new instance of the <see cref = "OpenRecentFileCommand" /> class.
/// </summary>
protected OpenRecentFileCommand(int index)
- : base("MRU")
+ : base("历史文件")
{
_index = index;
}
public OpenRecentFileCommand(IMostRecentFilesService mostRecentFilesService, int index)
- : base("MRU")
+ : base("历史文件")
{
_mostRecentFilesService = mostRecentFilesService;
_index = index;