Localization 테이블 커멘드 번역 추가
This commit is contained in:
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user