use std::borrow::Cow;
#[derive(Debug)]
pub struct I18n<'a> {
pub commands: Cow<'a, str>,
pub no_commands: Cow<'a, str>,
pub options: Cow<'a, str>,
pub no_options: Cow<'a, str>,
pub values: Cow<'a, str>,
pub default: Cow<'a, str>,
pub required: Cow<'a, str>,
pub project: Cow<'a, str>,
pub home: Cow<'a, str>,
pub license: Cow<'a, str>,
}
impl Default for I18n<'_> {
fn default() -> Self {
Self {
commands: Cow::Borrowed("Commands"),
no_commands: Cow::Borrowed("No Commands"),
options: Cow::Borrowed("Options"),
no_options: Cow::Borrowed("No Options"),
values: Cow::Borrowed("Values"),
default: Cow::Borrowed("Default"),
required: Cow::Borrowed("Required"),
project: Cow::Borrowed("Project"),
home: Cow::Borrowed("Home"),
license: Cow::Borrowed("License"),
}
}
}