mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
20 lines
783 B
Rust
20 lines
783 B
Rust
pub static TITLE_STATUS: &str = "Status [1]";
|
|
pub static TITLE_DIFF: &str = "Diff [2]";
|
|
pub static TITLE_INDEX: &str = "Index [3]";
|
|
|
|
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_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]";
|