https://bugs.kde.org/show_bug.cgi?id=507568

--- Comment #14 from [email protected] ---
Modifying Info.plist did not fix it

This did fix it:

force_locale.c :

#include <locale.h>
#include <stdlib.h>

__attribute__((constructor))
void force_locale() {
    setenv("LANG", "en_GB.UTF-8", 1);
    setenv("LC_ALL", "en_GB.UTF-8", 1);
    setlocale(LC_ALL, "en_GB.UTF-8");
}


$$ clang -dynamiclib -o force_locale.dylib force_locale.c

$$ DYLD_INSERT_LIBRARIES=$PWD/force_locale.dylib
/Applications/kdenlive.app/Contents/MacOS/kdenlive

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to