Added Korean and French translations

This commit is contained in:
Luca Deri 2024-06-29 17:01:09 +02:00
parent 2fa03ec679
commit 83675998ee
10 changed files with 16789 additions and 9 deletions

View file

@ -219,6 +219,10 @@ end
-- ##############################################
function isIPv4(address)
if(address == nil) then
return false
end
-- Reuse the for loop to check the address validity
local checkAddress = (function(chunks)
for _, v in pairs(chunks) do