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

svn path=/trunk/boinc/; revision=8862
This commit is contained in:
Jens Seidler 2005-11-15 22:51:08 +00:00
parent e71025ef22
commit eb1f7c4679
2 changed files with 123 additions and 0 deletions

View File

@ -27,6 +27,8 @@
CLocalization::CLocalization() {
// SETI@home
m_strSAHMessageBoardsName =
_("Message boards");
m_strSAHMessageBoardsDescription =
@ -55,6 +57,84 @@ CLocalization::CLocalization() {
_("Your team");
m_strSAHYourTeamDescription =
_("View information about your team");
// Einstein@home
m_strEAHCommonQuestionsName =
_("Common questions");
m_strEAHCommonQuestionsDesc =
_("Read the Einstein@Home Frequently Asked Question list");
m_strEAHSceensaverInfoName =
_("Screensaver info");
m_strEAHSceensaverInfoDesc =
_("Read a detailed description of the Einstein@Home screensaver");
m_strEAHMessageBoardsName =
_("Message boards");
m_strEAHMessageBoardsDesc =
_("Correspond with admins and other users on the Einstein@Home message boards");
m_strEAHEinsteinStatusName =
_("Einstein status");
m_strEAHEinsteinStatusDesc =
_("Current status of the Einstein@Home server");
m_strEAHReportProblemsName =
_("Report problems");
m_strEAHReportProblemsDesc =
_("A link to the Einstein@Home problems and bug reports message board");
m_strEAHYourAccountName =
_("Your account");
m_strEAHYourAccountDesc =
_("View and modify your Einstein@Home account profile and preferences");
m_strEAHAccountSummaryName =
_("Account summary");
m_strEAHAccountSummaryDesc =
_("View your account information and credit totals");
m_strEAHYourResultsName =
_("Your results");
m_strEAHYourResultsDescription =
_("View your last week (or more) of computational results and work");
m_strEAHYourComputersName =
_("YourComputers");
m_strEAHYourComputersDesc =
_("View a listing of all the computers on which you are running Einstein@Home");
m_strEAHYourTeamName =
_("Your team");
m_strEAHYourTeamDescription =
_("View information about your team");
m_strEAHLIGOProjectName =
_("LIGO project");
m_strEAHLIGOProjectDesc =
_("The home page of the Laser Interferometer Gravitational-wave Observatory (LIGO) project");
m_strEAHGEO600ProjectName =
_("GEO-600 project");
m_strEAHGEO600ProjectDesc =
_("The home page of the GEO-600 project");
// Predictor@home
m_strPAHYourAccountName =
_("Your account");
m_strPAHYourAccountDesc =
_("View your account information and credit totals");
m_strPAHTeamName =
_("Team");
m_strPAHTeamDesc =
_("Info about your Team");
// ClimatePrediciton.net
m_strCPDNHelpName =
_("Help");
m_strCPDNHelpDesc =
_("Get help for climateprediction.net");
m_strCPDNNewsName =
_("News");
m_strCPDNNewsDesc =
_("climateprediction.net News");
m_strCPDNYourAccountName =
_("Your account");
m_strCPDNYourAccountDesc =
_("View your account information, credits, and trickles");
m_strCPDNTeamName =
_("Team");
m_strCPDNTeamDesc =
_("Info about your team");
}
const char *BOINC_RCSID_4632804e37="$Id$";

View File

@ -32,6 +32,7 @@ class CLocalization : public wxObject
public:
CLocalization();
// SETI@home
wxString m_strSAHMessageBoardsName;
wxString m_strSAHMessageBoardsDescription;
wxString m_strSAHHelpName;
@ -46,6 +47,48 @@ public:
wxString m_strSAHYourComputersDescription;
wxString m_strSAHYourTeamName;
wxString m_strSAHYourTeamDescription;
// Einstein@home
wxString m_strEAHCommonQuestionsName;
wxString m_strEAHCommonQuestionsDesc;
wxString m_strEAHSceensaverInfoName;
wxString m_strEAHSceensaverInfoDesc;
wxString m_strEAHMessageBoardsName;
wxString m_strEAHMessageBoardsDesc;
wxString m_strEAHEinsteinStatusName;
wxString m_strEAHEinsteinStatusDesc;
wxString m_strEAHReportProblemsName;
wxString m_strEAHReportProblemsDesc;
wxString m_strEAHAccountSummaryName;
wxString m_strEAHAccountSummaryDesc;
wxString m_strEAHYourAccountName;
wxString m_strEAHYourAccountDesc;
wxString m_strEAHYourResultsName;
wxString m_strEAHYourResultsDescription;
wxString m_strEAHYourComputersName;
wxString m_strEAHYourComputersDesc;
wxString m_strEAHYourTeamName;
wxString m_strEAHYourTeamDescription;
wxString m_strEAHLIGOProjectName;
wxString m_strEAHLIGOProjectDesc;
wxString m_strEAHGEO600ProjectName;
wxString m_strEAHGEO600ProjectDesc;
// Predictor@home
wxString m_strPAHYourAccountName;
wxString m_strPAHYourAccountDesc;
wxString m_strPAHTeamName;
wxString m_strPAHTeamDesc;
// climateprediction.net
wxString m_strCPDNHelpName;
wxString m_strCPDNHelpDesc;
wxString m_strCPDNNewsName;
wxString m_strCPDNNewsDesc;
wxString m_strCPDNYourAccountName;
wxString m_strCPDNYourAccountDesc;
wxString m_strCPDNTeamName;
wxString m_strCPDNTeamDesc;
};