summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-04-12 15:35:36 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-04-12 15:35:36 +0000
commitfad2218b11f6b21671e4ae822230aad016f5e365 (patch)
treeb443ca1eec50ab11881642f4993190238effded7
parent39b66ff402cc4b1c566301d01133e39bcc894a4c (diff)
fix untranslated string in export dialog
git-svn-id: svn://localhost/ardour2/trunk@1705 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/export_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 1c70c758a5..5790d5ef64 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -874,7 +874,7 @@ ExportDialog::export_cue_file (Locations::LocationList& locations, const string&
void
ExportDialog::do_export_cd_markers (const string& path,const string& cuefile_type)
{
- if (cuefile_type == "TOC") {
+ if (cuefile_type == _("TOC")) {
session->locations()->apply (*this, &ExportDialog::export_toc_file, path);
} else {
session->locations()->apply (*this, &ExportDialog::export_cue_file, path);