summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-05-26 17:21:33 +1000
committerGitHub <noreply@github.com>2023-05-26 17:21:33 +1000
commit05bfa96936879c629f21de3e5fc7813a39562298 (patch)
tree8991858dba0ed194c5ebd30205915c4031751e52
parentbe6acf2fbe76fec606c48f1b0bd3904cc83d0315 (diff)
parentd772c9f1d446f9566d0c46a1cb76dc63ef31cb21 (diff)
Merge pull request #2672 from jesseduffield/sentence-case
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--docs/keybindings/Keybindings_en.md432
-rw-r--r--docs/keybindings/Keybindings_ja.md108
-rw-r--r--docs/keybindings/Keybindings_ko.md114
-rw-r--r--docs/keybindings/Keybindings_nl.md420
-rw-r--r--docs/keybindings/Keybindings_pl.md414
-rw-r--r--docs/keybindings/Keybindings_zh.md18
-rw-r--r--pkg/cheatsheet/generate_test.go6
-rw-r--r--pkg/gui/constants/constants.go3
-rw-r--r--pkg/gui/controllers/basic_commits_controller.go28
-rw-r--r--pkg/gui/controllers/bisect_controller.go2
-rw-r--r--pkg/gui/controllers/branches_controller.go38
-rw-r--r--pkg/gui/controllers/commit_message_controller.go4
-rw-r--r--pkg/gui/controllers/commits_files_controller.go18
-rw-r--r--pkg/gui/controllers/confirmation_controller.go4
-rw-r--r--pkg/gui/controllers/custom_patch_options_menu_action.go16
-rw-r--r--pkg/gui/controllers/diffing_menu_action.go10
-rw-r--r--pkg/gui/controllers/files_controller.go50
-rw-r--r--pkg/gui/controllers/files_remove_controller.go14
-rw-r--r--pkg/gui/controllers/filtering_menu_action.go6
-rw-r--r--pkg/gui/controllers/git_flow_controller.go2
-rw-r--r--pkg/gui/controllers/global_controller.go16
-rw-r--r--pkg/gui/controllers/helpers/merge_and_rebase_helper.go2
-rw-r--r--pkg/gui/controllers/helpers/mode_helper.go14
-rw-r--r--pkg/gui/controllers/helpers/refresh_helper.go2
-rw-r--r--pkg/gui/controllers/helpers/refs_helper.go12
-rw-r--r--pkg/gui/controllers/helpers/repos_helper.go2
-rw-r--r--pkg/gui/controllers/helpers/suggestions_helper.go2
-rw-r--r--pkg/gui/controllers/helpers/tags_helper.go4
-rw-r--r--pkg/gui/controllers/helpers/window_arrangement_helper.go3
-rw-r--r--pkg/gui/controllers/helpers/working_tree_helper.go2
-rw-r--r--pkg/gui/controllers/list_controller.go10
-rw-r--r--pkg/gui/controllers/local_commits_controller.go51
-rw-r--r--pkg/gui/controllers/menu_controller.go4
-rw-r--r--pkg/gui/controllers/merge_conflicts_controller.go12
-rw-r--r--pkg/gui/controllers/options_menu_action.go2
-rw-r--r--pkg/gui/controllers/patch_building_controller.go4
-rw-r--r--pkg/gui/controllers/patch_explorer_controller.go12
-rw-r--r--pkg/gui/controllers/remote_branches_controller.go14
-rw-r--r--pkg/gui/controllers/remotes_controller.go20
-rw-r--r--pkg/gui/controllers/staging_controller.go6
-rw-r--r--pkg/gui/controllers/stash_controller.go10
-rw-r--r--pkg/gui/controllers/status_controller.go6
-rw-r--r--pkg/gui/controllers/submodules_controller.go44
-rw-r--r--pkg/gui/controllers/switch_to_diff_files_controller.go2
-rw-r--r--pkg/gui/controllers/switch_to_sub_commits_controller.go2
-rw-r--r--pkg/gui/controllers/sync_controller.go4
-rw-r--r--pkg/gui/controllers/tags_controller.go10
-rw-r--r--pkg/gui/controllers/undo_controller.go8
-rw-r--r--pkg/gui/controllers/workspace_reset_controller.go14
-rw-r--r--pkg/gui/global_handlers.go2
-rw-r--r--pkg/gui/keybindings.go28
-rw-r--r--pkg/gui/menu_panel.go2
-rw-r--r--pkg/gui/options_map.go12
-rw-r--r--pkg/gui/presentation/working_tree.go24
-rw-r--r--pkg/gui/searching.go8
-rw-r--r--pkg/gui/services/custom_commands/handler_creator.go2
-rw-r--r--pkg/gui/views.go3
-rw-r--r--pkg/i18n/chinese.go358
-rw-r--r--pkg/i18n/dutch.go406
-rw-r--r--pkg/i18n/english.go1016
-rw-r--r--pkg/i18n/japanese.go508
-rw-r--r--pkg/i18n/korean.go518
-rw-r--r--pkg/i18n/polish.go200
-rw-r--r--pkg/integration/components/common.go8
-rw-r--r--pkg/integration/tests/bisect/basic.go8
-rw-r--r--pkg/integration/tests/bisect/from_other_branch.go6
-rw-r--r--pkg/integration/tests/branch/create_tag.go2
-rw-r--r--pkg/integration/tests/branch/delete.go2
-rw-r--r--pkg/integration/tests/branch/detached_head.go2
-rw-r--r--pkg/integration/tests/branch/rebase.go6
-rw-r--r--pkg/integration/tests/branch/rebase_and_drop.go6
-rw-r--r--pkg/integration/tests/branch/rebase_does_not_autosquash.go2
-rw-r--r--pkg/integration/tests/branch/reset.go4
-rw-r--r--pkg/integration/tests/branch/reset_upstream.go4
-rw-r--r--pkg/integration/tests/branch/set_upstream.go4
-rw-r--r--pkg/integration/tests/cherry_pick/cherry_pick.go2
-rw-r--r--pkg/integration/tests/cherry_pick/cherry_pick_conflicts.go2
-rw-r--r--pkg/integration/tests/commit/amend.go2
-rw-r--r--pkg/integration/tests/commit/create_tag.go2
-rw-r--r--pkg/integration/tests/commit/new_branch.go2
-rw-r--r--pkg/integration/tests/commit/reset_author.go2
-rw-r--r--pkg/integration/tests/commit/revert_merge.go2
-rw-r--r--pkg/integration/tests/commit/set_author.go2
-rw-r--r--pkg/integration/tests/custom_commands/basic_cmd_at_runtime.go2
-rw-r--r--pkg/integration/tests/custom_commands/complex_cmd_at_runtime.go2
-rw-r--r--pkg/integration/tests/custom_commands/omit_from_history.go6
-rw-r--r--pkg/integration/tests/diff/diff.go10
-rw-r--r--pkg/integration/tests/diff/diff_and_apply_patch.go14
-rw-r--r--pkg/integration/tests/diff/diff_commits.go6
-rw-r--r--pkg/integration/tests/file/discard_changes.go6
-rw-r--r--pkg/integration/tests/file/discard_staged_changes.go2
-rw-r--r--pkg/integration/tests/file/gitignore.go8
-rw-r--r--pkg/integration/tests/file/remember_commit_message_after_fail.go2
-rw-r--r--pkg/integration/tests/filter_by_path/select_file.go4
-rw-r--r--pkg/integration/tests/filter_by_path/shared.go2
-rw-r--r--pkg/integration/tests/filter_by_path/type_file.go2
-rw-r--r--pkg/integration/tests/interactive_rebase/advanced_interactive_rebase.go2
-rw-r--r--pkg/integration/tests/interactive_rebase/amend_first_commit.go2
-rw-r--r--pkg/integration/tests/interactive_rebase/amend_fixup_commit.go2
-rw-r--r--pkg/integration/tests/interactive_rebase/amend_head_commit_during_rebase.go2
-rw-r--r--pkg/integration/tests/interactive_rebase/amend_merge.go2
-rw-r--r--pkg/integration/tests/patch_building/apply.go4
-rw-r--r--pkg/integration/tests/patch_building/apply_in_reverse.go4
-rw-r--r--pkg/integration/tests/patch_building/apply_in_reverse_with_conflict.go4
-rw-r--r--pkg/integration/tests/patch_building/copy_patch_to_clipboard.go2
-rw-r--r--pkg/integration/tests/patch_building/move_to_earlier_commit.go4
-rw-r--r--pkg/integration/tests/patch_building/move_to_earlier_commit_no_keep_empty.go4
-rw-r--r--pkg/integration/tests/patch_building/move_to_index.go4
-rw-r--r--pkg/integration/tests/patch_building/move_to_index_part_of_adjacent_added_lines.go4
-rw-r--r--pkg/integration/tests/patch_building/move_to_index_partial.go4