Unix: fix a typo in sysuname & sysuptime's command descriptions

runnning -> running
This commit is contained in:
James Lu 2018-09-30 18:03:29 -07:00
parent 88894d69bc
commit 9ba21a1cad
5 changed files with 10 additions and 10 deletions

View File

@ -302,7 +302,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uptime from the system the bot is runnning on.\n" " Returns the uptime from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
"ei ota parametrejän\n" "ei ota parametrejän\n"
@ -313,7 +313,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uname -a from the system the bot is runnning on.\n" " Returns the uname -a from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
"ei ota parametrejä\n" "ei ota parametrejä\n"

View File

@ -237,7 +237,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uptime from the system the bot is runnning on.\n" " Returns the uptime from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
"ne prend pas d'argument\n" "ne prend pas d'argument\n"
@ -248,7 +248,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uname -a from the system the bot is runnning on.\n" " Returns the uname -a from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
"ne prend pas d'argument\n" "ne prend pas d'argument\n"

View File

@ -268,7 +268,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uptime from the system the bot is runnning on.\n" " Returns the uptime from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
"non necessita argomenti\n" "non necessita argomenti\n"
@ -281,7 +281,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uname -a from the system the bot is runnning on.\n" " Returns the uname -a from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
"non necessita argomenti\n" "non necessita argomenti\n"

View File

@ -216,7 +216,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uptime from the system the bot is runnning on.\n" " Returns the uptime from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""
@ -225,7 +225,7 @@ msgstr ""
msgid "" msgid ""
"takes no arguments\n" "takes no arguments\n"
"\n" "\n"
" Returns the uname -a from the system the bot is runnning on.\n" " Returns the uname -a from the system the bot is running on.\n"
" " " "
msgstr "" msgstr ""

View File

@ -343,7 +343,7 @@ class Unix(callbacks.Plugin):
def sysuptime(self, irc, msg, args): def sysuptime(self, irc, msg, args):
"""takes no arguments """takes no arguments
Returns the uptime from the system the bot is runnning on. Returns the uptime from the system the bot is running on.
""" """
uptimeCmd = self.registryValue('sysuptime.command') uptimeCmd = self.registryValue('sysuptime.command')
if uptimeCmd: if uptimeCmd:
@ -372,7 +372,7 @@ class Unix(callbacks.Plugin):
def sysuname(self, irc, msg, args): def sysuname(self, irc, msg, args):
"""takes no arguments """takes no arguments
Returns the uname -a from the system the bot is runnning on. Returns the uname -a from the system the bot is running on.
""" """
unameCmd = self.registryValue('sysuname.command') unameCmd = self.registryValue('sysuname.command')
if unameCmd: if unameCmd: