summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/diffing_menu_action.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-05-25 21:11:51 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-05-25 23:52:19 +1000
commitd772c9f1d446f9566d0c46a1cb76dc63ef31cb21 (patch)
treec5d3208eb325241bb34816ee2a363bdba0adcf37 /pkg/gui/controllers/diffing_menu_action.go
parente5534d9781d3e19fb2f2b3c86b737bddf914d405 (diff)
Use sentence case everywhere
We have not been good at consistent casing so far. Now we use 'Sentence case' everywhere. EVERYWHERE. Also Removing 'Lc' prefix from i18n field names: the 'Lc' stood for lowercase but now that everything is in 'Sentence case' there's no need for the distinction. I've got a couple lower case things I've kept: namely, things that show up in parentheses.
Diffstat (limited to 'pkg/gui/controllers/diffing_menu_action.go')
-rw-r--r--pkg/gui/controllers/diffing_menu_action.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/gui/controllers/diffing_menu_action.go b/pkg/gui/controllers/diffing_menu_action.go
index 951286ece..ae150c274 100644
--- a/pkg/gui/controllers/diffing_menu_action.go
+++ b/pkg/gui/controllers/diffing_menu_action.go
@@ -20,7 +20,7 @@ func (self *DiffingMenuAction) Call() error {
name := name
menuItems = append(menuItems, []*types.MenuItem{
{
- Label: fmt.Sprintf("%s %s", self.c.Tr.LcDiff, name),
+ Label: fmt.Sprintf("%s %s", self.c.Tr.Diff, name),
OnPress: func() error {
self.c.Modes().Diffing.Ref = name
// can scope this down based on current view but too lazy right now
@@ -32,10 +32,10 @@ func (self *DiffingMenuAction) Call() error {
menuItems = append(menuItems, []*types.MenuItem{
{
- Label: self.c.Tr.LcEnterRefToDiff,
+ Label: self.c.Tr.EnterRefToDiff,
OnPress: func() error {
return self.c.Prompt(types.PromptOpts{
- Title: self.c.Tr.LcEnteRefName,
+ Title: self.c.Tr.EnteRefName,
FindSuggestionsFunc: self.c.Helpers().Suggestions.GetRefsSuggestionsFunc(),
HandleConfirm: func(response string) error {
self.c.Modes().Diffing.Ref = strings.TrimSpace(response)
@@ -49,14 +49,14 @@ func (self *DiffingMenuAction) Call() error {
if self.c.Modes().Diffing.Active() {
menuItems = append(menuItems, []*types.MenuItem{
{
- Label: self.c.Tr.LcSwapDiff,
+ Label: self.c.Tr.SwapDiff,
OnPress: func() error {
self.c.Modes().Diffing.Reverse = !self.c.Modes().Diffing.Reverse
return self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC})
},
},
{
- Label: self.c.Tr.LcExitDiffMode,
+ Label: self.c.Tr.ExitDiffMode,
OnPress: func() error {
self.c.Modes().Diffing = diffing.New()
return self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC})