From 6a237d67f1fd4ae0a9f01ea3aa6345e91848c668 Mon Sep 17 00:00:00 2001 From: James Crook Date: Mon, 21 Sep 2020 10:47:06 +0100 Subject: [PATCH] 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. --- src/DBConnection.cpp | 5 +++-- src/FileException.cpp | 6 ++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/DBConnection.cpp b/src/DBConnection.cpp index 88de59dd5..db952004d 100644 --- a/src/DBConnection.cpp +++ b/src/DBConnection.cpp @@ -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 diff --git a/src/FileException.cpp b/src/FileException.cpp index 948617f20..9fe108b5e 100644 --- a/src/FileException.cpp +++ b/src/FileException.cpp @@ -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 =