From 394b9c20d94450adad42788f70a99d82a4a16f9a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 18 Apr 2014 19:16:08 +0530 Subject: [PATCH] ... --- src/calibre/gui2/tweak_book/spell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/tweak_book/spell.py b/src/calibre/gui2/tweak_book/spell.py index eb2d94df1a..62fbf88be8 100644 --- a/src/calibre/gui2/tweak_book/spell.py +++ b/src/calibre/gui2/tweak_book/spell.py @@ -106,7 +106,7 @@ class AddDictionary(QDialog): # {{{ 'You must specify a nickname for this dictionary'), show=True) if nick in {d.name for d in custom_dictionaries()}: return error_dialog(self, _('Nickname already used'), _( - 'A dictionary with the nick name "%s" already exists.'), show=True) + 'A dictionary with the nick name "%s" already exists.') % nick, show=True) oxt = unicode(self.path.text()) try: num = import_from_oxt(oxt, nick)