From e6571d7eb8eee18a1c0cb9a5212670d011de6324 Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Tue, 21 Aug 2018 21:22:40 +0200 Subject: [PATCH] Typo fix --- locale.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locale.lua b/locale.lua index fbabbb95..d98f2015 100644 --- a/locale.lua +++ b/locale.lua @@ -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