The Beebox user interface lets users find text segments by a large variety of filter criteria. Built-in filters permit to look for untranslated content, problems with embedded codes, etc:
...
- Add a class that extendst BeeboxTextFilter.
- Code the IsMatch() method. It receives one segment at a time and returns true if the segment passes the filter.
- Compile and install your dll.
The code below is a sample implementation. All interface methods are verbosely commented and should be self-explanatory.
Sample class
The Beebox extension below adds a filter that yields segments that are not translated: A simple but fundamental quality assurance algorithm.
...