Translation dictionary viewer
Go to file
Přemysl Eric Janouch 531f18d827
GUI: add basic configuration
It is simply not feasible to write the text file by hand on Windows.
2024-12-19 14:38:19 +01:00
cmake Bump liberty, moving the Win64 toolchain file 2024-04-09 17:04:45 +02:00
dicts Reflect the recent renaming of tabfile in scripts 2023-07-07 12:15:37 +02:00
docs Update the manual page 2023-06-11 18:14:46 +02:00
liberty@f04cc2c61e Bump liberty, moving the Win64 toolchain file 2024-04-09 17:04:45 +02:00
po Update translations 2023-06-11 18:08:03 +02:00
src GUI: add basic configuration 2024-12-19 14:38:19 +01:00
termo@2518b53e5a Bump termo 2023-06-14 16:24:27 +02:00
.clang-format Add clang-format configuration, clean up 2021-10-30 03:02:33 +02:00
.gitignore Merge TUI and GUI binaries, using a new name 2023-06-11 18:08:03 +02:00
.gitmodules Import liberty for its manpage generator 2023-06-10 12:12:42 +02:00
CMakeLists.txt CMakeLists.txt: quote more paths 2024-12-07 22:50:53 +01:00
config.h.in Merge TUI and GUI binaries, using a new name 2023-06-11 18:08:03 +02:00
LICENSE GUI: add basic configuration 2024-12-19 14:38:19 +01:00
README.adoc GUI: add basic configuration 2024-12-19 14:38:19 +01:00
tdv.desktop Merge TUI and GUI binaries, using a new name 2023-06-11 18:08:03 +02:00
tdv.png Merge TUI and GUI binaries, using a new name 2023-06-11 18:08:03 +02:00
tdv.svg Merge TUI and GUI binaries, using a new name 2023-06-11 18:08:03 +02:00
tdv.xml Merge TUI and GUI binaries, using a new name 2023-06-11 18:08:03 +02:00

Translation dictionary viewer

tdv aims to provide an easy way of viewing translation as well as other kinds of StarDict dictionaries, and is inspired by the dictionary component of PC Translator. I was unsuccessful in finding any free software of this kind, and thus decided to write my own.

The program offers both a terminal user interface, and a GTK+ 3 based UI. The styling of the latter will follow your theme, and may be customized from gtk.css.

tdv

The project is covered by a permissive license, unlike vast majority of other similar projects, and can serve as a base for implementing other dictionary software.

Packages

Regular releases are sporadic. git master should be stable enough. You can get a package with the latest development version using Arch Linuxs AUR, or as a Nix derivation.

Documentation

See the man page for information about usage. The rest of this README will concern itself with externalities.

Building and Running

Build-only dependencies: CMake, pkg-config, gettext utilities, asciidoctor or asciidoc
Optional build-only dependencies: librsvg (for the GUI), icoutils (for the GUI, when targetting Windows)
Runtime dependencies: ncursesw, zlib, ICU, termo (included), glib-2.0 >= 2.38, pango
Optional runtime dependencies: xcb, xcb-xfixes (the first two for the TUI), gtk+-3.0 (for the GUI)

$ git clone --recursive https://git.janouch.name/p/tdv.git
$ mkdir tdv/build
$ cd tdv/build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug \
  -DWITH_X11=ON -DWITH_GUI=ON
$ make

To install the application, you can do either the usual:

# make install

Or you can try telling CMake to make a package for you. For Debian it is:

$ cpack -G DEB
# dpkg -i tdv-*.deb

Having the program installed, simply run it with a StarDict .ifo file as an argument. It is, however, preferable to configure it to load your dictionaries automatically.

Windows

With the help of Mingw-w64 and WINE, tdv will successfully cross-compile for Windows. It isnt particularly usable on that system, if only because selection watching is a very X11/Wayland-specific feature. Beware that build dependencies take up almost a gigabyte of disk space.

$ sh -e cmake/Win64Depends.sh
$ cmake -DCMAKE_TOOLCHAIN_FILE=liberty/cmake/toolchains/MinGW-w64-x64.cmake \
  -DCMAKE_BUILD_TYPE=Release -B build
$ cmake --build buildpackage

Dictionaries

This application is intended for use with specific dictionaries: each line should contain one short word definition. Moreover, the only supported content types are plain text, Pango markup, and XDXF (the visual format works better).

The make dicts command will build some examples from freely available sources:

  • GNU/FDL Czech-English dictionary

  • Czech foreign words (the sites export is broken as of 2022/08, no response)

  • Czech WordNet 1.9 PDT (synonyms, hypernyms, hyponyms)

You can use the included tdv-transform tool to convert already existing StarDict dictionaries that are nearly good as they are. Remember that you can change the sametypesequence of the resulting .ifo file to another format, or run dictzip on .dict files to make them compact.

Further Development

Lacking configuration, standard StarDict locations should be scanned. We should try harder to display arbitrary dictionaries sensibly.

Contributing and Support

Use https://git.janouch.name/p/tdv to report any bugs, request features, or submit pull requests. git send-email is tolerated. If you want to discuss the project, feel free to join me at ircs://irc.janouch.name, channel #dev.

Bitcoin donations are accepted at: 12r5uEWEgcHC46xd64tt3hHt9EUvYYDHe9

License

This software is released under the terms of the 0BSD license, the text of which is included within the package along with the list of authors.