Changeset 2351 in vbox
- Timestamp:
- Apr 26, 2007 1:29:59 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20744
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r2344 r2351 463 463 "<b>%1</b> in the directory <b><nobr>%2</nobr></b>.</p>" 464 464 "<p>The language will be temporarily reset to the system " 465 "default language. Please go to the <b> Global Settings</b> "465 "default language. Please go to the <b>Preferences</b> " 466 466 "dialog which you can open from the <b>File</b> menu of the " 467 467 "main VirtualBox window, and select one of the existing " … … 476 476 tr ("<p>Could not load the language file <b><nobr>%1</nobr></b>. " 477 477 "<p>The language will be temporarily reset to English (built-in). " 478 "Please go to the <b> Global Settings</b> "478 "Please go to the <b>Preferences</b> " 479 479 "dialog which you can open from the <b>File</b> menu of the " 480 480 "main VirtualBox window, and select one of the existing " … … 1615 1615 1616 1616 VBoxAboutDlg dlg (mainWindowShown(), "VBoxAboutDlg"); 1617 QString versions = dlg.txVersions->text(); 1618 dlg.txVersions->setText (versions 1619 .arg (COMVersion)); 1620 #ifdef Q_WS_MAC 1621 /* 1622 * Get rid of the exceedingly ugly pushbutton background. 1623 * (We should probably consider doing this on all platforms.) 1624 */ 1625 dlg.buttonOK->setBackgroundOrigin (QWidget::ParentOrigin); 1626 dlg.buttonOK->setPaletteBackgroundPixmap (*dlg.paletteBackgroundPixmap()); 1627 #endif 1628 1617 dlg.setup (COMVersion); 1629 1618 dlg.exec(); 1630 1619 } -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r2347 r2351 1032 1032 * be really interesting to see how this plays on non-english systems... 1033 1033 */ 1034 fileSettingsAction->setMenuText (tr (" Preference..."));1034 fileSettingsAction->setMenuText (tr ("&Preferences...", "global settings")); 1035 1035 #else 1036 fileSettingsAction->setMenuText (tr ("&Global Settings...")); 1036 /* 1037 * ...and on other platforms we use "Preferences" as well. The #ifdef is 1038 * left because of the possible localization problems on Mac we first need 1039 * to figure out. 1040 */ 1041 fileSettingsAction->setMenuText (tr ("&Preferences...", "global settings")); 1037 1042 #endif 1038 1043 fileSettingsAction->setAccel (tr ("Ctrl+G")); -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxAboutDlg.ui
r2222 r2351 39 39 <string>VirtualBox - About</string> 40 40 </property> 41 <widget class="Q PushButton">41 <widget class="QLabel"> 42 42 <property name="name"> 43 <cstring> buttonOK</cstring>43 <cstring>mAboutLabel</cstring> 44 44 </property> 45 45 <property name="geometry"> 46 46 <rect> 47 <x>14</x> 48 <y>416</y> 49 <width>82</width> 50 <height>26</height> 51 </rect> 52 </property> 53 <property name="text"> 54 <string>&OK</string> 55 </property> 56 <property name="accel"> 57 <string>Alt+O</string> 58 </property> 59 </widget> 60 <widget class="QLabel"> 61 <property name="name"> 62 <cstring>txVersions</cstring> 63 </property> 64 <property name="geometry"> 65 <rect> 66 <x>14</x> 67 <y>10</y> 68 <width>566</width> 69 <height>20</height> 47 <x>10</x> 48 <y>389</y> 49 <width>580</width> 50 <height>56</height> 70 51 </rect> 71 52 </property> … … 83 64 <enum>ParentOrigin</enum> 84 65 </property> 66 <property name="font"> 67 <font> 68 <pointsize>7</pointsize> 69 </font> 70 </property> 85 71 <property name="lineWidth"> 86 72 <number>0</number> 87 73 </property> 88 74 <property name="text"> 89 <string>VirtualBox Graphical User Interface Version %1</string> 75 <string><qt>VirtualBox Graphical User Interface Version %1<br> 76 %2</qt></string> 90 77 </property> 91 78 <property name="alignment"> 92 <set>WordBreak|AlignBottom|Align Left</set>79 <set>WordBreak|AlignBottom|AlignHCenter</set> 93 80 </property> 94 81 </widget> 95 82 </widget> 96 <connections> 97 <connection> 98 <sender>buttonOK</sender> 99 <signal>clicked()</signal> 100 <receiver>VBoxAboutDlg</receiver> 101 <slot>accept()</slot> 102 </connection> 103 </connections> 83 <includes> 84 <include location="local" impldecl="in implementation">VBoxAboutDlg.ui.h</include> 85 </includes> 86 <functions> 87 <function>setup( const QString & aVersion )</function> 88 <function>mouseReleaseEvent( QMouseEvent *aEv )</function> 89 </functions> 104 90 <pixmapinproject/> 105 91 <layoutdefaults spacing="6" margin="11"/> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxGlobalSettingsDlg.ui
r2240 r2351 32 32 </property> 33 33 <property name="caption"> 34 <string>VirtualBox Global Settings</string>34 <string>VirtualBox Preferences</string> 35 35 </property> 36 36 <property name="sizeGripEnabled">
Note:
See TracChangeset
for help on using the changeset viewer.