feat(tazjin/russian): Add macro to populate word table

Adds a stupid macro that populates a 'russian-words' hash table in
which merged definitions of words are available.

Change-Id: Ide7825577ba26d63ff564e54601541f39ab5a1a6
This commit is contained in:
Vincent Ambo 2021-09-24 16:55:31 +03:00
parent 104f002a07
commit 48290298ad
2 changed files with 72 additions and 1 deletions

View file

@ -4,7 +4,10 @@
;; translations :: '(translation ...)
;; roots :: '(root ...)
'( ;; 1-50
(require 'russian-defs)
(define-russian-words
;; 1-50
("и" ("and" "though"))
("в" ("in" "at"))
("не" ("not"))
@ -412,3 +415,6 @@
("оставить" ("to leave" "to abandon"))
("войти" ("to enter" "to come in") nil ("-й-"))
("длинный" ("long")))
(provide 'russian-words)