2023-06-11 16:18:21 +02:00
|
|
|
Translation dictionary viewer
|
|
|
|
=============================
|
2013-05-17 00:54:11 +02:00
|
|
|
|
2023-06-11 16:18:21 +02:00
|
|
|
'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.
|
2013-05-17 00:54:11 +02:00
|
|
|
|
2015-02-26 22:58:40 +01:00
|
|
|
The project is covered by a permissive license, unlike vast majority of other
|
2013-05-17 00:54:11 +02:00
|
|
|
similar projects, and can serve as a base for implementing other dictionary
|
2021-10-07 20:08:56 +02:00
|
|
|
software.
|
2013-05-17 00:54:11 +02:00
|
|
|
|
2023-06-11 16:18:21 +02:00
|
|
|
image::tdv.png[align="center"]
|
2021-07-23 20:43:53 +02:00
|
|
|
|
2023-06-11 16:18:21 +02:00
|
|
|
As a recent addition, the program also offers a GTK+ 3 based user interface,
|
|
|
|
whose styling will follow your theme, and may be customized from 'gtk.css'.
|
2021-10-20 14:01:46 +02:00
|
|
|
|
2016-03-14 21:27:57 +01:00
|
|
|
Packages
|
|
|
|
--------
|
|
|
|
Regular releases are sporadic. git master should be stable enough. You can get
|
2018-06-24 05:23:48 +02:00
|
|
|
a package with the latest development version from Archlinux's AUR.
|
2016-03-14 21:27:57 +01:00
|
|
|
|
2021-10-07 20:08:56 +02:00
|
|
|
Documentation
|
|
|
|
-------------
|
2023-06-11 16:18:21 +02:00
|
|
|
See the link:docs/tdv.1.adoc[man page] for information about usage.
|
2021-10-07 20:08:56 +02:00
|
|
|
The rest of this README will concern itself with externalities.
|
|
|
|
|
2015-02-07 21:38:27 +01:00
|
|
|
Building and Running
|
|
|
|
--------------------
|
2022-08-24 00:43:14 +02:00
|
|
|
Build-only dependencies:
|
|
|
|
CMake, pkg-config, gettext utilities, asciidoctor or asciidoc +
|
|
|
|
Optional build-only dependencies:
|
2022-07-24 21:56:07 +02:00
|
|
|
librsvg (for the GUI), icoutils (for the GUI, when targetting Windows) +
|
2022-08-24 00:43:14 +02:00
|
|
|
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)
|
2015-02-07 21:38:27 +01:00
|
|
|
|
2018-06-24 05:23:48 +02:00
|
|
|
$ git clone --recursive https://git.janouch.name/p/sdtui.git
|
2015-09-27 01:36:36 +02:00
|
|
|
$ mkdir sdtui/build
|
|
|
|
$ cd sdtui/build
|
2021-10-22 01:59:09 +02:00
|
|
|
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug \
|
|
|
|
-DWITH_X11=ON -DWITH_GUI=ON
|
2015-02-07 21:38:27 +01:00
|
|
|
$ make
|
|
|
|
|
|
|
|
To install the application, you can do either the usual:
|
2015-09-27 01:44:06 +02:00
|
|
|
|
2015-02-26 22:58:40 +01:00
|
|
|
# make install
|
2015-02-07 21:38:27 +01:00
|
|
|
|
|
|
|
Or you can try telling CMake to make a package for you. For Debian it is:
|
2015-09-27 01:44:06 +02:00
|
|
|
|
2015-02-07 21:38:27 +01:00
|
|
|
$ cpack -G DEB
|
2023-06-11 16:18:21 +02:00
|
|
|
# dpkg -i tdv-*.deb
|
2015-02-07 21:38:27 +01:00
|
|
|
|
2021-10-07 20:08:56 +02:00
|
|
|
Having the program installed, simply run it with a StarDict '.ifo' file as
|
|
|
|
an argument. It is, however, preferable to
|
2023-06-11 16:18:21 +02:00
|
|
|
link:docs/tdv.1.adoc#_configuration[configure it] to load your dictionaries
|
2021-10-07 20:08:56 +02:00
|
|
|
automatically.
|
2021-07-23 20:43:53 +02:00
|
|
|
|
2021-10-22 01:59:09 +02:00
|
|
|
Windows
|
|
|
|
~~~~~~~
|
2023-06-11 16:18:21 +02:00
|
|
|
With the help of Mingw-w64 and WINE, 'tdv' will successfully cross-compile
|
2021-10-22 01:59:09 +02:00
|
|
|
for Windows. It isn't 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.
|
|
|
|
|
2022-08-11 14:15:20 +02:00
|
|
|
$ sh -e cmake/Win64Depends.sh
|
2021-10-22 01:59:09 +02:00
|
|
|
$ cmake -DCMAKE_TOOLCHAIN_FILE=cmake/Win64CrossToolchain.cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release -B build
|
|
|
|
$ cmake --build build -- package
|
|
|
|
|
2015-02-08 00:36:45 +01:00
|
|
|
Dictionaries
|
|
|
|
------------
|
2021-10-11 02:44:58 +02:00
|
|
|
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).
|
2015-02-08 00:36:45 +01:00
|
|
|
|
2021-10-11 02:44:58 +02:00
|
|
|
The `make dicts` command will build some examples from freely available sources:
|
2021-10-07 03:37:12 +02:00
|
|
|
|
2021-10-11 02:44:58 +02:00
|
|
|
- GNU/FDL Czech-English dictionary
|
2022-08-05 00:08:54 +02:00
|
|
|
- Czech foreign words (the site's export is broken as of 2022/08, no response)
|
2021-10-11 02:44:58 +02:00
|
|
|
- Czech WordNet 1.9 PDT (synonyms, hypernyms, hyponyms)
|
|
|
|
|
2023-06-11 17:45:38 +02:00
|
|
|
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.
|
2020-09-03 23:17:17 +02:00
|
|
|
|
2021-10-07 03:37:12 +02:00
|
|
|
https://mega.co.nz/#!axtD0QRK!sbtBgizksyfkPqKvKEgr8GQ11rsWhtqyRgUUV0B7pwg[CZ <--> EN/DE/PL/RU dictionaries]
|
2015-02-08 00:36:45 +01:00
|
|
|
|
2021-10-07 20:08:56 +02:00
|
|
|
Further Development
|
|
|
|
-------------------
|
2023-06-11 16:18:21 +02:00
|
|
|
While I've been successfully using 'tdv' for many years now, some issues
|
2021-11-03 18:14:36 +01:00
|
|
|
should be addressed before including the software in regular Linux and/or
|
|
|
|
BSD distributions:
|
2021-10-07 20:08:56 +02:00
|
|
|
|
2022-09-03 21:10:39 +02:00
|
|
|
- The GUI is awkward to configure.
|
2021-10-11 02:44:58 +02:00
|
|
|
- Lacking configuration, standard StarDict locations should be scanned.
|
2021-10-07 20:08:56 +02:00
|
|
|
|
2021-10-20 14:01:46 +02:00
|
|
|
Given all issues with the file format, it might be better to start anew.
|
2021-10-15 12:08:44 +02:00
|
|
|
|
2015-09-27 01:36:36 +02:00
|
|
|
Contributing and Support
|
|
|
|
------------------------
|
2018-06-24 05:23:48 +02:00
|
|
|
Use https://git.janouch.name/p/sdtui 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.
|
2015-09-27 01:36:36 +02:00
|
|
|
|
2018-06-24 05:23:48 +02:00
|
|
|
Bitcoin donations are accepted at: 12r5uEWEgcHC46xd64tt3hHt9EUvYYDHe9
|
2017-06-20 06:37:28 +02:00
|
|
|
|
2015-02-07 21:38:27 +01:00
|
|
|
License
|
|
|
|
-------
|
2018-06-24 05:23:31 +02:00
|
|
|
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.
|