mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
22 lines
897 B
Rust
22 lines
897 B
Rust
pub static TITLE_STATUS: &str = "Unstaged Changes [1]";
|
|
pub static TITLE_DIFF: &str = "Diff";
|
|
pub static TITLE_INDEX: &str = "Staged Changes [2]";
|
|
|
|
pub static TAB_STATUS: &str = "Status";
|
|
pub static TAB_DIVIDER: &str = " | ";
|
|
|
|
pub static CMD_STATUS_STAGE: &str = "Stage File [enter]";
|
|
pub static CMD_STATUS_UNSTAGE: &str = "Unstage File [enter]";
|
|
pub static CMD_STATUS_RESET: &str = "Reset File [D]";
|
|
pub static CMD_STATUS_QUIT: &str = "Quit [esc,q]";
|
|
pub static CMD_STATUS_LEFT: &str = "Back [←]";
|
|
pub static CMD_STATUS_RIGHT: &str = "Diff [→]";
|
|
pub static CMD_SPLITTER: &str = " ";
|
|
|
|
pub static DIFF_CMD_SCROLL: &str = "Scroll [↑↓]";
|
|
|
|
pub static COMMIT_TITLE: &str = "Commit";
|
|
pub static COMMIT_MSG: &str = "type commit message..";
|
|
pub static COMMIT_CMD_OPEN: &str = "Commit [c]";
|
|
pub static COMMIT_CMD_ENTER: &str = "Commit [enter]";
|
|
pub static COMMIT_CMD_CLOSE: &str = "Close [esc]";
|