Localization 테이블 커멘드 번역 추가

This commit is contained in:
geondo55
2025-06-25 17:30:23 +09:00
parent dc867997b9
commit 20fd855e2a
8 changed files with 14 additions and 14 deletions

View File

@@ -9,7 +9,7 @@ namespace Studio.Command
} }
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "Exit Program"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -12,7 +12,7 @@ namespace Studio.Command
} }
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "Reset Gizmo"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -4,7 +4,7 @@ namespace Studio.Command
{ {
public class NewProjectCommand : IIrreversibleCommand public class NewProjectCommand : IIrreversibleCommand
{ {
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "New Project"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -4,7 +4,7 @@ namespace Studio.Command
{ {
public class OpenProjectCommand : IIrreversibleCommand public class OpenProjectCommand : IIrreversibleCommand
{ {
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "Open Project"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -5,7 +5,7 @@ namespace Studio.Command
{ {
public class SaveAndNewProjectCommand : IIrreversibleCommand public class SaveAndNewProjectCommand : IIrreversibleCommand
{ {
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "Save And New Project"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -5,7 +5,7 @@ namespace Studio.Command
{ {
public class SaveAndOpenProjectCommand : IIrreversibleCommand public class SaveAndOpenProjectCommand : IIrreversibleCommand
{ {
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "Save And Open Project"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -17,7 +17,7 @@ namespace Studio
} }
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } public string id { get => "Save Project"; set => throw new System.NotImplementedException(); }
public bool CanExecute() public bool CanExecute()
{ {

View File

@@ -22,17 +22,17 @@ namespace Studio.Manage
AddCommand(new ActivateMoveGizmoCommand()); AddCommand(new ActivateMoveGizmoCommand());
AddCommand(new ActivateRotateGizmoCommand()); AddCommand(new ActivateRotateGizmoCommand());
AddCommand(new ActivateScaleGizmoCommand()); AddCommand(new ActivateScaleGizmoCommand());
//AddCommand(new ResetGizmoCommand()); AddCommand(new ResetGizmoCommand());
//AddCommand(new CopyObjectCommand()); //AddCommand(new CopyObjectCommand());
//AddCommand(new RemoveAllObjectCommand()); //AddCommand(new RemoveAllObjectCommand());
//AddCommand(new RemoveSelectObjectCommand()); //AddCommand(new RemoveSelectObjectCommand());
//AddCommand(new NewProjectCommand()); AddCommand(new NewProjectCommand());
//AddCommand(new OpenProjectCommand()); AddCommand(new OpenProjectCommand());
//AddCommand(new SaveAndNewProjectCommand()); AddCommand(new SaveAndNewProjectCommand());
//AddCommand(new SaveAndOpenProjectCommand()); AddCommand(new SaveAndOpenProjectCommand());
//AddCommand(new SaveProjectCommand()); AddCommand(new SaveProjectCommand());
//AddCommand(new CreateConnectedAssetCommand()); //AddCommand(new CreateConnectedAssetCommand());
//AddCommand(new ExitProgramCommand()); AddCommand(new ExitProgramCommand());
} }
private async Task AddCommand(string id, Action action) private async Task AddCommand(string id, Action action)