Changeset 2980 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 1, 2007 3:56:12 PM (18 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r2491 r2980 6 6 7 7 /* 8 * Copyright (C) 2006 InnoTek SystemberatungGmbH8 * Copyright (C) 2006-2007 innotek GmbH 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1219 1219 char title[1024]; 1220 1220 1221 strcpy(title, " InnoTek VirtualBox");1221 strcpy(title, "innotek VirtualBox"); 1222 1222 1223 1223 if (machineState == VMSTATE_SUSPENDED) … … 1251 1251 #endif /* DEBUG */ 1252 1252 1253 SDL_WM_SetCaption(title, " InnoTek VirtualBox");1253 SDL_WM_SetCaption(title, "innotek VirtualBox"); 1254 1254 } 1255 1255 … … 1262 1262 char szTitle[256]; 1263 1263 AssertMsg(iPercent >= 0 && iPercent <= 100, ("%d\n", iPercent)); 1264 RTStrPrintf(szTitle, sizeof(szTitle), " InnoTek VirtualBox - Saving %d%%...", iPercent);1265 SDL_WM_SetCaption(szTitle, " InnoTek VirtualBox");1264 RTStrPrintf(szTitle, sizeof(szTitle), "innotek VirtualBox - Saving %d%%...", iPercent); 1265 SDL_WM_SetCaption(szTitle, "innotek VirtualBox"); 1266 1266 } 1267 1267 -
trunk/src/VBox/Frontends/VBoxFB/VBoxFB.cpp
r1 r2980 6 6 7 7 /* 8 * Copyright (C) 2006 InnoTek SystemberatungGmbH8 * Copyright (C) 2006-2007 innotek GmbH 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 63 63 64 64 printf("VirtualBox DirectFB GUI built %s %s\n" 65 "(C) 2004-200 5 InnoTek SystemberatungGmbH\n"65 "(C) 2004-2007 innotek GmbH\n" 66 66 "(C) 2004-2005 secunet Security Networks AG\n", __DATE__, __TIME__); 67 67 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r2976 r2980 8 8 9 9 /* 10 * Copyright (C) 2006 InnoTek SystemberatungGmbH10 * Copyright (C) 2006-2007 innotek GmbH 11 11 * 12 12 * This file is part of VirtualBox Open Source Edition (OSE), as … … 6106 6106 6107 6107 RTPrintf("VirtualBox Command Line Management Interface Version %s\n" 6108 "(C) 2005-2007 InnoTek SystemberatungGmbH\n"6108 "(C) 2005-2007 innotek GmbH\n" 6109 6109 "All rights reserved.\n" 6110 6110 "\n", -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r2729 r2980 5 5 6 6 /* 7 * Copyright (C) 2006 InnoTek SystemberatungGmbH7 * Copyright (C) 2006-2007 innotek GmbH 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1400 1400 } 1401 1401 1402 /* 1402 /* 1403 1403 * Mount a floppy if requested. 1404 1404 */ … … 1462 1462 goto leave; 1463 1463 1464 /* 1464 /* 1465 1465 * Mount a CD-ROM if requested. 1466 1466 */ … … 3636 3636 3637 3637 3638 strcpy(szTitle, " InnoTek VirtualBox - ");3638 strcpy(szTitle, "innotek VirtualBox - "); 3639 3639 3640 3640 Bstr name; … … 3757 3757 setUITitle(szTitle); 3758 3758 #else 3759 SDL_WM_SetCaption(szTitle, " InnoTek VirtualBox");3759 SDL_WM_SetCaption(szTitle, "innotek VirtualBox"); 3760 3760 #endif 3761 3761 } -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r2957 r2980 6 6 7 7 /* 8 * Copyright (C) 2006 InnoTek SystemberatungGmbH8 * Copyright (C) 2006-2007 innotek GmbH 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1326 1326 caption_prefix = tr ("VirtualBox OSE"); 1327 1327 #else 1328 caption_prefix = tr (" InnoTek VirtualBox");1328 caption_prefix = tr ("innotek VirtualBox"); 1329 1329 #endif 1330 1330 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r2957 r2980 6 6 7 7 /* 8 * Copyright (C) 2006 InnoTek SystemberatungGmbH8 * Copyright (C) 2006-2007 innotek GmbH 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1740 1740 /** 1741 1741 * Comma-separated list of authors of the currently installed translation. 1742 * Returns " InnoTek" if no translation is installed or if the translation1743 * file is invalid, or if the translation is supplied by InnoTek.1742 * Returns "innotek" if no translation is installed or if the translation 1743 * file is invalid, or if the translation is supplied by innotek. 1744 1744 */ 1745 1745 QString VBoxGlobal::languageTranslators() const 1746 1746 { 1747 return qApp->translate ("@@@", " InnoTek",1747 return qApp->translate ("@@@", "innotek", 1748 1748 "Comma-separated list of translators"); 1749 1749 } … … 2050 2050 if (qtSysTr && qtSysTr->load (languageFileName)) 2051 2051 qApp->installTranslator (qtSysTr); 2052 /* Note that the Qt translation supplied by InnoTek is always loaded2052 /* Note that the Qt translation supplied by innotek is always loaded 2053 2053 * afterwards to make sure it will take precedence over the system 2054 2054 * translation (it may contain more decent variants of translation 2055 2055 * that better correspond to VirtualBox UI). We need to load both 2056 2056 * because a newer version of Qt may be installed on the user computer 2057 * and the InnoTek version may not fully support it. We don't do it on2057 * and the innotek version may not fully support it. We don't do it on 2058 2058 * Win32 because we supply a Qt library there and therefore the 2059 * InnoTek translation is always the best one. */2059 * innotek translation is always the best one. */ 2060 2060 #endif 2061 2061 languageFileName = nlsDir.absFilePath (QString ("qt_") + … … 2864 2864 ev.xclient.data.l [3] = aData3; 2865 2865 ev.xclient.data.l [4] = aData4; 2866 2866 2867 2867 return XSendEvent (aDpy, DefaultRootWindow (aDpy), False, 2868 2868 SubstructureRedirectMask, &ev) != 0; … … 2871 2871 #endif 2872 2872 2873 /** 2873 /** 2874 2874 * Activates the specified window. If necessary, the window will be 2875 2875 * de-iconified activation. … … 2877 2877 * @note On X11, it is implied that @a aWid represents a window of the same 2878 2878 * display the application was started on. 2879 * 2880 * @param aWId Window ID to activate. 2879 * 2880 * @param aWId Window ID to activate. 2881 2881 * @param aSwitchDesktop @c true to switch to the window's desktop before 2882 2882 * activation. 2883 * 2883 * 2884 2884 * @return @c true on success and @c false otherwise. 2885 2885 */ … … 2915 2915 if (desktop != NULL) 2916 2916 { 2917 Bool ok = XXSendClientMessage (dpy, DefaultRootWindow (dpy), 2917 Bool ok = XXSendClientMessage (dpy, DefaultRootWindow (dpy), 2918 2918 "_NET_CURRENT_DESKTOP", 2919 2919 *desktop); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r2979 r2980 6 6 7 7 /* 8 * Copyright (C) 2006 InnoTek SystemberatungGmbH8 * Copyright (C) 2006-2007 innotek GmbH 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1028 1028 setCaption (tr ("VirtualBox OSE")); 1029 1029 #else 1030 setCaption (tr (" InnoTek VirtualBox"));1030 setCaption (tr ("innotek VirtualBox")); 1031 1031 #endif 1032 1032 -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxGlobalSettingsDlg.ui.h
r2936 r2980 6 6 7 7 /* 8 * Copyright (C) 2006 InnoTek SystemberatungGmbH8 * Copyright (C) 2006-2007 innotek GmbH 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 112 112 113 113 QString translatorsName = tratra (aTranslator, 114 "@@@", " InnoTek", "Comma-separated list of translators");114 "@@@", "innotek", "Comma-separated list of translators"); 115 115 116 116 QString itemName = nativeLanguage;
Note:
See TracChangeset
for help on using the changeset viewer.