Localization: Project specific button text added to translation sources (Localization.cpp, Localization.h)

svn path=/trunk/boinc/; revision=9032
This commit is contained in:
Jens Seidler 2005-12-04 22:17:07 +00:00
parent 769c3e5edf
commit dfcb624e22
2 changed files with 44 additions and 9 deletions

View File

@ -118,8 +118,8 @@ CLocalization::CLocalization() {
m_strPAHTeamDesc = m_strPAHTeamDesc =
_("Info about your Team"); _("Info about your Team");
// ClimatePrediciton.net // ClimatePrediciton.net
m_strCPDNHelpName = m_strCPDNHelpName =
_("Help"); _("Help");
m_strCPDNHelpDesc = m_strCPDNHelpDesc =
_("Get help for climateprediction.net"); _("Get help for climateprediction.net");
@ -135,6 +135,29 @@ CLocalization::CLocalization() {
_("Team"); _("Team");
m_strCPDNTeamDesc = m_strCPDNTeamDesc =
_("Info about your team"); _("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$"; const char *BOINC_RCSID_4632804e37="$Id$";

View File

@ -32,7 +32,7 @@ class CLocalization : public wxObject
public: public:
CLocalization(); CLocalization();
// SETI@home // SETI@home
wxString m_strSAHMessageBoardsName; wxString m_strSAHMessageBoardsName;
wxString m_strSAHMessageBoardsDescription; wxString m_strSAHMessageBoardsDescription;
wxString m_strSAHHelpName; wxString m_strSAHHelpName;
@ -48,7 +48,7 @@ public:
wxString m_strSAHYourTeamName; wxString m_strSAHYourTeamName;
wxString m_strSAHYourTeamDescription; wxString m_strSAHYourTeamDescription;
// Einstein@home // Einstein@home
wxString m_strEAHCommonQuestionsName; wxString m_strEAHCommonQuestionsName;
wxString m_strEAHCommonQuestionsDesc; wxString m_strEAHCommonQuestionsDesc;
wxString m_strEAHSceensaverInfoName; wxString m_strEAHSceensaverInfoName;
@ -66,7 +66,7 @@ public:
wxString m_strEAHYourResultsName; wxString m_strEAHYourResultsName;
wxString m_strEAHYourResultsDescription; wxString m_strEAHYourResultsDescription;
wxString m_strEAHYourComputersName; wxString m_strEAHYourComputersName;
wxString m_strEAHYourComputersDesc; wxString m_strEAHYourComputersDesc;
wxString m_strEAHYourTeamName; wxString m_strEAHYourTeamName;
wxString m_strEAHYourTeamDescription; wxString m_strEAHYourTeamDescription;
wxString m_strEAHLIGOProjectName; wxString m_strEAHLIGOProjectName;
@ -74,13 +74,13 @@ public:
wxString m_strEAHGEO600ProjectName; wxString m_strEAHGEO600ProjectName;
wxString m_strEAHGEO600ProjectDesc; wxString m_strEAHGEO600ProjectDesc;
// Predictor@home // Predictor@home
wxString m_strPAHYourAccountName; wxString m_strPAHYourAccountName;
wxString m_strPAHYourAccountDesc; wxString m_strPAHYourAccountDesc;
wxString m_strPAHTeamName; wxString m_strPAHTeamName;
wxString m_strPAHTeamDesc; wxString m_strPAHTeamDesc;
// climateprediction.net // climateprediction.net
wxString m_strCPDNHelpName; wxString m_strCPDNHelpName;
wxString m_strCPDNHelpDesc; wxString m_strCPDNHelpDesc;
wxString m_strCPDNNewsName; wxString m_strCPDNNewsName;
@ -89,6 +89,18 @@ public:
wxString m_strCPDNYourAccountDesc; wxString m_strCPDNYourAccountDesc;
wxString m_strCPDNTeamName; wxString m_strCPDNTeamName;
wxString m_strCPDNTeamDesc; 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;
}; };