PluginDownloader: fix a couple of typos

This commit is contained in:
James Lu 2014-11-10 00:15:42 -08:00
parent 4516d910f6
commit 7a1215f9f4
3 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@ msgstr ""
#: plugin.py:178
msgid ""
"Plugin was designed for Python 2, but an attempt to convert it to Python 3 "
"has been made. There is no garantee it will work, though."
"has been made. There is no guarantee it will work, though."
msgstr ""
"Lisä-osa suunniteltiin Python 2:lle, mutta yritys muuntaa se Python 3:lle on "
"tehty. Ei kuitenkaan ole takuuta, että se toimisi."
@ -110,7 +110,7 @@ msgstr ""
" Näyttää tietoja <lisäosasta> <ohjelmistolähteessä>."
#: plugin.py:380
msgid "No README found for this plugin"
msgid "No README found for this plugin."
msgstr "Tämän lisäosan README-tiedostoa ei löydy."
#: plugin.py:383

View File

@ -29,7 +29,7 @@ msgstr ""
#: plugin.py:178
msgid ""
"Plugin was designed for Python 2, but an attempt to convert it to Python 3 "
"has been made. There is no garantee it will work, though."
"has been made. There is no guarantee it will work, though."
msgstr ""
"Ce plugin a été conçu pour Python 2, mais une tentative de conversion à "
"Python 3 a été faite. Cependant, il ny a pas de garantie que le plugin "
@ -105,7 +105,7 @@ msgstr ""
"Affiche des informations sur <plugin> depuis le <dépôt>."
#: plugin.py:372
msgid "No README found for this plugin"
msgid "No README found for this plugin."
msgstr "Aucun README trouvé pour ce plugin."
#: plugin.py:375

View File

@ -177,7 +177,7 @@ class GithubRepository(GitRepository):
.wait()
return _('Plugin was designed for Python 2, but an attempt to '
'convert it to Python 3 has been made. There is no '
'garantee it will work, though.')
'guarantee it will work, though.')
else:
return _('Plugin successfully installed.')
@ -381,7 +381,7 @@ class PluginDownloader(callbacks.Plugin):
else:
info = repositories[repository].getInfo(plugin)
if info is None:
irc.error(_('No README found for this plugin'))
irc.error(_('No README found for this plugin.'))
else:
if info.startswith('Insert a description of your plugin here'):
irc.error(_('This plugin has no description.'))