controlpanel: Change "double" to "number" (#1468)

For a programmer, "double" makes sense as a data type, but for a human this is just a number.
This commit is contained in:
Uli Schlachter
2017-12-03 00:29:00 +01:00
committed by Alexey Sokolov
parent 23c78dc318
commit 5c1fb61f45
+2 -2
View File
@@ -77,7 +77,7 @@ class CAdminMod : public CModule {
const CString str = t_s("String");
const CString boolean = t_s("Boolean (true/false)");
const CString integer = t_s("Integer");
const CString doublenum = t_s("Double");
const CString number = t_s("Number");
const CString sCmdFilter = sLine.Token(1, false);
const CString sVarFilter = sLine.Token(2, true).AsLower();
@@ -131,7 +131,7 @@ class CAdminMod : public CModule {
{"Ident", str},
{"RealName", str},
{"BindHost", str},
{"FloodRate", doublenum},
{"FloodRate", number},
{"FloodBurst", integer},
{"JoinDelay", integer},
#ifdef HAVE_ICU