mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 08:09:32 +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:
parent
c48b813795
commit
6a237d67f1
@ -330,8 +330,9 @@ void DBConnection::CheckpointThread()
|
|||||||
? XO("Could not write to %s.\n" ).Format( path )
|
? XO("Could not write to %s.\n" ).Format( path )
|
||||||
: TranslatableString{};
|
: TranslatableString{};
|
||||||
auto message = XO(
|
auto message = XO(
|
||||||
"Disk is full. For tips on freeing up space, click the help button.\n"
|
"Disk is full.\n"
|
||||||
"%s\n"
|
"%s\n"
|
||||||
|
"For tips on freeing up space, click the help button."
|
||||||
).Format( message1 );
|
).Format( message1 );
|
||||||
|
|
||||||
// Throw and catch and AudacityException, enqueuing the
|
// Throw and catch and AudacityException, enqueuing the
|
||||||
|
@ -28,8 +28,10 @@ TranslatableString FileException::ErrorMessage() const
|
|||||||
break;
|
break;
|
||||||
case Cause::Write:
|
case Cause::Write:
|
||||||
format =
|
format =
|
||||||
XO("Audacity failed to write to a file.\n"
|
XO("Audacity failed to write to a file.\n"
|
||||||
"Perhaps %s is not writable or the disk is full.");
|
"Perhaps %s is not writable or the disk is full.\n"
|
||||||
|
"For tips on freeing up space, click the help button."
|
||||||
|
);
|
||||||
break;
|
break;
|
||||||
case Cause::Rename:
|
case Cause::Rename:
|
||||||
format =
|
format =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user