From 06156b3034353cc1d62b4f825b1fcad799e944eb Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Mon, 22 Mar 2021 14:29:20 +0200 Subject: Lang: Began replacing UI strings with IDs IssueID #192 --- src/app.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/app.c') diff --git a/src/app.c b/src/app.c index 2bf2ad4a..4789c62b 100644 --- a/src/app.c +++ b/src/app.c @@ -507,6 +507,7 @@ static void communicateWithRunningInstance_App_(iApp *d, iProcessId instance, static void init_App_(iApp *d, int argc, char **argv) { init_CommandLine(&d->args, argc, argv); + init_Lang(); /* Where was the app started from? We ask SDL first because the command line alone is not a reliable source of this information, particularly when it comes to different operating systems. */ { @@ -715,6 +716,7 @@ static void deinit_App(iApp *d) { deinit_Ipc(); deinit_SortedArray(&d->tickers); deinit_Periodic(&d->periodic); + deinit_Lang(); iRecycle(); } -- cgit v1.2.3