Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction for issue #5297 #5302

Merged
merged 2 commits into from
Jul 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions clientgui/Localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,17 @@ CLocalization::CLocalization() {
m_strWCGResearchDesc =
_("Learn about the projects hosted at World Community Grid");

// Amicable numbers
m_strANHomePageName =
_("Home page");
m_strANMessageBoardsName =
_("Message boards");
m_strANYourAccountName =
_("Your account");
m_strANYourTasksName =
_("Your tasks");
m_strANYourTeamName =
_("Your team");

}

7 changes: 7 additions & 0 deletions clientgui/Localization.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ class CLocalization : public wxObject
wxString m_strWCGYourStatsDesc;
wxString m_strWCGResearchName;
wxString m_strWCGResearchDesc;

// Amicable numbers
wxString m_strANHomePageName;
wxString m_strANMessageBoardsName;
wxString m_strANYourAccountName;
wxString m_strANYourTasksName;
wxString m_strANYourTeamName;
};

#endif