ERepublik & Packages: Fix typo.

master
skizzhg 2011-08-24 16:53:57 +02:00 committed by Valentin Lorentz
parent e00cbe5c59
commit 497640ebab
2 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ class ERepublik(callbacks.Plugin):
citizen = getCitizen(irc, name)
if citizen is None:
return
irc.reply(_('%s has the fellowing medal(s): %s') %
irc.reply(_('%s has the following medal(s): %s') %
(name, citizen.getMedals()))
medals = wrap(medals, ['text'])

View File

@ -123,7 +123,7 @@ class Packages(callbacks.Plugin):
def install(self, irc, msg, args, filename, optlist):
"""<filename> [--force]
Installs the package. If the package has been downloaded with Package,
Installs the package. If the package has been downloaded with Packages,
just give the package name; otherwise, give the full path (including
the extension).
If given, --force disables sanity checks (usage is deprecated)."""
@ -154,7 +154,7 @@ class Packages(callbacks.Plugin):
failures.append(_('%s (>=%s needed, but %s available)') %
(feature, version, world.features[feature]))
if failures != []:
irc.error(_('Missing dependency(ies) : ') +
irc.error(_('Missing dependency(ies): ') +
', '.join(failures))
return
directories = conf.supybot.directories.plugins()