summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-03-21 13:37:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-03-21 13:37:33 +0000
commitaa06f1f9f8be010d4abfc5b5c2fd61ab8e39fa58 (patch)
treeb229dba7c1ef094bac69330b28ddae872370f7ce
parentede38916f57986f3ad0afd0b8e1ef524d23f6efb (diff)
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
-rw-r--r--gtk2_ardour/sfdb_ui.cc8
1 files 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;
}