From eb1f7c4679869e5c46e660b44d2d9ec422504f4d Mon Sep 17 00:00:00 2001 From: Jens Seidler Date: Tue, 15 Nov 2005 22:51:08 +0000 Subject: [PATCH] Localization: Project specific button text added to translation sources (Localization.cpp, Localization.h) svn path=/trunk/boinc/; revision=8862 --- clientgui/Localization.cpp | 80 ++++++++++++++++++++++++++++++++++++++ clientgui/Localization.h | 43 ++++++++++++++++++++ 2 files changed, 123 insertions(+) diff --git a/clientgui/Localization.cpp b/clientgui/Localization.cpp index 8f6fe889b0..e47a21a203 100644 --- a/clientgui/Localization.cpp +++ b/clientgui/Localization.cpp @@ -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$"; diff --git a/clientgui/Localization.h b/clientgui/Localization.h index e622fa7ad1..35dc5b8f33 100644 --- a/clientgui/Localization.h +++ b/clientgui/Localization.h @@ -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; };