93 lines
3.5 KiB
Rust
93 lines
3.5 KiB
Rust
// A Rust GitOps/symlinkfarm orchestrator inspired by GNU Stow.
|
|
// Copyright (C) 2023 Christina Sørensen <christina@cafkafk.com>
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see https://www.gnu.org/gpl-3.0.html.
|
|
//
|
|
//! Module for chunk of text
|
|
//!
|
|
//! Ideally, at a VERY long term scale, this should be a nice pattern for
|
|
//! possible translations.
|
|
|
|
use std::sync::atomic::Ordering;
|
|
|
|
use crate::settings;
|
|
|
|
/// Contains the notice for interactive programs from the GPLv3's "How to Apply
|
|
/// These Terms to Your New Programs"
|
|
pub const INTERACTIVE_NOTICE: &str = "\
|
|
seidr Copyright (C) 2023 Christina Sørensen <cafkafk.com>
|
|
|
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `seidr
|
|
--warranty'. This is free software, and you are welcome to redistribute it under
|
|
certain conditions; type `seidr --license' for details. ";
|
|
|
|
/// Contains the license part of the long notice for interactive programs from
|
|
/// the GPLv3's "How to Apply These Terms to Your New Programs"
|
|
pub const INTERACTIVE_LICENSE: &str = "\
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
";
|
|
|
|
/// Contains the warranty part of the long notice for interactive programs from
|
|
/// the GPLv3's "How to Apply These Terms to Your New Programs"
|
|
pub const INTERACTIVE_WARRANTY: &str = "\
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
";
|
|
|
|
pub const INTERACTIVE_COC: &str = "\
|
|
In the interest of fostering an open and welcoming environment, we as
|
|
contributors and maintainers pledge to making participation in our project and
|
|
our community a harassment-free experience for everyone, regardless of age, body
|
|
size, disability, ethnicity, gender identity and expression, level of
|
|
experience, nationality, personal appearance, race, religion, or sexual identity
|
|
and orientation. For more, see http://contributor-covenant.org/version/1/4";
|
|
|
|
/// Contains the message for quick commit subcommand
|
|
pub const QUICK_COMMIT: &str = "git: quick commit";
|
|
|
|
/// Contains the message for fast commit subcommand
|
|
pub const FAST_COMMIT: &str = "git: fast commit";
|
|
|
|
/// Success emoji
|
|
pub const SUCCESS_EMOJI: &str = "✔";
|
|
|
|
/// Failure emoji
|
|
pub const FAILURE_EMOJI: &str = "❌";
|
|
|
|
/// Success string
|
|
pub const SUCCESS_STRING: &str = "SUCC";
|
|
|
|
/// Failure string
|
|
pub const FAILURE_STRING: &str = "FAIL";
|
|
|
|
pub fn success_str() -> &'static str {
|
|
if settings::EMOJIS.load(Ordering::Relaxed) {
|
|
SUCCESS_STRING
|
|
} else {
|
|
SUCCESS_EMOJI
|
|
}
|
|
}
|
|
|
|
pub fn failure_str() -> &'static str {
|
|
if settings::EMOJIS.load(Ordering::Relaxed) {
|
|
FAILURE_STRING
|
|
} else {
|
|
FAILURE_EMOJI
|
|
}
|
|
}
|