From 1c66a85246ac7a681f6f5ba3c2e8ba415b50bf7e Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Sat, 2 Jul 2016 20:53:07 -0700 Subject: [PATCH] move the right paren in, so the string gets translated --- gramps/cli/clidbman.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gramps/cli/clidbman.py b/gramps/cli/clidbman.py index d8f5be8c5..b20724165 100644 --- a/gramps/cli/clidbman.py +++ b/gramps/cli/clidbman.py @@ -427,7 +427,9 @@ class CLIDbManager: for (name, directory) in match_list: if user is None or user.prompt( _('Remove family tree warning'), - _('Are you sure you want to remove the family tree named\n"%s"?' % name), + _('Are you sure you want to remove ' + 'the family tree named\n"%s"?' + ) % name, _('yes'), _('no'), default_label=_('no')): try: for (top, dirs, files) in os.walk(directory):