summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorThomas Voss <thomas.voss@humanwave.nl> 2025-09-05 16:33:12 +0200
committerThomas Voss <thomas.voss@humanwave.nl> 2025-09-05 16:33:12 +0200
commite1e5144c27e69ee0d2eb9589422a2de717f0053e (patch)
treec0627c2f4b00c428dad92a3ce69ccb36a7ab86f3 /main.c
parentdf78b72fe58251bb31c8bc5ab34460e44220383d (diff)
Make PODIR dynamic
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 968a807..b8d6526 100644
--- a/main.c
+++ b/main.c
@@ -35,7 +35,7 @@ int
main(int argc, char **argv)
{
setlocale(LC_ALL, "");
- bindtextdomain("messages", "./po");
+ bindtextdomain("messages", PODIR);
textdomain("messages");
char interval = 's';