From d2c163e78827f788d44e1857edbf55eaaa0d0395 Mon Sep 17 00:00:00 2001 From: Johannes Mueller Date: Sun, 20 Aug 2017 00:39:50 +0200 Subject: Make literals in libs/ardour/template_utils.cc translatable --- libs/ardour/template_utils.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/ardour/template_utils.cc') diff --git a/libs/ardour/template_utils.cc b/libs/ardour/template_utils.cc index d7e4a3febc..80baf47f54 100644 --- a/libs/ardour/template_utils.cc +++ b/libs/ardour/template_utils.cc @@ -106,13 +106,13 @@ find_session_templates (vector& template_names, bool read_xml) continue; } - string created_with = "(unknown)"; + string created_with = _("(unknown)"); XMLNode *pv = tree.root()->child("ProgramVersion"); if (pv != 0) { pv->get_property (X_("created-with"), created_with); } - string description = "No Description"; + string description = _("No Description"); XMLNode *desc = tree.root()->child("description"); if (desc != 0) { description = desc->attribute_value(); @@ -149,7 +149,7 @@ find_route_templates (vector& template_names) XMLNode* root = tree.root(); - string description = "No Description"; + string description = _("No Description"); XMLNode* desc = tree.root()->child ("description"); if (desc) { description = desc->attribute_value (); -- cgit v1.2.3