1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-04 07:40:12 +01:00

fixed capitalisation of strings

This commit is contained in:
tip2tail
2016-04-08 17:54:46 +01:00
committed by James Crook
parent 4ec3ef8fb4
commit c95e7e8876

View File

@@ -639,8 +639,8 @@ int TimerRecordDialog::ExecutePostRecordActions(bool bWasStopped) {
if (iPostRecordAction == POST_TIMER_RECORD_NOTHING) { if (iPostRecordAction == POST_TIMER_RECORD_NOTHING) {
// If there is no post-record action then we can show a message indicating what has been done // If there is no post-record action then we can show a message indicating what has been done
wxString sMessage = (bWasStopped ? _("Timer Recording Stopped.") : wxString sMessage = (bWasStopped ? _("Timer Recording stopped.") :
_("Timer Recording Completed.")); _("Timer Recording completed."));
if (m_bAutoSaveEnabled) { if (m_bAutoSaveEnabled) {
if (bSaveOK) { if (bSaveOK) {
@@ -917,10 +917,10 @@ void TimerRecordDialog::PopulateOrExchange(ShuttleGui& S)
{ {
wxArrayString arrayOptions; wxArrayString arrayOptions;
arrayOptions.Add(_("Do Nothing")); arrayOptions.Add(_("Do nothing"));
arrayOptions.Add(_("Exit Audacity")); arrayOptions.Add(_("Exit audacity"));
arrayOptions.Add(_("Restart System")); arrayOptions.Add(_("Restart system"));
arrayOptions.Add(_("Shutdown System")); arrayOptions.Add(_("Shutdown system"));
m_sTimerAfterCompleteOptionsArray.Add(arrayOptions.Item(0)); m_sTimerAfterCompleteOptionsArray.Add(arrayOptions.Item(0));
m_sTimerAfterCompleteOptionsArray.Add(arrayOptions.Item(1)); m_sTimerAfterCompleteOptionsArray.Add(arrayOptions.Item(1));