2023-11-20 09:05:07 -07:00
|
|
|
(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")
|
|
|
|
|
2025-02-27 19:21:58 -07:00
|
|
|
(define %license 'agpl3+)
|
2023-11-20 09:05:07 -07:00
|
|
|
|
|
|
|
(define %copyright '(2023))
|
|
|
|
|
2024-06-04 12:01:21 -06:00
|
|
|
(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)
|
|
|
|
|