use super::Language;
use std::sync::LazyLock;
#[derive(Debug, Clone)]
pub struct Polish {}
static ABBREVIATIONS: LazyLock<Vec<String>> = LazyLock::new(|| {
include_str!("./abbrev/pl.txt")
.lines()
.map(|line| line.trim().to_string())
.filter(|line| !line.starts_with("//") && !line.is_empty())
.collect()
});
impl Language for Polish {
fn get_abbreviations(&self) -> &[String] {
&ABBREVIATIONS
}
}
#[cfg(test)]
mod tests {
use crate::languages::tests::run_language_tests;
use super::*;
#[test]
fn test_segment() {
run_language_tests(Polish {}, "tests/pl.txt");
}
}