diff --git a/src/App.axaml b/src/App.axaml index 83cbf2cb..c5a2cd28 100644 --- a/src/App.axaml +++ b/src/App.axaml @@ -9,9 +9,6 @@ - - - diff --git a/src/App.axaml.cs b/src/App.axaml.cs index 98df9dbf..5014cea4 100644 --- a/src/App.axaml.cs +++ b/src/App.axaml.cs @@ -7,9 +7,12 @@ using Avalonia.Media; using Avalonia.Media.Fonts; using Avalonia.Styling; using System; +using System.Globalization; using System.IO; +using System.Linq; using System.Reflection; using System.Text; +using System.Threading; namespace SourceGit { public partial class App : Application { @@ -70,7 +73,21 @@ namespace SourceGit { public static void SetLocale(string localeKey) { var app = Current as App; - var targetLocale = app.Resources[localeKey] as ResourceDictionary; + localeKey = localeKey.Replace("_", "-"); + + Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(localeKey); + Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture ; + Assets.Resources.Culture = Thread.CurrentThread.CurrentUICulture; + + var locale = new ResourceDictionary(); + var res = new Assets.Resources(); + var props = typeof(Assets.Resources).GetProperties() + .Where(m=> m.PropertyType == typeof(string)) + .ToDictionary(k=> k.Name.Replace("_", "."), v=> v.GetValue(res)); + foreach (var prop in props) + locale.Add(prop.Key, prop.Value); + + var targetLocale = locale; if (targetLocale == null || targetLocale == app._activeLocale) { return; } diff --git a/src/Assets/Resources.Designer.cs b/src/Assets/Resources.Designer.cs new file mode 100644 index 00000000..a1a839e2 --- /dev/null +++ b/src/Assets/Resources.Designer.cs @@ -0,0 +1,3878 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SourceGit.Assets { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + public Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SourceGit.Assets.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to About. + /// + public static string Text_About { + get { + return ResourceManager.GetString("Text.About", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to • Build with . + /// + public static string Text_About_BuildWith { + get { + return ResourceManager.GetString("Text.About.BuildWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copyright © 2024 sourcegit-scm.. + /// + public static string Text_About_Copyright { + get { + return ResourceManager.GetString("Text.About.Copyright", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to • TextEditor from . + /// + public static string Text_About_Editor { + get { + return ResourceManager.GetString("Text.About.Editor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to • Monospace fonts come from . + /// + public static string Text_About_Fonts { + get { + return ResourceManager.GetString("Text.About.Fonts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Patch. + /// + public static string Text_Apply { + get { + return ResourceManager.GetString("Text.Apply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error. + /// + public static string Text_Apply_Error { + get { + return ResourceManager.GetString("Text.Apply.Error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Raise errors and refuses to apply the patch. + /// + public static string Text_Apply_Error_Desc { + get { + return ResourceManager.GetString("Text.Apply.Error.Desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error All. + /// + public static string Text_Apply_ErrorAll { + get { + return ResourceManager.GetString("Text.Apply.ErrorAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Similar to 'error', but shows more. + /// + public static string Text_Apply_ErrorAll_Desc { + get { + return ResourceManager.GetString("Text.Apply.ErrorAll.Desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Patch File :. + /// + public static string Text_Apply_File { + get { + return ResourceManager.GetString("Text.Apply.File", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select .patch file to apply. + /// + public static string Text_Apply_File_Placeholder { + get { + return ResourceManager.GetString("Text.Apply.File.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ignore whitespace changes. + /// + public static string Text_Apply_IgnoreWS { + get { + return ResourceManager.GetString("Text.Apply.IgnoreWS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Warn. + /// + public static string Text_Apply_NoWarn { + get { + return ResourceManager.GetString("Text.Apply.NoWarn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Turns off the trailing whitespace warning. + /// + public static string Text_Apply_NoWarn_Desc { + get { + return ResourceManager.GetString("Text.Apply.NoWarn.Desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply Patch. + /// + public static string Text_Apply_Title { + get { + return ResourceManager.GetString("Text.Apply.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warn. + /// + public static string Text_Apply_Warn { + get { + return ResourceManager.GetString("Text.Apply.Warn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Outputs warnings for a few such errors, but applies. + /// + public static string Text_Apply_Warn_Desc { + get { + return ResourceManager.GetString("Text.Apply.Warn.Desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Whitespace :. + /// + public static string Text_Apply_WS { + get { + return ResourceManager.GetString("Text.Apply.WS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Archive .... + /// + public static string Text_Archive { + get { + return ResourceManager.GetString("Text.Archive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Archive To :. + /// + public static string Text_Archive_File { + get { + return ResourceManager.GetString("Text.Archive.File", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select archive file path. + /// + public static string Text_Archive_File_Placeholder { + get { + return ResourceManager.GetString("Text.Archive.File.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Revision :. + /// + public static string Text_Archive_Revision { + get { + return ResourceManager.GetString("Text.Archive.Revision", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Archive. + /// + public static string Text_Archive_Title { + get { + return ResourceManager.GetString("Text.Archive.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FILES ASSUME UNCHANGED. + /// + public static string Text_AssumeUnchanged { + get { + return ResourceManager.GetString("Text.AssumeUnchanged", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NO FILES ASSUMED AS UNCHANGED. + /// + public static string Text_AssumeUnchanged_Empty { + get { + return ResourceManager.GetString("Text.AssumeUnchanged.Empty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to REMOVE. + /// + public static string Text_AssumeUnchanged_Remove { + get { + return ResourceManager.GetString("Text.AssumeUnchanged.Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BINARY FILE NOT SUPPORTED!!!. + /// + public static string Text_BinaryNotSupported { + get { + return ResourceManager.GetString("Text.BinaryNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Blame. + /// + public static string Text_Blame { + get { + return ResourceManager.GetString("Text.Blame", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BLAME ON THIS FILE IS NOT SUPPORTED!!!. + /// + public static string Text_BlameTypeNotSupported { + get { + return ResourceManager.GetString("Text.BlameTypeNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checkout${0}$. + /// + public static string Text_BranchCM_Checkout { + get { + return ResourceManager.GetString("Text.BranchCM.Checkout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Branch Name. + /// + public static string Text_BranchCM_CopyName { + get { + return ResourceManager.GetString("Text.BranchCM.CopyName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete${0}$. + /// + public static string Text_BranchCM_Delete { + get { + return ResourceManager.GetString("Text.BranchCM.Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard all changes. + /// + public static string Text_BranchCM_DiscardAll { + get { + return ResourceManager.GetString("Text.BranchCM.DiscardAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fast-Forward to${0}$. + /// + public static string Text_BranchCM_FastForward { + get { + return ResourceManager.GetString("Text.BranchCM.FastForward", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Git Flow - Finish${0}$. + /// + public static string Text_BranchCM_Finish { + get { + return ResourceManager.GetString("Text.BranchCM.Finish", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merge${0}$into${1}$. + /// + public static string Text_BranchCM_Merge { + get { + return ResourceManager.GetString("Text.BranchCM.Merge", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pull${0}$. + /// + public static string Text_BranchCM_Pull { + get { + return ResourceManager.GetString("Text.BranchCM.Pull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pull${0}$into${1}$. + /// + public static string Text_BranchCM_PullInto { + get { + return ResourceManager.GetString("Text.BranchCM.PullInto", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Push${0}$. + /// + public static string Text_BranchCM_Push { + get { + return ResourceManager.GetString("Text.BranchCM.Push", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rebase${0}$on${1}$. + /// + public static string Text_BranchCM_Rebase { + get { + return ResourceManager.GetString("Text.BranchCM.Rebase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename${0}$. + /// + public static string Text_BranchCM_Rename { + get { + return ResourceManager.GetString("Text.BranchCM.Rename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tracking .... + /// + public static string Text_BranchCM_Tracking { + get { + return ResourceManager.GetString("Text.BranchCM.Tracking", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unset Upstream. + /// + public static string Text_BranchCM_UnsetUpstream { + get { + return ResourceManager.GetString("Text.BranchCM.UnsetUpstream", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bytes. + /// + public static string Text_Bytes { + get { + return ResourceManager.GetString("Text.Bytes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CANCEL. + /// + public static string Text_Cancel { + get { + return ResourceManager.GetString("Text.Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CHANGE DISPLAY MODE. + /// + public static string Text_ChangeDisplayMode { + get { + return ResourceManager.GetString("Text.ChangeDisplayMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show as Grid. + /// + public static string Text_ChangeDisplayMode_Grid { + get { + return ResourceManager.GetString("Text.ChangeDisplayMode.Grid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show as List. + /// + public static string Text_ChangeDisplayMode_List { + get { + return ResourceManager.GetString("Text.ChangeDisplayMode.List", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show as Tree. + /// + public static string Text_ChangeDisplayMode_Tree { + get { + return ResourceManager.GetString("Text.ChangeDisplayMode.Tree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checkout Branch. + /// + public static string Text_Checkout { + get { + return ResourceManager.GetString("Text.Checkout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Target :. + /// + public static string Text_Checkout_Target { + get { + return ResourceManager.GetString("Text.Checkout.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cherry-Pick This Commit. + /// + public static string Text_CherryPick { + get { + return ResourceManager.GetString("Text.CherryPick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commit :. + /// + public static string Text_CherryPick_Commit { + get { + return ResourceManager.GetString("Text.CherryPick.Commit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commit all changes. + /// + public static string Text_CherryPick_CommitChanges { + get { + return ResourceManager.GetString("Text.CherryPick.CommitChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cherry Pick. + /// + public static string Text_CherryPick_Title { + get { + return ResourceManager.GetString("Text.CherryPick.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear Stashes. + /// + public static string Text_ClearStashes { + get { + return ResourceManager.GetString("Text.ClearStashes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You are trying to clear all stashes. Are you sure to continue?. + /// + public static string Text_ClearStashes_Message { + get { + return ResourceManager.GetString("Text.ClearStashes.Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clone Remote Repository. + /// + public static string Text_Clone { + get { + return ResourceManager.GetString("Text.Clone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extra Parameters :. + /// + public static string Text_Clone_AdditionalParam { + get { + return ResourceManager.GetString("Text.Clone.AdditionalParam", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Additional arguments to clone repository. Optional.. + /// + public static string Text_Clone_AdditionalParam_Placeholder { + get { + return ResourceManager.GetString("Text.Clone.AdditionalParam.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local Name :. + /// + public static string Text_Clone_LocalName { + get { + return ResourceManager.GetString("Text.Clone.LocalName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repository name. Optional.. + /// + public static string Text_Clone_LocalName_Placeholder { + get { + return ResourceManager.GetString("Text.Clone.LocalName.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parent Folder :. + /// + public static string Text_Clone_ParentFolder { + get { + return ResourceManager.GetString("Text.Clone.ParentFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repository URL :. + /// + public static string Text_Clone_RemoteURL { + get { + return ResourceManager.GetString("Text.Clone.RemoteURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CLOSE. + /// + public static string Text_Close { + get { + return ResourceManager.GetString("Text.Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cherry-Pick This Commit. + /// + public static string Text_CommitCM_CherryPick { + get { + return ResourceManager.GetString("Text.CommitCM.CherryPick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy SHA. + /// + public static string Text_CommitCM_CopySHA { + get { + return ResourceManager.GetString("Text.CommitCM.CopySHA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rebase${0}$to Here. + /// + public static string Text_CommitCM_Rebase { + get { + return ResourceManager.GetString("Text.CommitCM.Rebase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset${0}$to Here. + /// + public static string Text_CommitCM_Reset { + get { + return ResourceManager.GetString("Text.CommitCM.Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Revert Commit. + /// + public static string Text_CommitCM_Revert { + get { + return ResourceManager.GetString("Text.CommitCM.Revert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reword. + /// + public static string Text_CommitCM_Reword { + get { + return ResourceManager.GetString("Text.CommitCM.Reword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save as Patch .... + /// + public static string Text_CommitCM_SaveAsPatch { + get { + return ResourceManager.GetString("Text.CommitCM.SaveAsPatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squash Into Parent. + /// + public static string Text_CommitCM_Squash { + get { + return ResourceManager.GetString("Text.CommitCM.Squash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CHANGES. + /// + public static string Text_CommitDetail_Changes { + get { + return ResourceManager.GetString("Text.CommitDetail.Changes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Files .... + /// + public static string Text_CommitDetail_Changes_Search { + get { + return ResourceManager.GetString("Text.CommitDetail.Changes.Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FILES. + /// + public static string Text_CommitDetail_Files { + get { + return ResourceManager.GetString("Text.CommitDetail.Files", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LFS File. + /// + public static string Text_CommitDetail_Files_LFS { + get { + return ResourceManager.GetString("Text.CommitDetail.Files.LFS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submodule. + /// + public static string Text_CommitDetail_Files_Submodule { + get { + return ResourceManager.GetString("Text.CommitDetail.Files.Submodule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tag. + /// + public static string Text_CommitDetail_Files_Tag { + get { + return ResourceManager.GetString("Text.CommitDetail.Files.Tag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tree. + /// + public static string Text_CommitDetail_Files_Tree { + get { + return ResourceManager.GetString("Text.CommitDetail.Files.Tree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to INFORMATION. + /// + public static string Text_CommitDetail_Info { + get { + return ResourceManager.GetString("Text.CommitDetail.Info", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AUTHOR. + /// + public static string Text_CommitDetail_Info_Author { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.Author", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CHANGED. + /// + public static string Text_CommitDetail_Info_Changed { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.Changed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to COMMITTER. + /// + public static string Text_CommitDetail_Info_Committer { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.Committer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MESSAGE. + /// + public static string Text_CommitDetail_Info_Message { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PARENTS. + /// + public static string Text_CommitDetail_Info_Parents { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.Parents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to REFS. + /// + public static string Text_CommitDetail_Info_Refs { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.Refs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SHA. + /// + public static string Text_CommitDetail_Info_SHA { + get { + return ResourceManager.GetString("Text.CommitDetail.Info.SHA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Configure. + /// + public static string Text_Configure { + get { + return ResourceManager.GetString("Text.Configure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Address. + /// + public static string Text_Configure_Email { + get { + return ResourceManager.GetString("Text.Configure.Email", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email address. + /// + public static string Text_Configure_Email_Placeholder { + get { + return ResourceManager.GetString("Text.Configure.Email.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HTTP Proxy. + /// + public static string Text_Configure_Proxy { + get { + return ResourceManager.GetString("Text.Configure.Proxy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HTTP proxy used by this repository. + /// + public static string Text_Configure_Proxy_Placeholder { + get { + return ResourceManager.GetString("Text.Configure.Proxy.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Name. + /// + public static string Text_Configure_User { + get { + return ResourceManager.GetString("Text.Configure.User", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User name for this repository. + /// + public static string Text_Configure_User_Placeholder { + get { + return ResourceManager.GetString("Text.Configure.User.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conflict detected! Press 'Abort' to restore original HEAD. + /// + public static string Text_Conflict_Tip { + get { + return ResourceManager.GetString("Text.Conflict.Tip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string Text_Copy { + get { + return ResourceManager.GetString("Text.Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Path. + /// + public static string Text_CopyPath { + get { + return ResourceManager.GetString("Text.CopyPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Branch. + /// + public static string Text_CreateBranch { + get { + return ResourceManager.GetString("Text.CreateBranch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Based On :. + /// + public static string Text_CreateBranch_BasedOn { + get { + return ResourceManager.GetString("Text.CreateBranch.BasedOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check out after created. + /// + public static string Text_CreateBranch_Checkout { + get { + return ResourceManager.GetString("Text.CreateBranch.Checkout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local Changes :. + /// + public static string Text_CreateBranch_LocalChanges { + get { + return ResourceManager.GetString("Text.CreateBranch.LocalChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard. + /// + public static string Text_CreateBranch_LocalChanges_Discard { + get { + return ResourceManager.GetString("Text.CreateBranch.LocalChanges.Discard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash & Reapply. + /// + public static string Text_CreateBranch_LocalChanges_StashAndReply { + get { + return ResourceManager.GetString("Text.CreateBranch.LocalChanges.StashAndReply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Branch Name :. + /// + public static string Text_CreateBranch_Name { + get { + return ResourceManager.GetString("Text.CreateBranch.Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter branch name.. + /// + public static string Text_CreateBranch_Name_Placeholder { + get { + return ResourceManager.GetString("Text.CreateBranch.Name.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Local Branch. + /// + public static string Text_CreateBranch_Title { + get { + return ResourceManager.GetString("Text.CreateBranch.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Tag. + /// + public static string Text_CreateTag { + get { + return ResourceManager.GetString("Text.CreateTag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Tag At :. + /// + public static string Text_CreateTag_BasedOn { + get { + return ResourceManager.GetString("Text.CreateTag.BasedOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tag Message :. + /// + public static string Text_CreateTag_Message { + get { + return ResourceManager.GetString("Text.CreateTag.Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Optional.. + /// + public static string Text_CreateTag_Message_Placeholder { + get { + return ResourceManager.GetString("Text.CreateTag.Message.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tag Name :. + /// + public static string Text_CreateTag_Name { + get { + return ResourceManager.GetString("Text.CreateTag.Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recommended format :v1.0.0-alpha. + /// + public static string Text_CreateTag_Name_Placeholder { + get { + return ResourceManager.GetString("Text.CreateTag.Name.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Branch. + /// + public static string Text_DeleteBranch { + get { + return ResourceManager.GetString("Text.DeleteBranch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Branch :. + /// + public static string Text_DeleteBranch_Branch { + get { + return ResourceManager.GetString("Text.DeleteBranch.Branch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Remote. + /// + public static string Text_DeleteRemote { + get { + return ResourceManager.GetString("Text.DeleteRemote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote :. + /// + public static string Text_DeleteRemote_Remote { + get { + return ResourceManager.GetString("Text.DeleteRemote.Remote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Target :. + /// + public static string Text_DeleteRepositoryNode_Target { + get { + return ResourceManager.GetString("Text.DeleteRepositoryNode.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm Deleting Group. + /// + public static string Text_DeleteRepositoryNode_TitleForGroup { + get { + return ResourceManager.GetString("Text.DeleteRepositoryNode.TitleForGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm Deleting Repository. + /// + public static string Text_DeleteRepositoryNode_TitleForRepository { + get { + return ResourceManager.GetString("Text.DeleteRepositoryNode.TitleForRepository", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Submodule. + /// + public static string Text_DeleteSubmodule { + get { + return ResourceManager.GetString("Text.DeleteSubmodule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submodule Path :. + /// + public static string Text_DeleteSubmodule_Path { + get { + return ResourceManager.GetString("Text.DeleteSubmodule.Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Tag. + /// + public static string Text_DeleteTag { + get { + return ResourceManager.GetString("Text.DeleteTag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tag :. + /// + public static string Text_DeleteTag_Tag { + get { + return ResourceManager.GetString("Text.DeleteTag.Tag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete from remote repositories. + /// + public static string Text_DeleteTag_WithRemote { + get { + return ResourceManager.GetString("Text.DeleteTag.WithRemote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to BINARY DIFF. + /// + public static string Text_Diff_Binary { + get { + return ResourceManager.GetString("Text.Diff.Binary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NEW. + /// + public static string Text_Diff_Binary_New { + get { + return ResourceManager.GetString("Text.Diff.Binary.New", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OLD. + /// + public static string Text_Diff_Binary_Old { + get { + return ResourceManager.GetString("Text.Diff.Binary.Old", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string Text_Diff_Copy { + get { + return ResourceManager.GetString("Text.Diff.Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LFS OBJECT CHANGE. + /// + public static string Text_Diff_LFS { + get { + return ResourceManager.GetString("Text.Diff.LFS", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle One-Side/Two-Sides. + /// + public static string Text_Diff_Mode { + get { + return ResourceManager.GetString("Text.Diff.Mode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Difference. + /// + public static string Text_Diff_Next { + get { + return ResourceManager.GetString("Text.Diff.Next", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NO CHANGES OR ONLY EOL CHANGES. + /// + public static string Text_Diff_NoChange { + get { + return ResourceManager.GetString("Text.Diff.NoChange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Difference. + /// + public static string Text_Diff_Prev { + get { + return ResourceManager.GetString("Text.Diff.Prev", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open With Merge Tool. + /// + public static string Text_Diff_UseMerger { + get { + return ResourceManager.GetString("Text.Diff.UseMerger", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SELECT FILE TO VIEW CHANGES. + /// + public static string Text_Diff_Welcome { + get { + return ResourceManager.GetString("Text.Diff.Welcome", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard Changes. + /// + public static string Text_Discard { + get { + return ResourceManager.GetString("Text.Discard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All local changes in working copy.. + /// + public static string Text_Discard_All { + get { + return ResourceManager.GetString("Text.Discard.All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Changes :. + /// + public static string Text_Discard_Changes { + get { + return ResourceManager.GetString("Text.Discard.Changes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total {0} changes will be discard. + /// + public static string Text_Discard_Total { + get { + return ResourceManager.GetString("Text.Discard.Total", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You can't undo this action!!!. + /// + public static string Text_Discard_Warning { + get { + return ResourceManager.GetString("Text.Discard.Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmark :. + /// + public static string Text_EditRepositoryNode_Bookmark { + get { + return ResourceManager.GetString("Text.EditRepositoryNode.Bookmark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Name :. + /// + public static string Text_EditRepositoryNode_Name { + get { + return ResourceManager.GetString("Text.EditRepositoryNode.Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Target :. + /// + public static string Text_EditRepositoryNode_Target { + get { + return ResourceManager.GetString("Text.EditRepositoryNode.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Selected Group. + /// + public static string Text_EditRepositoryNode_TitleForGroup { + get { + return ResourceManager.GetString("Text.EditRepositoryNode.TitleForGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Selected Repository. + /// + public static string Text_EditRepositoryNode_TitleForRepository { + get { + return ResourceManager.GetString("Text.EditRepositoryNode.TitleForRepository", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fast-Forward (without checkout). + /// + public static string Text_FastForwardWithoutCheck { + get { + return ResourceManager.GetString("Text.FastForwardWithoutCheck", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fetch. + /// + public static string Text_Fetch { + get { + return ResourceManager.GetString("Text.Fetch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fetch all remotes. + /// + public static string Text_Fetch_AllRemotes { + get { + return ResourceManager.GetString("Text.Fetch.AllRemotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prune remote dead branches. + /// + public static string Text_Fetch_Prune { + get { + return ResourceManager.GetString("Text.Fetch.Prune", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote :. + /// + public static string Text_Fetch_Remote { + get { + return ResourceManager.GetString("Text.Fetch.Remote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fetch Remote Changes. + /// + public static string Text_Fetch_Title { + get { + return ResourceManager.GetString("Text.Fetch.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Assume unchanged. + /// + public static string Text_FileCM_AssumeUnchanged { + get { + return ResourceManager.GetString("Text.FileCM.AssumeUnchanged", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard.... + /// + public static string Text_FileCM_Discard { + get { + return ResourceManager.GetString("Text.FileCM.Discard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard {0} files.... + /// + public static string Text_FileCM_DiscardMulti { + get { + return ResourceManager.GetString("Text.FileCM.DiscardMulti", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard Changes in Selected Line(s). + /// + public static string Text_FileCM_DiscardSelectedLines { + get { + return ResourceManager.GetString("Text.FileCM.DiscardSelectedLines", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save As Patch.... + /// + public static string Text_FileCM_SaveAsPatch { + get { + return ResourceManager.GetString("Text.FileCM.SaveAsPatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stage.... + /// + public static string Text_FileCM_Stage { + get { + return ResourceManager.GetString("Text.FileCM.Stage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stage {0} files.... + /// + public static string Text_FileCM_StageMulti { + get { + return ResourceManager.GetString("Text.FileCM.StageMulti", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stage Changes in Selected Line(s). + /// + public static string Text_FileCM_StageSelectedLines { + get { + return ResourceManager.GetString("Text.FileCM.StageSelectedLines", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash.... + /// + public static string Text_FileCM_Stash { + get { + return ResourceManager.GetString("Text.FileCM.Stash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash {0} files.... + /// + public static string Text_FileCM_StashMulti { + get { + return ResourceManager.GetString("Text.FileCM.StashMulti", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unstage. + /// + public static string Text_FileCM_Unstage { + get { + return ResourceManager.GetString("Text.FileCM.Unstage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unstage {0} files. + /// + public static string Text_FileCM_UnstageMulti { + get { + return ResourceManager.GetString("Text.FileCM.UnstageMulti", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unstage Changes in Selected Line(s). + /// + public static string Text_FileCM_UnstageSelectedLines { + get { + return ResourceManager.GetString("Text.FileCM.UnstageSelectedLines", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File History. + /// + public static string Text_FileHistory { + get { + return ResourceManager.GetString("Text.FileHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FILTER. + /// + public static string Text_Filter { + get { + return ResourceManager.GetString("Text.Filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GIT FLOW. + /// + public static string Text_GitFlow { + get { + return ResourceManager.GetString("Text.GitFlow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Development Branch :. + /// + public static string Text_GitFlow_DevelopBranch { + get { + return ResourceManager.GetString("Text.GitFlow.DevelopBranch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feature :. + /// + public static string Text_GitFlow_Feature { + get { + return ResourceManager.GetString("Text.GitFlow.Feature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feature Prefix :. + /// + public static string Text_GitFlow_FeaturePrefix { + get { + return ResourceManager.GetString("Text.GitFlow.FeaturePrefix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FLOW - Finish Feature. + /// + public static string Text_GitFlow_FinishFeature { + get { + return ResourceManager.GetString("Text.GitFlow.FinishFeature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FLOW - Finish Hotfix. + /// + public static string Text_GitFlow_FinishHotfix { + get { + return ResourceManager.GetString("Text.GitFlow.FinishHotfix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FLOW - Finish Release. + /// + public static string Text_GitFlow_FinishRelease { + get { + return ResourceManager.GetString("Text.GitFlow.FinishRelease", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Target :. + /// + public static string Text_GitFlow_FinishTarget { + get { + return ResourceManager.GetString("Text.GitFlow.FinishTarget", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hotfix :. + /// + public static string Text_GitFlow_Hotfix { + get { + return ResourceManager.GetString("Text.GitFlow.Hotfix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hotfix Prefix :. + /// + public static string Text_GitFlow_HotfixPrefix { + get { + return ResourceManager.GetString("Text.GitFlow.HotfixPrefix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Initialize Git-Flow. + /// + public static string Text_GitFlow_Init { + get { + return ResourceManager.GetString("Text.GitFlow.Init", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keep branch. + /// + public static string Text_GitFlow_KeepBranchAfterFinish { + get { + return ResourceManager.GetString("Text.GitFlow.KeepBranchAfterFinish", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Production Branch :. + /// + public static string Text_GitFlow_ProductionBranch { + get { + return ResourceManager.GetString("Text.GitFlow.ProductionBranch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Release :. + /// + public static string Text_GitFlow_Release { + get { + return ResourceManager.GetString("Text.GitFlow.Release", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Release Prefix :. + /// + public static string Text_GitFlow_ReleasePrefix { + get { + return ResourceManager.GetString("Text.GitFlow.ReleasePrefix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Feature .... + /// + public static string Text_GitFlow_StartFeature { + get { + return ResourceManager.GetString("Text.GitFlow.StartFeature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FLOW - Start Feature. + /// + public static string Text_GitFlow_StartFeatureTitle { + get { + return ResourceManager.GetString("Text.GitFlow.StartFeatureTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Hotfix .... + /// + public static string Text_GitFlow_StartHotfix { + get { + return ResourceManager.GetString("Text.GitFlow.StartHotfix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FLOW - Start Hotfix. + /// + public static string Text_GitFlow_StartHotfixTitle { + get { + return ResourceManager.GetString("Text.GitFlow.StartHotfixTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter name. + /// + public static string Text_GitFlow_StartPlaceholder { + get { + return ResourceManager.GetString("Text.GitFlow.StartPlaceholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Release .... + /// + public static string Text_GitFlow_StartRelease { + get { + return ResourceManager.GetString("Text.GitFlow.StartRelease", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FLOW - Start Release. + /// + public static string Text_GitFlow_StartReleaseTitle { + get { + return ResourceManager.GetString("Text.GitFlow.StartReleaseTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version Tag Prefix :. + /// + public static string Text_GitFlow_TagPrefix { + get { + return ResourceManager.GetString("Text.GitFlow.TagPrefix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Histories. + /// + public static string Text_Histories { + get { + return ResourceManager.GetString("Text.Histories", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch Horizontal/Vertical Layout. + /// + public static string Text_Histories_DisplayMode { + get { + return ResourceManager.GetString("Text.Histories.DisplayMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch Curve/Polyline Graph Mode. + /// + public static string Text_Histories_GraphMode { + get { + return ResourceManager.GetString("Text.Histories.GraphMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SEARCH SHA/SUBJECT/AUTHOR. PRESS ENTER TO SEARCH, ESC TO QUIT. + /// + public static string Text_Histories_Search { + get { + return ResourceManager.GetString("Text.Histories.Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CLEAR. + /// + public static string Text_Histories_SearchClear { + get { + return ResourceManager.GetString("Text.Histories.SearchClear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SELECTED {0} COMMITS. + /// + public static string Text_Histories_Selected { + get { + return ResourceManager.GetString("Text.Histories.Selected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HotKeys. + /// + public static string Text_Hotkeys { + get { + return ResourceManager.GetString("Text.Hotkeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GLOBAL. + /// + public static string Text_Hotkeys_Global { + get { + return ResourceManager.GetString("Text.Hotkeys.Global", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel current popup. + /// + public static string Text_Hotkeys_Global_CancelPopup { + get { + return ResourceManager.GetString("Text.Hotkeys.Global.CancelPopup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close current page. + /// + public static string Text_Hotkeys_Global_CloseTab { + get { + return ResourceManager.GetString("Text.Hotkeys.Global.CloseTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to next page. + /// + public static string Text_Hotkeys_Global_GotoNextTab { + get { + return ResourceManager.GetString("Text.Hotkeys.Global.GotoNextTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create new page. + /// + public static string Text_Hotkeys_Global_NewTab { + get { + return ResourceManager.GetString("Text.Hotkeys.Global.NewTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to REPOSITORY. + /// + public static string Text_Hotkeys_Repo { + get { + return ResourceManager.GetString("Text.Hotkeys.Repo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stage/Unstage selected changes. + /// + public static string Text_Hotkeys_Repo_StageOrUnstageSelected { + get { + return ResourceManager.GetString("Text.Hotkeys.Repo.StageOrUnstageSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle commit search. + /// + public static string Text_Hotkeys_Repo_ToggleSearch { + get { + return ResourceManager.GetString("Text.Hotkeys.Repo.ToggleSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch to 'Changes'. + /// + public static string Text_Hotkeys_Repo_ViewChanges { + get { + return ResourceManager.GetString("Text.Hotkeys.Repo.ViewChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch to 'Histories'. + /// + public static string Text_Hotkeys_Repo_ViewHistories { + get { + return ResourceManager.GetString("Text.Hotkeys.Repo.ViewHistories", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch to 'Stashes'. + /// + public static string Text_Hotkeys_Repo_ViewStashes { + get { + return ResourceManager.GetString("Text.Hotkeys.Repo.ViewStashes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TEXT EDITOR. + /// + public static string Text_Hotkeys_TextEditor { + get { + return ResourceManager.GetString("Text.Hotkeys.TextEditor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close search panel. + /// + public static string Text_Hotkeys_TextEditor_CloseSearch { + get { + return ResourceManager.GetString("Text.Hotkeys.TextEditor.CloseSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find next match. + /// + public static string Text_Hotkeys_TextEditor_GotoNextMatch { + get { + return ResourceManager.GetString("Text.Hotkeys.TextEditor.GotoNextMatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Find previous match. + /// + public static string Text_Hotkeys_TextEditor_GotoPrevMatch { + get { + return ResourceManager.GetString("Text.Hotkeys.TextEditor.GotoPrevMatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open search panel. + /// + public static string Text_Hotkeys_TextEditor_Search { + get { + return ResourceManager.GetString("Text.Hotkeys.TextEditor.Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Initialize Repository. + /// + public static string Text_Init { + get { + return ResourceManager.GetString("Text.Init", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Path :. + /// + public static string Text_Init_Path { + get { + return ResourceManager.GetString("Text.Init.Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid repository detected. Run `git init` under this path?. + /// + public static string Text_Init_Tip { + get { + return ResourceManager.GetString("Text.Init.Tip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Source Git. + /// + public static string Text_Launcher { + get { + return ResourceManager.GetString("Text.Launcher", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ERROR. + /// + public static string Text_Launcher_Error { + get { + return ResourceManager.GetString("Text.Launcher.Error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NOTICE. + /// + public static string Text_Launcher_Info { + get { + return ResourceManager.GetString("Text.Launcher.Info", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Main Menu. + /// + public static string Text_Launcher_Menu { + get { + return ResourceManager.GetString("Text.Launcher.Menu", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merge Branch. + /// + public static string Text_Merge { + get { + return ResourceManager.GetString("Text.Merge", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Into :. + /// + public static string Text_Merge_Into { + get { + return ResourceManager.GetString("Text.Merge.Into", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merge Option :. + /// + public static string Text_Merge_Mode { + get { + return ResourceManager.GetString("Text.Merge.Mode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Source Branch :. + /// + public static string Text_Merge_Source { + get { + return ResourceManager.GetString("Text.Merge.Source", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name :. + /// + public static string Text_Name { + get { + return ResourceManager.GetString("Text.Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Git has NOT been configured. Please to go [Preference] and configure it first.. + /// + public static string Text_NotConfigured { + get { + return ResourceManager.GetString("Text.NotConfigured", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NOTICE. + /// + public static string Text_Notice { + get { + return ResourceManager.GetString("Text.Notice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SELECT FOLDER. + /// + public static string Text_OpenFolder { + get { + return ResourceManager.GetString("Text.OpenFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open With .... + /// + public static string Text_OpenWith { + get { + return ResourceManager.GetString("Text.OpenWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Optional.. + /// + public static string Text_Optional { + get { + return ResourceManager.GetString("Text.Optional", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create New Page (Ctrl+T). + /// + public static string Text_PageTabBar_New { + get { + return ResourceManager.GetString("Text.PageTabBar.New", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmark. + /// + public static string Text_PageTabBar_Tab_Bookmark { + get { + return ResourceManager.GetString("Text.PageTabBar.Tab.Bookmark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close Tab. + /// + public static string Text_PageTabBar_Tab_Close { + get { + return ResourceManager.GetString("Text.PageTabBar.Tab.Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close Other Tabs. + /// + public static string Text_PageTabBar_Tab_CloseOther { + get { + return ResourceManager.GetString("Text.PageTabBar.Tab.CloseOther", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close Tabs to the Right. + /// + public static string Text_PageTabBar_Tab_CloseRight { + get { + return ResourceManager.GetString("Text.PageTabBar.Tab.CloseRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Repository Path. + /// + public static string Text_PageTabBar_Tab_CopyPath { + get { + return ResourceManager.GetString("Text.PageTabBar.Tab.CopyPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repositories. + /// + public static string Text_PageTabBar_Welcome_Title { + get { + return ResourceManager.GetString("Text.PageTabBar.Welcome.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + public static string Text_Paste { + get { + return ResourceManager.GetString("Text.Paste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preference. + /// + public static string Text_Preference { + get { + return ResourceManager.GetString("Text.Preference", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GENERAL. + /// + public static string Text_Preference_General { + get { + return ResourceManager.GetString("Text.Preference.General", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Avatar Server. + /// + public static string Text_Preference_General_AvatarServer { + get { + return ResourceManager.GetString("Text.Preference.General.AvatarServer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Language. + /// + public static string Text_Preference_General_Locale { + get { + return ResourceManager.GetString("Text.Preference.General.Locale", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to History Commits. + /// + public static string Text_Preference_General_MaxHistoryCommits { + get { + return ResourceManager.GetString("Text.Preference.General.MaxHistoryCommits", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restore windows. + /// + public static string Text_Preference_General_RestoreTabs { + get { + return ResourceManager.GetString("Text.Preference.General.RestoreTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Theme. + /// + public static string Text_Preference_General_Theme { + get { + return ResourceManager.GetString("Text.Preference.General.Theme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use fixed tab width in titlebar. + /// + public static string Text_Preference_General_UseFixedTabWidth { + get { + return ResourceManager.GetString("Text.Preference.General.UseFixedTabWidth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GIT. + /// + public static string Text_Preference_Git { + get { + return ResourceManager.GetString("Text.Preference.Git", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fetch remotes automatically. + /// + public static string Text_Preference_Git_AutoFetch { + get { + return ResourceManager.GetString("Text.Preference.Git.AutoFetch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable Auto CRLF. + /// + public static string Text_Preference_Git_CRLF { + get { + return ResourceManager.GetString("Text.Preference.Git.CRLF", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Clone Dir. + /// + public static string Text_Preference_Git_DefaultCloneDir { + get { + return ResourceManager.GetString("Text.Preference.Git.DefaultCloneDir", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Email. + /// + public static string Text_Preference_Git_Email { + get { + return ResourceManager.GetString("Text.Preference.Git.Email", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Global git user email. + /// + public static string Text_Preference_Git_Email_Placeholder { + get { + return ResourceManager.GetString("Text.Preference.Git.Email.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Install Path. + /// + public static string Text_Preference_Git_Path { + get { + return ResourceManager.GetString("Text.Preference.Git.Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Name. + /// + public static string Text_Preference_Git_User { + get { + return ResourceManager.GetString("Text.Preference.Git.User", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Global git user name. + /// + public static string Text_Preference_Git_User_Placeholder { + get { + return ResourceManager.GetString("Text.Preference.Git.User.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Git version. + /// + public static string Text_Preference_Git_Version { + get { + return ResourceManager.GetString("Text.Preference.Git.Version", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GPG SIGNING. + /// + public static string Text_Preference_GPG { + get { + return ResourceManager.GetString("Text.Preference.GPG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commit GPG signing. + /// + public static string Text_Preference_GPG_Enabled { + get { + return ResourceManager.GetString("Text.Preference.GPG.Enabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Install Path. + /// + public static string Text_Preference_GPG_Path { + get { + return ResourceManager.GetString("Text.Preference.GPG.Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input path for installed gpg program. + /// + public static string Text_Preference_GPG_Path_Placeholder { + get { + return ResourceManager.GetString("Text.Preference.GPG.Path.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Signing Key. + /// + public static string Text_Preference_GPG_UserKey { + get { + return ResourceManager.GetString("Text.Preference.GPG.UserKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User's gpg signing key. + /// + public static string Text_Preference_GPG_UserKey_Placeholder { + get { + return ResourceManager.GetString("Text.Preference.GPG.UserKey.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MERGE. + /// + public static string Text_Preference_Merger { + get { + return ResourceManager.GetString("Text.Preference.Merger", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Diff Command. + /// + public static string Text_Preference_Merger_CustomDiffCmd { + get { + return ResourceManager.GetString("Text.Preference.Merger.CustomDiffCmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merge Command. + /// + public static string Text_Preference_Merger_CustomMergeCmd { + get { + return ResourceManager.GetString("Text.Preference.Merger.CustomMergeCmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Install Path. + /// + public static string Text_Preference_Merger_Path { + get { + return ResourceManager.GetString("Text.Preference.Merger.Path", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input path for merge tool. + /// + public static string Text_Preference_Merger_Path_Placeholder { + get { + return ResourceManager.GetString("Text.Preference.Merger.Path.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Merger. + /// + public static string Text_Preference_Merger_Type { + get { + return ResourceManager.GetString("Text.Preference.Merger.Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pull. + /// + public static string Text_Pull { + get { + return ResourceManager.GetString("Text.Pull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash & reapply local changes. + /// + public static string Text_Pull_AutoStash { + get { + return ResourceManager.GetString("Text.Pull.AutoStash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Branch :. + /// + public static string Text_Pull_Branch { + get { + return ResourceManager.GetString("Text.Pull.Branch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Into :. + /// + public static string Text_Pull_Into { + get { + return ResourceManager.GetString("Text.Pull.Into", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote :. + /// + public static string Text_Pull_Remote { + get { + return ResourceManager.GetString("Text.Pull.Remote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pull (Fetch & Merge). + /// + public static string Text_Pull_Title { + get { + return ResourceManager.GetString("Text.Pull.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use rebase instead of merge. + /// + public static string Text_Pull_UseRebase { + get { + return ResourceManager.GetString("Text.Pull.UseRebase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Push. + /// + public static string Text_Push { + get { + return ResourceManager.GetString("Text.Push", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Force push. + /// + public static string Text_Push_Force { + get { + return ResourceManager.GetString("Text.Push.Force", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local Branch :. + /// + public static string Text_Push_Local { + get { + return ResourceManager.GetString("Text.Push.Local", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote :. + /// + public static string Text_Push_Remote { + get { + return ResourceManager.GetString("Text.Push.Remote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Push Changes To Remote. + /// + public static string Text_Push_Title { + get { + return ResourceManager.GetString("Text.Push.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote Branch :. + /// + public static string Text_Push_To { + get { + return ResourceManager.GetString("Text.Push.To", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Push all tags. + /// + public static string Text_Push_WithAllTags { + get { + return ResourceManager.GetString("Text.Push.WithAllTags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Push Tag To Remote. + /// + public static string Text_PushTag { + get { + return ResourceManager.GetString("Text.PushTag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote :. + /// + public static string Text_PushTag_Remote { + get { + return ResourceManager.GetString("Text.PushTag.Remote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tag :. + /// + public static string Text_PushTag_Tag { + get { + return ResourceManager.GetString("Text.PushTag.Tag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rebase Current Branch. + /// + public static string Text_Rebase { + get { + return ResourceManager.GetString("Text.Rebase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash & reapply local changes. + /// + public static string Text_Rebase_AutoStash { + get { + return ResourceManager.GetString("Text.Rebase.AutoStash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to On :. + /// + public static string Text_Rebase_On { + get { + return ResourceManager.GetString("Text.Rebase.On", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rebase :. + /// + public static string Text_Rebase_Target { + get { + return ResourceManager.GetString("Text.Rebase.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + public static string Text_RefetchAvatar { + get { + return ResourceManager.GetString("Text.RefetchAvatar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Remote. + /// + public static string Text_Remote_AddTitle { + get { + return ResourceManager.GetString("Text.Remote.AddTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Remote. + /// + public static string Text_Remote_EditTitle { + get { + return ResourceManager.GetString("Text.Remote.EditTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name :. + /// + public static string Text_Remote_Name { + get { + return ResourceManager.GetString("Text.Remote.Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote name. + /// + public static string Text_Remote_Name_Placeholder { + get { + return ResourceManager.GetString("Text.Remote.Name.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Repository URL :. + /// + public static string Text_Remote_URL { + get { + return ResourceManager.GetString("Text.Remote.URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote git repository URL. + /// + public static string Text_Remote_URL_Placeholder { + get { + return ResourceManager.GetString("Text.Remote.URL.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy URL. + /// + public static string Text_RemoteCM_CopyURL { + get { + return ResourceManager.GetString("Text.RemoteCM.CopyURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete .... + /// + public static string Text_RemoteCM_Delete { + get { + return ResourceManager.GetString("Text.RemoteCM.Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit .... + /// + public static string Text_RemoteCM_Edit { + get { + return ResourceManager.GetString("Text.RemoteCM.Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fetch .... + /// + public static string Text_RemoteCM_Fetch { + get { + return ResourceManager.GetString("Text.RemoteCM.Fetch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prune. + /// + public static string Text_RemoteCM_Prune { + get { + return ResourceManager.GetString("Text.RemoteCM.Prune", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Target :. + /// + public static string Text_RemoteCM_Prune_Target { + get { + return ResourceManager.GetString("Text.RemoteCM.Prune.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename Branch. + /// + public static string Text_RenameBranch { + get { + return ResourceManager.GetString("Text.RenameBranch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Name :. + /// + public static string Text_RenameBranch_Name { + get { + return ResourceManager.GetString("Text.RenameBranch.Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unique name for this branch. + /// + public static string Text_RenameBranch_Name_Placeholder { + get { + return ResourceManager.GetString("Text.RenameBranch.Name.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Branch :. + /// + public static string Text_RenameBranch_Target { + get { + return ResourceManager.GetString("Text.RenameBranch.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bookmark. + /// + public static string Text_RepoCM_Bookmark { + get { + return ResourceManager.GetString("Text.RepoCM.Bookmark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Explore in File Manager. + /// + public static string Text_RepoCM_Explore { + get { + return ResourceManager.GetString("Text.RepoCM.Explore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open. + /// + public static string Text_RepoCM_Open { + get { + return ResourceManager.GetString("Text.RepoCM.Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ABORT. + /// + public static string Text_Repository_Abort { + get { + return ResourceManager.GetString("Text.Repository.Abort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cleanup(GC & Prune). + /// + public static string Text_Repository_Clean { + get { + return ResourceManager.GetString("Text.Repository.Clean", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Run `gc` command and do `lfs prune` if LFS is installed.. + /// + public static string Text_Repository_CleanTips { + get { + return ResourceManager.GetString("Text.Repository.CleanTips", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Configure this repository. + /// + public static string Text_Repository_Configure { + get { + return ResourceManager.GetString("Text.Repository.Configure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CONTINUE. + /// + public static string Text_Repository_Continue { + get { + return ResourceManager.GetString("Text.Repository.Continue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open In File Browser. + /// + public static string Text_Repository_Explore { + get { + return ResourceManager.GetString("Text.Repository.Explore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to LOCAL BRANCHES. + /// + public static string Text_Repository_LocalBranches { + get { + return ResourceManager.GetString("Text.Repository.LocalBranches", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NEW BRANCH. + /// + public static string Text_Repository_NewBranch { + get { + return ResourceManager.GetString("Text.Repository.NewBranch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + public static string Text_Repository_Refresh { + get { + return ResourceManager.GetString("Text.Repository.Refresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to REMOTES. + /// + public static string Text_Repository_Remotes { + get { + return ResourceManager.GetString("Text.Repository.Remotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ADD REMOTE. + /// + public static string Text_Repository_Remotes_Add { + get { + return ResourceManager.GetString("Text.Repository.Remotes.Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RESOLVE. + /// + public static string Text_Repository_Resolve { + get { + return ResourceManager.GetString("Text.Repository.Resolve", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Commit (Ctrl+F). + /// + public static string Text_Repository_Search { + get { + return ResourceManager.GetString("Text.Repository.Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Author/Committer/Message/SHA. + /// + public static string Text_Repository_SearchTip { + get { + return ResourceManager.GetString("Text.Repository.SearchTip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Statistics. + /// + public static string Text_Repository_Statistics { + get { + return ResourceManager.GetString("Text.Repository.Statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SUBMODULES. + /// + public static string Text_Repository_Submodules { + get { + return ResourceManager.GetString("Text.Repository.Submodules", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ADD SUBMODULE. + /// + public static string Text_Repository_Submodules_Add { + get { + return ResourceManager.GetString("Text.Repository.Submodules.Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UPDATE SUBMODULE. + /// + public static string Text_Repository_Submodules_Update { + get { + return ResourceManager.GetString("Text.Repository.Submodules.Update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TAGS. + /// + public static string Text_Repository_Tags { + get { + return ResourceManager.GetString("Text.Repository.Tags", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NEW TAG. + /// + public static string Text_Repository_Tags_Add { + get { + return ResourceManager.GetString("Text.Repository.Tags.Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open In Git Bash. + /// + public static string Text_Repository_Terminal { + get { + return ResourceManager.GetString("Text.Repository.Terminal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open In Visual Studio Code. + /// + public static string Text_Repository_VSCode { + get { + return ResourceManager.GetString("Text.Repository.VSCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to WORKSPACE. + /// + public static string Text_Repository_Workspace { + get { + return ResourceManager.GetString("Text.Repository.Workspace", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Git Repository URL. + /// + public static string Text_RepositoryURL { + get { + return ResourceManager.GetString("Text.RepositoryURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset Current Branch To Revision. + /// + public static string Text_Reset { + get { + return ResourceManager.GetString("Text.Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset Mode :. + /// + public static string Text_Reset_Mode { + get { + return ResourceManager.GetString("Text.Reset.Mode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move To :. + /// + public static string Text_Reset_MoveTo { + get { + return ResourceManager.GetString("Text.Reset.MoveTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current Branch :. + /// + public static string Text_Reset_Target { + get { + return ResourceManager.GetString("Text.Reset.Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reveal in File Explorer. + /// + public static string Text_RevealFile { + get { + return ResourceManager.GetString("Text.RevealFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Revert Commit. + /// + public static string Text_Revert { + get { + return ResourceManager.GetString("Text.Revert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commit :. + /// + public static string Text_Revert_Commit { + get { + return ResourceManager.GetString("Text.Revert.Commit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Commit revert changes. + /// + public static string Text_Revert_CommitChanges { + get { + return ResourceManager.GetString("Text.Revert.CommitChanges", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reword Commit Message. + /// + public static string Text_Reword { + get { + return ResourceManager.GetString("Text.Reword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Message :. + /// + public static string Text_Reword_Message { + get { + return ResourceManager.GetString("Text.Reword.Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to On :. + /// + public static string Text_Reword_On { + get { + return ResourceManager.GetString("Text.Reword.On", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Running. Please wait .... + /// + public static string Text_Running { + get { + return ResourceManager.GetString("Text.Running", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SAVE. + /// + public static string Text_Save { + get { + return ResourceManager.GetString("Text.Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save As .... + /// + public static string Text_SaveAs { + get { + return ResourceManager.GetString("Text.SaveAs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Patch has been saved successfully!. + /// + public static string Text_SaveAsPatchSuccess { + get { + return ResourceManager.GetString("Text.SaveAsPatchSuccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save File to .... + /// + public static string Text_SaveFileTo { + get { + return ResourceManager.GetString("Text.SaveFileTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Squash HEAD Into Parent. + /// + public static string Text_Squash { + get { + return ResourceManager.GetString("Text.Squash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HEAD :. + /// + public static string Text_Squash_Head { + get { + return ResourceManager.GetString("Text.Squash.Head", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reword :. + /// + public static string Text_Squash_Message { + get { + return ResourceManager.GetString("Text.Squash.Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To :. + /// + public static string Text_Squash_To { + get { + return ResourceManager.GetString("Text.Squash.To", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH Private Key :. + /// + public static string Text_SSHKey { + get { + return ResourceManager.GetString("Text.SSHKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Private SSH key store path. + /// + public static string Text_SSHKey_Placeholder { + get { + return ResourceManager.GetString("Text.SSHKey.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to START. + /// + public static string Text_Start { + get { + return ResourceManager.GetString("Text.Start", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash. + /// + public static string Text_Stash { + get { + return ResourceManager.GetString("Text.Stash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Include untracked files. + /// + public static string Text_Stash_IncludeUntracked { + get { + return ResourceManager.GetString("Text.Stash.IncludeUntracked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Message :. + /// + public static string Text_Stash_Message { + get { + return ResourceManager.GetString("Text.Stash.Message", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Optional. Name of this stash. + /// + public static string Text_Stash_Message_Placeholder { + get { + return ResourceManager.GetString("Text.Stash.Message.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stash Local Changes. + /// + public static string Text_Stash_Title { + get { + return ResourceManager.GetString("Text.Stash.Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Apply. + /// + public static string Text_StashCM_Apply { + get { + return ResourceManager.GetString("Text.StashCM.Apply", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop. + /// + public static string Text_StashCM_Drop { + get { + return ResourceManager.GetString("Text.StashCM.Drop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pop. + /// + public static string Text_StashCM_Pop { + get { + return ResourceManager.GetString("Text.StashCM.Pop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop Stash. + /// + public static string Text_StashDropConfirm { + get { + return ResourceManager.GetString("Text.StashDropConfirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Drop :. + /// + public static string Text_StashDropConfirm_Label { + get { + return ResourceManager.GetString("Text.StashDropConfirm.Label", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Stashes. + /// + public static string Text_Stashes { + get { + return ResourceManager.GetString("Text.Stashes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CHANGES. + /// + public static string Text_Stashes_Changes { + get { + return ResourceManager.GetString("Text.Stashes.Changes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to STASHES. + /// + public static string Text_Stashes_Stashes { + get { + return ResourceManager.GetString("Text.Stashes.Stashes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Statistics. + /// + public static string Text_Statistics { + get { + return ResourceManager.GetString("Text.Statistics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to COMMITS. + /// + public static string Text_Statistics_CommitAmount { + get { + return ResourceManager.GetString("Text.Statistics.CommitAmount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to COMMITTER. + /// + public static string Text_Statistics_Committer { + get { + return ResourceManager.GetString("Text.Statistics.Committer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MONTH. + /// + public static string Text_Statistics_ThisMonth { + get { + return ResourceManager.GetString("Text.Statistics.ThisMonth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to WEEK. + /// + public static string Text_Statistics_ThisWeek { + get { + return ResourceManager.GetString("Text.Statistics.ThisWeek", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to YEAR. + /// + public static string Text_Statistics_ThisYear { + get { + return ResourceManager.GetString("Text.Statistics.ThisYear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total Commits. + /// + public static string Text_Statistics_TotalCommits { + get { + return ResourceManager.GetString("Text.Statistics.TotalCommits", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Total Committers. + /// + public static string Text_Statistics_TotalCommitters { + get { + return ResourceManager.GetString("Text.Statistics.TotalCommitters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SUBMODULES. + /// + public static string Text_Submodule { + get { + return ResourceManager.GetString("Text.Submodule", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Submodule. + /// + public static string Text_Submodule_Add { + get { + return ResourceManager.GetString("Text.Submodule.Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Relative Path. + /// + public static string Text_Submodule_CopyPath { + get { + return ResourceManager.GetString("Text.Submodule.CopyPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fetch nested submodules. + /// + public static string Text_Submodule_FetchNested { + get { + return ResourceManager.GetString("Text.Submodule.FetchNested", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Submodule Repository. + /// + public static string Text_Submodule_Open { + get { + return ResourceManager.GetString("Text.Submodule.Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Relative Path :. + /// + public static string Text_Submodule_RelativePath { + get { + return ResourceManager.GetString("Text.Submodule.RelativePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Relative folder to store this module.. + /// + public static string Text_Submodule_RelativePath_Placeholder { + get { + return ResourceManager.GetString("Text.Submodule.RelativePath.Placeholder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Submodule. + /// + public static string Text_Submodule_Remove { + get { + return ResourceManager.GetString("Text.Submodule.Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OK. + /// + public static string Text_Sure { + get { + return ResourceManager.GetString("Text.Sure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Tag Name. + /// + public static string Text_TagCM_Copy { + get { + return ResourceManager.GetString("Text.TagCM.Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete${0}$. + /// + public static string Text_TagCM_Delete { + get { + return ResourceManager.GetString("Text.TagCM.Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Push${0}$. + /// + public static string Text_TagCM_Push { + get { + return ResourceManager.GetString("Text.TagCM.Push", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to COMMIT : {0} -> {1}. + /// + public static string Text_TwoCommitsDiff { + get { + return ResourceManager.GetString("Text.TwoCommitsDiff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to URL :. + /// + public static string Text_URL { + get { + return ResourceManager.GetString("Text.URL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warning. + /// + public static string Text_Warn { + get { + return ResourceManager.GetString("Text.Warn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Group. + /// + public static string Text_Welcome_AddRootFolder { + get { + return ResourceManager.GetString("Text.Welcome.AddRootFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Sub-Group. + /// + public static string Text_Welcome_AddSubFolder { + get { + return ResourceManager.GetString("Text.Welcome.AddSubFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clone Repository. + /// + public static string Text_Welcome_Clone { + get { + return ResourceManager.GetString("Text.Welcome.Clone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Text_Welcome_Delete { + get { + return ResourceManager.GetString("Text.Welcome.Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DRAG & DROP FOLDER SUPPORTED. + /// + public static string Text_Welcome_DragDropTip { + get { + return ResourceManager.GetString("Text.Welcome.DragDropTip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string Text_Welcome_Edit { + get { + return ResourceManager.GetString("Text.Welcome.Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Repository. + /// + public static string Text_Welcome_OpenOrInit { + get { + return ResourceManager.GetString("Text.Welcome.OpenOrInit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open In Git Bash. + /// + public static string Text_Welcome_OpenTerminal { + get { + return ResourceManager.GetString("Text.Welcome.OpenTerminal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Repositories .... + /// + public static string Text_Welcome_Search { + get { + return ResourceManager.GetString("Text.Welcome.Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort. + /// + public static string Text_Welcome_Sort { + get { + return ResourceManager.GetString("Text.Welcome.Sort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Changes. + /// + public static string Text_WorkingCopy { + get { + return ResourceManager.GetString("Text.WorkingCopy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Amend. + /// + public static string Text_WorkingCopy_Amend { + get { + return ResourceManager.GetString("Text.WorkingCopy.Amend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to COMMIT. + /// + public static string Text_WorkingCopy_Commit { + get { + return ResourceManager.GetString("Text.WorkingCopy.Commit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to COMMIT & PUSH. + /// + public static string Text_WorkingCopy_CommitAndPush { + get { + return ResourceManager.GetString("Text.WorkingCopy.CommitAndPush", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter commit message. + /// + public static string Text_WorkingCopy_CommitMessageTip { + get { + return ResourceManager.GetString("Text.WorkingCopy.CommitMessageTip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CTRL + Enter. + /// + public static string Text_WorkingCopy_CommitTip { + get { + return ResourceManager.GetString("Text.WorkingCopy.CommitTip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CONFLICTS DETECTED. + /// + public static string Text_WorkingCopy_Conflicts { + get { + return ResourceManager.GetString("Text.WorkingCopy.Conflicts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RECENT INPUT MESSAGES. + /// + public static string Text_WorkingCopy_HasCommitHistories { + get { + return ResourceManager.GetString("Text.WorkingCopy.HasCommitHistories", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to INCLUDE UNTRACKED FILES. + /// + public static string Text_WorkingCopy_IncludeUntracked { + get { + return ResourceManager.GetString("Text.WorkingCopy.IncludeUntracked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MESSAGE HISTORIES. + /// + public static string Text_WorkingCopy_MessageHistories { + get { + return ResourceManager.GetString("Text.WorkingCopy.MessageHistories", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NO RECENT INPUT MESSAGES. + /// + public static string Text_WorkingCopy_NoCommitHistories { + get { + return ResourceManager.GetString("Text.WorkingCopy.NoCommitHistories", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OPEN MERGE. + /// + public static string Text_WorkingCopy_OpenMerger { + get { + return ResourceManager.GetString("Text.WorkingCopy.OpenMerger", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to STAGED. + /// + public static string Text_WorkingCopy_Staged { + get { + return ResourceManager.GetString("Text.WorkingCopy.Staged", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UNSTAGE. + /// + public static string Text_WorkingCopy_Staged_Unstage { + get { + return ResourceManager.GetString("Text.WorkingCopy.Staged.Unstage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UNSTAGE ALL. + /// + public static string Text_WorkingCopy_Staged_UnstageAll { + get { + return ResourceManager.GetString("Text.WorkingCopy.Staged.UnstageAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UNSTAGED. + /// + public static string Text_WorkingCopy_Unstaged { + get { + return ResourceManager.GetString("Text.WorkingCopy.Unstaged", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to STAGE. + /// + public static string Text_WorkingCopy_Unstaged_Stage { + get { + return ResourceManager.GetString("Text.WorkingCopy.Unstaged.Stage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to STAGE ALL. + /// + public static string Text_WorkingCopy_Unstaged_StageAll { + get { + return ResourceManager.GetString("Text.WorkingCopy.Unstaged.StageAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VIEW ASSUME UNCHANGED. + /// + public static string Text_WorkingCopy_Unstaged_ViewAssumeUnchaged { + get { + return ResourceManager.GetString("Text.WorkingCopy.Unstaged.ViewAssumeUnchaged", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to USE MINE. + /// + public static string Text_WorkingCopy_UseMine { + get { + return ResourceManager.GetString("Text.WorkingCopy.UseMine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to USE THEIRS. + /// + public static string Text_WorkingCopy_UseTheirs { + get { + return ResourceManager.GetString("Text.WorkingCopy.UseTheirs", resourceCulture); + } + } + } +} diff --git a/src/Assets/Resources.en.resx b/src/Assets/Resources.en.resx new file mode 100644 index 00000000..f81e5bb6 --- /dev/null +++ b/src/Assets/Resources.en.resx @@ -0,0 +1,509 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + START + OK + SAVE + CLOSE + CANCEL + Reveal in File Explorer + Save As ... + Save File to ... + Copy Path + Bytes + FILTER + Optional. + SELECT FOLDER + NOTICE + Open With ... + Running. Please wait ... + Warning + + Copy + Paste + Refresh + + Name : + URL : + Git Repository URL + + SSH Private Key : + Private SSH key store path + + About + Copyright © 2024 sourcegit-scm. + • Build with + • TextEditor from + • Monospace fonts come from + + Patch + Apply Patch + Patch File : + Select .patch file to apply + Whitespace : + Ignore whitespace changes + No Warn + Turns off the trailing whitespace warning + Warn + Outputs warnings for a few such errors, but applies + Error + Raise errors and refuses to apply the patch + Error All + Similar to 'error', but shows more + + Archive ... + Archive + Revision : + Save Archive To : + Select archive file path + + Blame + + SUBMODULES + Add Submodule + Relative Path : + Relative folder to store this module. + Fetch nested submodules + Open Submodule Repository + Copy Relative Path + Delete Submodule + + Checkout Branch + Target : + + Cherry-Pick This Commit + Cherry Pick + Commit : + Commit all changes + + Clone Remote Repository + Repository URL : + Parent Folder : + Local Name : + Repository name. Optional. + Extra Parameters : + Additional arguments to clone repository. Optional. + + INFORMATION + AUTHOR + COMMITTER + SHA + PARENTS + REFS + MESSAGE + CHANGED + CHANGES + Search Files ... + FILES + LFS File + Submodule + Tag + Tree + + Configure + User Name + User name for this repository + Email Address + Email address + HTTP Proxy + HTTP proxy used by this repository + + Create Branch + Create Local Branch + Based On : + New Branch Name : + Enter branch name. + Local Changes : + Stash & Reapply + Discard + Check out after created + + Create Tag + New Tag At : + Tag Name : + Recommended format :v1.0.0-alpha + Tag Message : + Optional. + + Open In File Browser + Open In Visual Studio Code + Open In Git Bash + Refresh + Search Commit (Ctrl+F) + Search Author/Committer/Message/SHA + Statistics + Cleanup(GC & Prune) + Run `gc` command and do `lfs prune` if LFS is installed. + Configure this repository + WORKSPACE + LOCAL BRANCHES + NEW BRANCH + REMOTES + ADD REMOTE + TAGS + NEW TAG + SUBMODULES + ADD SUBMODULE + UPDATE SUBMODULE + RESOLVE + CONTINUE + ABORT + + GIT FLOW + Initialize Git-Flow + Production Branch : + Development Branch : + Feature : + Release : + Hotfix : + Feature Prefix : + Release Prefix : + Hotfix Prefix : + Version Tag Prefix : + Start Feature ... + Start Release ... + Start Hotfix ... + FLOW - Start Feature + FLOW - Start Release + FLOW - Start Hotfix + Enter name + FLOW - Finish Feature + FLOW - Finish Release + FLOW - Finish Hotfix + Target : + Keep branch + + Bookmark + Open + Explore in File Manager + + Push${0}$ + Discard all changes + Fast-Forward to${0}$ + Pull${0}$ + Pull${0}$into${1}$ + Checkout${0}$ + Merge${0}$into${1}$ + Rebase${0}$on${1}$ + Git Flow - Finish${0}$ + Rename${0}$ + Delete${0}$ + Tracking ... + Copy Branch Name + Unset Upstream + + Fetch ... + Prune + Target : + Edit ... + Delete ... + Copy URL + + Reset${0}$to Here + Rebase${0}$to Here + Cherry-Pick This Commit + Reword + Squash Into Parent + Revert Commit + Save as Patch ... + Copy SHA + + Push${0}$ + Delete${0}$ + Copy Tag Name + + Apply + Pop + Drop + + Unstage + Stage... + Discard... + Stash... + Unstage {0} files + Stage {0} files... + Discard {0} files... + Stash {0} files... + Save As Patch... + Assume unchanged + Stage Changes in Selected Line(s) + Discard Changes in Selected Line(s) + Unstage Changes in Selected Line(s) + + Delete Branch + Branch : + + Delete Remote + Remote : + + Delete Tag + Tag : + Delete from remote repositories + + Delete Submodule + Submodule Path : + + Next Difference + Previous Difference + Toggle One-Side/Two-Sides + Open With Merge Tool + SELECT FILE TO VIEW CHANGES + NO CHANGES OR ONLY EOL CHANGES + BINARY DIFF + OLD + NEW + LFS OBJECT CHANGE + Copy + + Discard Changes + Changes : + You can't undo this action!!! + All local changes in working copy. + Total {0} changes will be discard + + Fetch + Fetch Remote Changes + Remote : + Fetch all remotes + Prune remote dead branches + + Fast-Forward (without checkout) + + File History + + CHANGE DISPLAY MODE + Show as Grid + Show as List + Show as Tree + + Histories + SEARCH SHA/SUBJECT/AUTHOR. PRESS ENTER TO SEARCH, ESC TO QUIT + CLEAR + Switch Curve/Polyline Graph Mode + Switch Horizontal/Vertical Layout + SELECTED {0} COMMITS + + Initialize Repository + Path : + Invalid repository detected. Run `git init` under this path? + + Source Git + Open Main Menu + ERROR + NOTICE + + Create New Page (Ctrl+T) + Repositories + Close Tab + Close Other Tabs + Close Tabs to the Right + Bookmark + Copy Repository Path + + Merge Branch + Source Branch : + Into : + Merge Option : + + Open Repository + Open In Git Bash + Clone Repository + Edit + Create Group + Create Sub-Group + Delete + Search Repositories ... + Sort + DRAG & DROP FOLDER SUPPORTED + + Edit Selected Group + Edit Selected Repository + Target : + New Name : + Bookmark : + + Confirm Deleting Group + Confirm Deleting Repository + Target : + + Pull + Pull (Fetch & Merge) + Remote : + Branch : + Into : + Use rebase instead of merge + Stash & reapply local changes + + Push + Push Changes To Remote + Local Branch : + Remote : + Remote Branch : + Push all tags + Force push + + Push Tag To Remote + Tag : + Remote : + + Rebase Current Branch + Rebase : + On : + Stash & reapply local changes + + Add Remote + Edit Remote + Name : + Remote name + Repository URL : + Remote git repository URL + + Rename Branch + Branch : + New Name : + Unique name for this branch + + Reset Current Branch To Revision + Current Branch : + Move To : + Reset Mode : + + Revert Commit + Commit : + Commit revert changes + + Preference + GENERAL + Language + Avatar Server + Theme + History Commits + Restore windows + Use fixed tab width in titlebar + GIT + Install Path + Git version + Default Clone Dir + User Name + Global git user name + User Email + Global git user email + Enable Auto CRLF + Fetch remotes automatically + GPG SIGNING + Commit GPG signing + Install Path + Input path for installed gpg program + User Signing Key + User's gpg signing key + MERGE + Merger + Install Path + Input path for merge tool + Merge Command + Diff Command + + Stash + Stash Local Changes + Message : + Optional. Name of this stash + Include untracked files + + Stashes + STASHES + CHANGES + + Drop Stash + Drop : + + COMMIT : {0} -> {1} + + Changes + UNSTAGED + VIEW ASSUME UNCHANGED + STAGE + STAGE ALL + STAGED + UNSTAGE + UNSTAGE ALL + CONFLICTS DETECTED + USE THEIRS + USE MINE + OPEN MERGE + Enter commit message + MESSAGE HISTORIES + Amend + COMMIT + CTRL + Enter + COMMIT & PUSH + NO RECENT INPUT MESSAGES + RECENT INPUT MESSAGES + INCLUDE UNTRACKED FILES + + Conflict detected! Press 'Abort' to restore original HEAD + + Clear Stashes + You are trying to clear all stashes. Are you sure to continue? + + Reword Commit Message + On : + Message : + + Squash HEAD Into Parent + HEAD : + To : + Reword : + + FILES ASSUME UNCHANGED + REMOVE + NO FILES ASSUMED AS UNCHANGED + + Statistics + WEEK + MONTH + YEAR + Total Committers + Total Commits + COMMITTER + COMMITS + + HotKeys + GLOBAL + Create new page + Close current page + Go to next page + Cancel current popup + REPOSITORY + Switch to 'Histories' + Switch to 'Changes' + Switch to 'Stashes' + Toggle commit search + Stage/Unstage selected changes + TEXT EDITOR + Open search panel + Find previous match + Find next match + Close search panel + + Git has NOT been configured. Please to go [Preference] and configure it first. + BINARY FILE NOT SUPPORTED!!! + BLAME ON THIS FILE IS NOT SUPPORTED!!! + Patch has been saved successfully! + \ No newline at end of file diff --git a/src/Assets/Resources.resx b/src/Assets/Resources.resx new file mode 100644 index 00000000..f81e5bb6 --- /dev/null +++ b/src/Assets/Resources.resx @@ -0,0 +1,509 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + START + OK + SAVE + CLOSE + CANCEL + Reveal in File Explorer + Save As ... + Save File to ... + Copy Path + Bytes + FILTER + Optional. + SELECT FOLDER + NOTICE + Open With ... + Running. Please wait ... + Warning + + Copy + Paste + Refresh + + Name : + URL : + Git Repository URL + + SSH Private Key : + Private SSH key store path + + About + Copyright © 2024 sourcegit-scm. + • Build with + • TextEditor from + • Monospace fonts come from + + Patch + Apply Patch + Patch File : + Select .patch file to apply + Whitespace : + Ignore whitespace changes + No Warn + Turns off the trailing whitespace warning + Warn + Outputs warnings for a few such errors, but applies + Error + Raise errors and refuses to apply the patch + Error All + Similar to 'error', but shows more + + Archive ... + Archive + Revision : + Save Archive To : + Select archive file path + + Blame + + SUBMODULES + Add Submodule + Relative Path : + Relative folder to store this module. + Fetch nested submodules + Open Submodule Repository + Copy Relative Path + Delete Submodule + + Checkout Branch + Target : + + Cherry-Pick This Commit + Cherry Pick + Commit : + Commit all changes + + Clone Remote Repository + Repository URL : + Parent Folder : + Local Name : + Repository name. Optional. + Extra Parameters : + Additional arguments to clone repository. Optional. + + INFORMATION + AUTHOR + COMMITTER + SHA + PARENTS + REFS + MESSAGE + CHANGED + CHANGES + Search Files ... + FILES + LFS File + Submodule + Tag + Tree + + Configure + User Name + User name for this repository + Email Address + Email address + HTTP Proxy + HTTP proxy used by this repository + + Create Branch + Create Local Branch + Based On : + New Branch Name : + Enter branch name. + Local Changes : + Stash & Reapply + Discard + Check out after created + + Create Tag + New Tag At : + Tag Name : + Recommended format :v1.0.0-alpha + Tag Message : + Optional. + + Open In File Browser + Open In Visual Studio Code + Open In Git Bash + Refresh + Search Commit (Ctrl+F) + Search Author/Committer/Message/SHA + Statistics + Cleanup(GC & Prune) + Run `gc` command and do `lfs prune` if LFS is installed. + Configure this repository + WORKSPACE + LOCAL BRANCHES + NEW BRANCH + REMOTES + ADD REMOTE + TAGS + NEW TAG + SUBMODULES + ADD SUBMODULE + UPDATE SUBMODULE + RESOLVE + CONTINUE + ABORT + + GIT FLOW + Initialize Git-Flow + Production Branch : + Development Branch : + Feature : + Release : + Hotfix : + Feature Prefix : + Release Prefix : + Hotfix Prefix : + Version Tag Prefix : + Start Feature ... + Start Release ... + Start Hotfix ... + FLOW - Start Feature + FLOW - Start Release + FLOW - Start Hotfix + Enter name + FLOW - Finish Feature + FLOW - Finish Release + FLOW - Finish Hotfix + Target : + Keep branch + + Bookmark + Open + Explore in File Manager + + Push${0}$ + Discard all changes + Fast-Forward to${0}$ + Pull${0}$ + Pull${0}$into${1}$ + Checkout${0}$ + Merge${0}$into${1}$ + Rebase${0}$on${1}$ + Git Flow - Finish${0}$ + Rename${0}$ + Delete${0}$ + Tracking ... + Copy Branch Name + Unset Upstream + + Fetch ... + Prune + Target : + Edit ... + Delete ... + Copy URL + + Reset${0}$to Here + Rebase${0}$to Here + Cherry-Pick This Commit + Reword + Squash Into Parent + Revert Commit + Save as Patch ... + Copy SHA + + Push${0}$ + Delete${0}$ + Copy Tag Name + + Apply + Pop + Drop + + Unstage + Stage... + Discard... + Stash... + Unstage {0} files + Stage {0} files... + Discard {0} files... + Stash {0} files... + Save As Patch... + Assume unchanged + Stage Changes in Selected Line(s) + Discard Changes in Selected Line(s) + Unstage Changes in Selected Line(s) + + Delete Branch + Branch : + + Delete Remote + Remote : + + Delete Tag + Tag : + Delete from remote repositories + + Delete Submodule + Submodule Path : + + Next Difference + Previous Difference + Toggle One-Side/Two-Sides + Open With Merge Tool + SELECT FILE TO VIEW CHANGES + NO CHANGES OR ONLY EOL CHANGES + BINARY DIFF + OLD + NEW + LFS OBJECT CHANGE + Copy + + Discard Changes + Changes : + You can't undo this action!!! + All local changes in working copy. + Total {0} changes will be discard + + Fetch + Fetch Remote Changes + Remote : + Fetch all remotes + Prune remote dead branches + + Fast-Forward (without checkout) + + File History + + CHANGE DISPLAY MODE + Show as Grid + Show as List + Show as Tree + + Histories + SEARCH SHA/SUBJECT/AUTHOR. PRESS ENTER TO SEARCH, ESC TO QUIT + CLEAR + Switch Curve/Polyline Graph Mode + Switch Horizontal/Vertical Layout + SELECTED {0} COMMITS + + Initialize Repository + Path : + Invalid repository detected. Run `git init` under this path? + + Source Git + Open Main Menu + ERROR + NOTICE + + Create New Page (Ctrl+T) + Repositories + Close Tab + Close Other Tabs + Close Tabs to the Right + Bookmark + Copy Repository Path + + Merge Branch + Source Branch : + Into : + Merge Option : + + Open Repository + Open In Git Bash + Clone Repository + Edit + Create Group + Create Sub-Group + Delete + Search Repositories ... + Sort + DRAG & DROP FOLDER SUPPORTED + + Edit Selected Group + Edit Selected Repository + Target : + New Name : + Bookmark : + + Confirm Deleting Group + Confirm Deleting Repository + Target : + + Pull + Pull (Fetch & Merge) + Remote : + Branch : + Into : + Use rebase instead of merge + Stash & reapply local changes + + Push + Push Changes To Remote + Local Branch : + Remote : + Remote Branch : + Push all tags + Force push + + Push Tag To Remote + Tag : + Remote : + + Rebase Current Branch + Rebase : + On : + Stash & reapply local changes + + Add Remote + Edit Remote + Name : + Remote name + Repository URL : + Remote git repository URL + + Rename Branch + Branch : + New Name : + Unique name for this branch + + Reset Current Branch To Revision + Current Branch : + Move To : + Reset Mode : + + Revert Commit + Commit : + Commit revert changes + + Preference + GENERAL + Language + Avatar Server + Theme + History Commits + Restore windows + Use fixed tab width in titlebar + GIT + Install Path + Git version + Default Clone Dir + User Name + Global git user name + User Email + Global git user email + Enable Auto CRLF + Fetch remotes automatically + GPG SIGNING + Commit GPG signing + Install Path + Input path for installed gpg program + User Signing Key + User's gpg signing key + MERGE + Merger + Install Path + Input path for merge tool + Merge Command + Diff Command + + Stash + Stash Local Changes + Message : + Optional. Name of this stash + Include untracked files + + Stashes + STASHES + CHANGES + + Drop Stash + Drop : + + COMMIT : {0} -> {1} + + Changes + UNSTAGED + VIEW ASSUME UNCHANGED + STAGE + STAGE ALL + STAGED + UNSTAGE + UNSTAGE ALL + CONFLICTS DETECTED + USE THEIRS + USE MINE + OPEN MERGE + Enter commit message + MESSAGE HISTORIES + Amend + COMMIT + CTRL + Enter + COMMIT & PUSH + NO RECENT INPUT MESSAGES + RECENT INPUT MESSAGES + INCLUDE UNTRACKED FILES + + Conflict detected! Press 'Abort' to restore original HEAD + + Clear Stashes + You are trying to clear all stashes. Are you sure to continue? + + Reword Commit Message + On : + Message : + + Squash HEAD Into Parent + HEAD : + To : + Reword : + + FILES ASSUME UNCHANGED + REMOVE + NO FILES ASSUMED AS UNCHANGED + + Statistics + WEEK + MONTH + YEAR + Total Committers + Total Commits + COMMITTER + COMMITS + + HotKeys + GLOBAL + Create new page + Close current page + Go to next page + Cancel current popup + REPOSITORY + Switch to 'Histories' + Switch to 'Changes' + Switch to 'Stashes' + Toggle commit search + Stage/Unstage selected changes + TEXT EDITOR + Open search panel + Find previous match + Find next match + Close search panel + + Git has NOT been configured. Please to go [Preference] and configure it first. + BINARY FILE NOT SUPPORTED!!! + BLAME ON THIS FILE IS NOT SUPPORTED!!! + Patch has been saved successfully! + \ No newline at end of file diff --git a/src/Assets/Resources.zh.resx b/src/Assets/Resources.zh.resx new file mode 100644 index 00000000..95b195cf --- /dev/null +++ b/src/Assets/Resources.zh.resx @@ -0,0 +1,508 @@ + + + + + + + + + + text/microsoft-resx + + + 1.3 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 开 始 + 确 定 + 保 存 + 关闭 + 取 消 + 在文件浏览器中查看 + 另存为... + 复制路径 + 字节 + 过滤 + 选填 + 选择文件夹 + 系统提示 + 打开文件... + 执行操作中,请耐心等待... + 警告 + + 复制 + 粘贴 + 重新加载 + + 名称 : + 仓库地址 : + 远程仓库地址 + + SSH密钥 : + SSH密钥文件 + + 关于软件 + Copyright © 2024 sourcegit-scm. + • 使用的框架为 + • 文本编辑器使用 + • 等宽字体来自于 + + 补丁 + 应用补丁 + 补丁文件 : + 选择补丁文件 + 空白符号处理 : + 忽略空白符号 + 忽略 + 关闭所有警告 + 警告 + 应用补丁,输出关于空白符的警告 + 错误 + 输出错误,并终止应用补丁 + 更多错误 + 与【错误】级别相似,但输出内容更多 + + 存档 ... + 存档 + 指定的提交: + 存档文件路径: + 选择存档文件的存放路径 + + 逐行追溯 + + 子模块 + 添加子模块 + 相对仓库路径 : + 本地存放的相对路径 + 拉取子孙模块 + 打开仓库 + 复制路径 + 删除子模块 + + 检出分支 + 目标分支 : + + 挑选此提交 + 挑选提交 + 提交ID : + 提交变化 + + 克隆远程仓库 + 远程仓库 : + 父级目录 : + 本地仓库名 : + 本地仓库目录的名字,选填 + 额外参数 : + 其他克隆参数,选填 + + 基本信息 + 修改者 + 提交者 + 提交指纹 + 父提交 + 相关引用 + 提交信息 + 变更列表 + 变更对比 + 查找文件... + 文件列表 + LFS文件 + 子模块 + 标签文件 + 子树 + + 仓库配置 + 用户名 + 应用于本仓库的用户名 + 电子邮箱 + 邮箱地址 + HTTP代理 + HTTP网络代理 + + 新建分支 + 创建本地分支 + 新分支基于 : + 新分支名 : + 填写分支名称 + 未提交更改 : + 贮藏并自动恢复 + 忽略 + 完成后切换到新分支 + + 新建标签 + 标签位于 : + 标签名 : + 推荐格式 :v1.0.0-alpha + 标签描述 : + 选填 + + 在文件浏览器中打开 + 在Visual Studio Code中打开 + 在GIT终端中打开 + 重新加载 + 查找提交(Ctrl+F) + 支持搜索作者/提交者/主题/指纹 + 提交统计 + 清理本仓库(GC) + 本操作将执行`gc`,对于启用LFS的仓库也会执行`lfs prune` + 配置本仓库 + 工作区 + 本地分支 + 新建分支 + 远程列表 + 添加远程 + 标签列表 + 新建标签 + 子模块列表 + 添加子模块 + 更新子模块 + 解决冲突 + 下一步 + 终止冲突解决 + + GIT工作流 + 初始化GIT工作流 + 发布分支 : + 开发分支 : + 特性分支 : + 版本分支 : + 修复分支 : + 特性分支名前缀 : + 版本分支名前缀 : + 修复分支名前缀 : + 版本标签前缀 : + 开始特性分支... + 开始版本分支... + 开始修复分支... + 开始特性分支 + 开始版本分支 + 开始修复分支 + 输入分支名 + 结束特性分支 + 结束版本分支 + 结束修复分支 + 目标分支 : + 保留分支 + + 书签 + 打开 + 在浏览器中查看 + + 推送${0}$ + 放弃所有更改 + 快进到${0}$ + 拉回${0}$ + 拉回${0}$内容至${1}$ + 检出${0}$ + 合并${0}$到${1}$ + 变基${0}$分支至${1}$ + GIT工作流 - 完成${0}$ + 重命名${0}$ + 删除${0}$ + 切换上游分支... + 复制分支名 + 取消追踪 + + 拉取更新 ... + 清理远程已删除分支 + 目标 : + 编辑 ... + 删除 ... + 复制远程地址 + + 重置${0}$到此处 + 变基${0}$到此处 + 挑选此提交 + 编辑提交信息 + 合并此提交到上一个提交 + 回滚此提交 + 另存为补丁 ... + 复制提交指纹 + + 推送${0}$ + 删除${0}$ + 复制标签名 + + 应用 + 应用并删除 + 删除 + + 从暂存中移除 + 暂存... + 放弃更改... + 贮藏... + 从暂存中移除 {0} 个文件 + 暂存 {0} 个文件... + 放弃 {0} 个文件的更改... + 贮藏选中的 {0} 个文件... + 另存为补丁... + 不跟踪此文件的更改 + 暂存选中的更改 + 放弃选中的更改 + 从暂存中移除选中的更改 + + 确定要删除此分支吗? + 分支名 : + + 确定要移除该远程吗? + 远程名 : + + 确定要移除该标签吗? + 标签名 : + 同时删除远程仓库中的此标签 + + 确定要移除该子模块吗? + 子模块路径 : + + 下一个差异 + 上一个差异 + 切换显示模式 + 使用外部合并工具查看 + 请选择需要对比的文件 + 没有变更或仅有换行符差异 + 二进制文件 + 原始大小 + 当前大小 + LFS对象变更 + 复制 + + 放弃更改确认 + 需要放弃的变更 : + 本操作不支持回退,请确认后继续!!! + 所有本地址未提交的修改 + 总计{0}项选中更改 + + 拉取 + 拉取远程仓库内容 + 远程仓库 : + 拉取所有的远程仓库 + 自动清理远程已删除分支 + + 快进(无需Checkout) + + 文件历史 + + 切换变更显示模式 + 网格模式 + 列表模式 + 树形模式 + + 历史记录 + 查询提交指纹、信息、作者。回车键开始,ESC键取消 + 清空 + 切换曲线/折线显示 + 切换横向/纵向显示 + 已选中 {0} 项提交 + + 初始化新仓库 + 路径 : + 点击【确定】将在此目录执行`git init`操作 + + Source Git + 主菜单 + 出错了 + 系统提示 + + 新建空白页 (Ctrl+T) + 新标签页 + 关闭标签页 (Ctrl+W) + 关闭其他标签页 + 关闭右侧标签页 + 设置书签 + 复制仓库路径 + + 合并分支 + 合并分支 : + 目标分支 : + 合并方式 : + + 打开本地仓库 + 打开GIT终端 + 克隆远程仓库 + 编辑 + 新建分组 + 新建子分组 + 删除 + 快速查找仓库 + 排序 + 支持拖放目录添加 + + 编辑分组 + 编辑仓库 + 目标 : + 名称 : + 书签 : + + 删除分组确认 + 删除仓库确认 + 目标 : + + 拉回 + 拉回(拉取并合并) + 远程 : + 拉取分支 : + 本地分支 : + 使用变基方式合并分支 + 自动贮藏并恢复本地变更 + + 推送 + 推送到远程仓库 + 本地分支 : + 远程仓库 : + 远程分支 : + 同时推送标签 + 启用强制推送 + + 推送标签到远程仓库 + 标签 : + 远程仓库 : + + 变基操作 + 分支 : + 目标提交 : + 自动贮藏并恢复本地变更 + + 添加远程仓库 + 编辑远程仓库 + 远程名 : + 唯一远程名 + 仓库地址 : + 远程仓库的地址 + + 分支重命名 + 分支 : + 新的名称 : + 新的分支名不能与现有分支名相同 + + 重置当前分支到指定版本 + 当前分支 : + 提交 : + 重置模式 : + + 确定要回滚吗? + 目标提交 : + 回滚后提交更改 + + 偏好设置 + 通用配置 + 显示语言 + 头像服务 + 主题 + 最大历史提交数 + 启动时恢复上次打开的仓库 + 使用固定宽度的标题栏标签 + GIT配置 + 安装路径 + Git 版本 + 默认克隆路径 + 用户名 + 默认GIT用户名 + 邮箱 + 默认GIT用户邮箱 + 自动换行转换 + 启用定时自动拉取远程更新 + GPG签名 + 启用提交签名 + 可执行文件位置 + gpg.exe所在路径 + 用户签名KEY + 输入签名提交所使用的KEY + 外部合并工具 + 工具 + 安装路径 + 填写工具可执行文件所在位置 + 合并模式启动参数 + 对比模式启动参数 + + 贮藏 + 贮藏本地变更 + 信息 : + 选填,用于命名此贮藏 + 包含未跟踪的文件 + + 贮藏列表 + 贮藏列表 + 查看变更 + + 丢弃贮藏确认 + 丢弃贮藏 : + + 对比提交 : {0} -> {1} + + 本地更改 + 未暂存 + 查看忽略变更文件 + 暂存选中 + 暂存所有 + 已暂存 + 从暂存区移除选中 + 从暂存区移除所有 + 检测到冲突 + 使用THEIRS + 使用MINE + 打开合并工具 + 填写提交信息 + 历史提交信息 + 修补 + 提交 + CTRL + Enter + 提交并推送 + 没有提交信息记录 + 最近输入的提交信息 + 显示未跟踪文件 + + 检测到本地冲突! + + 丢弃贮藏确认 + 您正在丢弃所有的贮藏,一经操作,无法回退,是否继续? + + 编辑提交信息 + 提交: + 提交信息: + + 合并HEAD到上一个提交 + 当前提交 : + 合并到 : + 修改提交信息: + + 不跟踪更改的文件 + 移除 + 没有不跟踪更改的文件 + + 提交统计 + 本周 + 本月 + 本年 + 提交者人数 + 总计提交次数 + 提交者 + 提交次数 + + 快捷键 + 全局快捷键 + 新建页面 + 关闭当前页面 + 切换到下一个页面 + 取消弹出面板 + 仓库页面快捷键 + 显示历史记录 + 显示本地更改 + 显示贮藏列表 + 打开/关闭历史搜索 + 将选中的变更暂存或从暂存列表中移除 + 文本编辑器 + 打开搜索 + 定位到上一个匹配搜索的位置 + 定位到下一个匹配搜索的位置 + 关闭搜索 + + GIT尚未配置。请打开【偏好设置】配置GIT路径。 + 二进制文件不支持该操作!!! + 选中文件不支持该操作!!! + 补丁已成功保存! + \ No newline at end of file diff --git a/src/Resources/Locales/en_US.axaml b/src/Resources/Locales/en_US.axaml deleted file mode 100644 index 3812aad4..00000000 --- a/src/Resources/Locales/en_US.axaml +++ /dev/null @@ -1,494 +0,0 @@ - - START - OK - SAVE - CLOSE - CANCEL - Reveal in File Explorer - Save As ... - Save File to ... - Copy Path - Bytes - FILTER - Optional. - SELECT FOLDER - NOTICE - Open With ... - Running. Please wait ... - Warning - - Copy - Paste - Cut - - Refresh - - Name : - URL : - Git Repository URL - - SSH Private Key : - Private SSH key store path - - About - Copyright © 2024 sourcegit-scm. - • Build with - • TextEditor from - • Monospace fonts come from - - Patch - Apply Patch - Patch File : - Select .patch file to apply - Whitespace : - Ignore whitespace changes - No Warn - Turns off the trailing whitespace warning - Warn - Outputs warnings for a few such errors, but applies - Error - Raise errors and refuses to apply the patch - Error All - Similar to 'error', but shows more - - Archive ... - Archive - Revision : - Save Archive To : - Select archive file path - - Blame - - SUBMODULES - Add Submodule - Relative Path : - Relative folder to store this module. - Fetch nested submodules - Open Submodule Repository - Copy Relative Path - Delete Submodule - - Checkout Branch - Target : - - Cherry-Pick This Commit - Cherry Pick - Commit : - Commit all changes - - Clone Remote Repository - Repository URL : - Parent Folder : - Local Name : - Repository name. Optional. - Extra Parameters : - Additional arguments to clone repository. Optional. - - INFORMATION - AUTHOR - COMMITTER - SHA - PARENTS - REFS - MESSAGE - CHANGED - CHANGES - Search Files ... - FILES - LFS File - Submodule - Tag - Tree - - Configure - User Name - User name for this repository - Email Address - Email address - HTTP Proxy - HTTP proxy used by this repository - - Create Branch - Create Local Branch - Based On : - New Branch Name : - Enter branch name. - Local Changes : - Stash & Reapply - Discard - Check out after created - - Create Tag - New Tag At : - Tag Name : - Recommended format :v1.0.0-alpha - Tag Message : - Optional. - - Open In File Browser - Open In Visual Studio Code - Open In Git Bash - Refresh - Search Commit (Ctrl+F) - Search Author/Committer/Message/SHA - Statistics - Cleanup(GC & Prune) - Run `gc` command and do `lfs prune` if LFS is installed. - Configure this repository - WORKSPACE - LOCAL BRANCHES - NEW BRANCH - REMOTES - ADD REMOTE - TAGS - NEW TAG - SUBMODULES - ADD SUBMODULE - UPDATE SUBMODULE - RESOLVE - CONTINUE - ABORT - - GIT FLOW - Initialize Git-Flow - Production Branch : - Development Branch : - Feature : - Release : - Hotfix : - Feature Prefix : - Release Prefix : - Hotfix Prefix : - Version Tag Prefix : - Start Feature ... - Start Release ... - Start Hotfix ... - FLOW - Start Feature - FLOW - Start Release - FLOW - Start Hotfix - Enter name - FLOW - Finish Feature - FLOW - Finish Release - FLOW - Finish Hotfix - Target : - Keep branch - - Bookmark - Open - Explore in File Manager - - Push${0}$ - Discard all changes - Fast-Forward to${0}$ - Pull${0}$ - Pull${0}$into${1}$ - Checkout${0}$ - Merge${0}$into${1}$ - Rebase${0}$on${1}$ - Git Flow - Finish${0}$ - Rename${0}$ - Delete${0}$ - Tracking ... - Copy Branch Name - Unset Upstream - - Fetch ... - Prune - Target : - Edit ... - Delete ... - Copy URL - - Reset${0}$to Here - Rebase${0}$to Here - Cherry-Pick This Commit - Reword - Squash Into Parent - Revert Commit - Save as Patch ... - Copy SHA - - Push${0}$ - Delete${0}$ - Copy Tag Name - - Apply - Pop - Drop - - Unstage - Stage... - Discard... - Stash... - Unstage {0} files - Stage {0} files... - Discard {0} files... - Stash {0} files... - Save As Patch... - Assume unchanged - Stage Changes in Selected Line(s) - Discard Changes in Selected Line(s) - Unstage Changes in Selected Line(s) - - Delete Branch - Branch : - - Delete Remote - Remote : - - Delete Tag - Tag : - Delete from remote repositories - - Delete Submodule - Submodule Path : - - Next Difference - Previous Difference - Toggle One-Side/Two-Sides - Open With Merge Tool - SELECT FILE TO VIEW CHANGES - NO CHANGES OR ONLY EOL CHANGES - BINARY DIFF - OLD - NEW - LFS OBJECT CHANGE - Copy - - Discard Changes - Changes : - You can't undo this action!!! - All local changes in working copy. - Total {0} changes will be discard - - Fetch - Fetch Remote Changes - Remote : - Fetch all remotes - Prune remote dead branches - - Fast-Forward (without checkout) - - File History - - CHANGE DISPLAY MODE - Show as Grid - Show as List - Show as Tree - - Histories - SEARCH SHA/SUBJECT/AUTHOR. PRESS ENTER TO SEARCH, ESC TO QUIT - CLEAR - Switch Curve/Polyline Graph Mode - Switch Horizontal/Vertical Layout - SELECTED {0} COMMITS - - Initialize Repository - Path : - Invalid repository detected. Run `git init` under this path? - - Source Git - Open Main Menu - ERROR - NOTICE - - Create New Page (Ctrl+T) - Repositories - Close Tab - Close Other Tabs - Close Tabs to the Right - Bookmark - Copy Repository Path - - Merge Branch - Source Branch : - Into : - Merge Option : - - Open Repository - Open In Git Bash - Clone Repository - Edit - Create Group - Create Sub-Group - Delete - Search Repositories ... - Sort - DRAG & DROP FOLDER SUPPORTED - - Edit Selected Group - Edit Selected Repository - Target : - New Name : - Bookmark : - - Confirm Deleting Group - Confirm Deleting Repository - Target : - - Pull - Pull (Fetch & Merge) - Remote : - Branch : - Into : - Use rebase instead of merge - Stash & reapply local changes - - Push - Push Changes To Remote - Local Branch : - Remote : - Remote Branch : - Push all tags - Force push - - Push Tag To Remote - Tag : - Remote : - - Rebase Current Branch - Rebase : - On : - Stash & reapply local changes - - Add Remote - Edit Remote - Name : - Remote name - Repository URL : - Remote git repository URL - - Rename Branch - Branch : - New Name : - Unique name for this branch - - Reset Current Branch To Revision - Current Branch : - Move To : - Reset Mode : - - Revert Commit - Commit : - Commit revert changes - - Preference - GENERAL - Language - Avatar Server - Theme - History Commits - Restore windows - Use fixed tab width in titlebar - GIT - Install Path - Git version - Default Clone Dir - User Name - Global git user name - User Email - Global git user email - Enable Auto CRLF - Fetch remotes automatically - GPG SIGNING - Commit GPG signing - Install Path - Input path for installed gpg program - User Signing Key - User's gpg signing key - MERGE - Merger - Install Path - Input path for merge tool - Merge Command - Diff Command - - Stash - Stash Local Changes - Message : - Optional. Name of this stash - Include untracked files - - Stashes - STASHES - CHANGES - - Drop Stash - Drop : - - COMMIT : {0} -> {1} - - Changes - UNSTAGED - VIEW ASSUME UNCHANGED - STAGE - STAGE ALL - STAGED - UNSTAGE - UNSTAGE ALL - CONFLICTS DETECTED - USE THEIRS - USE MINE - OPEN MERGE - Enter commit message - MESSAGE HISTORIES - Amend - COMMIT - CTRL + Enter - COMMIT & PUSH - NO RECENT INPUT MESSAGES - RECENT INPUT MESSAGES - INCLUDE UNTRACKED FILES - - Conflict detected! Press 'Abort' to restore original HEAD - - Clear Stashes - You are trying to clear all stashes. Are you sure to continue? - - Reword Commit Message - On : - Message : - - Squash HEAD Into Parent - HEAD : - To : - Reword : - - FILES ASSUME UNCHANGED - REMOVE - NO FILES ASSUMED AS UNCHANGED - - Statistics - WEEK - MONTH - YEAR - Total Committers - Total Commits - COMMITTER - COMMITS - - HotKeys - GLOBAL - Create new page - Close current page - Go to next page - Cancel current popup - REPOSITORY - Switch to 'Histories' - Switch to 'Changes' - Switch to 'Stashes' - Toggle commit search - Stage/Unstage selected changes - TEXT EDITOR - Open search panel - Find previous match - Find next match - Close search panel - - Git has NOT been configured. Please to go [Preference] and configure it first. - BINARY FILE NOT SUPPORTED!!! - BLAME ON THIS FILE IS NOT SUPPORTED!!! - Patch has been saved successfully! - diff --git a/src/Resources/Locales/zh_CN.axaml b/src/Resources/Locales/zh_CN.axaml deleted file mode 100644 index 6ddad3de..00000000 --- a/src/Resources/Locales/zh_CN.axaml +++ /dev/null @@ -1,493 +0,0 @@ - - 开 始 - 确 定 - 保 存 - 关闭 - 取 消 - 在文件浏览器中查看 - 另存为... - 复制路径 - 字节 - 过滤 - 选填 - 选择文件夹 - 系统提示 - 打开文件... - 执行操作中,请耐心等待... - 警告 - - 复制 - 粘贴 - 剪切 - - 重新加载 - - 名称 : - 仓库地址 : - 远程仓库地址 - - SSH密钥 : - SSH密钥文件 - - 关于软件 - Copyright © 2024 sourcegit-scm. - • 使用的框架为 - • 文本编辑器使用 - • 等宽字体来自于 - - 补丁 - 应用补丁 - 补丁文件 : - 选择补丁文件 - 空白符号处理 : - 忽略空白符号 - 忽略 - 关闭所有警告 - 警告 - 应用补丁,输出关于空白符的警告 - 错误 - 输出错误,并终止应用补丁 - 更多错误 - 与【错误】级别相似,但输出内容更多 - - 存档 ... - 存档 - 指定的提交: - 存档文件路径: - 选择存档文件的存放路径 - - 逐行追溯 - - 子模块 - 添加子模块 - 相对仓库路径 : - 本地存放的相对路径 - 拉取子孙模块 - 打开仓库 - 复制路径 - 删除子模块 - - 检出分支 - 目标分支 : - - 挑选此提交 - 挑选提交 - 提交ID : - 提交变化 - - 克隆远程仓库 - 远程仓库 : - 父级目录 : - 本地仓库名 : - 本地仓库目录的名字,选填 - 额外参数 : - 其他克隆参数,选填 - - 基本信息 - 修改者 - 提交者 - 提交指纹 - 父提交 - 相关引用 - 提交信息 - 变更列表 - 变更对比 - 查找文件... - 文件列表 - LFS文件 - 子模块 - 标签文件 - 子树 - - 仓库配置 - 用户名 - 应用于本仓库的用户名 - 电子邮箱 - 邮箱地址 - HTTP代理 - HTTP网络代理 - - 新建分支 - 创建本地分支 - 新分支基于 : - 新分支名 : - 填写分支名称 - 未提交更改 : - 贮藏并自动恢复 - 忽略 - 完成后切换到新分支 - - 新建标签 - 标签位于 : - 标签名 : - 推荐格式 :v1.0.0-alpha - 标签描述 : - 选填 - - 在文件浏览器中打开 - 在Visual Studio Code中打开 - 在GIT终端中打开 - 重新加载 - 查找提交(Ctrl+F) - 支持搜索作者/提交者/主题/指纹 - 提交统计 - 清理本仓库(GC) - 本操作将执行`gc`,对于启用LFS的仓库也会执行`lfs prune` - 配置本仓库 - 工作区 - 本地分支 - 新建分支 - 远程列表 - 添加远程 - 标签列表 - 新建标签 - 子模块列表 - 添加子模块 - 更新子模块 - 解决冲突 - 下一步 - 终止冲突解决 - - GIT工作流 - 初始化GIT工作流 - 发布分支 : - 开发分支 : - 特性分支 : - 版本分支 : - 修复分支 : - 特性分支名前缀 : - 版本分支名前缀 : - 修复分支名前缀 : - 版本标签前缀 : - 开始特性分支... - 开始版本分支... - 开始修复分支... - 开始特性分支 - 开始版本分支 - 开始修复分支 - 输入分支名 - 结束特性分支 - 结束版本分支 - 结束修复分支 - 目标分支 : - 保留分支 - - 书签 - 打开 - 在浏览器中查看 - - 推送${0}$ - 放弃所有更改 - 快进到${0}$ - 拉回${0}$ - 拉回${0}$内容至${1}$ - 检出${0}$ - 合并${0}$到${1}$ - 变基${0}$分支至${1}$ - GIT工作流 - 完成${0}$ - 重命名${0}$ - 删除${0}$ - 切换上游分支... - 复制分支名 - 取消追踪 - - 拉取更新 ... - 清理远程已删除分支 - 目标 : - 编辑 ... - 删除 ... - 复制远程地址 - - 重置${0}$到此处 - 变基${0}$到此处 - 挑选此提交 - 编辑提交信息 - 合并此提交到上一个提交 - 回滚此提交 - 另存为补丁 ... - 复制提交指纹 - - 推送${0}$ - 删除${0}$ - 复制标签名 - - 应用 - 应用并删除 - 删除 - - 从暂存中移除 - 暂存... - 放弃更改... - 贮藏... - 从暂存中移除 {0} 个文件 - 暂存 {0} 个文件... - 放弃 {0} 个文件的更改... - 贮藏选中的 {0} 个文件... - 另存为补丁... - 不跟踪此文件的更改 - 暂存选中的更改 - 放弃选中的更改 - 从暂存中移除选中的更改 - - 确定要删除此分支吗? - 分支名 : - - 确定要移除该远程吗? - 远程名 : - - 确定要移除该标签吗? - 标签名 : - 同时删除远程仓库中的此标签 - - 确定要移除该子模块吗? - 子模块路径 : - - 下一个差异 - 上一个差异 - 切换显示模式 - 使用外部合并工具查看 - 请选择需要对比的文件 - 没有变更或仅有换行符差异 - 二进制文件 - 原始大小 - 当前大小 - LFS对象变更 - 复制 - - 放弃更改确认 - 需要放弃的变更 : - 本操作不支持回退,请确认后继续!!! - 所有本地址未提交的修改 - 总计{0}项选中更改 - - 拉取 - 拉取远程仓库内容 - 远程仓库 : - 拉取所有的远程仓库 - 自动清理远程已删除分支 - - 快进(无需Checkout) - - 文件历史 - - 切换变更显示模式 - 网格模式 - 列表模式 - 树形模式 - - 历史记录 - 查询提交指纹、信息、作者。回车键开始,ESC键取消 - 清空 - 切换曲线/折线显示 - 切换横向/纵向显示 - 已选中 {0} 项提交 - - 初始化新仓库 - 路径 : - 点击【确定】将在此目录执行`git init`操作 - - Source Git - 主菜单 - 出错了 - 系统提示 - - 新建空白页 (Ctrl+T) - 新标签页 - 关闭标签页 (Ctrl+W) - 关闭其他标签页 - 关闭右侧标签页 - 设置书签 - 复制仓库路径 - - 合并分支 - 合并分支 : - 目标分支 : - 合并方式 : - - 打开本地仓库 - 打开GIT终端 - 克隆远程仓库 - 编辑 - 新建分组 - 新建子分组 - 删除 - 快速查找仓库 - 排序 - 支持拖放目录添加 - - 编辑分组 - 编辑仓库 - 目标 : - 名称 : - 书签 : - - 删除分组确认 - 删除仓库确认 - 目标 : - - 拉回 - 拉回(拉取并合并) - 远程 : - 拉取分支 : - 本地分支 : - 使用变基方式合并分支 - 自动贮藏并恢复本地变更 - - 推送 - 推送到远程仓库 - 本地分支 : - 远程仓库 : - 远程分支 : - 同时推送标签 - 启用强制推送 - - 推送标签到远程仓库 - 标签 : - 远程仓库 : - - 变基操作 - 分支 : - 目标提交 : - 自动贮藏并恢复本地变更 - - 添加远程仓库 - 编辑远程仓库 - 远程名 : - 唯一远程名 - 仓库地址 : - 远程仓库的地址 - - 分支重命名 - 分支 : - 新的名称 : - 新的分支名不能与现有分支名相同 - - 重置当前分支到指定版本 - 当前分支 : - 提交 : - 重置模式 : - - 确定要回滚吗? - 目标提交 : - 回滚后提交更改 - - 偏好设置 - 通用配置 - 显示语言 - 头像服务 - 主题 - 最大历史提交数 - 启动时恢复上次打开的仓库 - 使用固定宽度的标题栏标签 - GIT配置 - 安装路径 - Git 版本 - 默认克隆路径 - 用户名 - 默认GIT用户名 - 邮箱 - 默认GIT用户邮箱 - 自动换行转换 - 启用定时自动拉取远程更新 - GPG签名 - 启用提交签名 - 可执行文件位置 - gpg.exe所在路径 - 用户签名KEY - 输入签名提交所使用的KEY - 外部合并工具 - 工具 - 安装路径 - 填写工具可执行文件所在位置 - 合并模式启动参数 - 对比模式启动参数 - - 贮藏 - 贮藏本地变更 - 信息 : - 选填,用于命名此贮藏 - 包含未跟踪的文件 - - 贮藏列表 - 贮藏列表 - 查看变更 - - 丢弃贮藏确认 - 丢弃贮藏 : - - 对比提交 : {0} -> {1} - - 本地更改 - 未暂存 - 查看忽略变更文件 - 暂存选中 - 暂存所有 - 已暂存 - 从暂存区移除选中 - 从暂存区移除所有 - 检测到冲突 - 使用THEIRS - 使用MINE - 打开合并工具 - 填写提交信息 - 历史提交信息 - 修补 - 提交 - CTRL + Enter - 提交并推送 - 没有提交信息记录 - 最近输入的提交信息 - 显示未跟踪文件 - - 检测到本地冲突! - - 丢弃贮藏确认 - 您正在丢弃所有的贮藏,一经操作,无法回退,是否继续? - - 编辑提交信息 - 提交: - 提交信息: - - 合并HEAD到上一个提交 - 当前提交 : - 合并到 : - 修改提交信息: - - 不跟踪更改的文件 - 移除 - 没有不跟踪更改的文件 - - 提交统计 - 本周 - 本月 - 本年 - 提交者人数 - 总计提交次数 - 提交者 - 提交次数 - - 快捷键 - 全局快捷键 - 新建页面 - 关闭当前页面 - 切换到下一个页面 - 取消弹出面板 - 仓库页面快捷键 - 显示历史记录 - 显示本地更改 - 显示贮藏列表 - 打开/关闭历史搜索 - 将选中的变更暂存或从暂存列表中移除 - 文本编辑器 - 打开搜索 - 定位到上一个匹配搜索的位置 - 定位到下一个匹配搜索的位置 - 关闭搜索 - - GIT尚未配置。请打开【偏好设置】配置GIT路径。 - 二进制文件不支持该操作!!! - 选中文件不支持该操作!!! - 补丁已成功保存! - diff --git a/src/SourceGit.csproj b/src/SourceGit.csproj index 8593399d..852365b6 100644 --- a/src/SourceGit.csproj +++ b/src/SourceGit.csproj @@ -46,4 +46,12 @@ + + + + ResXFileCodeGenerator + Resources.resx + + +