From aa06f1f9f8be010d4abfc5b5c2fd61ab8e39fa58 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 21 Mar 2008 13:37:33 +0000 Subject: [PATCH] fix missing i18n for import mode strings when comparing with whatever the user selected git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3163 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/sfdb_ui.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc index 79880ef13a..d40487e5f5 100644 --- a/gtk2_ardour/sfdb_ui.cc +++ b/gtk2_ardour/sfdb_ui.cc @@ -68,13 +68,13 @@ ustring SoundFileBrowser::persistent_folder; static ImportMode string2importmode (string str) { - if (str == "as new tracks") { + if (str == _("as new tracks")) { return ImportAsTrack; - } else if (str == "to selected tracks") { + } else if (str == _("to selected tracks")) { return ImportToTrack; - } else if (str == "to region list") { + } else if (str == _("to region list")) { return ImportAsRegion; - } else if (str == "as new tape tracks") { + } else if (str == _("as new tape tracks")) { return ImportAsTapeTrack; }