lingora-tui 0.4.7

Lingora is a free and open-source localization management program that analyses fluent translation files highlighting discrepancies between reference and target languages. This application provides a terminal user interface; run as `lingora-tui`.
Documentation
1
2
3
4
5
6
7
pub trait HasSelectionPair {
    type Item;

    fn reference(&self) -> Option<&Self::Item>;

    fn target(&self) -> Option<&Self::Item>;
}