summaryrefslogtreecommitdiffstats
path: root/pkg/i18n/english.go
diff options
context:
space:
mode:
authorChris Burgin <chris.burgin@agilebits.com>2021-12-02 19:08:53 -0500
committerJesse Duffield <jessedduffield@gmail.com>2021-12-25 11:50:06 +1100
commit4f627e5d27ed0b1f5767bd5b629616b30a9fa011 (patch)
tree17eed66735a7a23e507a099328a804b1f80f78b3 /pkg/i18n/english.go
parent089e3bf4feab523794d84b9b4051b4d8a3de1e2d (diff)
wrap branch names in quotes
Diffstat (limited to 'pkg/i18n/english.go')
-rw-r--r--pkg/i18n/english.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 0a83076ca..be81da05c 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -606,11 +606,11 @@ func englishTranslationSet() TranslationSet {
SureForceCheckout: "Are you sure you want force checkout? You will lose all local changes",
ForceCheckoutBranch: "Force Checkout Branch",
BranchName: "Branch name",
- NewBranchNameBranchOff: "New Branch Name (Branch is off of {{.branchName}})",
+ NewBranchNameBranchOff: "New Branch Name (Branch is off of '{{.branchName}}')",
CantDeleteCheckOutBranch: "You cannot delete the checked out branch!",
DeleteBranch: "Delete Branch",
- DeleteBranchMessage: "Are you sure you want to delete the branch {{.selectedBranchName}}?",
- ForceDeleteBranchMessage: "{{.selectedBranchName}} is not fully merged. Are you sure you want to delete it?",
+ DeleteBranchMessage: "Are you sure you want to delete the branch '{{.selectedBranchName}}'?",
+ ForceDeleteBranchMessage: "'{{.selectedBranchName}}' is not fully merged. Are you sure you want to delete it?",
LcRebaseBranch: "rebase checked-out branch onto this branch",
CantRebaseOntoSelf: "You cannot rebase a branch onto itself",
CantMergeBranchIntoItself: "You cannot merge a branch into itself",
@@ -731,8 +731,8 @@ func englishTranslationSet() TranslationSet {
GlobalTitle: "Global Keybindings",
ConflictsResolved: "all merge conflicts resolved. Continue?",
RebasingTitle: "Rebasing",
- ConfirmRebase: "Are you sure you want to rebase {{.checkedOutBranch}} onto {{.selectedBranch}}?",
- ConfirmMerge: "Are you sure you want to merge {{.selectedBranch}} into {{.checkedOutBranch}}?",
+ ConfirmRebase: "Are you sure you want to rebase '{{.checkedOutBranch}}' onto '{{.selectedBranch}}'?",
+ ConfirmMerge: "Are you sure you want to merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}'?",
FwdNoUpstream: "Cannot fast-forward a branch with no upstream",
FwdCommitsToPush: "Cannot fast-forward a branch with commits to push",
ErrorOccurred: "An error occurred! Please create an issue at",