ukraine 1.1.0

Glory to Ukraine. Library for transliterating Ukrainian Cyrillic text into Latin script representation
Documentation
/// Constants for Ukrainian language localization.
///
/// This module provides various Ukrainian language constants including month names,
/// day names in different grammatical cases, and special Ukrainian characters.

//

/// Get the name of January in Ukrainian
/// ```rust
/// # use ukraine::MONTH;
/// # fn main() {
/// let january = MONTH[0]; // "січень"
/// assert_eq!(january, "січень");
/// }
/// ```
pub const MONTH: [&'static str; 12] = [
    "січень",
    "лютий",
    "березень",
    "квітень",
    "травень",
    "червень",
    "липень",
    "серпень",
    "вересень",
    "жовтень",
    "листопад",
    "грудень",
];

/// Get the genitive case of January
/// ```rust
/// # use ukraine::MONTH_GENITIVE;
/// # fn main() {
/// let january_genitive = MONTH_GENITIVE[0]; // "січня"
/// assert_eq!(january_genitive, "січня");
/// # }
/// ```
pub const MONTH_GENITIVE: [&'static str; 12] = [
    "січня",
    "лютого",
    "березня",
    "квітня",
    "травня",
    "червня",
    "липня",
    "серпня",
    "вересня",
    "жовтня",
    "листопада",
    "грудня",
];

/// Get the name of the days of the week in Ukrainian
/// ```rust
/// # use ukraine::DAY_OF_WEEK;
/// # fn main() {
/// let monday = DAY_OF_WEEK[0]; // "понеділок"
/// assert_eq!(monday, "понеділок");
/// # }
/// ```
pub const DAY_OF_WEEK: [&'static str; 7] = [
    "понеділок",
    "вівторок",
    "середа",
    "четвер",
    "п’ятниця",
    "субота",
    "неділя",
];

/// Get the genitive case of the days of the week in Ukrainian
/// ```rust
/// # use ukraine::DAY_OF_WEEK_GENITIVE;
/// # fn main() {
/// let monday_genitive = DAY_OF_WEEK_GENITIVE[0]; // "понеділка"
/// assert_eq!(monday_genitive, "понеділка");
/// # }
/// ```
pub const DAY_OF_WEEK_GENITIVE: [&'static str; 7] = [
    "понеділка",
    "вівторка",
    "середи",
    "четверга",
    "п’ятниці",
    "суботи",
    "неділі",
];

/// Get the Ukrainian apostrophe character
/// ```rust
/// # use ukraine::APOSTROPHE;
/// # fn main() {
/// let apostrophe = APOSTROPHE; // "’"
/// assert_eq!(apostrophe, '’');
/// # }
/// ```
pub const APOSTROPHE: char = '';

/// Get the Ukrainian character 'ї'
/// ```rust
/// # use ukraine::CHAR_YI;
/// # fn main() {
/// let char_yi = CHAR_YI; // "ї"
/// assert_eq!(char_yi, 'ї');
/// # }
/// ```
pub const CHAR_YI: char = 'ї';

/// Get the Ukrainian character 'ї'
/// ```rust
/// # use ukraine::CHAR_YI_UPPER;
/// # fn main() {
/// let char_yi_upper = CHAR_YI_UPPER; // "Ї"
/// assert_eq!(char_yi_upper, 'Ї');
/// # }
/// ```
pub const CHAR_YI_UPPER: char = 'Ї';

/// Get the Ukrainian character 'ґ'
/// ```rust
/// # use ukraine::CHAR_GYO;
/// # fn main() {
/// let char_gyo = CHAR_GYO; // "ґ"
/// assert_eq!(char_gyo, 'ґ');
/// # }
/// ```
pub const CHAR_GYO: char = 'ґ';

/// Get the Ukrainian character 'ґ'
/// ```rust
/// # use ukraine::CHAR_GYO_UPPER;
/// # fn main() {
/// let char_gyo_upper = CHAR_GYO_UPPER; // "Ґ"
/// assert_eq!(char_gyo_upper, 'Ґ');
/// # }
/// ```
pub const CHAR_GYO_UPPER: char = 'Ґ';