#![allow(warnings)]
use crate::mnemonics::original::languages::english::ENGLISHORIGINAL;
use super::languages::{dutch::DUTCHORIGINAL, chinese_simplified::CHINESESIMPLIFIEDORIGINAL, esperanto::ESPERANTOORIGINAL, french::FRENCHORIGINAL, german::GERMANORIGINAL, italian::ITALIANORIGINAL, japanese::JAPANESEORIGINAL, lojban::LOJBANORIGINAL, portuguese::PORTUGUESEORIGINAL, russian::RUSSIANORIGINAL, spanish::SPANISHORIGINAL};
pub(crate) struct WordsetOriginal {
pub name: &'static str,
pub prefix_len: usize,
pub words: [&'static str; 1626],
}
pub(crate) static WORDSETSORIGINAL : [WordsetOriginal; 8] = [
ENGLISHORIGINAL,
ESPERANTOORIGINAL,
FRENCHORIGINAL,
ITALIANORIGINAL,
JAPANESEORIGINAL,
LOJBANORIGINAL,
PORTUGUESEORIGINAL,
RUSSIANORIGINAL,
];