~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to clientgui/CompletionPage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
// To view the GNU Lesser General Public License visit
16
16
// http://www.gnu.org/copyleft/lesser.html
17
17
// or write to the Free Software Foundation, Inc.,
18
 
// 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
19
19
//
20
20
#if defined(__GNUG__) && !defined(__APPLE__)
21
21
#pragma implementation "CompletionPage.h"
234
234
                //    i.e. 'GridRepublic'
235
235
                strTitle.Printf(
236
236
                    _("Update from %s completed."),
237
 
                    pSkinAdvanced->GetProjectName().c_str()
 
237
                    pSkinAdvanced->GetApplicationShortName().c_str()
238
238
                );
239
239
            } else {
240
240
                strTitle = _("Update completed.");
255
255
                //    i.e. 'GridRepublic'
256
256
                strTitle.Printf(
257
257
                    _("Removal from %s completed."),
258
 
                    pSkinAdvanced->GetProjectName().c_str()
 
258
                    pSkinAdvanced->GetApplicationShortName().c_str()
259
259
                );
260
260
            } else {
261
261
                strTitle = _("Removal succeeded!");
276
276
                //    i.e. 'GridRepublic'
277
277
                strTitle.Printf(
278
278
                    _("Attached to %s"),
279
 
                    pSkinAdvanced->GetProjectName().c_str()
 
279
                    pSkinAdvanced->GetApplicationShortName().c_str()
280
280
                );
281
281
            } else {
282
282
                strTitle = _("Attached to account manager");
290
290
                wxString strWelcome;
291
291
                strWelcome.Printf(
292
292
                    _("Welcome to %s!"),
293
 
                    pSkinAdvanced->GetProjectName().c_str()
 
293
                    pSkinAdvanced->GetApplicationShortName().c_str()
294
294
                );
295
295
 
296
296
                m_pCompletionWelcome->Show();
304
304
                // 2nd %s is the account manager success message
305
305
                strBrandedMessage.Printf(
306
306
                    _("You are now successfully attached to the %s system."),
307
 
                    pSkinAdvanced->GetProjectName().c_str()
 
307
                    pSkinAdvanced->GetApplicationShortName().c_str()
308
308
                );
309
309
            } else {
310
310
                strBrandedMessage = _("You are now successfully attached to this account manager.");