summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-16 13:53:59 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-30 18:35:22 +1000
commitfe8adf9eb863a226de9d514216a261f988122cc5 (patch)
treeafb3002d190dd9ed86c2ff83f3cc9ba80733e360 /pkg/i18n
parentc713d550c0a215408969838009865b6b906c7576 (diff)
Use git lingo
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/english.go32
1 files changed, 18 insertions, 14 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 84581c0b6..049bf9e11 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -543,12 +543,14 @@ type TranslationSet struct {
ExitSearchMode string
ExitTextFilterMode string
EnterWorktree string
- DeleteWorktree string
- DeleteWorktreeTitle string
+ RemoveWorktree string
+ RemoveWorktreeTitle string
WorktreesTitle string
WorktreeTitle string
- DeleteWorktreePrompt string
- ForceDeleteWorktreePrompt string
+ RemoveWorktreePrompt string
+ ForceRemoveWorktreePrompt string
+ RemovingWorktree string
+ AddingWorktree string
CantDeleteCurrentWorktree string
AlreadyInWorktree string
CantDeleteMainWorktree string
@@ -691,8 +693,8 @@ type Actions struct {
ResetBisect string
BisectSkip string
BisectMark string
- DeleteWorktree string
- CreateWorktree string
+ RemoveWorktree string
+ AddWorktree string
}
const englishIntroPopupMessage = `
@@ -1265,13 +1267,15 @@ func EnglishTranslationSet() TranslationSet {
WorktreesTitle: "Worktrees",
WorktreeTitle: "Worktree",
EnterWorktree: "Enter worktree",
- DeleteWorktree: "Delete worktree",
- DeleteWorktreeTitle: "Delete worktree",
- DeleteWorktreePrompt: "Are you sure you want to delete worktree '{{.worktreeName}}'?",
- ForceDeleteWorktreePrompt: "'{{.worktreeName}}' is not fully merged. Are you sure you want to delete it?",
- CantDeleteCurrentWorktree: "You cannot delete the current worktree!",
+ RemoveWorktree: "Remove worktree",
+ RemoveWorktreeTitle: "Remove worktree",
+ RemoveWorktreePrompt: "Are you sure you want to remove worktree '{{.worktreeName}}'?",
+ ForceRemoveWorktreePrompt: "'{{.worktreeName}}' is not fully merged. Are you sure you want to remove it?",
+ RemovingWorktree: "Deleting worktree",
+ AddingWorktree: "Adding worktree",
+ CantDeleteCurrentWorktree: "You cannot remove the current worktree!",
AlreadyInWorktree: "You are already in the selected worktree",
- CantDeleteMainWorktree: "You cannot delete the main worktree!",
+ CantDeleteMainWorktree: "You cannot remove the main worktree!",
NoWorktreesThisRepo: "No worktrees",
MissingWorktree: "(missing)",
MainWorktree: "(main)",
@@ -1388,8 +1392,8 @@ func EnglishTranslationSet() TranslationSet {
ResetBisect: "Reset bisect",
BisectSkip: "Bisect skip",
BisectMark: "Bisect mark",
- DeleteWorktree: "Delete worktree",
- CreateWorktree: "Create worktree",
+ RemoveWorktree: "Remove worktree",
+ AddWorktree: "Add worktree",
},
Bisect: Bisect{
Mark: "Mark current commit (%s) as %s",