mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 15:16:25 +01:00
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:
parent
ede38916f5
commit
aa06f1f9f8
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue