From 6f07ecab4a5b3c2cdb3c04a3cd39d6f82119ea10 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 28 Apr 2010 07:25:56 -0600 Subject: [PATCH] Fix #5389 (Internalization of translation string) --- src/calibre/library/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/cli.py b/src/calibre/library/cli.py index 7b4c6f20da..7f2c4ab926 100644 --- a/src/calibre/library/cli.py +++ b/src/calibre/library/cli.py @@ -822,7 +822,7 @@ def do_remove_custom_column(db, label, force): if not force: q = raw_input(_('You will lose all data in the column: %r.' ' Are you sure (y/n)? ')%label) - if q.lower().strip() != 'y': + if q.lower().strip() != _('y'): return db.delete_custom_column(label=label) prints('Column %r removed.'%label)