summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/mainwin.cpp
AgeCommit message (Collapse)AuthorFilesLines
2003-01-05Remove unused dialog and menu shortcut key combos. Also added a bunch of ↵drw1-15/+15
tr()'s to existing strings. Note to translators: These strings might be changing in the next couple of weeks as I do some UI updates.
2003-01-04Delay initial load of ipkg info so app displays quicker, and add progress ↵drw1-7/+44
display for longer operations (such as loading packages for large feeds).
2002-12-28adding i18n-fixescniehaus1-4/+4
@@ -61,10 +61,10 @@ MainWindow :: MainWindow( QWidget *p, ch // Create the main menu menu = menuBar(); //new QMenuBar( this ); - menu->insertItem( "&Settings", settings ); - menu->insertItem( "&Edit", edit ); - menu->insertItem( "&Filter", filter ); - menu->insertItem( "&Help", help ); + menu->insertItem( tr( "&Settings" ), settings ); + menu->insertItem( tr( "&Edit" ), edit ); + menu->insertItem( tr( "&Filter" ), filter ); + menu->insertItem( tr( "&Help" ), help ); mgr = new DataManager(); mgr->loadServers();
2002-12-28@@ -37,7 +37,7 @@ MainWindow :: MainWindow( QWidget *p, chcniehaus1-1/+1
showMaximized(); #endif - setCaption( "AQPkg - Package Manager" ); + setCaption( tr( "AQPkg - Package Manager" ) ); // Create our menu help = new QPopupMenu( this );
2002-11-21Re-applied patch for gcc3.2andyq1-2/+3
2002-11-17Added filter by category, and added extra fields to package display (Section ↵andyq1-186/+209
and size)
2002-11-11add #include <iostream>, and std:: when not 'using namespace std'kergoth1-1/+3
2002-11-09Added filter menu - contains 3 filters - show uninstalled packages,andyq1-8/+81
show installed packages and show upgraded packages
2002-11-03Added find next facilityandyq1-2/+9
2002-11-03Added search for package featureandyq1-0/+9
2002-10-25Modified so that you can click on a package in the documents view andandyq1-0/+9
the Local IPKGS view is shown and the selected package checked
2002-10-16Now displays an about box (only the version is shown)andyq1-1/+2
2002-09-28*** empty log message ***andyq1-0/+85