miniSql

vs2019汉化99%
zgc123@gmail.com authored at 11/28/2023 4:10:34 PM zgc123@gmail.com committed at 11/28/2023 4:10:51 PM
0ced910
Tree
1 Parent(s) 93a03c2
Summary: 8 changed files with 9 additions and 9 deletions.
Modified +1 -1
Modified +1 -1
Modified +2 -2
Modified +1 -1
Modified +1 -1
Modified +1 -1
Modified +1 -1
Modified +1 -1
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/NewFileCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/NewFileCommand.cs
index 3fb143f..6910213 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/NewFileCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/NewFileCommand.cs
@@ -18,7 +18,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="NewFileCommand"/> class.</summary>
         public NewFileCommand()
-            : base("New &File")
+            : base("(&F)�½��ļ�")
         {
             ShortcutKeys = Keys.Control | Keys.Alt | Keys.N;
             SmallImage = ImageResource.page;
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/OpenFileCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/OpenFileCommand.cs
index efe27ea..e0f8ff3 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/OpenFileCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/OpenFileCommand.cs
@@ -19,7 +19,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="OpenFileCommand"/> class.</summary>
         public OpenFileCommand()
-            : base("&Open File")
+            : base("(&O)打开文件")
         {
             ShortcutKeys = Keys.Control | Keys.O;
             SmallImage = ImageResource.folder_page;
Modified +2 -2
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;
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileAsCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileAsCommand.cs
index a3e598e..5e5342a 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileAsCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileAsCommand.cs
@@ -18,7 +18,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="SaveFileAsCommand"/> class.</summary>
         public SaveFileAsCommand()
-            : base("Save File &As...")
+            : base("另存文件(&A)...")
         {
         }
 
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileCommand.cs
index bd41f52..0fa034c 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/SaveFileCommand.cs
@@ -17,7 +17,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="SaveFileCommand"/> class.</summary>
         public SaveFileCommand()
-            : base("&Save File")
+            : base("(&S)保存文件")
         {
             ShortcutKeys = Keys.Control | Keys.S;
             SmallImage = ImageResource.disk;
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/SaveResultsAsDataSetCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/SaveResultsAsDataSetCommand.cs
index cea455c..d9039c6 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/SaveResultsAsDataSetCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/SaveResultsAsDataSetCommand.cs
@@ -20,7 +20,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="SaveResultsAsDataSetCommand"/> class.</summary>
         public SaveResultsAsDataSetCommand()
-            : base("Save Results as DataSet XML...")
+            : base("将结果另存为数据集XML...")
         {
             SmallImage = ImageResource.table_save;
         }
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/ShowAboutCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/ShowAboutCommand.cs
index 1b960eb..fd55459 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/ShowAboutCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/ShowAboutCommand.cs
@@ -17,7 +17,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="ShowAboutCommand"/> class.</summary>
         public ShowAboutCommand()
-            : base("&About...")
+            : base("(&A)关于...")
         {
             SmallImage = ImageResource.ApplicationIcon;
         }
Modified +1 -1
diff --git a/minisqlquery-master/src/MiniSqlQuery/Commands/ShowOptionsFormCommand.cs b/minisqlquery-master/src/MiniSqlQuery/Commands/ShowOptionsFormCommand.cs
index 5b1ce09..55e1bbd 100644
--- a/minisqlquery-master/src/MiniSqlQuery/Commands/ShowOptionsFormCommand.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/Commands/ShowOptionsFormCommand.cs
@@ -16,7 +16,7 @@ namespace MiniSqlQuery.Commands
     {
         /// <summary>Initializes a new instance of the <see cref="ShowOptionsFormCommand"/> class.</summary>
         public ShowOptionsFormCommand()
-            : base("Options")
+            : base("ѡ��")
         {
             // ShortcutKeys = ?;
             SmallImage = ImageResource.cog;