From 430c64084fc1fbfe7b9735f9719acd53ea2c3f88 Mon Sep 17 00:00:00 2001 From: richardash1981 Date: Sat, 6 Mar 2010 16:27:23 +0000 Subject: [PATCH] Add i18n hint for the libsndfile error message, in response to query from Atsushi YOSHIDA --- src/export/ExportPCM.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/export/ExportPCM.cpp b/src/export/ExportPCM.cpp index ddba0221a..a35f104b1 100644 --- a/src/export/ExportPCM.cpp +++ b/src/export/ExportPCM.cpp @@ -548,6 +548,9 @@ int ExportPCM::Export(AudacityProject *project, char buffer2[1000]; sf_error_str(sf, buffer2, 1000); wxMessageBox(wxString::Format( + /* i18n-hint: %s will be the error message from libsndfile, which + * is usually something unhelpful (and untranslated) like "system + * error" */ _("Error while writing %s file (disk full?).\nLibsndfile says \"%s\""), formatStr.c_str(), wxString::FromAscii(buffer2).c_str()));