37 lines
2.1 KiB
Rust
37 lines
2.1 KiB
Rust
pub const APP_TITLE: &str = "AntiDrift";
|
|
pub const DEFAULT_DURATION: &str = "25";
|
|
pub const DURATION_TITLE: &str = "Duration";
|
|
#[allow(dead_code)]
|
|
pub const DEGRADED_EVIDENCE_TITLE: &str = "Evidence";
|
|
pub const ENTER_SUCCESS_CONDITION: &str = "Provide success condition! ";
|
|
pub const EVENT_LOG_FILE: &str = "~/.antidrift_events.jsonl";
|
|
pub const INTENTION_TITLE: &str = "Intention";
|
|
pub const PAUSED: &str = "paused";
|
|
pub const PREVIOUS_SESSIONS_TITLE: &str = "Previous Sessions";
|
|
pub const PROVIDE_INTENTION: &str = "Provide intention! ";
|
|
pub const PROVIDE_VALID_DURATION: &str = "Provide valid duration in minutes! ";
|
|
pub const RATE_TITLES: &str = "Press 1, 2, 3 to rate titles!";
|
|
pub const READY_TO_START: &str = "Ready to start next session.";
|
|
pub const SESSION_IN_PROGRESS: &str = "Session In-Progress";
|
|
pub const SESSION_PAUSED: &str = "Session is paused. Unpause with 'p'.";
|
|
pub const SESSION_STATS_TITLE: &str = "Session Stats";
|
|
pub const STATUS_FILE: &str = "~/.antidrift_status";
|
|
pub const HISTORY_FILE: &str = "~/.antidrift_history.jsonl";
|
|
pub const STATUS_TITLE: &str = "Status";
|
|
pub const STATUS_CONFIGURE: &str = "🔄 antidrift configure session";
|
|
pub const STATUS_LOCKED: &str = "🔒 antidrift locked";
|
|
pub const STATUS_PLANNING: &str = "🧭 antidrift planning";
|
|
pub const STATUS_PAUSED: &str = "⏸ antidrift paused";
|
|
pub const STATUS_RATE_SESSION: &str = "☑ rate antidrift session!";
|
|
pub const STATUS_QUIT: &str = "antidrift shutting down";
|
|
pub const STATUS_TRANSITION: &str = "↔ antidrift transition";
|
|
pub const SUCCESS_CONDITION_TITLE: &str = "Success Condition";
|
|
pub const TRANSITION_DURATION_TITLE: &str = "Transition Minutes";
|
|
pub const TRANSITION_REASON_TITLE: &str = "Transition Reason";
|
|
pub const TRANSITION_RETURN_TITLE: &str = "Return Target";
|
|
pub const VIOLATION_TITLE: &str = "Violation";
|
|
pub const VIOLATION_REASON_TITLE: &str = "Dismissal Reason";
|
|
pub const VIOLATION_STATUS: &str = "Unknown context detected. Enter a reason to continue.";
|
|
pub const PROVIDE_TRANSITION_REASON: &str = "Provide transition reason! ";
|
|
pub const PROVIDE_TRANSITION_RETURN: &str = "Provide return target! ";
|