This commit is contained in:
ElPumpo
2018-08-21 21:22:40 +02:00
parent e83a17de60
commit e6571d7eb8
+2 -2
View File
@@ -7,11 +7,11 @@ function _(str, ...) -- Translate string
if Locales[Config.Locale][str] ~= nil then
return string.format(Locales[Config.Locale][str], ...)
else
return 'Translation [' .. Config.Locale .. '][' .. str .. '] does not exists'
return 'Translation [' .. Config.Locale .. '][' .. str .. '] does not exist'
end
else
return 'Locale [' .. Config.Locale .. '] does not exists'
return 'Locale [' .. Config.Locale .. '] does not exist'
end
end