1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Bug 2539 - Residual wording changes to warning messages.

QA asked for these improved wordings so that it is clearer to users what is going on.
This commit is contained in:
James Crook 2020-09-21 10:47:06 +01:00
parent c48b813795
commit 6a237d67f1
2 changed files with 7 additions and 4 deletions

View File

@ -330,8 +330,9 @@ void DBConnection::CheckpointThread()
? XO("Could not write to %s.\n" ).Format( path )
: TranslatableString{};
auto message = XO(
"Disk is full. For tips on freeing up space, click the help button.\n"
"%s\n"
"Disk is full.\n"
"%s\n"
"For tips on freeing up space, click the help button."
).Format( message1 );
// Throw and catch and AudacityException, enqueuing the

View File

@ -28,8 +28,10 @@ TranslatableString FileException::ErrorMessage() const
break;
case Cause::Write:
format =
XO("Audacity failed to write to a file.\n"
"Perhaps %s is not writable or the disk is full.");
XO("Audacity failed to write to a file.\n"
"Perhaps %s is not writable or the disk is full.\n"
"For tips on freeing up space, click the help button."
);
break;
case Cause::Rename:
format =