summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-04-11 13:17:20 +1000
committerJesse Duffield <jessedduffield@gmail.com>2021-04-11 17:07:49 +1000
commitcf78b86cb5eae4c502a747238aba983bf9eb298f (patch)
treec81eb86f8a291b7b91046e754f5ddfef77afff43 /pkg/i18n
parent4f03d7733ab186d357064f343915ac48ca059940 (diff)
more support for command log and more code reuse for contexts
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 0b991bcfa..97791f014 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -445,6 +445,8 @@ type TranslationSet struct {
ErrStageDirWithInlineMergeConflicts string
ErrRepositoryMovedOrDeleted string
CommandLog string
+ ToggleShowCommandLog string
+ FocusCommandLog string
}
const englishReleaseNotes = `lazygit 0.27.1-0.27.4 Release notes
@@ -1099,5 +1101,7 @@ func englishTranslationSet() TranslationSet {
ErrStageDirWithInlineMergeConflicts: "Cannot stage/unstage directory containing files with inline merge conflicts. Please fix up the merge conflicts first",
ErrRepositoryMovedOrDeleted: "Cannot find repo. It might have been moved or deleted ¯\\_(ツ)_/¯",
CommandLog: "Command Log",
+ ToggleShowCommandLog: "Toggle show/hide command log",
+ FocusCommandLog: "Focus command log",
}
}