mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-13 14:13:32 +02:00
Define and use function Verbatim...
... in cases of "TranslatableString" that are not really translated. This makes it easier to scan the code for such unusual constructions of TranslatableString, distinct from mere mentions of the TranslatableString type.
This commit is contained in:
@@ -809,6 +809,6 @@ void ImportFileHandle::CreateProgress()
|
||||
|
||||
auto title = XO("Importing %s").Format( GetFileDescription() );
|
||||
mProgress = std::make_unique< ProgressDialog >(
|
||||
title, TranslatableString{ ff.GetFullName() } );
|
||||
title, Verbatim( ff.GetFullName() ) );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user