We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d812af commit d158b56Copy full SHA for d158b56
1 file changed
src/lua/configuration.c
@@ -112,6 +112,11 @@ int dt_lua_init_configuration(lua_State *L)
112
lua_pushstring(L, tmp_path);
113
lua_settable(L, -3);
114
115
+ lua_pushstring(L, "locale_dir");
116
+ dt_loc_get_localedir(tmp_path, sizeof(tmp_path));
117
+ lua_pushstring(L, tmp_path);
118
+ lua_settable(L, -3);
119
+
120
lua_pushstring(L, "version");
121
lua_pushstring(L, darktable_package_version);
122
0 commit comments