1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-11 17:41:15 +02:00

Made new strings agree with FutureStrings.h; removed from there

This commit is contained in:
Paul Licameli 2021-06-13 19:09:28 -04:00
parent 7d76e06d84
commit 5cf1d514f6
2 changed files with 3 additions and 7 deletions

View File

@ -100,11 +100,7 @@ Some example strings are also given first, to document the syntax.
// Crash & error report window // Crash & error report window
XO("Problem Report for Audacity"), XO("Problem Report for Audacity"),
XO("Click \"Send\" to submit the report to Audacity. This information is collected anonymously."),
XO("Problem details"), XO("Problem details"),
XO("Comments"),
XC("&Send", "crash reporter button"),
XC("&Don't send", "crash reporter button"),
// i18n-hint C++ programming exception // i18n-hint C++ programming exception
XO("Exception code 0x%x"), XO("Exception code 0x%x"),
// i18n-hint C++ programming exception // i18n-hint C++ programming exception

View File

@ -107,7 +107,7 @@ ErrorReportDialog::ErrorReportDialog(
S.AddSpace(0, 20); S.AddSpace(0, 20);
S.AddVariableText(XO( S.AddVariableText(XO(
"Click \"Send\" to submit report to Audacity. This information is collected anonymously.")) "Click \"Send\" to submit the report to Audacity. This information is collected anonymously."))
->SetFont(textFont); ->SetFont(textFont);
S.AddSpace(0, 20); S.AddSpace(0, 20);
@ -145,11 +145,11 @@ ErrorReportDialog::ErrorReportDialog(
S.AddSpace(0, 0, 1); S.AddSpace(0, 0, 1);
S.Id(wxID_NO).AddButton(XO("Don't send")); S.Id(wxID_NO).AddButton(XC("&Don't send", "crash reporter button"));
S.AddSpace(13, 0); S.AddSpace(13, 0);
S.Id(wxID_YES).AddButton(XO("Send")); S.Id(wxID_YES).AddButton(XC("&Send", "crash reporter button"));
} }
S.EndHorizontalLay(); S.EndHorizontalLay();