123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using UnityEngine;
- namespace I2.Loc
- {
- public static class ScriptLocalization
- {
- public static class logsystem
- {
- public static string Note { get{ return LocalizationManager.GetTranslation ("logsystem/Note"); } }
- public static string operationstep { get{ return LocalizationManager.GetTranslation ("logsystem/operationstep"); } }
- public static string operationlog { get{ return LocalizationManager.GetTranslation ("logsystem/operationlog"); } }
- }
- public static class operatepanel
- {
- public static string coursetitle { get{ return LocalizationManager.GetTranslation ("operatepanel/coursetitle"); } }
- public static string currentsteptitle { get{ return LocalizationManager.GetTranslation ("operatepanel/currentsteptitle"); } }
- }
- public static class tips
- {
- public static string startexam { get{ return LocalizationManager.GetTranslation ("tips/startexam"); } }
- public static string startlearning { get{ return LocalizationManager.GetTranslation ("tips/startlearning"); } }
- public static string startparticing { get{ return LocalizationManager.GetTranslation ("tips/startparticing"); } }
- }
- public static class tooltype
- {
- public static string instrumentsandmeter { get{ return LocalizationManager.GetTranslation ("tooltype/instrumentsandmeter"); } }
- public static string electricaltools { get{ return LocalizationManager.GetTranslation ("tooltype/electricaltools"); } }
- public static string insulatedsafetytools { get{ return LocalizationManager.GetTranslation ("tooltype/insulatedsafetytools"); } }
- public static string safetyfences { get{ return LocalizationManager.GetTranslation ("tooltype/safetyfences"); } }
- public static string powerequipment { get{ return LocalizationManager.GetTranslation ("tooltype/powerequipment"); } }
- public static string all { get{ return LocalizationManager.GetTranslation ("tooltype/all"); } }
- }
- }
- public static class ScriptTerms
- {
- public static class logsystem
- {
- public const string Note = "logsystem/Note";
- public const string operationstep = "logsystem/operationstep";
- public const string operationlog = "logsystem/operationlog";
- }
- public static class operatepanel
- {
- public const string coursetitle = "operatepanel/coursetitle";
- public const string currentsteptitle = "operatepanel/currentsteptitle";
- }
- public static class tips
- {
- public const string startexam = "tips/startexam";
- public const string startlearning = "tips/startlearning";
- public const string startparticing = "tips/startparticing";
- }
- public static class tooltype
- {
- public const string instrumentsandmeter = "tooltype/instrumentsandmeter";
- public const string electricaltools = "tooltype/electricaltools";
- public const string insulatedsafetytools = "tooltype/insulatedsafetytools";
- public const string safetyfences = "tooltype/safetyfences";
- public const string powerequipment = "tooltype/powerequipment";
- public const string all = "tooltype/all";
- }
- }
- }
|