summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-03-23 23:15:54 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-23 23:36:58 +1100
commitcc5d13c833daaba4a27507ce33e5de90ed8b1567 (patch)
treec8e685ce9bc39f1532a93895f368a8d4b2eb41bf /pkg/i18n
parent5ded030a884b6358da34ddd5b855e0f2cb005d24 (diff)
allow adding whole diff to patch
this was causing a panic add integration test for toggling all commit files
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 aba4e9368..db25cf0a6 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -275,6 +275,8 @@ type TranslationSet struct {
DiscardPatchConfirm string
CantPatchWhileRebasingError string
LcToggleAddToPatch string
+ LcToggleAllInPatch string
+ LcUpdatingPatch string
ViewPatchOptions string
PatchOptionsTitle string
NoPatchError string
@@ -846,6 +848,8 @@ func EnglishTranslationSet() TranslationSet {
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",
LcToggleAddToPatch: "toggle file included in patch",
+ LcToggleAllInPatch: "toggle all files included in patch",
+ LcUpdatingPatch: "updating patch",
ViewPatchOptions: "view custom patch options",
PatchOptionsTitle: "Patch Options",
NoPatchError: "No patch created yet. To start building a patch, use 'space' on a commit file or enter to add specific lines",