From kde-usability Mon Dec 22 11:29:08 2003 From: Luciano Montanaro Date: Mon, 22 Dec 2003 11:29:08 +0000 To: kde-usability Subject: Re: KDE Janitors (QA?) Proposal X-MARC-Message: https://marc.info/?l=kde-usability&m=107209254804426 MIME-Version: 1 Content-Type: multipart/mixed; boundary="--Boundary-00=_9bC6/48q33/j/Xe" --Boundary-00=_9bC6/48q33/j/Xe Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Sunday 21 December 2003 21:05, Aaron J. Seigo wrote: > On Monday 22 December 2003 04:58, Luciano Montanaro wrote: > > The problem is that we are now in string freeze... > > So we'll have to wait. > > you can start writing them now, though! Sure. Just to try out how easy it was, I tried to add some of the missing help for konqueror. Attached are the changes I did so far (very few). I tried to check the Konqueror manual for the icon descriptions, but I could not find it. So there's another task. But I don't feel to qualified for that, since English is not my mother-tongue. As a side note, many menu items for konqueror have an help associated, but it is in the form setStatusBarText(). I noticed the menu items were described in the status bar by moving over them only now, after all these years! Maybe some function to add both a What's This and a status bar text whith one function could be useful. Should I file a bug report with the patches as a reminder for kde3.3? -- Luciano Montanaro // \X/ mikelima@virgilio.it --Boundary-00=_9bC6/48q33/j/Xe Content-Type: text/x-diff; charset="iso-8859-1"; name="konqueror.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="konqueror.patch" ? konqueror.patch ? history/Makefile ? history/Makefile.in ? kfmexec/Makefile ? kfmexec/Makefile.in ? kfmexec/kfmexec Index: konq_mainwindow.cc =================================================================== RCS file: /home/kde/kdebase/konqueror/konq_mainwindow.cc,v retrieving revision 1.1270 diff -p -u -r1.1270 konq_mainwindow.cc --- konq_mainwindow.cc 21 Dec 2003 09:59:23 -0000 1.1270 +++ konq_mainwindow.cc 22 Dec 2003 10:48:01 -0000 @@ -3290,6 +3290,8 @@ void KonqMainWindow::initActions() // Bookmarks menu m_pamBookmarks = new KActionMenu( i18n( "&Bookmarks" ), "bookmark", actionCollection(), "bookmarks" ); + m_pamBookmarks->setWhatsThis( i18n( "Bookmarks

" "Show the list of the bookmarks." ) ); + // The actual menu needs a different action collection, so that the bookmarks // don't appear in kedittoolbar m_bookmarksActionCollection = new KActionCollection( this ); @@ -3321,10 +3323,12 @@ void KonqMainWindow::initActions() "button will take you to file:/home." ).arg( KUser().loginName() ) ); m_paUp->setStatusText( i18n( "Enter the parent folder" ) ); - m_paBack->setWhatsThis( i18n( "Move backwards one step in the browsing history

" ) ); + m_paBack->setWhatsThis( i18n( "Back

" + "Move backwards one step in the browsing history

" ) ); m_paBack->setStatusText( i18n( "Move backwards one step in the browsing history" ) ); - m_paForward->setWhatsThis( i18n( "Move forward one step in the browsing history

" ) ); + m_paForward->setWhatsThis( i18n( "Forward

" + "Move forward one step in the browsing history

" ) ); m_paForward->setStatusText( i18n( "Move forward one step in the browsing history" ) ); m_paHome->setWhatsThis( i18n( "Navigate to your 'Home URL'

" --Boundary-00=_9bC6/48q33/j/Xe Content-Type: text/x-diff; charset="iso-8859-1"; name="libkonq.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="libkonq.patch" ? libkonq.patch Index: konq_dirpart.cc =================================================================== RCS file: /home/kde/kdebase/libkonq/konq_dirpart.cc,v retrieving revision 1.67 diff -p -u -r1.67 konq_dirpart.cc --- konq_dirpart.cc 21 Dec 2003 08:54:59 -0000 1.67 +++ konq_dirpart.cc 22 Dec 2003 11:08:05 -0000 @@ -62,8 +62,16 @@ KonqDirPart::KonqDirPart( QObject *paren actionCollection()->setHighlightingEnabled( true ); - m_paIncIconSize = new KAction( i18n( "Increase Icon Size" ), "viewmag+", 0, this, SLOT( slotIncIconSize() ), actionCollection(), "incIconSize" ); - m_paDecIconSize = new KAction( i18n( "Decrease Icon Size" ), "viewmag-", 0, this, SLOT( slotDecIconSize() ), actionCollection(), "decIconSize" ); + m_paIncIconSize = new KAction( i18n( "Increase Icon Size" ), "viewmag+", + 0, this, SLOT( slotIncIconSize() ), + actionCollection(), "incIconSize" ); + m_paIncIconSize->setWhatsThis( i18n( "Increase Icon Size

" + "Make the icons size for this window larger.

" ) ); + m_paDecIconSize = new KAction( i18n( "Decrease Icon Size" ), "viewmag-", + 0, this, SLOT( slotDecIconSize() ), + actionCollection(), "decIconSize" ); + m_paDecIconSize->setWhatsThis( i18n( "Decrease Icon Size

" + "Make the icon size for this window smaller.

" ) ); m_paDefaultIcons = new KRadioAction( i18n( "&Default Size" ), 0, actionCollection(), "modedefault" ); m_paHugeIcons = new KRadioAction( i18n( "&Huge" ), 0, actionCollection(), "modehuge" ); --Boundary-00=_9bC6/48q33/j/Xe Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ kde-usability mailing list kde-usability@mail.kde.org https://mail.kde.org/mailman/listinfo/kde-usability --Boundary-00=_9bC6/48q33/j/Xe--