1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

start breaking up git struct

This commit is contained in:
Jesse Duffield
2022-01-02 10:34:33 +11:00
parent 4a1d23dc27
commit f503ff1ecb
76 changed files with 2234 additions and 1758 deletions

View File

@ -109,8 +109,8 @@ func chineseTranslationSet() TranslationSet {
Squash: "压缩",
LcPickCommit: "选择提交(变基过程中)",
LcRevertCommit: "还原提交",
OnlyRenameTopCommit: "只能从 lazygit 内部重写最高的提交。请使用 shift-R",
LcRenameCommit: "改写提交",
OnlyRewordTopCommit: "只能从 lazygit 内部重写最高的提交。请使用 shift-R",
LcRewordCommit: "改写提交",
LcDeleteCommit: "删除提交",
LcMoveDownCommit: "下移提交",
LcMoveUpCommit: "上移提交",
@ -135,7 +135,6 @@ func chineseTranslationSet() TranslationSet {
SurePopStashEntry: "您确定要应用并删除此贮藏条目吗?",
StashApply: "应用贮藏",
SureApplyStashEntry: "您确定要应用此贮藏条目?",
NoStashTo: "没有贮藏条目可以 {{.method}}",
NoTrackedStagedFilesStash: "没有可以贮藏的已跟踪/暂存文件",
StashChanges: "贮藏更改",
MergeAborted: "合并中止",

View File

@ -79,8 +79,8 @@ func dutchTranslationSet() TranslationSet {
Squash: "Squash",
LcPickCommit: "kies commit (wanneer midden in rebase)",
LcRevertCommit: "commit ongedaan maken",
OnlyRenameTopCommit: "Je kan alleen de bovenste commit hernoemen",
LcRenameCommit: "hernoem commit",
OnlyRewordTopCommit: "Je kan alleen de bovenste commit hernoemen",
LcRewordCommit: "hernoem commit",
LcDeleteCommit: "verwijder commit",
LcMoveDownCommit: "verplaats commit 1 naar beneden",
LcMoveUpCommit: "verplaats commit 1 naar boven",
@ -106,7 +106,6 @@ func dutchTranslationSet() TranslationSet {
SurePopStashEntry: "Weet je zeker dat je deze stash entry wil poppen?",
StashApply: "Stash toepassen",
SureApplyStashEntry: "Weet je zeker dat je deze stash entry wil toepassen?",
NoStashTo: "Geen stash voor {{.method}}",
NoTrackedStagedFilesStash: "Je hebt geen tracked/staged bestanden om te laten stashen",
StashChanges: "Stash veranderingen",
NoChangedFiles: "Geen veranderde bestanden",

View File

@ -93,8 +93,8 @@ type TranslationSet struct {
Squash string
LcPickCommit string
LcRevertCommit string
OnlyRenameTopCommit string
LcRenameCommit string
OnlyRewordTopCommit string
LcRewordCommit string
LcDeleteCommit string
LcMoveDownCommit string
LcMoveUpCommit string
@ -120,7 +120,6 @@ type TranslationSet struct {
SurePopStashEntry string
StashApply string
SureApplyStashEntry string
NoStashTo string
NoTrackedStagedFilesStash string
StashChanges string
MergeAborted string
@ -646,8 +645,8 @@ func EnglishTranslationSet() TranslationSet {
Squash: "Squash",
LcPickCommit: "pick commit (when mid-rebase)",
LcRevertCommit: "revert commit",
OnlyRenameTopCommit: "Can only reword topmost commit from within lazygit. Use shift+R instead",
LcRenameCommit: "reword commit",
OnlyRewordTopCommit: "Can only reword topmost commit from within lazygit. Use shift+R instead",
LcRewordCommit: "reword commit",
LcDeleteCommit: "delete commit",
LcMoveDownCommit: "move commit down one",
LcMoveUpCommit: "move commit up one",
@ -672,7 +671,6 @@ func EnglishTranslationSet() TranslationSet {
SurePopStashEntry: "Are you sure you want to pop this stash entry?",
StashApply: "Stash apply",
SureApplyStashEntry: "Are you sure you want to apply this stash entry?",
NoStashTo: "No stash to {{.method}}",
NoTrackedStagedFilesStash: "You have no tracked/staged files to stash",
StashChanges: "Stash changes",
MergeAborted: "Merge aborted",

View File

@ -69,8 +69,8 @@ func polishTranslationSet() TranslationSet {
YouNoCommitsToSquash: "Nie masz commitów do spłaszczenia",
Fixup: "Napraw",
SureFixupThisCommit: "Jesteś pewny, ze chcesz naprawić ten commit? Commit poniżej zostanie spłaszczony w górę wraz z tym",
OnlyRenameTopCommit: "Można zmienić nazwę tylko ostatniemu commitowi",
LcRenameCommit: "zmień nazwę commita",
OnlyRewordTopCommit: "Można zmienić nazwę tylko ostatniemu commitowi",
LcRewordCommit: "zmień nazwę commita",
LcRenameCommitEditor: "zmień nazwę commita w edytorze",
Error: "Błąd",
LcSelectHunk: "wybierz kawałek",
@ -84,7 +84,6 @@ func polishTranslationSet() TranslationSet {
NoStashEntries: "Brak pozycji w schowku",
StashDrop: "Porzuć schowek",
SureDropStashEntry: "Jesteś pewny, że chcesz porzucić tę pozycję w schowku?",
NoStashTo: "Brak schowka dla {{.method}}",
NoTrackedStagedFilesStash: "Nie masz śledzonych/zatwierdzonych plików do przechowania",
StashChanges: "Przechowaj zmiany",
MergeAborted: "Scalanie anulowane",