summaryrefslogtreecommitdiff
path: root/libs/ardour/template_utils.cc
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2017-08-20 00:39:50 +0200
committerRobin Gareus <robin@gareus.org>2017-08-20 21:09:30 +0200
commitd2c163e78827f788d44e1857edbf55eaaa0d0395 (patch)
tree85f47c67757dff2ad73b9047e1cd9fe495f239ab /libs/ardour/template_utils.cc
parentc834e88e9e394f24c1cd6bfe0e26d1e0ec2a17fc (diff)
Make literals in libs/ardour/template_utils.cc translatable
Diffstat (limited to 'libs/ardour/template_utils.cc')
-rw-r--r--libs/ardour/template_utils.cc6
1 files changed, 3 insertions, 3 deletions
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<TemplateInfo>& 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<TemplateInfo>& 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 ();