Localization 테이블 커멘드 번역 추가 #181

Merged
UVCXR merged 3 commits from pgd/20250625_2 into main 2025-06-27 09:07:00 +09:00
11 changed files with 110 additions and 14 deletions

View File

@@ -27,6 +27,38 @@ MonoBehaviour:
m_Key: Scale Gizmo
m_Metadata:
m_Items: []
- m_Id: 2904508764098560
m_Key: Reset Gizmo
m_Metadata:
m_Items: []
- m_Id: 2917846080393216
m_Key: Copy Object
m_Metadata:
m_Items: []
- m_Id: 2917920218910720
m_Key: New Project
m_Metadata:
m_Items: []
- m_Id: 2918019179319296
m_Key: Open Project
m_Metadata:
m_Items: []
- m_Id: 2918166198063104
m_Key: Save And New Project
m_Metadata:
m_Items: []
- m_Id: 2925542997331968
m_Key: Save And Open Proejct
m_Metadata:
m_Items: []
- m_Id: 2925648920285184
m_Key: Save Project
m_Metadata:
m_Items: []
- m_Id: 2928491886645248
m_Key: Exit Program
m_Metadata:
m_Items: []
m_Metadata:
m_Items: []
m_KeyGenerator:

View File

@@ -30,6 +30,38 @@ MonoBehaviour:
m_Localized: Scale Gizmo
m_Metadata:
m_Items: []
- m_Id: 2904508764098560
m_Localized: Reset Gizmo
m_Metadata:
m_Items: []
- m_Id: 2917846080393216
m_Localized: Copy Object
m_Metadata:
m_Items: []
- m_Id: 2917920218910720
m_Localized: New Project
m_Metadata:
m_Items: []
- m_Id: 2918019179319296
m_Localized: Open Project
m_Metadata:
m_Items: []
- m_Id: 2918166198063104
m_Localized: Save And New Project
m_Metadata:
m_Items: []
- m_Id: 2925542997331968
m_Localized: Save And Open Proejct
m_Metadata:
m_Items: []
- m_Id: 2925648920285184
m_Localized: Save Project
m_Metadata:
m_Items: []
- m_Id: 2928491886645248
m_Localized: Exit Program
m_Metadata:
m_Items: []
references:
version: 2
RefIds: []

View File

@@ -30,6 +30,38 @@ MonoBehaviour:
m_Localized: "\uC2A4\uCF00\uC77C \uAE30\uC9C0\uBAA8"
m_Metadata:
m_Items: []
- m_Id: 2904508764098560
m_Localized: "\uB9AC\uC14B \uAE30\uC9C0\uBAA8"
m_Metadata:
m_Items: []
- m_Id: 2917846080393216
m_Localized: "\uAC1D\uCCB4 \uBCF5\uC0AC"
m_Metadata:
m_Items: []
- m_Id: 2917920218910720
m_Localized: "\uC0C8 \uD504\uB85C\uC81D\uD2B8"
m_Metadata:
m_Items: []
- m_Id: 2918019179319296
m_Localized: "\uD504\uB85C\uC81D\uD2B8 \uC5F4\uAE30"
m_Metadata:
m_Items: []
- m_Id: 2918166198063104
m_Localized: "\uC800\uC7A5 \uBC0F \uC0C8 \uD504\uB85C\uC81D\uD2B8"
m_Metadata:
m_Items: []
- m_Id: 2925542997331968
m_Localized: "\uC800\uC7A5 \uBC0F \uD504\uB85C\uC81D\uD2B8 \uC5F4\uAE30"
m_Metadata:
m_Items: []
- m_Id: 2925648920285184
m_Localized: "\uD504\uB85C\uC81D\uD2B8 \uC800\uC7A5"
m_Metadata:
m_Items: []
- m_Id: 2928491886645248
m_Localized: "\uD504\uB85C\uADF8\uB7A8 \uC885\uB8CC"
m_Metadata:
m_Items: []
references:
version: 2
RefIds: []

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()
{

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()
{

View File

@@ -4,7 +4,7 @@ namespace Studio.Command
{
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()
{

View File

@@ -4,7 +4,7 @@ namespace Studio.Command
{
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()
{

View File

@@ -5,7 +5,7 @@ namespace Studio.Command
{
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()
{

View File

@@ -5,7 +5,7 @@ namespace Studio.Command
{
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()
{

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()
{

View File

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