aboutsummaryrefslogtreecommitdiff
path: root/whispers
diff options
context:
space:
mode:
Diffstat (limited to 'whispers')
-rw-r--r--whispers/hconfig.scm36
1 files changed, 36 insertions, 0 deletions
diff --git a/whispers/hconfig.scm b/whispers/hconfig.scm
new file mode 100644
index 0000000..727fb62
--- /dev/null
+++ b/whispers/hconfig.scm
@@ -0,0 +1,36 @@
+(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)
+