Marked missing strings for translation

ver1_6_1
Vincent Giangiulio 2009-07-13 08:42:00 +00:00
parent 50123c8679
commit 88fa300e3a
1 changed files with 2 additions and 2 deletions

View File

@ -2914,7 +2914,7 @@ static void displayDuration(Overlay& overlay, double days)
else if (days > 1.0 / (24.0 * 60.0))
overlay << FormattedNumber(days * 24.0 * 60.0, 3, FormattedNumber::GroupThousands) << _(" minutes");
else
overlay << FormattedNumber(days * 24.0 * 60.0 * 60.0, 3, FormattedNumber::GroupThousands) << " seconds";
overlay << FormattedNumber(days * 24.0 * 60.0 * 60.0, 3, FormattedNumber::GroupThousands) << _(" seconds");
}
@ -3277,7 +3277,7 @@ static void displayPlanetInfo(Overlay& overlay,
sunVec.normalize();
double cosPhaseAngle = sunVec * ((1.0 / viewVec.length()) * viewVec);
double phaseAngle = acos(cosPhaseAngle);
overlay.oprintf("Phase angle: %.1f%s\n", radToDeg(phaseAngle), UTF8_DEGREE_SIGN);
overlay.oprintf(_("Phase angle: %.1f%s\n"), radToDeg(phaseAngle), UTF8_DEGREE_SIGN);
}
}