# HG changeset patch # User Wuzzy # Date 1570876930 -3600 # Node ID 654f68cfbeac552e19795020db50c89114f0c35a # Parent 25a948f79196c1e2f25698a9ba35c5e301229d16 LuaStats: Warnings for siPointType diff -r 25a948f79196 -r 654f68cfbeac LuaStats.wiki --- a/LuaStats.wiki Sat Oct 12 11:37:10 2019 +0100 +++ b/LuaStats.wiki Sat Oct 12 11:42:10 2019 +0100 @@ -34,7 +34,6 @@ For `siPointType`, we support a few common point types. Just set `statMessage` to one of the following values below: || *Value of `statMessage`* || *Meaning* || *How it may appear in team rankings* || -|| _Not set_ || Number of kills (default) || Team 1 (8 kills) || || `"!POINTS"` || Number of points || Team 1 (25 points) || || `"!CRATES"` || Number of crates || Team 1 (25 crates) || || `"!TIME"` || Number of milliseconds, shown as seconds with 3 decimal places || Team 1 (0.025 seconds) || @@ -42,11 +41,11 @@ || `"!EMPTY"` || Don't display anything besides the team name || Team 1 || || _Anything else_ || Custom text with number. Display `statMessage` after the number || Team 1 (25 stars) || -The default text is is “kill”/“kills” and is used when you didn't use `siPointType`. +If `siPointType` was not used, the point type will default to “number of kills” and is displayed in the ranking like “Team 1 (2 kills)”. -The default and the special values with the exclamation mark will get automatically localized in the frontend, like the proper translation of the numerus form and the decimal point. Do not enclose the special values in `loc()` (see [LuaLibraryLocale]). +The default point type and the special point types (those with the exclamation mark) will get localized in the frontend, including numerus form and decimal point. Do not enclose these special values in `loc()` (see [LuaLibraryLocale]). -The custom text will not be automatically localized, so you can enclose it in `loc()`. But there's no support for the numerus form. +If you use the custom text with number, it will not be localized by the frontend. You can enclose it in `loc()` in Lua. However, this type doesn't support localization of the numerus form and decimal point, so only use this one as a last resort. === Examples ===