1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-19 09:30:06 +02:00

Included an i18n hint in format per Gale's advice

This commit is contained in:
tip2tail 2016-09-30 14:23:19 +01:00 committed by James Crook
parent a4ae301a5b
commit 54ee80b798

View File

@ -5527,6 +5527,7 @@ wxString AudacityProject::GetHoursMinsString(int iMinutes)
sHours = wxPLURAL("hour", "hours", iHours);
sMins = wxPLURAL("minute", "minutes", iMins);
/* i18n-hint: A time in hours and minutes. Only translate the "and". */
sFormatted.Printf(_("%d %s and %d %s."), iHours, sHours, iMins, sMins);
return sFormatted;
}