summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-16 17:52:07 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-30 18:35:22 +1000
commit6b4a6384156451203bd4559f65563f03dbbdd5df (patch)
tree1674b7af6aa63b872f9928d9c39bab08adaf9716 /pkg/i18n
parent4b3c9f5b35545e3bb840e33602829c2ce945369f (diff)
Handle deleting branch attached to worktree
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 1e15b22d1..99ebaa918 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -545,6 +545,8 @@ type TranslationSet struct {
SwitchToWorktree string
RemoveWorktree string
RemoveWorktreeTitle string
+ DetachWorktree string
+ DetachingWorktree string
WorktreesTitle string
WorktreeTitle string
RemoveWorktreePrompt string
@@ -1272,6 +1274,8 @@ func EnglishTranslationSet() TranslationSet {
RemoveWorktreePrompt: "Are you sure you want to remove worktree '{{.worktreeName}}'?",
ForceRemoveWorktreePrompt: "'{{.worktreeName}}' contains modified or untracked files (to be honest, it could contain both). Are you sure you want to remove it?",
RemovingWorktree: "Deleting worktree",
+ DetachWorktree: "Detach worktree",
+ DetachingWorktree: "Detaching worktree",
AddingWorktree: "Adding worktree",
CantDeleteCurrentWorktree: "You cannot remove the current worktree!",
AlreadyInWorktree: "You are already in the selected worktree",