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
This commit is contained in:
Paul Davis 2008-03-21 13:37:33 +00:00
parent ede38916f5
commit aa06f1f9f8

View file

@ -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;
}