34 lines
463 B
Scheme
34 lines
463 B
Scheme
![]() |
(define-module
|
||
|
(msg 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 "Chad Nelson")
|
||
|
|
||
|
(define %license 'agpl3+)
|
||
|
|
||
|
(define %copyright '(2023))
|
||
|
|
||
|
(define %gettext-domain "msg")
|
||
|
|
||
|
(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)
|
||
|
|