diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-04-06 15:07:31 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-04-06 15:07:31 +0000 |
commit | b4d51711c9aed379928dec7999f2c4202571e282 (patch) | |
tree | 52ce88c53342f90b46bb277a0de0219527436c36 /src | |
parent | db2f31eea681a287b4d3891c5e7642096e0dec3d (diff) |
Reverted the rusian operinfo string back to english
git-svn-id: svn://svn.anope.org/anope/trunk@1391 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1106 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/os_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/os_info.c b/src/modules/os_info.c index ae5da2e57..0343f957e 100644 --- a/src/modules/os_info.c +++ b/src/modules/os_info.c @@ -295,7 +295,7 @@ int myNickInfo(User * u) if ((na = findnick(nick))) { /* If we have any info on this user */ if ((info = moduleGetData(&na->nc->moduleData, "info"))) { - notice_user(s_NickServ, u, " Ξοεπ-Θντξ: %s", info); + notice_user(s_NickServ, u, " OperInfo: %s", info); free(info); } /* NickCore not found! */ @@ -331,7 +331,7 @@ int myChanInfo(User * u) if ((ci = cs_findchan(chan))) { /* If we have any info on this channel */ if ((info = moduleGetData(&ci->moduleData, "info"))) { - notice_user(s_ChanServ, u, " Ξοεπ-Θντξ: %s", info); + notice_user(s_ChanServ, u, " OperInfo: %s", info); free(info); } } |