1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma implementation "Localization.h"
#endif
#include "stdwx.h"
#include "BOINCGUIApp.h"
#include "Localization.h"
CLocalization::CLocalization() {
// SETI@home
m_strSAHMessageBoardsName =
_("Message boards");
m_strSAHMessageBoardsDescription =
_("Correspond with other users on the SETI@home message boards");
m_strSAHHelpName =
_("Help");
m_strSAHHelpDescription =
_("Ask questions and report problems");
m_strSAHYourAccuontName =
_("Your account");
m_strSAHYourAccuontDescription =
_("View your account information and credit totals");
m_strSAHYourPreferencesName =
_("Your preferences");
m_strSAHYourPreferencesDescription =
_("View and modify your SETI@home account profile and preferences");
m_strSAHYourResultsName =
_("Your results");
m_strSAHYourResultsDescription =
_("View your last week (or more) of computational results and work");
m_strSAHYourComputersName =
_("Your computers");
m_strSAHYourComputersDescription =
_("View a listing of all the computers on which you are running SETI@Home");
m_strSAHYourTeamName =
_("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 =
_("Your computers");
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");
// 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");
}
|