summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorLuka Markušić <luka.markusic@microblink.com>2022-04-08 11:32:23 +0200
committerLuka Markušić <luka.markusic@microblink.com>2022-04-10 09:35:59 +0200
commit6f7038c8277f82c32d2c23502f94fdf675ad07e1 (patch)
treebd91c9fab2ec10f613d93360df04df08065c6eef /pkg/i18n/english.go
parent58ed23a47adbc4e0cef119c0f32adceaef28ff48 (diff)
Add option to stash only unstaged files
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 585da5e30..1df120dda 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -276,7 +276,8 @@ type TranslationSet struct {
PressEnterToReturn string
LcViewStashOptions string
LcStashAllChanges string
- LcStashStagedChanges string
+ LcStashAllChangesKeepIndex string
+ LcStashUnstagedChanges string
LcStashOptions string
NotARepository string
LcJump string
@@ -545,6 +546,7 @@ type Actions struct {
OpenFile string
StashAllChanges string
StashStagedChanges string
+ StashUnstagedChanges string
GitFlowFinish string
GitFlowStart string
CopyToClipboard string
@@ -875,8 +877,9 @@ func EnglishTranslationSet() TranslationSet {
LcResetTo: `reset to`,
PressEnterToReturn: "Press enter to return to lazygit",
LcViewStashOptions: "view stash options",
- LcStashAllChanges: "stash changes",
- LcStashStagedChanges: "stash staged changes",
+ LcStashAllChanges: "stash all changes",
+ LcStashAllChangesKeepIndex: "stash all changes and keep index",
+ LcStashUnstagedChanges: "stash unstaged changes",
LcStashOptions: "Stash options",
NotARepository: "Error: must be run inside a git repository",
LcJump: "jump to panel",
@@ -1128,6 +1131,7 @@ func EnglishTranslationSet() TranslationSet {
OpenFile: "Open file",
StashAllChanges: "Stash all changes",
StashStagedChanges: "Stash staged changes",
+ StashUnstagedChanges: "Stash unstaged changes",
GitFlowFinish: "Git flow finish",
GitFlowStart: "Git Flow start",
CopyToClipboard: "Copy to clipboard",