Mòdul:SimpleArgs/i18n/en
Aparença
< Mòdul:SimpleArgs | i18n
Podeu crear la pàgina d'ús per documentar aquest mòdul Lua. |
local i18n = {
["NotFoundArgName"] = "The argument name \"$1\" is invalid",
["SIsNotNumber"] = "\"$1\" is not a number",
["NIsNotPosNumber"] = "$1 is not a positive number",
["NIsNotZeroOrPosNumber"] = "$1 is not zero or a positive number",
["NIsNotInt"] = "$1 is not an integer.",
["NIsNotInRange"] = "$1 is not between $2 and $3",
["NIsLessThan"] = "$1 is less than $2",
["NIsGreaterThan"] = "$1 is greater than $2",
["STabIsNotInRange"] = "The item number ($1) is not between $2 and $3",
["STabFewItems"] = "There are too few elements ($1), at least $2 are required",
["SIsNotAssigned"] = "Required argument is missing",
["CharNotFoundInPattern"] = "\"$1\" is not a character of \"$2\"",
["SNotFoundInTab"] = "\"$1\" is not found in \"$2\"",
["EmptyValue"] = "\"$1\" has not a value",
["SizeUnitRequired"] = "Size unit required (em, px or %)",
["InvalSizeUnit"] = "Invalid unit ($1)",
["SizeWithoutNumber"] = "Without number",
["InvalAlign"] = "Invalid alignment ($1)",
["InvalBool"] = "Invalid boolean ($1)",
["left"] = "left",
["right"] = "right",
["top"] = "top",
["bottom"] = "bottom",
["center"] = "center",
["Yes"] = "yes|y|true|t|1",
["No"] = "no|n|false|f|0",
["PossibleValues"] = "Possible values: $1",
}
return {
i18n = i18n,
}