From 88fa300e3a673e8fe26a8e719ee0c2aed94a9a6e Mon Sep 17 00:00:00 2001 From: Vincent Giangiulio Date: Mon, 13 Jul 2009 08:42:00 +0000 Subject: [PATCH] Marked missing strings for translation --- src/celestia/celestiacore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/celestia/celestiacore.cpp b/src/celestia/celestiacore.cpp index 337858b76..b0123137e 100644 --- a/src/celestia/celestiacore.cpp +++ b/src/celestia/celestiacore.cpp @@ -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); } }