maint: hotreload updated to 1.13.7
This commit is contained in:
@@ -0,0 +1,103 @@
|
||||
namespace SingularityGroup.HotReload.Editor.Localization {
|
||||
internal static partial class Translations {
|
||||
public static class About {
|
||||
// Log Messages
|
||||
public static string LogNoLogsFound;
|
||||
public static string LogFailedOpeningLogFile;
|
||||
public static string LogBuildTargetSwitching;
|
||||
|
||||
// About/Help Tab
|
||||
public static string AboutTitle;
|
||||
public static string AboutDescription;
|
||||
public static string AboutVersionInfo;
|
||||
public static string AboutChangelog;
|
||||
public static string AboutFeatures;
|
||||
public static string AboutImprovements;
|
||||
public static string AboutFixes;
|
||||
public static string AboutToday;
|
||||
public static string AboutYesterday;
|
||||
public static string AboutDaysAgo;
|
||||
public static string AboutOneMonthAgo;
|
||||
public static string AboutMonthsAgo;
|
||||
public static string AboutOneYearAgo;
|
||||
public static string AboutYearsAgo;
|
||||
|
||||
// About Tab Buttons
|
||||
public static string ButtonDocumentation;
|
||||
public static string ButtonContact;
|
||||
public static string ButtonUnityForum;
|
||||
public static string ButtonReportIssue;
|
||||
public static string ButtonJoinDiscord;
|
||||
public static string ButtonSeeMore;
|
||||
public static string ButtonManageLicense;
|
||||
public static string ButtonManageAccount;
|
||||
|
||||
public static void LoadEnglish() {
|
||||
// Log Messages
|
||||
LogNoLogsFound = "No logs found";
|
||||
LogFailedOpeningLogFile = "Failed opening log file.";
|
||||
LogBuildTargetSwitching = "Build target is switching to {0}.";
|
||||
|
||||
// About/Help Tab
|
||||
AboutTitle = "Help";
|
||||
AboutDescription = "Info and support for Hot Reload for Unity.";
|
||||
AboutVersionInfo = " Hot Reload version {0}. ";
|
||||
AboutChangelog = "Changelog";
|
||||
AboutFeatures = "Features:";
|
||||
AboutImprovements = "Improvements:";
|
||||
AboutFixes = "Fixes:";
|
||||
AboutToday = "Today";
|
||||
AboutYesterday = "Yesterday";
|
||||
AboutDaysAgo = "{0} days ago";
|
||||
AboutOneMonthAgo = "one month ago";
|
||||
AboutMonthsAgo = "{0} months ago";
|
||||
AboutOneYearAgo = "one year ago";
|
||||
AboutYearsAgo = "{0} years ago";
|
||||
|
||||
// About Tab Buttons
|
||||
ButtonDocumentation = "Documentation";
|
||||
ButtonContact = "Contact";
|
||||
ButtonUnityForum = "Unity Forum";
|
||||
ButtonReportIssue = "Report issue";
|
||||
ButtonJoinDiscord = "Join Discord";
|
||||
ButtonSeeMore = "See More";
|
||||
ButtonManageLicense = "Manage License";
|
||||
ButtonManageAccount = "Manage Account";
|
||||
}
|
||||
|
||||
public static void LoadSimplifiedChinese() {
|
||||
// Log Messages
|
||||
LogNoLogsFound = "未找到日志";
|
||||
LogFailedOpeningLogFile = "打开日志文件失败。";
|
||||
LogBuildTargetSwitching = "构建目标正在切换到 {0}。";
|
||||
|
||||
// About/Help Tab
|
||||
AboutTitle = "帮助";
|
||||
AboutDescription = "Unity Hot Reload 的信息和支持。";
|
||||
AboutVersionInfo = " Hot Reload 版本 {0}。";
|
||||
AboutChangelog = "更新日志";
|
||||
AboutFeatures = "新功能:";
|
||||
AboutImprovements = "改进:";
|
||||
AboutFixes = "修复:";
|
||||
AboutToday = "今天";
|
||||
AboutYesterday = "昨天";
|
||||
AboutDaysAgo = "{0} 天前";
|
||||
AboutOneMonthAgo = "一个月前";
|
||||
AboutMonthsAgo = "{0} 个月前";
|
||||
AboutOneYearAgo = "一年前";
|
||||
AboutYearsAgo = "{0} 年前";
|
||||
|
||||
// About Tab Buttons
|
||||
ButtonDocumentation = "文档";
|
||||
ButtonContact = "联系我们";
|
||||
ButtonUnityForum = "Unity 论坛";
|
||||
ButtonReportIssue = "报告问题";
|
||||
ButtonJoinDiscord = "加入 Discord";
|
||||
ButtonSeeMore = "查看更多";
|
||||
ButtonManageLicense = "管理许可证";
|
||||
ButtonManageAccount = "管理帐户";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user