bitranslit/languages/
bulgarian.rs1use bitranslit_derive::language_pack;
2use lazy_static::lazy_static;
3
4lazy_static! {
5 static ref MAPPING: [(&'static str, &'static str); 42] = include!("../standards/bg/mapping.in");
6 static ref PRE_PROCESSOR_MAPPING: [(&'static str, &'static str); 16] =
7 include!("../standards/bg/pre_processor_mapping.in");
8 static ref REVERSE_SPECIFIC_MAPPING: [(&'static str, &'static str); 3] =
9 include!("../standards/bg/reverse_specific_mapping.in");
10 static ref CODE: &'static str = "bg";
11}
12
13language_pack!(Bulgarian {
14 code: CODE,
15 mapping: MAPPING,
16 pre_processor_mapping: PRE_PROCESSOR_MAPPING,
17 reverse_specific_mapping: REVERSE_SPECIFIC_MAPPING,
18});