Changeset 26034 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 25, 2010 8:31:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56931
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp
r25526 r26034 75 75 #if VBOX_OSE 76 76 mAboutText = aboutText + " " + versionText.arg (mVersion) + "\n" + 77 QString ("%1 2004-20 09 Sun Microsystems, Inc.").arg (QChar (0xa9));77 QString ("%1 2004-2010 " VBOX_VENDOR).arg (QChar (0xa9)); 78 78 #else /* VBOX_OSE */ 79 79 mAboutText = aboutText + "\n" + -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r25589 r26034 23 23 #include "VBoxGlobal.h" 24 24 #include <VBox/VBoxHDD.h> 25 #include <VBox/version.h> 25 26 26 27 #include "VBoxDefs.h" … … 2660 2661 QString VBoxGlobal::languageTranslators() const 2661 2662 { 2662 return qApp->translate ("@@@", "Sun Microsystems, Inc.",2663 return qApp->translate ("@@@", VBOX_VENDOR, 2663 2664 "Comma-separated list of translators"); 2664 2665 } -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r25526 r26034 62 62 #include <iprt/stream.h> 63 63 #include <VBox/err.h> 64 #include <VBox/version.h> 64 65 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 65 66 … … 258 259 #endif 259 260 260 RTPrintf( "Sun VirtualBoxGraphical User Interface %s\n"261 "(C) 2005-20 09 Sun Microsystems, Inc.\n"261 RTPrintf(VBOX_PRODUCT " Graphical User Interface %s\n" 262 "(C) 2005-2010 " VBOX_VENDOR "\n" 262 263 "All rights reserved.\n" 263 264 "\n" -
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/VBoxGLSettingsLanguage.cpp
r25177 r26034 33 33 #include <iprt/param.h> 34 34 #include <iprt/path.h> 35 #include <VBox/version.h> 35 36 36 37 extern const char *gVBoxLangSubDir; … … 70 71 71 72 QString translatorsName = tratra (aTranslator, 72 "@@@", "Sun Microsystems, Inc.", "Comma-separated list of translators");73 "@@@", VBOX_VENDOR, "Comma-separated list of translators"); 73 74 74 75 QString itemName = nativeLanguage;
Note:
See TracChangeset
for help on using the changeset viewer.