Initial check-in
This commit is contained in:
commit
6f56fae985
10 changed files with 966 additions and 0 deletions
35
spam-filter/hconfig.scm
Normal file
35
spam-filter/hconfig.scm
Normal file
|
@ -0,0 +1,35 @@
|
|||
(define-module
|
||||
(spam-filter hconfig)
|
||||
#:use-module
|
||||
(srfi srfi-26)
|
||||
#:export
|
||||
(%version
|
||||
%author
|
||||
%license
|
||||
%copyright
|
||||
%gettext-domain
|
||||
G_
|
||||
N_
|
||||
init-nls
|
||||
init-locale))
|
||||
|
||||
(define %version "0.1")
|
||||
|
||||
(define %author "Ray Miller")
|
||||
|
||||
(define %license 'gpl3+)
|
||||
|
||||
(define %copyright '(2024))
|
||||
|
||||
(define %gettext-domain "guile-spam-filter")
|
||||
|
||||
(define G_ identity)
|
||||
|
||||
(define N_ identity)
|
||||
|
||||
(define (init-nls) "Dummy as no NLS is used" #t)
|
||||
|
||||
(define (init-locale)
|
||||
"Dummy as no NLS is used"
|
||||
#t)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue