diff --git a/plugins/Aka/locales/fi.po b/plugins/Aka/locales/fi.po index a015f86bb..d2b49eef5 100644 --- a/plugins/Aka/locales/fi.po +++ b/plugins/Aka/locales/fi.po @@ -32,8 +32,8 @@ msgstr "Tämä Aka on jo olemassa." #: plugin.py:169 plugin.py:181 plugin.py:195 plugin.py:291 plugin.py:308 #: plugin.py:325 -msgid "This Aka does not exist" -msgstr "Tätä Akaa ei ole olemassakaan" +msgid "This Aka does not exist." +msgstr "Tätä Akaa ei ole olemassakaan." #: plugin.py:293 msgid "This Aka is already locked." diff --git a/plugins/Aka/plugin.py b/plugins/Aka/plugin.py index c09a8d451..789ad8622 100644 --- a/plugins/Aka/plugin.py +++ b/plugins/Aka/plugin.py @@ -671,7 +671,7 @@ class Aka(callbacks.Plugin): }), 'user', 'something']) def show(self, irc, msg, args, optlist, name): - """ + """[--channel <#channel>] This command shows the content of an Aka. """ @@ -686,7 +686,7 @@ class Aka(callbacks.Plugin): if command: irc.reply(command) else: - irc.error(_('This Aka does not exist')) + irc.error(_('This Aka does not exist.')) show = wrap(show, [getopts({'channel': 'somethingWithoutSpaces'}), 'text'])