msg-cli/msg/hconfig.scm

34 lines
463 B
Scheme
Raw Normal View History

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))
(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)