summaryrefslogtreecommitdiff
path: root/gtk2_ardour/sfdb_ui.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2019-12-10 14:10:11 -0600
committerBen Loftis <ben@harrisonconsoles.com>2019-12-10 14:10:32 -0600
commit50d118f8b12535def3883d63f2042bf1f286c17f (patch)
treef6c282f1970b36a7094bb729fd61fbc8937babf1 /gtk2_ardour/sfdb_ui.cc
parent963f2a470a63ac3949d235ccf09b0bfb7c63e342 (diff)
Source List nomenclature: Whole files get imported to the SOURCE list.
Diffstat (limited to 'gtk2_ardour/sfdb_ui.cc')
-rw-r--r--gtk2_ardour/sfdb_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc
index 4b35bde51a..940e7dd035 100644
--- a/gtk2_ardour/sfdb_ui.cc
+++ b/gtk2_ardour/sfdb_ui.cc
@@ -122,7 +122,7 @@ string2importmode (string const & str)
return ImportAsTrack;
} else if (str == _("to selected tracks")) {
return ImportToTrack;
- } else if (str == _("to region list")) {
+ } else if (str == _("to source list")) {
return ImportAsRegion;
} else if (str == _("as new tape tracks")) {
return ImportAsTapeTrack;
@@ -142,7 +142,7 @@ importmode2string (ImportMode mode)
case ImportToTrack:
return _("to selected tracks");
case ImportAsRegion:
- return _("to region list");
+ return _("to source list");
case ImportAsTapeTrack:
return _("as new tape tracks");
}