From dfcb624e2260c996b6bf54a87913091b4c2d7669 Mon Sep 17 00:00:00 2001 From: Jens Seidler Date: Sun, 4 Dec 2005 22:17:07 +0000 Subject: [PATCH] Localization: Project specific button text added to translation sources (Localization.cpp, Localization.h) svn path=/trunk/boinc/; revision=9032 --- clientgui/Localization.cpp | 27 +++++++++++++++++++++++++-- clientgui/Localization.h | 26 +++++++++++++++++++------- 2 files changed, 44 insertions(+), 9 deletions(-) diff --git a/clientgui/Localization.cpp b/clientgui/Localization.cpp index 5197df5c2d..2587733246 100644 --- a/clientgui/Localization.cpp +++ b/clientgui/Localization.cpp @@ -118,8 +118,8 @@ CLocalization::CLocalization() { m_strPAHTeamDesc = _("Info about your Team"); - // ClimatePrediciton.net - m_strCPDNHelpName = + // ClimatePrediciton.net + m_strCPDNHelpName = _("Help"); m_strCPDNHelpDesc = _("Get help for climateprediction.net"); @@ -135,6 +135,29 @@ CLocalization::CLocalization() { _("Team"); m_strCPDNTeamDesc = _("Info about your team"); + + // World Community Grid + m_strWCGHelpName = + _("Help"); + m_strWCGHelpDesc = + _("Search for help in our help system"); + m_strWCGGlobalStatsName = + _("Global Statistics"); + m_strWCGGlobalStatsDesc = + _("Summary statistics for World Community Grid"); + m_strWCGMyGridName = + _("My Grid"); + m_strWCGMyGridDesc = + _("Your statistics and settings"); + m_strWCGYourStatsName = + _("Device Profiles"); + m_strWCGYourStatsDesc = + _("Update your device settings"); + m_strWCGResearchName = + _("Research"); + m_strWCGResearchDesc = + _("Learn about the projects hosted at World Community Grid"); + } const char *BOINC_RCSID_4632804e37="$Id$"; diff --git a/clientgui/Localization.h b/clientgui/Localization.h index 35dc5b8f33..4afa6b8e8f 100644 --- a/clientgui/Localization.h +++ b/clientgui/Localization.h @@ -32,7 +32,7 @@ class CLocalization : public wxObject public: CLocalization(); - // SETI@home + // SETI@home wxString m_strSAHMessageBoardsName; wxString m_strSAHMessageBoardsDescription; wxString m_strSAHHelpName; @@ -48,7 +48,7 @@ public: wxString m_strSAHYourTeamName; wxString m_strSAHYourTeamDescription; - // Einstein@home + // Einstein@home wxString m_strEAHCommonQuestionsName; wxString m_strEAHCommonQuestionsDesc; wxString m_strEAHSceensaverInfoName; @@ -66,7 +66,7 @@ public: wxString m_strEAHYourResultsName; wxString m_strEAHYourResultsDescription; wxString m_strEAHYourComputersName; - wxString m_strEAHYourComputersDesc; + wxString m_strEAHYourComputersDesc; wxString m_strEAHYourTeamName; wxString m_strEAHYourTeamDescription; wxString m_strEAHLIGOProjectName; @@ -74,13 +74,13 @@ public: wxString m_strEAHGEO600ProjectName; wxString m_strEAHGEO600ProjectDesc; - // Predictor@home - wxString m_strPAHYourAccountName; + // Predictor@home + wxString m_strPAHYourAccountName; wxString m_strPAHYourAccountDesc; - wxString m_strPAHTeamName; + wxString m_strPAHTeamName; wxString m_strPAHTeamDesc; - // climateprediction.net + // climateprediction.net wxString m_strCPDNHelpName; wxString m_strCPDNHelpDesc; wxString m_strCPDNNewsName; @@ -89,6 +89,18 @@ public: wxString m_strCPDNYourAccountDesc; wxString m_strCPDNTeamName; wxString m_strCPDNTeamDesc; + + // World Community Grid + wxString m_strWCGHelpName; + wxString m_strWCGHelpDesc; + wxString m_strWCGGlobalStatsName; + wxString m_strWCGGlobalStatsDesc; + wxString m_strWCGMyGridName; + wxString m_strWCGMyGridDesc; + wxString m_strWCGYourStatsName; + wxString m_strWCGYourStatsDesc; + wxString m_strWCGResearchName; + wxString m_strWCGResearchDesc; };