summaryrefslogtreecommitdiffstats
path: root/pkg/i18n
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-03-26 16:42:56 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-26 17:22:42 +1100
commit45dab51214d7deca689279a6a162d80ee27befc8 (patch)
treefc06fe1b646f37f46ea2461f2b90f41235775ede /pkg/i18n
parent540edb0bf46df2dce32f9bcc554c482cfa0cbc7b (diff)
add basic commits controller for handling actions that apply to all commit contexts
Diffstat (limited to 'pkg/i18n')
-rw-r--r--pkg/i18n/chinese.go1
-rw-r--r--pkg/i18n/english.go2
2 files changed, 0 insertions, 3 deletions
diff --git a/pkg/i18n/chinese.go b/pkg/i18n/chinese.go
index 3f83f6756..400a12da6 100644
--- a/pkg/i18n/chinese.go
+++ b/pkg/i18n/chinese.go
@@ -474,7 +474,6 @@ func chineseTranslationSet() TranslationSet {
Actions: Actions{
// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
CheckoutCommit: "检出提交",
- CheckoutReflogCommit: "检出 reflog 提交",
CheckoutTag: "检出标签",
CheckoutBranch: "检出分支",
ForceCheckoutBranch: "强制检出分支",
diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go
index 04e948380..b09b6550c 100644
--- a/pkg/i18n/english.go
+++ b/pkg/i18n/english.go
@@ -488,7 +488,6 @@ type Bisect struct {
type Actions struct {
CheckoutCommit string
- CheckoutReflogCommit string
CheckoutTag string
CheckoutBranch string
ForceCheckoutBranch string
@@ -1060,7 +1059,6 @@ func EnglishTranslationSet() TranslationSet {
Actions: Actions{
// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
CheckoutCommit: "Checkout commit",
- CheckoutReflogCommit: "Checkout reflog commit",
CheckoutTag: "Checkout tag",
CheckoutBranch: "Checkout branch",
ForceCheckoutBranch: "Force checkout branch",