Skip to content
Snippets Groups Projects
Commit 773c986f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix typos

parent fc7d5cbc
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -382,7 +382,7 @@ static void termsrvr_cfg(void)
uifc.helpbuf=
"`Terminal Server Configuration:`\n"
"\n"
"The initialization settings of the Synchchronet server that provides the\n"
"The initialization settings of the Synchronet server that provides the\n"
"traditional BBS experience over `Telnet`, `SSH`, `RLogin`, or `Raw TCP`\n"
"protocols.\n"
"\n"
......@@ -501,7 +501,7 @@ static void termsrvr_cfg(void)
break;
case 23:
SAFEPRINTF(str, "%u", startup.outbuf_drain_timeout);
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "Output Buffer Draing Timeout (milliseconds)", str, 5, K_NUMBER|K_EDIT) > 0)
if(uifc.input(WIN_MID|WIN_SAV, 0, 0, "Output Buffer Drain Timeout (milliseconds)", str, 5, K_NUMBER|K_EDIT) > 0)
startup.outbuf_drain_timeout = atoi(str);
break;
case 24:
......@@ -631,7 +631,7 @@ static void websrvr_cfg(void)
uifc.helpbuf=
"`Web Server Configuration:`\n"
"\n"
"The initialization settings of the Synchchronet Web Server that provides\n"
"The initialization settings of the Synchronet Web Server that provides\n"
"support for web browser access to the BBS over `HTTP` and `HTTPS` (TLS)\n"
"protocols.\n"
"\n"
......
......@@ -97,7 +97,7 @@ int edit_sys_inetaddr(int page, int total)
{
int mode = WIN_SAV | WIN_MID;
uifc.helpbuf=
"`Sytem Internet Address:`\n"
"`System Internet Address:`\n"
"\n"
"Enter your system's Internet address (hostname or IP address) here\n"
"(e.g. `joesbbs.com`).\n"
......@@ -1322,7 +1322,7 @@ int edit_sys_datefmt(int page, int total)
"\n"
"If you would like abbreviated dates to be displayed in the traditional\n"
"U.S. date format of month first, choose `MM/DD/YY`. If you prefer the\n"
"Europaen traditional date format of day first, choose `DD/MM/YY`.\n"
"European traditional date format of day first, choose `DD/MM/YY`.\n"
;
if(page)
mode = wiz_help(page, total, uifc.helpbuf);
......@@ -1767,9 +1767,9 @@ void sys_cfg(void)
uifc.helpbuf=
"`Allow Credits to be Converted into Minutes:`\n"
"\n"
"If you want the users of your system to be allowed to convert\n"
"any credits they may have into minutes for their minute bank,\n"
"set this option to `Yes`.\n"
"If you want the users of your system to be allowed to convert any\n"
"credits they may have into minutes for their minute bank, set this\n"
"option to `Yes`.\n"
;
i=uifc.list(WIN_MID|WIN_SAV,0,0,0,&i,0
,"Allow Users to Convert Credits into Minutes"
......@@ -2133,10 +2133,9 @@ void sys_cfg(void)
uifc.helpbuf=
"`New User Default Toggle Options:`\n"
"\n"
"This menu contains the default state of new user toggle options. All new\n"
"users on your system will have their defaults set according to the\n"
"settings on this menu. The user can then change them to his or her\n"
"liking.\n"
"This menu contains the default state of new user toggle options. All\n"
"new users on your system will have their defaults set according to the\n"
"settings on this menu. The user can then change them to their liking.\n"
"\n"
"See the Synchronet User Manual (`http://synchro.net/docs/user.html`)\n"
"for more information on the individual options available.\n"
......@@ -2719,14 +2718,14 @@ void sys_cfg(void)
break;
case 16:
uifc.helpbuf=
"`Configuraiton File Backups:`\n"
"`Configuration Backups:`\n"
"\n"
"Setting this option to anything but 0 will enable automatic\n"
"backups of your configuration files when saving changes.\n"
"Setting this option to anything but 0 will enable automatic backups of\n"
"your configuration files when saving changes.\n"
;
sprintf(str,"%u",cfg.config_backup_level);
uifc.input(WIN_MID|WIN_SAV,0,0
,"Number of Configuraiton File Backups to Keep"
,"Number of Configuration File Backups to Keep"
,str,4,K_NUMBER|K_EDIT);
cfg.config_backup_level=atoi(str);
break;
......@@ -2872,9 +2871,9 @@ void sys_cfg(void)
"`Logon` Terminal logon procedure\n"
"`Sync` Terminal node is periodically synchronized\n"
"`Logoff` Terminal logoff procedure (interactive)\n"
"`Logout` Terminal logout procedure (offline)\n"
"`Logout` Terminal logout procedure (off-line)\n"
"`New User` End of new terminal user creation process\n"
"`Expired User` User account expires (offline)\n"
"`Expired User` User account expires (off-line)\n"
"`Auto Message` User chooses to re-read or edit the auto-message\n"
"`Send Feedback` User sending email to a sysop (return error to cancel)\n"
"`Chat Section` User enters chat section/menu\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment