mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-03 00:57:52 +02:00
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.
This commit is contained in:
CONTRIBUTING.mdviews.go
docs/keybindings
Keybindings_en.mdKeybindings_ja.mdKeybindings_ko.mdKeybindings_nl.mdKeybindings_pl.mdKeybindings_zh.md
pkg
cheatsheet
gui
constants
controllers
basic_commits_controller.gobisect_controller.gobranches_controller.gocommit_message_controller.gocommits_files_controller.goconfirmation_controller.gocustom_patch_options_menu_action.godiffing_menu_action.gofiles_controller.gofiles_remove_controller.gofiltering_menu_action.gogit_flow_controller.goglobal_controller.go
global_handlers.gokeybindings.gomenu_panel.gooptions_map.gohelpers
merge_and_rebase_helper.gomode_helper.gorefresh_helper.gorefs_helper.gorepos_helper.gosuggestions_helper.gotags_helper.gowindow_arrangement_helper.goworking_tree_helper.go
list_controller.golocal_commits_controller.gomenu_controller.gomerge_conflicts_controller.gooptions_menu_action.gopatch_building_controller.gopatch_explorer_controller.goremote_branches_controller.goremotes_controller.gostaging_controller.gostash_controller.gostatus_controller.gosubmodules_controller.goswitch_to_diff_files_controller.goswitch_to_sub_commits_controller.gosync_controller.gotags_controller.goundo_controller.goworkspace_reset_controller.gopresentation
searching.goservices
custom_commands
i18n
integration
components
tests
bisect
branch
create_tag.godelete.godetached_head.gorebase.gorebase_and_drop.gorebase_does_not_autosquash.goreset.goreset_upstream.goset_upstream.go
cherry_pick
commit
custom_commands
diff
file
filter_by_path
interactive_rebase
advanced_interactive_rebase.goamend_first_commit.goamend_fixup_commit.goamend_head_commit_during_rebase.goamend_merge.go
patch_building
apply.goapply_in_reverse.goapply_in_reverse_with_conflict.gocopy_patch_to_clipboard.gomove_to_earlier_commit.gomove_to_earlier_commit_no_keep_empty.gomove_to_index.gomove_to_index_part_of_adjacent_added_lines.gomove_to_index_partial.gomove_to_index_with_conflict.gomove_to_later_commit.gomove_to_later_commit_partial_hunk.gomove_to_new_commit.gomove_to_new_commit_partial_hunk.goremove_from_commit.goreset_with_escape.goselect_all_files.gospecific_selection.gostart_new_patch.go
reflog
stash
apply_patch.gocreate_branch.gostash_all.gostash_and_keep_index.gostash_including_untracked_files.gostash_staged.gostash_unstaged.go
submodule
sync
tag
ui
undo
@ -54,7 +54,7 @@ func TestGetBindingSections(t *testing.T) {
|
||||
},
|
||||
expected: []*bindingSection{
|
||||
{
|
||||
title: "Global Keybindings",
|
||||
title: "Global keybindings",
|
||||
bindings: []*types.Binding{
|
||||
{
|
||||
ViewName: "",
|
||||
@ -139,7 +139,7 @@ func TestGetBindingSections(t *testing.T) {
|
||||
},
|
||||
expected: []*bindingSection{
|
||||
{
|
||||
title: "List Panel Navigation",
|
||||
title: "List panel navigation",
|
||||
bindings: []*types.Binding{
|
||||
{
|
||||
ViewName: "files",
|
||||
@ -215,7 +215,7 @@ func TestGetBindingSections(t *testing.T) {
|
||||
},
|
||||
expected: []*bindingSection{
|
||||
{
|
||||
title: "List Panel Navigation",
|
||||
title: "List panel navigation",
|
||||
bindings: []*types.Binding{
|
||||
{
|
||||
ViewName: "files",
|
||||
|
Reference in New Issue
Block a user