diff options
Diffstat (limited to 'abrechenbarkeit.lua')
-rwxr-xr-x | abrechenbarkeit.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/abrechenbarkeit.lua b/abrechenbarkeit.lua index be60a18..e210fed 100755 --- a/abrechenbarkeit.lua +++ b/abrechenbarkeit.lua @@ -93,7 +93,7 @@ local function load_translations(langs) if file ~= nil then for l in file:lines("l") do if l ~= "" then - local key, value = string.match(l, "^([^=]+)=([^=]*)") + local key, value = string.match(l, "^([^=%s]+)%s?=%s?([^=]*)") if key ~= nil and value ~= nil then t["+" .. key] = value end |