typos: "ADM/BWM" -> "ADM BWF"

This commit is contained in:
Ben Loftis 2024-03-11 09:14:44 -05:00
parent 310e7f2279
commit f873f9f621
2 changed files with 4 additions and 4 deletions

View File

@ -279,7 +279,7 @@ SimpleExportDialog::start_export ()
if (rend >= t24h) {
hide ();
std::string txt = _("Error: ADM/BWN files timecode cannot be past 24h.");
std::string txt = _("Error: ADM BWF files timecode cannot be past 24h.");
Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
msg.run ();
return;

View File

@ -29,14 +29,14 @@ function factory () return function ()
end
if 0 ~= os.execute ("master_info -h") then
local md = LuaDialog.Message ("Master Info Tool Missing", "The 'master_info' tool from Dolby_Atmos_Storage_SIDK_v2.3.2/Tools/ needs to be in $PATH for ADM/BWF meta-data import to work.", LuaDialog.MessageType.Error, LuaDialog.ButtonType.Close)
local md = LuaDialog.Message ("Master Info Tool Missing", "The 'master_info' tool from Dolby_Atmos_Storage_SIDK_v2.3.2/Tools/ needs to be in $PATH for ADM BWF meta-data import to work.", LuaDialog.MessageType.Error, LuaDialog.ButtonType.Close)
print (md:run())
return 1
end
local rv = LuaDialog.Dialog ("Load ADM/BWF File",
local rv = LuaDialog.Dialog ("Load ADM BWF File",
{
{ type = "file", key = "file", title = "Choose ADM/BWF File", path = "" },
{ type = "file", key = "file", title = "Choose ADM BWF File", path = "" },
}):run()
if (not rv or not ARDOUR.LuaAPI.file_test (rv['file'], ARDOUR.LuaAPI.FileTest.Exists)) then