aboutsummaryrefslogtreecommitdiff
(define-module
  (whispers 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
  "Runciter <runciter@whispers-vpn.org>")

(define %license 'gpl3+)

(define %copyright '(2024))

(define %gettext-domain "whispers")

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