blob: 8c481f5519ee4f4626ff4f7277c8904857b87a57 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
;;; Whispers --- Stealth VPN and ssh tunneler
;;; Copyright © 2024 Runciter <runciter@whispers-vpn.org>
;;;
;;; This file is part of Whispers.
;;;
;;; Whispers is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; Whispers is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Whispers. If not, see <http://www.gnu.org/licenses/>.
(define-module (whispers services dict)
#:use-module (guix gexp)
#:use-module (gnu services dict)
#:use-module (whispers packages dict)
#:export (%dictorg-handler
freedict-dictorg-database
%freedict-dictorg-databases
%cedict-dictorg-databases))
(define %dictorg-handler
(dicod-handler (name "dictorg")
(module "dictorg")
(options (list #~(string-append "dbdir=/")))))
(define (freedict-dictorg-database dict-name)
"Return a record of type @code{<dicod-database>} that configures a
database for the freedict multilingual dictionary named by the string
DICT-NAME."
(dicod-database (name (string-append "freedict-"
dict-name))
(complex? #t)
(handler "dictorg")
(options (list #~(string-append "database="
#$freedict-dictionaries
"/share/dictd/"
#$dict-name)))))
(define %freedict-dictorg-databases
(map freedict-dictorg-database (list "afr-deu"
"afr-eng"
"ara-eng"
"bre-fra"
"ces-eng"
"ckb-kmr"
"cym-eng"
"dan-eng"
"deu-ita"
"deu-kur"
"deu-nld"
"deu-por"
"deu-tur"
"eng-afr"
"eng-ara"
"eng-ces"
"eng-cym"
"eng-dan"
"eng-ell"
"eng-fra"
"eng-gle"
"eng-hin"
"eng-hrv"
"eng-hun"
"eng-ita"
"eng-lat"
"eng-lit"
"eng-nld"
"eng-pol"
"eng-por"
"eng-rom"
"eng-rus"
"eng-spa"
"eng-srp"
"eng-swh"
"eng-tur"
"fra-bre"
"fra-eng"
"fra-nld"
"gla-deu"
"gle-eng"
"gle-pol"
"hrv-eng"
"hun-eng"
"isl-eng"
"ita-deu"
"ita-eng"
"jpn-deu"
"jpn-eng"
"jpn-fra"
"jpn-rus"
"kha-deu"
"kha-eng"
"kur-deu"
"kur-eng"
"kur-tur"
"lat-deu"
"lat-eng"
"lit-eng"
"mkd-bul"
"nld-deu"
"nld-eng"
"nld-fra"
"nno-nob"
"oci-cat"
"pol-gle"
"por-deu"
"por-eng"
"san-deu"
"slk-eng"
"slv-eng"
"spa-ast"
"spa-eng"
"spa-por"
"srp-eng"
"swe-eng"
"swh-eng"
"swh-pol"
"tur-deu"
"tur-eng"
"wol-fra")))
(define (cedict-dictorg-database variant)
"Return a record of type @code{<dicod-database>} that configures a
database for the CC-CEDICT chinese-english multilingual dictionary
variant described by the string VARIANT."
(dicod-database (name (string-append "cedict-"
variant))
(complex? #t)
(handler "dictorg")
(options (list #~(string-append "database="
#$cc-cedict
"/share/cc-cedict/cedict-"
#$variant)))))
(define %cedict-dictorg-databases
(map cedict-dictorg-database (list "bare"
"numb"
"pinyin"
"smpl"
"trad")))
|