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:
@@ -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));
|
||||||
|
|||||||
Reference in New Issue
Block a user