breezy 3.3.4

Friendly distributed version control system
Documentation
#[cfg(feature = "i18n")]
pub mod i18n;

#[cfg(not(feature = "i18n"))]
pub mod i18n {
    pub fn gettext(msgid: &str) -> String {
        msgid.to_string()
    }

    pub fn nggettext(msgid: &str, msgid_plural: &str, n: usize) -> String {
        if n == 1 {
            msgid.to_string()
        } else {
            msgid_plural.to_string()
        }
    }
}

pub mod bedding;

pub mod trace;

pub mod progress;