mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-14 15:29:53 +02:00
i18n hints and fix one missed translation
This commit is contained in:
parent
38f97349f5
commit
ca4c9b81fc
@ -1076,6 +1076,8 @@ ProgressResult TimerRecordDialog::WaitForStart()
|
|||||||
_("Audacity Timer Record - Waiting for Start"),
|
_("Audacity Timer Record - Waiting for Start"),
|
||||||
columns,
|
columns,
|
||||||
pdlgHideStopButton | pdlgConfirmStopCancel | pdlgHideElapsedTime,
|
pdlgHideStopButton | pdlgConfirmStopCancel | pdlgHideElapsedTime,
|
||||||
|
/* i18n-hint: "in" means after a duration of time,
|
||||||
|
which is shown below this string */
|
||||||
_("Recording will commence in:"));
|
_("Recording will commence in:"));
|
||||||
|
|
||||||
auto updateResult = ProgressResult::Success;
|
auto updateResult = ProgressResult::Success;
|
||||||
@ -1093,7 +1095,10 @@ ProgressResult TimerRecordDialog::PreActionDelay(int iActionIndex, TimerRecordCo
|
|||||||
{
|
{
|
||||||
wxString sAction = m_pTimerAfterCompleteChoiceCtrl->GetString(iActionIndex);
|
wxString sAction = m_pTimerAfterCompleteChoiceCtrl->GetString(iActionIndex);
|
||||||
wxString sCountdownLabel;
|
wxString sCountdownLabel;
|
||||||
sCountdownLabel.Printf("%s in:", sAction);
|
/* i18n-hint: %s is one of "Do nothing", "Exit Audacity", "Restart system",
|
||||||
|
or "Shutdown system", and
|
||||||
|
"in" means after a duration of time, shown below this string */
|
||||||
|
sCountdownLabel.Printf(_("%s in:"), sAction);
|
||||||
|
|
||||||
// Two column layout.
|
// Two column layout.
|
||||||
TimerProgressDialog::MessageTable columns(2);
|
TimerProgressDialog::MessageTable columns(2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user