summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-11-02 20:35:53 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-11-05 07:58:21 +1100
commit37be9dbea18f52a544a1dd134657c02c1ee61aef (patch)
treea18a51d7f998e41a76a2268c897d34133241229b /pkg/i18n/english.go
parentf6ec7babf55c4a43bc8048e8a84970a8de8250b9 (diff)
support scrolling left and right
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 8f39948a0..b7c38d7ac 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -271,6 +271,9 @@ type TranslationSet struct {
LcStashOptions string
NotARepository string
LcJump string
+ LcScrollLeftRight string
+ LcScrollLeft string
+ LcScrollRight string
DiscardPatch string
DiscardPatchConfirm string
CantPatchWhileRebasingError string
@@ -802,6 +805,9 @@ func englishTranslationSet() TranslationSet {
LcStashOptions: "Stash options",
NotARepository: "Error: must be run inside a git repository",
LcJump: "jump to panel",
+ LcScrollLeftRight: "scroll left/right",
+ LcScrollLeft: "scroll left",
+ LcScrollRight: "scroll right",
DiscardPatch: "Discard Patch",
DiscardPatchConfirm: "You can only build a patch from one commit/stash-entry at a time. Discard current patch?",
CantPatchWhileRebasingError: "You cannot build a patch or run patch commands while in a merging or rebasing state",