1
0
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:
Paul Licameli
2019-12-19 16:20:41 -05:00
parent a70524446e
commit e3ea93a624
27 changed files with 92 additions and 78 deletions

View File

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