diff --git a/build/build.linux.sh b/build/build.linux.sh
index 6e2c302b..60db33e8 100644
--- a/build/build.linux.sh
+++ b/build/build.linux.sh
@@ -4,5 +4,5 @@ rm -rf SourceGit
dotnet publish ../src/SourceGit.csproj -c Release -r linux-x64 -o SourceGit -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
cp resources/SourceGit.desktop.template SourceGit/SourceGit.desktop.template
cp resources/App.icns SourceGit/SourceGit.icns
-tar -zcvf SourceGit.linux-x64.tar.gz --exclude="*/en" --exclude="*/zh" --exclude="*/*.dbg" SourceGit
+tar -zcvf SourceGit.linux-x64.tar.gz --exclude="*/*.dbg" SourceGit
rm -rf SourceGit
diff --git a/build/build.osx.command b/build/build.osx.command
index 99f90429..2d4127c1 100644
--- a/build/build.osx.command
+++ b/build/build.osx.command
@@ -8,10 +8,10 @@ cp resources/App.icns SourceGit.app/Contents/Resources/App.icns
mkdir -p SourceGit.app/Contents/MacOS
dotnet publish ../src/SourceGit.csproj -c Release -r osx-arm64 -o SourceGit.app/Contents/MacOS -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
-zip SourceGit.osx-arm64.zip -r SourceGit.app -x "*/en/*" -x "*/zh/*" -x "*/*\.dsym/*"
+zip SourceGit.osx-arm64.zip -r SourceGit.app -x "*/*\.dsym/*"
rm -rf SourceGit.app/Contents/MacOS
mkdir -p SourceGit.app/Contents/MacOS
dotnet publish ../src/SourceGit.csproj -c Release -r osx-x64 -o SourceGit.app/Contents/MacOS -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
-zip SourceGit.osx-x64.zip -r SourceGit.app -x "*/en/*" -x "*/zh/*" -x "*/*\.dsym/*"
+zip SourceGit.osx-x64.zip -r SourceGit.app -x "*/*\.dsym/*"
diff --git a/build/build.windows.ps1 b/build/build.windows.ps1
index 95962f7a..e18e58e8 100644
--- a/build/build.windows.ps1
+++ b/build/build.windows.ps1
@@ -9,7 +9,5 @@ if (Test-Path SourceGit.win-x64.zip) {
dotnet publish ..\src\SourceGit.csproj -c Release -r win-x64 -o SourceGit -p:PublishAot=true -p:PublishTrimmed=true -p:TrimMode=link --self-contained
Remove-Item SourceGit\*.pdb -Force
-Remove-Item SourceGit\zh -Recurse -Force
-Remove-Item SourceGit\en -Recurse -Force
Compress-Archive -Path SourceGit -DestinationPath SourceGit.win-x64.zip
diff --git a/src/App.axaml b/src/App.axaml
index c5a2cd28..768ff267 100644
--- a/src/App.axaml
+++ b/src/App.axaml
@@ -9,6 +9,9 @@
+
+
+
@@ -18,4 +21,4 @@
-
\ No newline at end of file
+
diff --git a/src/App.axaml.cs b/src/App.axaml.cs
index 4b7c142e..c9aa6a4d 100644
--- a/src/App.axaml.cs
+++ b/src/App.axaml.cs
@@ -1,6 +1,4 @@
using System;
-using System.Collections;
-using System.Globalization;
using System.IO;
using System.Net.Http;
using System.Reflection;
@@ -90,18 +88,10 @@ namespace SourceGit
public static void SetLocale(string localeKey)
{
var app = Current as App;
- var rd = new ResourceDictionary();
-
- var culture = CultureInfo.GetCultureInfo(localeKey.Replace("_", "-"));
- SourceGit.Resources.Locales.Culture = culture;
-
- var sets = SourceGit.Resources.Locales.ResourceManager.GetResourceSet(culture, true, true);
- foreach (var obj in sets)
+ var targetLocale = app.Resources[localeKey] as ResourceDictionary;
+ if (targetLocale == null || targetLocale == app._activeLocale)
{
- if (obj is DictionaryEntry entry)
- {
- rd.Add(entry.Key, entry.Value);
- }
+ return;
}
if (app._activeLocale != null)
@@ -109,8 +99,8 @@ namespace SourceGit
app.Resources.MergedDictionaries.Remove(app._activeLocale);
}
- app.Resources.MergedDictionaries.Add(rd);
- app._activeLocale = rd;
+ app.Resources.MergedDictionaries.Add(targetLocale);
+ app._activeLocale = targetLocale;
}
public static void SetTheme(string theme)
diff --git a/src/Resources/Locales.Designer.cs b/src/Resources/Locales.Designer.cs
deleted file mode 100644
index 1fc9dfd0..00000000
--- a/src/Resources/Locales.Designer.cs
+++ /dev/null
@@ -1,4032 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace SourceGit.Resources {
- 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", "17.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- public class Locales {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Locales() {
- }
-
- ///
- /// 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.Resources.Locales", typeof(Locales).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 • Source code can be found at .
- ///
- public static string Text_About_SourceCode {
- get {
- return ResourceManager.GetString("Text.About.SourceCode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Opensource & Free Git GUI Client.
- ///
- public static string Text_About_SubTitle {
- get {
- return ResourceManager.GetString("Text.About.SubTitle", 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 Repository 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 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 Cut.
- ///
- public static string Text_Cut {
- get {
- return ResourceManager.GetString("Text.Cut", 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 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 Toggle Side-By-Side Diff.
- ///
- public static string Text_Diff_SideBySide {
- get {
- return ResourceManager.GetString("Text.Diff.SideBySide", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Syntax Highlighting.
- ///
- public static string Text_Diff_SyntaxHighlight {
- get {
- return ResourceManager.GetString("Text.Diff.SyntaxHighlight", 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 Cherry-Pick in progress. Press 'Abort' to restore original HEAD..
- ///
- public static string Text_InProgress_CherryPick {
- get {
- return ResourceManager.GetString("Text.InProgress.CherryPick", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Merge request in progress. Press 'Abort' to restore original HEAD..
- ///
- public static string Text_InProgress_Merge {
- get {
- return ResourceManager.GetString("Text.InProgress.Merge", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Rebase in progress. Press 'Abort' to restore original HEAD..
- ///
- public static string Text_InProgress_Rebase {
- get {
- return ResourceManager.GetString("Text.InProgress.Rebase", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Revert in progress. Press 'Abort' to restore original HEAD..
- ///
- public static string Text_InProgress_Revert {
- get {
- return ResourceManager.GetString("Text.InProgress.Revert", 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 Appearance.
- ///
- public static string Text_Preference_Appearance {
- get {
- return ResourceManager.GetString("Text.Preference.Appearance", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Default FontFamily.
- ///
- public static string Text_Preference_Appearance_DefaultFont {
- get {
- return ResourceManager.GetString("Text.Preference.Appearance.DefaultFont", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Default Font Size.
- ///
- public static string Text_Preference_Appearance_DefaultFontSize {
- get {
- return ResourceManager.GetString("Text.Preference.Appearance.DefaultFontSize", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Monospace FontFamily.
- ///
- public static string Text_Preference_Appearance_MonospaceFont {
- get {
- return ResourceManager.GetString("Text.Preference.Appearance.MonospaceFont", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Theme.
- ///
- public static string Text_Preference_Appearance_Theme {
- get {
- return ResourceManager.GetString("Text.Preference.Appearance.Theme", 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 Check for updates on startup.
- ///
- public static string Text_Preference_General_Check4UpdatesOnStartup {
- get {
- return ResourceManager.GetString("Text.Preference.General.Check4UpdatesOnStartup", 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 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 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 Navigate To HEAD.
- ///
- public static string Text_Repository_NavigateToCurrentHead {
- get {
- return ResourceManager.GetString("Text.Repository.NavigateToCurrentHead", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Create Branch.
- ///
- public static string Text_Repository_NewBranch {
- get {
- return ResourceManager.GetString("Text.Repository.NewBranch", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open In {0}.
- ///
- public static string Text_Repository_OpenIn {
- get {
- return ResourceManager.GetString("Text.Repository.OpenIn", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open In External Tools.
- ///
- public static string Text_Repository_OpenWithExternalTools {
- get {
- return ResourceManager.GetString("Text.Repository.OpenWithExternalTools", 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 Terminal.
- ///
- public static string Text_Repository_Terminal {
- get {
- return ResourceManager.GetString("Text.Repository.Terminal", 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 Check for Updates ....
- ///
- public static string Text_SelfUpdate {
- get {
- return ResourceManager.GetString("Text.SelfUpdate", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New version of this software is available: .
- ///
- public static string Text_SelfUpdate_Available {
- get {
- return ResourceManager.GetString("Text.SelfUpdate.Available", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check for updates failed!.
- ///
- public static string Text_SelfUpdate_Error {
- get {
- return ResourceManager.GetString("Text.SelfUpdate.Error", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Download.
- ///
- public static string Text_SelfUpdate_GotoDownload {
- get {
- return ResourceManager.GetString("Text.SelfUpdate.GotoDownload", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Skip This Version.
- ///
- public static string Text_SelfUpdate_IgnoreThisVersion {
- get {
- return ResourceManager.GetString("Text.SelfUpdate.IgnoreThisVersion", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Software Update.
- ///
- public static string Text_SelfUpdate_Title {
- get {
- return ResourceManager.GetString("Text.SelfUpdate.Title", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to There are currently no updates available..
- ///
- public static string Text_SelfUpdate_UpToDate {
- get {
- return ResourceManager.GetString("Text.SelfUpdate.UpToDate", 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 COMMITS: .
- ///
- public static string Text_Statistics_TotalCommits {
- get {
- return ResourceManager.GetString("Text.Statistics.TotalCommits", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to 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. CUSTOM GROUPING 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 Terminal.
- ///
- 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/Resources/Locales.en.resx b/src/Resources/Locales.en.resx
deleted file mode 100644
index 4f2b0263..00000000
--- a/src/Resources/Locales.en.resx
+++ /dev/null
@@ -1,1341 +0,0 @@
-
-
-
-
-
-
- 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 ...
-
-
- 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
-
-
- Repository 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 {0}
-
-
- Open In Terminal
-
-
- 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
-
-
- Create 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
-
-
- 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
-
-
- Side-By-Side Diff
-
-
- 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 Terminal
-
-
- Clone Repository
-
-
- Edit
-
-
- Create Group
-
-
- Create Sub-Group
-
-
- Delete
-
-
- Search Repositories ...
-
-
- Sort
-
-
- DRAG & DROP FOLDER SUPPORTED. CUSTOM GROUPING 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
-
-
- 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
-
-
- COMMITTERS:
-
-
- 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!
-
-
- Cut
-
-
- Syntax Highlighting
-
-
- Default FontFamily
-
-
- Monospace FontFamily
-
-
- Default Font Size
-
-
- APPEARANCE
-
-
- Open In External Tools
-
-
- Software Update
-
-
- Check for updates failed!
-
-
- New version of this software is available:
-
-
- Download
-
-
- Skip This Version
-
-
- Check for Updates ...
-
-
- There are currently no updates available.
-
-
- Check for updates on startup
-
-
- Opensource & Free Git GUI Client
-
-
- • Source code can be found at
-
-
- Cherry-Pick in progress. Press 'Abort' to restore original HEAD.
-
-
- Rebase in progress. Press 'Abort' to restore original HEAD.
-
-
- Revert in progress. Press 'Abort' to restore original HEAD.
-
-
- Merge request in progress. Press 'Abort' to restore original HEAD.
-
-
- Navigate To HEAD
-
-
\ No newline at end of file
diff --git a/src/Resources/Locales.resx b/src/Resources/Locales.resx
deleted file mode 100644
index 970752ab..00000000
--- a/src/Resources/Locales.resx
+++ /dev/null
@@ -1,1341 +0,0 @@
-
-
-
-
-
-
- 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 ...
-
-
- 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
-
-
- Repository 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 {0}
-
-
- Open In Terminal
-
-
- 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
-
-
- Create 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
-
-
- 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 Side-By-Side Diff
-
-
- 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 Terminal
-
-
- Clone Repository
-
-
- Edit
-
-
- Create Group
-
-
- Create Sub-Group
-
-
- Delete
-
-
- Search Repositories ...
-
-
- Sort
-
-
- DRAG & DROP FOLDER SUPPORTED. CUSTOM GROUPING 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
-
-
- 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
-
-
- COMMITTERS:
-
-
- 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!
-
-
- Cut
-
-
- Syntax Highlighting
-
-
- Default FontFamily
-
-
- Monospace FontFamily
-
-
- Default Font Size
-
-
- Appearance
-
-
- Open In External Tools
-
-
- Software Update
-
-
- Check for updates failed!
-
-
- New version of this software is available:
-
-
- Download
-
-
- Skip This Version
-
-
- Check for Updates ...
-
-
- There are currently no updates available.
-
-
- Check for updates on startup
-
-
- Opensource & Free Git GUI Client
-
-
- • Source code can be found at
-
-
- Cherry-Pick in progress. Press 'Abort' to restore original HEAD.
-
-
- Rebase in progress. Press 'Abort' to restore original HEAD.
-
-
- Revert in progress. Press 'Abort' to restore original HEAD.
-
-
- Merge request in progress. Press 'Abort' to restore original HEAD.
-
-
- Navigate To HEAD
-
-
\ No newline at end of file
diff --git a/src/Resources/Locales.zh.resx b/src/Resources/Locales.zh.resx
deleted file mode 100644
index 939e99db..00000000
--- a/src/Resources/Locales.zh.resx
+++ /dev/null
@@ -1,1341 +0,0 @@
-
-
-
-
-
-
- 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.
-
-
- • 项目依赖于
-
-
- • 文本编辑器使用
-
-
- • 等宽字体来自于
-
-
- 应用补丁(apply)
-
-
- 应用补丁
-
-
- 补丁文件 :
-
-
- 选择补丁文件
-
-
- 空白符号处理 :
-
-
- 忽略空白符号
-
-
- 忽略
-
-
- 关闭所有警告
-
-
- 警告
-
-
- 应用补丁,输出关于空白符的警告
-
-
- 错误
-
-
- 输出错误,并终止应用补丁
-
-
- 更多错误
-
-
- 与【错误】级别相似,但输出内容更多
-
-
- 存档(archive) ...
-
-
- 存档
-
-
- 指定的提交:
-
-
- 存档文件路径:
-
-
- 选择存档文件的存放路径
-
-
- 逐行追溯(blame)
-
-
- 子模块
-
-
- 添加子模块
-
-
- 相对仓库路径 :
-
-
- 本地存放的相对路径。
-
-
- 拉取子孙模块
-
-
- 打开仓库
-
-
- 复制路径
-
-
- 删除子模块
-
-
- 检出(checkout)分支
-
-
- 目标分支 :
-
-
- 挑选(cherry-pick)此提交
-
-
- 挑选提交
-
-
- 提交ID :
-
-
- 提交变化
-
-
- 克隆远程仓库
-
-
- 远程仓库 :
-
-
- 父级目录 :
-
-
- 本地仓库名 :
-
-
- 本地仓库目录的名字,选填。
-
-
- 额外参数 :
-
-
- 其他克隆参数,选填。
-
-
- 基本信息
-
-
- 修改者
-
-
- 提交者
-
-
- 提交指纹
-
-
- 父提交
-
-
- 相关引用
-
-
- 提交信息
-
-
- 变更列表
-
-
- 变更对比
-
-
- 查找文件...
-
-
- 文件列表
-
-
- LFS文件
-
-
- 子模块
-
-
- 标签文件
-
-
- 子树
-
-
- 仓库配置
-
-
- 用户名
-
-
- 应用于本仓库的用户名
-
-
- 电子邮箱
-
-
- 邮箱地址
-
-
- HTTP代理
-
-
- HTTP网络代理
-
-
- 新建分支
-
-
- 创建本地分支
-
-
- 新分支基于 :
-
-
- 新分支名 :
-
-
- 填写分支名称。
-
-
- 未提交更改 :
-
-
- 贮藏(stash)并自动恢复
-
-
- 忽略
-
-
- 完成后切换到新分支
-
-
- 新建标签
-
-
- 标签位于 :
-
-
- 标签名 :
-
-
- 推荐格式 :v1.0.0-alpha
-
-
- 标签描述 :
-
-
- 选填。
-
-
- 在文件浏览器中打开
-
-
- 在 {0} 中打开
-
-
- 在终端中打开
-
-
- 重新加载
-
-
- 查找提交(Ctrl+F)
-
-
- 支持搜索作者/提交者/主题/指纹
-
-
- 提交统计
-
-
- 清理本仓库(GC)
-
-
- 本操作将执行`gc`,对于启用LFS的仓库也会执行`lfs prune`。
-
-
- 配置本仓库
-
-
- 工作区
-
-
- 本地分支
-
-
- 新建分支
-
-
- 远程列表
-
-
- 添加远程
-
-
- 标签列表
-
-
- 新建标签
-
-
- 子模块列表
-
-
- 添加子模块
-
-
- 更新子模块
-
-
- 解决冲突
-
-
- 下一步
-
-
- 终止合并
-
-
- GIT工作流
-
-
- 初始化GIT工作流
-
-
- 发布分支 :
-
-
- 开发分支 :
-
-
- 特性分支 :
-
-
- 版本分支 :
-
-
- 修复分支 :
-
-
- 特性分支名前缀 :
-
-
- 版本分支名前缀 :
-
-
- 修复分支名前缀 :
-
-
- 版本标签前缀 :
-
-
- 开始特性分支...
-
-
- 开始版本分支...
-
-
- 开始修复分支...
-
-
- 开始特性分支
-
-
- 开始版本分支
-
-
- 开始修复分支
-
-
- 输入分支名
-
-
- 结束特性分支
-
-
- 结束版本分支
-
-
- 结束修复分支
-
-
- 目标分支 :
-
-
- 保留分支
-
-
- 推送(push)${0}$
-
-
- 放弃所有更改
-
-
- 快进(fast-forward)到${0}$
-
-
- 拉回(pull)${0}$
-
-
- 拉回(pull)${0}$内容至${1}$
-
-
- 检出(checkout)${0}$
-
-
- 合并${0}$到${1}$
-
-
- 变基(rebase)${0}$分支至${1}$
-
-
- GIT工作流 - 完成${0}$
-
-
- 重命名${0}$
-
-
- 删除${0}$
-
-
- 切换上游分支...
-
-
- 复制分支名
-
-
- 取消追踪
-
-
- 拉取(fetch)更新 ...
-
-
- 清理远程已删除分支
-
-
- 目标 :
-
-
- 编辑 ...
-
-
- 删除 ...
-
-
- 复制远程地址
-
-
- 重置(reset)${0}$到此处
-
-
- 变基(rebase)${0}$到此处
-
-
- 挑选(cherry-pick)此提交
-
-
- 编辑提交信息
-
-
- 合并此提交到上一个提交
-
-
- 回滚此提交
-
-
- 另存为补丁 ...
-
-
- 复制提交指纹
-
-
- 推送${0}$
-
-
- 删除${0}$
-
-
- 复制标签名
-
-
- 应用(apply)
-
-
- 应用并删除(pop)
-
-
- 删除(drop)
-
-
- 从暂存中移除
-
-
- 暂存(add)...
-
-
- 放弃更改...
-
-
- 贮藏(stash)...
-
-
- 从暂存中移除 {0} 个文件
-
-
- 暂存(add){0} 个文件...
-
-
- 放弃 {0} 个文件的更改...
-
-
- 贮藏(stash)选中的 {0} 个文件...
-
-
- 另存为补丁...
-
-
- 不跟踪此文件的更改
-
-
- 暂存选中的更改
-
-
- 放弃选中的更改
-
-
- 从暂存中移除选中的更改
-
-
- 删除分支确认
-
-
- 分支名 :
-
-
- 删除远程确认
-
-
- 远程名 :
-
-
- 删除标签确认
-
-
- 标签名 :
-
-
- 同时删除远程仓库中的此标签
-
-
- 删除子模块确认
-
-
- 子模块路径 :
-
-
- 下一个差异
-
-
- 上一个差异
-
-
- 分列对比
-
-
- 使用外部合并工具查看
-
-
- 请选择需要对比的文件
-
-
- 没有变更或仅有换行符差异
-
-
- 二进制文件
-
-
- 原始大小
-
-
- 当前大小
-
-
- LFS对象变更
-
-
- 复制
-
-
- 放弃更改确认
-
-
- 需要放弃的变更 :
-
-
- 本操作不支持回退,请确认后继续!!!
-
-
- 所有本地址未提交的修改。
-
-
- 总计{0}项选中更改
-
-
- 拉取(fetch)
-
-
- 拉取远程仓库内容
-
-
- 远程仓库 :
-
-
- 拉取所有的远程仓库
-
-
- 自动清理远程已删除分支
-
-
- 快进(fast-forward,无需checkout)
-
-
- 文件历史
-
-
- 切换变更显示模式
-
-
- 网格模式
-
-
- 列表模式
-
-
- 树形模式
-
-
- 历史记录
-
-
- 查询提交指纹、信息、作者。回车键开始,ESC键取消
-
-
- 清空
-
-
- 切换曲线/折线显示
-
-
- 切换横向/纵向显示
-
-
- 已选中 {0} 项提交
-
-
- 初始化新仓库
-
-
- 路径 :
-
-
- 选择目录不是有效的Git仓库。是否需要在此目录执行`git init`操作?
-
-
- Source Git
-
-
- 主菜单
-
-
- 出错了
-
-
- 系统提示
-
-
- 新建空白页 (Ctrl+T)
-
-
- 新标签页
-
-
- 关闭标签页 (Ctrl+W)
-
-
- 关闭其他标签页
-
-
- 关闭右侧标签页
-
-
- 设置书签
-
-
- 复制仓库路径
-
-
- 合并分支
-
-
- 合并分支 :
-
-
- 目标分支 :
-
-
- 合并方式 :
-
-
- 打开本地仓库
-
-
- 打开终端
-
-
- 克隆远程仓库
-
-
- 编辑
-
-
- 新建分组
-
-
- 新建子分组
-
-
- 删除
-
-
- 快速查找仓库...
-
-
- 排序
-
-
- 支持拖放目录添加。支持自定义分组。
-
-
- 编辑分组
-
-
- 编辑仓库
-
-
- 目标 :
-
-
- 名称 :
-
-
- 书签 :
-
-
- 删除分组确认
-
-
- 删除仓库确认
-
-
- 目标 :
-
-
- 拉回(pull)
-
-
- 拉回(拉取并合并)
-
-
- 远程 :
-
-
- 拉取分支 :
-
-
- 本地分支 :
-
-
- 使用变基方式合并分支
-
-
- 自动贮藏并恢复本地变更
-
-
- 推送(push)
-
-
- 推送到远程仓库
-
-
- 本地分支 :
-
-
- 远程仓库 :
-
-
- 远程分支 :
-
-
- 同时推送标签
-
-
- 启用强制推送
-
-
- 推送标签到远程仓库
-
-
- 标签 :
-
-
- 远程仓库 :
-
-
- 变基(rebase)操作
-
-
- 分支 :
-
-
- 目标提交 :
-
-
- 自动贮藏并恢复本地变更
-
-
- 添加远程仓库
-
-
- 编辑远程仓库
-
-
- 远程名 :
-
-
- 唯一远程名
-
-
- 仓库地址 :
-
-
- 远程仓库的地址
-
-
- 分支重命名
-
-
- 分支 :
-
-
- 新的名称 :
-
-
- 新的分支名不能与现有分支名相同
-
-
- 重置(reset)当前分支到指定版本
-
-
- 当前分支 :
-
-
- 提交 :
-
-
- 重置模式 :
-
-
- 回滚操作确认
-
-
- 目标提交 :
-
-
- 回滚后提交更改
-
-
- 偏好设置
-
-
- 通用配置
-
-
- 显示语言
-
-
- 头像服务
-
-
- 主题
-
-
- 最大历史提交数
-
-
- 启动时恢复上次打开的仓库
-
-
- 使用固定宽度的标题栏标签
-
-
- GIT配置
-
-
- 安装路径
-
-
- Git 版本
-
-
- 默认克隆路径
-
-
- 用户名
-
-
- 默认GIT用户名
-
-
- 邮箱
-
-
- 默认GIT用户邮箱
-
-
- 自动换行转换
-
-
- 启用定时自动拉取远程更新
-
-
- GPG签名
-
-
- 启用提交签名
-
-
- 可执行文件位置
-
-
- gpg.exe所在路径
-
-
- 用户签名KEY
-
-
- 输入签名提交所使用的KEY
-
-
- 外部合并工具
-
-
- 工具
-
-
- 安装路径
-
-
- 填写工具可执行文件所在位置
-
-
- 合并模式启动参数
-
-
- 对比模式启动参数
-
-
- 贮藏(stash)
-
-
- 贮藏本地变更
-
-
- 信息 :
-
-
- 选填,用于命名此贮藏
-
-
- 包含未跟踪的文件
-
-
- 贮藏列表
-
-
- 贮藏列表
-
-
- 查看变更
-
-
- 丢弃贮藏确认
-
-
- 丢弃贮藏 :
-
-
- 对比提交 : {0} -> {1}
-
-
- 本地更改
-
-
- 未暂存
-
-
- 查看忽略变更文件
-
-
- 暂存选中
-
-
- 暂存所有
-
-
- 已暂存
-
-
- 从暂存区移除选中
-
-
- 从暂存区移除所有
-
-
- 检测到冲突
-
-
- 使用THEIRS
-
-
- 使用MINE
-
-
- 打开合并工具
-
-
- 填写提交信息
-
-
- 历史提交信息
-
-
- 修补(--amend)
-
-
- 提交
-
-
- CTRL + Enter
-
-
- 提交并推送
-
-
- 没有提交信息记录
-
-
- 最近输入的提交信息
-
-
- 显示未跟踪文件
-
-
- 丢弃贮藏确认
-
-
- 您正在丢弃所有的贮藏,一经操作,无法回退,是否继续?
-
-
- 编辑提交信息
-
-
- 提交:
-
-
- 提交信息:
-
-
- 合并HEAD到上一个提交
-
-
- 当前提交 :
-
-
- 合并到 :
-
-
- 修改提交信息:
-
-
- 不跟踪更改的文件
-
-
- 移除
-
-
- 没有不跟踪更改的文件
-
-
- 提交统计
-
-
- 本周
-
-
- 本月
-
-
- 本年
-
-
- 提交者:
-
-
- 提交次数:
-
-
- 提交者
-
-
- 提交次数
-
-
- 快捷键
-
-
- 全局快捷键
-
-
- 新建页面
-
-
- 关闭当前页面
-
-
- 切换到下一个页面
-
-
- 取消弹出面板
-
-
- 仓库页面快捷键
-
-
- 显示历史记录
-
-
- 显示本地更改
-
-
- 显示贮藏列表
-
-
- 打开/关闭历史搜索
-
-
- 将选中的变更暂存或从暂存列表中移除
-
-
- 文本编辑器
-
-
- 打开搜索
-
-
- 定位到上一个匹配搜索的位置
-
-
- 定位到下一个匹配搜索的位置
-
-
- 关闭搜索
-
-
- GIT尚未配置。请打开【偏好设置】配置GIT路径。
-
-
- 二进制文件不支持该操作!!!
-
-
- 选中文件不支持该操作!!!
-
-
- 补丁已成功保存!
-
-
- 剪切
-
-
- 语法高亮
-
-
- 缺省字体
-
-
- 等宽字体
-
-
- 默认字体大小
-
-
- 外观配置
-
-
- 软件更新
-
-
- 获取最新版本信息失败!
-
-
- 检测到软件有版本更新:
-
-
- 下 载
-
-
- 忽略此版本
-
-
- 检测更新...
-
-
- 当前已是最新版本。
-
-
- 启动时检测软件更新
-
-
- 开源免费的Git客户端
-
-
- 使用外部工具打开
-
-
- • 项目源代码地址
-
-
- 挑选(Cherry-Pick)操作进行中。点击【终止】回滚到操作前的状态。
-
-
- 变基(Rebase)操作进行中。点击【终止】回滚到操作前的状态。
-
-
- 回滚提交操作进行中。点击【终止】回滚到操作前的状态。
-
-
- 合并操作进行中。点击【终止】回滚到操作前的状态。
-
-
- 定位HEAD
-
-
\ No newline at end of file
diff --git a/src/Resources/Locales/en_US.axaml b/src/Resources/Locales/en_US.axaml
new file mode 100644
index 00000000..62fe957c
--- /dev/null
+++ b/src/Resources/Locales/en_US.axaml
@@ -0,0 +1,442 @@
+
+ About
+ • Build with
+ Copyright © 2024 sourcegit-scm.
+ • TextEditor from
+ • Monospace fonts come from
+ • Source code can be found at
+ Opensource & Free Git GUI Client
+ Patch
+ Error
+ Raise errors and refuses to apply the patch
+ Error All
+ Similar to 'error', but shows more
+ Patch File :
+ Select .patch file to apply
+ Ignore whitespace changes
+ No Warn
+ Turns off the trailing whitespace warning
+ Apply Patch
+ Warn
+ Outputs warnings for a few such errors, but applies
+ Whitespace :
+ Archive ...
+ Save Archive To :
+ Select archive file path
+ Revision :
+ Archive
+ FILES ASSUME UNCHANGED
+ NO FILES ASSUMED AS UNCHANGED
+ REMOVE
+ BINARY FILE NOT SUPPORTED!!!
+ Blame
+ BLAME ON THIS FILE IS NOT SUPPORTED!!!
+ Checkout${0}$
+ Copy Branch Name
+ Delete${0}$
+ Discard all changes
+ Fast-Forward to${0}$
+ Git Flow - Finish${0}$
+ Merge${0}$into${1}$
+ Pull${0}$
+ Pull${0}$into${1}$
+ Push${0}$
+ Rebase${0}$on${1}$
+ Rename${0}$
+ Tracking ...
+ Unset Upstream
+ Bytes
+ CANCEL
+ CHANGE DISPLAY MODE
+ Show as Grid
+ Show as List
+ Show as Tree
+ Checkout Branch
+ Target :
+ Cherry-Pick This Commit
+ Commit :
+ Commit all changes
+ Cherry Pick
+ Clear Stashes
+ You are trying to clear all stashes. Are you sure to continue?
+ Clone Remote Repository
+ Extra Parameters :
+ Additional arguments to clone repository. Optional.
+ Local Name :
+ Repository name. Optional.
+ Parent Folder :
+ Repository URL :
+ CLOSE
+ Cherry-Pick This Commit
+ Copy SHA
+ Rebase${0}$to Here
+ Reset${0}$to Here
+ Revert Commit
+ Reword
+ Save as Patch ...
+ Squash Into Parent
+ CHANGES
+ Search Files ...
+ FILES
+ LFS File
+ Submodule
+ Tag
+ Tree
+ INFORMATION
+ AUTHOR
+ CHANGED
+ COMMITTER
+ MESSAGE
+ PARENTS
+ REFS
+ SHA
+ Repository Configure
+ Email Address
+ Email address
+ HTTP Proxy
+ HTTP proxy used by this repository
+ User Name
+ User name for this repository
+ Copy
+ Copy Path
+ Create Branch
+ Based On :
+ Check out after created
+ Local Changes :
+ Discard
+ Stash & Reapply
+ New Branch Name :
+ Enter branch name.
+ Create Local Branch
+ Create Tag
+ New Tag At :
+ Tag Message :
+ Optional.
+ Tag Name :
+ Recommended format :v1.0.0-alpha
+ Cut
+ Delete Branch
+ Branch :
+ Delete Remote
+ Remote :
+ Target :
+ Confirm Deleting Group
+ Confirm Deleting Repository
+ Delete Submodule
+ Submodule Path :
+ Delete Tag
+ Tag :
+ Delete from remote repositories
+ BINARY DIFF
+ NEW
+ OLD
+ Copy
+ LFS OBJECT CHANGE
+ Next Difference
+ NO CHANGES OR ONLY EOL CHANGES
+ Previous Difference
+ Side-By-Side Diff
+ Syntax Highlighting
+ Open With Merge Tool
+ SELECT FILE TO VIEW CHANGES
+ Discard Changes
+ All local changes in working copy.
+ Changes :
+ Total {0} changes will be discard
+ You can't undo this action!!!
+ Bookmark :
+ New Name :
+ Target :
+ Edit Selected Group
+ Edit Selected Repository
+ Fast-Forward (without checkout)
+ Fetch
+ Fetch all remotes
+ Prune remote dead branches
+ Remote :
+ Fetch Remote Changes
+ Assume unchanged
+ Discard...
+ Discard {0} files...
+ Discard Changes in Selected Line(s)
+ Save As Patch...
+ Stage...
+ Stage {0} files...
+ Stage Changes in Selected Line(s)
+ Stash...
+ Stash {0} files...
+ Unstage
+ Unstage {0} files
+ Unstage Changes in Selected Line(s)
+ File History
+ FILTER
+ Git-Flow
+ Development Branch :
+ Feature :
+ Feature Prefix :
+ FLOW - Finish Feature
+ FLOW - Finish Hotfix
+ FLOW - Finish Release
+ Target :
+ Hotfix :
+ Hotfix Prefix :
+ Initialize Git-Flow
+ Keep branch
+ Production Branch :
+ Release :
+ Release Prefix :
+ Start Feature ...
+ FLOW - Start Feature
+ Start Hotfix ...
+ FLOW - Start Hotfix
+ Enter name
+ Start Release ...
+ FLOW - Start Release
+ Version Tag Prefix :
+ Histories
+ Switch Horizontal/Vertical Layout
+ Switch Curve/Polyline Graph Mode
+ SEARCH SHA/SUBJECT/AUTHOR. PRESS ENTER TO SEARCH, ESC TO QUIT
+ CLEAR
+ SELECTED {0} COMMITS
+ HotKeys
+ GLOBAL
+ Cancel current popup
+ Close current page
+ Go to next page
+ Create new page
+ REPOSITORY
+ Stage/Unstage selected changes
+ Toggle commit search
+ Switch to 'Changes'
+ Switch to 'Histories'
+ Switch to 'Stashes'
+ TEXT EDITOR
+ Close search panel
+ Find next match
+ Find previous match
+ Open search panel
+ Initialize Repository
+ Path :
+ Invalid repository detected. Run `git init` under this path?
+ Cherry-Pick in progress. Press 'Abort' to restore original HEAD.
+ Merge request in progress. Press 'Abort' to restore original HEAD.
+ Rebase in progress. Press 'Abort' to restore original HEAD.
+ Revert in progress. Press 'Abort' to restore original HEAD.
+ Source Git
+ ERROR
+ NOTICE
+ Open Main Menu
+ Merge Branch
+ Into :
+ Merge Option :
+ Source Branch :
+ Name :
+ Git has NOT been configured. Please to go [Preference] and configure it first.
+ NOTICE
+ SELECT FOLDER
+ Open With ...
+ Optional.
+ Create New Page (Ctrl+T)
+ Bookmark
+ Close Tab
+ Close Other Tabs
+ Close Tabs to the Right
+ Copy Repository Path
+ Repositories
+ Paste
+ Preference
+ APPEARANCE
+ Default FontFamily
+ Default Font Size
+ Monospace FontFamily
+ Theme
+ GENERAL
+ Avatar Server
+ Check for updates on startup
+ Language
+ History Commits
+ Restore windows
+ Use fixed tab width in titlebar
+ GIT
+ Fetch remotes automatically
+ Enable Auto CRLF
+ Default Clone Dir
+ User Email
+ Global git user email
+ Install Path
+ User Name
+ Global git user name
+ Git version
+ GPG SIGNING
+ Commit GPG signing
+ Install Path
+ Input path for installed gpg program
+ User Signing Key
+ User's gpg signing key
+ MERGE
+ Diff Command
+ Merge Command
+ Install Path
+ Input path for merge tool
+ Merger
+ Pull
+ Stash & reapply local changes
+ Branch :
+ Into :
+ Remote :
+ Pull (Fetch & Merge)
+ Use rebase instead of merge
+ Push
+ Force push
+ Local Branch :
+ Remote :
+ Push Changes To Remote
+ Remote Branch :
+ Push all tags
+ Push Tag To Remote
+ Remote :
+ Tag :
+ Rebase Current Branch
+ Stash & reapply local changes
+ On :
+ Rebase :
+ Refresh
+ Add Remote
+ Edit Remote
+ Name :
+ Remote name
+ Repository URL :
+ Remote git repository URL
+ Copy URL
+ Delete ...
+ Edit ...
+ Fetch ...
+ Prune
+ Target :
+ Rename Branch
+ New Name :
+ Unique name for this branch
+ Branch :
+ ABORT
+ Cleanup(GC & Prune)
+ Run `gc` command and do `lfs prune` if LFS is installed.
+ Configure this repository
+ CONTINUE
+ Open In File Browser
+ LOCAL BRANCHES
+ Navigate To HEAD
+ Create Branch
+ Open In {0}
+ Open In External Tools
+ Refresh
+ REMOTES
+ ADD REMOTE
+ RESOLVE
+ Search Commit (Ctrl+F)
+ Search Author/Committer/Message/SHA
+ Statistics
+ SUBMODULES
+ ADD SUBMODULE
+ UPDATE SUBMODULE
+ TAGS
+ NEW TAG
+ Open In Terminal
+ WORKSPACE
+ Git Repository URL
+ Reset Current Branch To Revision
+ Reset Mode :
+ Move To :
+ Current Branch :
+ Reveal in File Explorer
+ Revert Commit
+ Commit :
+ Commit revert changes
+ Reword Commit Message
+ Message :
+ On :
+ Running. Please wait ...
+ SAVE
+ Save As ...
+ Patch has been saved successfully!
+ Check for Updates ...
+ New version of this software is available:
+ Check for updates failed!
+ Download
+ Skip This Version
+ Software Update
+ There are currently no updates available.
+ Squash HEAD Into Parent
+ HEAD :
+ Reword :
+ To :
+ SSH Private Key :
+ Private SSH key store path
+ START
+ Stash
+ Include untracked files
+ Message :
+ Optional. Name of this stash
+ Stash Local Changes
+ Apply
+ Drop
+ Pop
+ Drop Stash
+ Drop :
+ Stashes
+ CHANGES
+ STASHES
+ Statistics
+ COMMITS
+ COMMITTER
+ MONTH
+ WEEK
+ YEAR
+ COMMITS:
+ COMMITTERS:
+ SUBMODULES
+ Add Submodule
+ Copy Relative Path
+ Fetch nested submodules
+ Open Submodule Repository
+ Relative Path :
+ Relative folder to store this module.
+ Delete Submodule
+ OK
+ Copy Tag Name
+ Delete${0}$
+ Push${0}$
+ URL :
+ Warning
+ Create Group
+ Create Sub-Group
+ Clone Repository
+ Delete
+ DRAG & DROP FOLDER SUPPORTED. CUSTOM GROUPING SUPPORTED.
+ Edit
+ Open Repository
+ Open Terminal
+ Search Repositories ...
+ Sort
+ Changes
+ Amend
+ COMMIT
+ COMMIT & PUSH
+ Enter commit message
+ CTRL + Enter
+ CONFLICTS DETECTED
+ RECENT INPUT MESSAGES
+ INCLUDE UNTRACKED FILES
+ MESSAGE HISTORIES
+ NO RECENT INPUT MESSAGES
+ OPEN MERGE
+ STAGED
+ UNSTAGE
+ UNSTAGE ALL
+ UNSTAGED
+ STAGE
+ STAGE ALL
+ VIEW ASSUME UNCHANGED
+ USE MINE
+ USE THEIRS
+
diff --git a/src/Resources/Locales/zh_CN.axaml b/src/Resources/Locales/zh_CN.axaml
new file mode 100644
index 00000000..66712d54
--- /dev/null
+++ b/src/Resources/Locales/zh_CN.axaml
@@ -0,0 +1,442 @@
+
+ 关于软件
+ • 项目依赖于
+ Copyright © 2024 sourcegit-scm.
+ • 文本编辑器使用
+ • 等宽字体来自于
+ • 项目源代码地址
+ 开源免费的Git客户端
+ 应用补丁(apply)
+ 错误
+ 输出错误,并终止应用补丁
+ 更多错误
+ 与【错误】级别相似,但输出内容更多
+ 补丁文件 :
+ 选择补丁文件
+ 忽略空白符号
+ 忽略
+ 关闭所有警告
+ 应用补丁
+ 警告
+ 应用补丁,输出关于空白符的警告
+ 空白符号处理 :
+ 存档(archive) ...
+ 存档文件路径:
+ 选择存档文件的存放路径
+ 指定的提交:
+ 存档
+ 不跟踪更改的文件
+ 没有不跟踪更改的文件
+ 移除
+ 二进制文件不支持该操作!!!
+ 逐行追溯(blame)
+ 选中文件不支持该操作!!!
+ 检出(checkout)${0}$
+ 复制分支名
+ 删除${0}$
+ 放弃所有更改
+ 快进(fast-forward)到${0}$
+ GIT工作流 - 完成${0}$
+ 合并${0}$到${1}$
+ 拉回(pull)${0}$
+ 拉回(pull)${0}$内容至${1}$
+ 推送(push)${0}$
+ 变基(rebase)${0}$分支至${1}$
+ 重命名${0}$
+ 切换上游分支...
+ 取消追踪
+ 字节
+ 取 消
+ 切换变更显示模式
+ 网格模式
+ 列表模式
+ 树形模式
+ 检出(checkout)分支
+ 目标分支 :
+ 挑选(cherry-pick)此提交
+ 提交ID :
+ 提交变化
+ 挑选提交
+ 丢弃贮藏确认
+ 您正在丢弃所有的贮藏,一经操作,无法回退,是否继续?
+ 克隆远程仓库
+ 额外参数 :
+ 其他克隆参数,选填。
+ 本地仓库名 :
+ 本地仓库目录的名字,选填。
+ 父级目录 :
+ 远程仓库 :
+ 关闭
+ 挑选(cherry-pick)此提交
+ 复制提交指纹
+ 变基(rebase)${0}$到此处
+ 重置(reset)${0}$到此处
+ 回滚此提交
+ 编辑提交信息
+ 另存为补丁 ...
+ 合并此提交到上一个提交
+ 变更对比
+ 查找文件...
+ 文件列表
+ LFS文件
+ 子模块
+ 标签文件
+ 子树
+ 基本信息
+ 修改者
+ 变更列表
+ 提交者
+ 提交信息
+ 父提交
+ 相关引用
+ 提交指纹
+ 仓库配置
+ 电子邮箱
+ 邮箱地址
+ HTTP代理
+ HTTP网络代理
+ 用户名
+ 应用于本仓库的用户名
+ 复制
+ 复制路径
+ 新建分支
+ 新分支基于 :
+ 完成后切换到新分支
+ 未提交更改 :
+ 忽略
+ 贮藏(stash)并自动恢复
+ 新分支名 :
+ 填写分支名称。
+ 创建本地分支
+ 新建标签
+ 标签位于 :
+ 标签描述 :
+ 选填。
+ 标签名 :
+ 推荐格式 :v1.0.0-alpha
+ 剪切
+ 删除分支确认
+ 分支名 :
+ 删除远程确认
+ 远程名 :
+ 目标 :
+ 删除分组确认
+ 删除仓库确认
+ 删除子模块确认
+ 子模块路径 :
+ 删除标签确认
+ 标签名 :
+ 同时删除远程仓库中的此标签
+ 二进制文件
+ 当前大小
+ 原始大小
+ 复制
+ LFS对象变更
+ 下一个差异
+ 没有变更或仅有换行符差异
+ 上一个差异
+ 分列对比
+ 语法高亮
+ 使用外部合并工具查看
+ 请选择需要对比的文件
+ 放弃更改确认
+ 所有本地址未提交的修改。
+ 需要放弃的变更 :
+ 总计{0}项选中更改
+ 本操作不支持回退,请确认后继续!!!
+ 书签 :
+ 名称 :
+ 目标 :
+ 编辑分组
+ 编辑仓库
+ 快进(fast-forward,无需checkout)
+ 拉取(fetch)
+ 拉取所有的远程仓库
+ 自动清理远程已删除分支
+ 远程仓库 :
+ 拉取远程仓库内容
+ 不跟踪此文件的更改
+ 放弃更改...
+ 放弃 {0} 个文件的更改...
+ 放弃选中的更改
+ 另存为补丁...
+ 暂存(add)...
+ 暂存(add){0} 个文件...
+ 暂存选中的更改
+ 贮藏(stash)...
+ 贮藏(stash)选中的 {0} 个文件...
+ 从暂存中移除
+ 从暂存中移除 {0} 个文件
+ 从暂存中移除选中的更改
+ 文件历史
+ 过滤
+ GIT工作流
+ 开发分支 :
+ 特性分支 :
+ 特性分支名前缀 :
+ 结束特性分支
+ 结束修复分支
+ 结束版本分支
+ 目标分支 :
+ 修复分支 :
+ 修复分支名前缀 :
+ 初始化GIT工作流
+ 保留分支
+ 发布分支 :
+ 版本分支 :
+ 版本分支名前缀 :
+ 开始特性分支...
+ 开始特性分支
+ 开始修复分支...
+ 开始修复分支
+ 输入分支名
+ 开始版本分支...
+ 开始版本分支
+ 版本标签前缀 :
+ 历史记录
+ 切换横向/纵向显示
+ 切换曲线/折线显示
+ 查询提交指纹、信息、作者。回车键开始,ESC键取消
+ 清空
+ 已选中 {0} 项提交
+ 快捷键
+ 全局快捷键
+ 取消弹出面板
+ 关闭当前页面
+ 切换到下一个页面
+ 新建页面
+ 仓库页面快捷键
+ 将选中的变更暂存或从暂存列表中移除
+ 打开/关闭历史搜索
+ 显示本地更改
+ 显示历史记录
+ 显示贮藏列表
+ 文本编辑器
+ 关闭搜索
+ 定位到下一个匹配搜索的位置
+ 定位到上一个匹配搜索的位置
+ 打开搜索
+ 初始化新仓库
+ 路径 :
+ 选择目录不是有效的Git仓库。是否需要在此目录执行`git init`操作?
+ 挑选(Cherry-Pick)操作进行中。点击【终止】回滚到操作前的状态。
+ 合并操作进行中。点击【终止】回滚到操作前的状态。
+ 变基(Rebase)操作进行中。点击【终止】回滚到操作前的状态。
+ 回滚提交操作进行中。点击【终止】回滚到操作前的状态。
+ Source Git
+ 出错了
+ 系统提示
+ 主菜单
+ 合并分支
+ 目标分支 :
+ 合并方式 :
+ 合并分支 :
+ 名称 :
+ GIT尚未配置。请打开【偏好设置】配置GIT路径。
+ 系统提示
+ 选择文件夹
+ 打开文件...
+ 选填。
+ 新建空白页 (Ctrl+T)
+ 设置书签
+ 关闭标签页 (Ctrl+W)
+ 关闭其他标签页
+ 关闭右侧标签页
+ 复制仓库路径
+ 新标签页
+ 粘贴
+ 偏好设置
+ 外观配置
+ 缺省字体
+ 默认字体大小
+ 等宽字体
+ 主题
+ 通用配置
+ 头像服务
+ 启动时检测软件更新
+ 显示语言
+ 最大历史提交数
+ 启动时恢复上次打开的仓库
+ 使用固定宽度的标题栏标签
+ GIT配置
+ 启用定时自动拉取远程更新
+ 自动换行转换
+ 默认克隆路径
+ 邮箱
+ 默认GIT用户邮箱
+ 安装路径
+ 用户名
+ 默认GIT用户名
+ Git 版本
+ GPG签名
+ 启用提交签名
+ 可执行文件位置
+ gpg.exe所在路径
+ 用户签名KEY
+ 输入签名提交所使用的KEY
+ 外部合并工具
+ 对比模式启动参数
+ 合并模式启动参数
+ 安装路径
+ 填写工具可执行文件所在位置
+ 工具
+ 拉回(pull)
+ 自动贮藏并恢复本地变更
+ 拉取分支 :
+ 本地分支 :
+ 远程 :
+ 拉回(拉取并合并)
+ 使用变基方式合并分支
+ 推送(push)
+ 启用强制推送
+ 本地分支 :
+ 远程仓库 :
+ 推送到远程仓库
+ 远程分支 :
+ 同时推送标签
+ 推送标签到远程仓库
+ 远程仓库 :
+ 标签 :
+ 变基(rebase)操作
+ 自动贮藏并恢复本地变更
+ 目标提交 :
+ 分支 :
+ 重新加载
+ 添加远程仓库
+ 编辑远程仓库
+ 远程名 :
+ 唯一远程名
+ 仓库地址 :
+ 远程仓库的地址
+ 复制远程地址
+ 删除 ...
+ 编辑 ...
+ 拉取(fetch)更新 ...
+ 清理远程已删除分支
+ 目标 :
+ 分支重命名
+ 新的名称 :
+ 新的分支名不能与现有分支名相同
+ 分支 :
+ 终止合并
+ 清理本仓库(GC)
+ 本操作将执行`gc`,对于启用LFS的仓库也会执行`lfs prune`。
+ 配置本仓库
+ 下一步
+ 在文件浏览器中打开
+ 本地分支
+ 定位HEAD
+ 新建分支
+ 在 {0} 中打开
+ 使用外部工具打开
+ 重新加载
+ 远程列表
+ 添加远程
+ 解决冲突
+ 查找提交(Ctrl+F)
+ 支持搜索作者/提交者/主题/指纹
+ 提交统计
+ 子模块列表
+ 添加子模块
+ 更新子模块
+ 标签列表
+ 新建标签
+ 在终端中打开
+ 工作区
+ 远程仓库地址
+ 重置(reset)当前分支到指定版本
+ 重置模式 :
+ 提交 :
+ 当前分支 :
+ 在文件浏览器中查看
+ 回滚操作确认
+ 目标提交 :
+ 回滚后提交更改
+ 编辑提交信息
+ 提交信息:
+ 提交:
+ 执行操作中,请耐心等待...
+ 保 存
+ 另存为...
+ 补丁已成功保存!
+ 检测更新...
+ 检测到软件有版本更新:
+ 获取最新版本信息失败!
+ 下 载
+ 忽略此版本
+ 软件更新
+ 当前已是最新版本。
+ 合并HEAD到上一个提交
+ 当前提交 :
+ 修改提交信息:
+ 合并到 :
+ SSH密钥 :
+ SSH密钥文件
+ 开 始
+ 贮藏(stash)
+ 包含未跟踪的文件
+ 信息 :
+ 选填,用于命名此贮藏
+ 贮藏本地变更
+ 应用(apply)
+ 删除(drop)
+ 应用并删除(pop)
+ 丢弃贮藏确认
+ 丢弃贮藏 :
+ 贮藏列表
+ 查看变更
+ 贮藏列表
+ 提交统计
+ 提交次数
+ 提交者
+ 本月
+ 本周
+ 本年
+ 提交次数:
+ 提交者:
+ 子模块
+ 添加子模块
+ 复制路径
+ 拉取子孙模块
+ 打开仓库
+ 相对仓库路径 :
+ 本地存放的相对路径。
+ 删除子模块
+ 确 定
+ 复制标签名
+ 删除${0}$
+ 推送${0}$
+ 仓库地址 :
+ 警告
+ 新建分组
+ 新建子分组
+ 克隆远程仓库
+ 删除
+ 支持拖放目录添加。支持自定义分组。
+ 编辑
+ 打开本地仓库
+ 打开终端
+ 快速查找仓库...
+ 排序
+ 本地更改
+ 修补(--amend)
+ 提交
+ 提交并推送
+ 填写提交信息
+ CTRL + Enter
+ 检测到冲突
+ 最近输入的提交信息
+ 显示未跟踪文件
+ 历史提交信息
+ 没有提交信息记录
+ 打开合并工具
+ 已暂存
+ 从暂存区移除选中
+ 从暂存区移除所有
+ 未暂存
+ 暂存选中
+ 暂存所有
+ 查看忽略变更文件
+ 使用MINE
+ 使用THEIRS
+
diff --git a/src/SourceGit.csproj b/src/SourceGit.csproj
index 31dc7343..8fe9fc58 100644
--- a/src/SourceGit.csproj
+++ b/src/SourceGit.csproj
@@ -26,22 +26,6 @@
-
-
- True
- True
- Locales.resx
-
-
- PublicResXFileCodeGenerator
- Locales.Designer.cs
-
-
- PublicResXFileCodeGenerator
- Locales.resx
-
-
-