Language change in BOINC Manager 4.72

Message boards : BOINC Manager : Language change in BOINC Manager 4.72
Message board moderation

To post messages, you must log in.

AuthorMessage
Nikolay A. Saharov

Send message
Joined: 1 Sep 05
Posts: 15
Russia
Message 83 - Posted: 1 Sep 2005, 18:52:21 UTC

When you select another language in Options dialog, it seems that in message box that is pops up after that, caption and message text are messed.

BOINC 4.72

ID: 83 · Report as offensive
Profile Jord
Volunteer tester
Help desk expert
Avatar

Send message
Joined: 29 Aug 05
Posts: 15480
Netherlands
Message 89 - Posted: 1 Sep 2005, 20:05:00 UTC - in response to Message 83.  

Ah I see what you mean. Yes, it is. The text at the top bar says:

"The BOINC Managers default language has been changed, in order for this change to take effect your must r..."

I can r... ?? ;)

This message could be a lot smaller, in my opinion. How about:

"The BOINC Manager's default language has changed. Exit and restart it to make the change."

And why not add a kill option to the OK button? That way you could say "Press OK to make the changes have effect" in the big window area that no only has Language Options...
ID: 89 · Report as offensive
Rom Walton
Project developer
Avatar

Send message
Joined: 26 Aug 05
Posts: 164
Message 107 - Posted: 2 Sep 2005, 20:10:53 UTC

Which languages are you all using?

----- Rom
BOINC Development Team, U.C. Berkeley
My Blog
ID: 107 · Report as offensive
Profile Jord
Volunteer tester
Help desk expert
Avatar

Send message
Joined: 29 Aug 05
Posts: 15480
Netherlands
Message 108 - Posted: 2 Sep 2005, 20:18:04 UTC

I'm using the default English and was testing it for Nikolay going to Dutch.
ID: 108 · Report as offensive
Nikolay A. Saharov

Send message
Joined: 1 Sep 05
Posts: 15
Russia
Message 120 - Posted: 3 Sep 2005, 7:15:55 UTC
Last modified: 3 Sep 2005, 7:18:20 UTC

I tested it with Russian and English. All others are some.
Problem is here in MainFrame.cpp source file:
void CMainFrame::OnToolsOptions(wxCommandEvent& WXUNUSED(event)){
...
if (m_iSelectedLanguage != pDlg->m_LanguageSelectionCtrl->GetSelection()) {
ShowAlert(
_("The BOINC Managers default language has been changed, in order for this change to take affect you must restart the manager."),
_("Language Selection..."),
wxICON_INFORMATION
);
}
...
}

The first param of the function is a title of message, and second one is a message.
Should be:

if (m_iSelectedLanguage != pDlg->m_LanguageSelectionCtrl->GetSelection()) {
ShowAlert(
_("Language Selection..."),
_("The BOINC Managers default language has been changed, in order for this change to take affect you must restart the manager."),
wxICON_INFORMATION
);
}


ID: 120 · Report as offensive
Fuzzy Hollynoodles
Avatar

Send message
Joined: 29 Aug 05
Posts: 3
Message 162 - Posted: 7 Sep 2005, 2:06:06 UTC

My default language was Danish, but I changed it to US English, as I'm used to see it (couldn't get used to the Danish terms! ;-) ).

But either the message should be shorter or the message box should be larger.


[color=navy][b]"I'm trying to maintain a shred of dignity in this world." - Me[/b][/color]

ID: 162 · Report as offensive
Rom Walton
Project developer
Avatar

Send message
Joined: 26 Aug 05
Posts: 164
Message 165 - Posted: 7 Sep 2005, 8:44:57 UTC - in response to Message 120.  

I tested it with Russian and English. All others are some.
Problem is here in MainFrame.cpp source file:
void CMainFrame::OnToolsOptions(wxCommandEvent& WXUNUSED(event)){
...
if (m_iSelectedLanguage != pDlg->m_LanguageSelectionCtrl->GetSelection()) {
ShowAlert(
_("The BOINC Managers default language has been changed, in order for this change to take affect you must restart the manager."),
_("Language Selection..."),
wxICON_INFORMATION
);
}
...
}

The first param of the function is a title of message, and second one is a message.
Should be:

if (m_iSelectedLanguage != pDlg->m_LanguageSelectionCtrl->GetSelection()) {
ShowAlert(
_("Language Selection..."),
_("The BOINC Managers default language has been changed, in order for this change to take affect you must restart the manager."),
wxICON_INFORMATION
);
}



This should be fixed in the next release.

----- Rom
BOINC Development Team, U.C. Berkeley
My Blog
ID: 165 · Report as offensive

Message boards : BOINC Manager : Language change in BOINC Manager 4.72

Copyright © 2024 University of California.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.