[chore] Remove leftover debug print (#9080)

reviewable/pr9090/r1
Frans de Jonge 2 years ago committed by GitHub
parent 8da18d403b
commit a8db251bd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -217,7 +217,6 @@ function GetText_mt.__index.changeLang(new_lang)
plurals = "n == 1 ? 0 : (n == 2) ? 1 : (n > 10 && n % 10 == 0) ? 2 : 3"
end
-- Hardcoded workaround for Latvian.
print(plurals)
if plurals == "n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2" then
plurals = "n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 ? 0 : (n % 10 == 1 && n % 100 != 11) ? 1 : 2"
end

Loading…
Cancel
Save