mirror of
https://github.com/znc/znc.git
synced 2026-07-06 09:51:25 +02:00
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:
committed by
Alexey Sokolov
parent
23c78dc318
commit
5c1fb61f45
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user