summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--portato/db/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/db/database.py b/portato/db/database.py
index 1816e4e..6e92d79 100644
--- a/portato/db/database.py
+++ b/portato/db/database.py
@@ -47,7 +47,7 @@ class Database (object):
TYPES = {
SEARCH_NAME : _("Name"),
SEARCH_DESCRIPTION : _("Description"),
- SEARCH_NAME | SEARCH_DESCRIPTION : _("Name + Description")
+ SEARCH_NAME | SEARCH_DESCRIPTION : "%s + %s" % (_("Name"), _("Description"))
}