From 7a1215f9f459b626fb2f4fe148398b1e60b5b28d Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 10 Nov 2014 00:15:42 -0800 Subject: [PATCH] PluginDownloader: fix a couple of typos --- plugins/PluginDownloader/locales/fi.po | 4 ++-- plugins/PluginDownloader/locales/fr.po | 4 ++-- plugins/PluginDownloader/plugin.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/PluginDownloader/locales/fi.po b/plugins/PluginDownloader/locales/fi.po index eb64b3b27..33cba59c6 100644 --- a/plugins/PluginDownloader/locales/fi.po +++ b/plugins/PluginDownloader/locales/fi.po @@ -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 ." #: 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 diff --git a/plugins/PluginDownloader/locales/fr.po b/plugins/PluginDownloader/locales/fr.po index 06aabf195..dece0e815 100644 --- a/plugins/PluginDownloader/locales/fr.po +++ b/plugins/PluginDownloader/locales/fr.po @@ -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 n’y a pas de garantie que le plugin " @@ -105,7 +105,7 @@ msgstr "" "Affiche des informations sur depuis le ." #: 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 diff --git a/plugins/PluginDownloader/plugin.py b/plugins/PluginDownloader/plugin.py index 7cdb89303..5f4c2cc8d 100644 --- a/plugins/PluginDownloader/plugin.py +++ b/plugins/PluginDownloader/plugin.py @@ -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.'))