Bug 57491 - in memory section from kinfocenter: add button "About much memory consumption" (usability)
Summary: in memory section from kinfocenter: add button "About much memory consumption...
Status: RESOLVED WORKSFORME
Alias: None
Product: kcontrol
Classification: Miscellaneous
Component: kcminfo (show other bugs)
Version: unspecified
Platform: Gentoo Packages Linux
: NOR wishlist
Target Milestone: ---
Assignee: Helge Deller
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-04-21 01:29 UTC by Sander Devrieze
Modified: 2004-03-13 11:27 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sander Devrieze 2003-04-21 01:29:08 UTC
Version:            (using KDE KDE 3.1.1a)
Installed from:    Gentoo Packages

Hello,

Because many newbies asks why there is {no|not much} free memory and therefore is in a lot of FAQ's, I think it's best to tackle the problem at its roots. So I suggest to add a button (or something else) in the memory section from kinfocenter with an explanation why you see this high usage.
Comment 1 Helge Deller 2003-04-21 13:55:16 UTC
Subject: kdebase/kcontrol/info

CVS commit by deller: 

CCMAIL: 57491@bugs.kde.org
add tooltips to memory info widget (wishlist #57491),
comments or suggestions for better tooltips are very much welcome !


  M +30 -4     memory.cpp   1.54



Comment 2 Helge Deller 2003-04-21 14:01:58 UTC
Subject: Re: in memory section from kinfocenter: add button "About much memory consumption" (usability)

Hi Sander,

Instead of a button I added the following tooltips which pops up when the user touches one of the graphs with his mouse.
Please let me know, if you have any further suggestions regarding
those hints.

Thanks,
Helge

            title = i18n("Total Memory");
+           hint = i18n("This graph gives you an overview of the "
+                       "<b>total sum of physical and virtual memory</b> +                       "in your system.");

            title = i18n("Physical Memory");
+           hint = i18n("This graph gives you an overview of "
+                       "the <b>usage of physical memory</b> in your system."
+                       "<p>Most operating systems (including Linux) "
+                       "will use as much as possible of the "
+                       "available physical memory as disk cache "
+                       "to speed up the system performance. "
+                       "<p>This means, that if you have a small amount "
+                       "of <b>Free Physical Memory</b> and a big amount of "
+                       "<b>Disk Cache Memory</b>, your system is well "
+                       "configured.");


            title = i18n("Swap Space");
+           hint = i18n("The swap space is the <b>virtual memory</b> "
+                       "available to the system. "
+                       "<p>It will be used on demand and is provided "
+                       "through swap partitions and swap files.");

Comment 3 Sander Devrieze 2003-04-21 14:20:29 UTC
Subject: Re:  in memory section from kinfocenter: add button "About much memory consumption" (usability)

Op maandag 21 april 2003 12:01, schreef Helge Deller:
> Hi Sander,
>
> Instead of a button I added the following tooltips which pops up when the
> user touches one of the graphs with his mouse.

Great! :)

> Please let me know, if you
> have any further suggestions regarding
> those hints.

<snip>

>             title = i18n("Physical Memory");
> +           hint = i18n("This graph gives you an overview of "
> +                       "the <b>usage of physical memory</b> in your
> system." +                       "<p>Most operating systems (including
> Linux) "

Is it possible to detects the system the user uses? If yes: you can change 
"including Linux" in "including $os_of_user" + other info for kde-on-cygwin 
etc.

<snip>
>             title = i18n("Swap Space");
> +           hint = i18n("The swap space is the <b>virtual memory</b> "
> +                       "available to the system. "
> +                       "<p>It will be used on demand and is provided "
> +                       "through swap partitions and swap files.");

--> through one or more swap partitions and/or swap files.

Comment 4 Helge Deller 2003-04-21 14:55:54 UTC
Subject: Re:  in memory section from kinfocenter: add button "About much memory consumption" (usability)

Hi Sander,

On Monday 21 April 2003 02:22 pm, Sander Devrieze wrote:
> <snip>
>
> >             title = i18n("Physical Memory");
> > +           hint = i18n("This graph gives you an overview of "
> > +                       "the <b>usage of physical memory</b> in your
> > system." +                       "<p>Most operating systems (including
> > Linux) "
>
> Is it possible to detects the system the user uses? If yes: you can change
> "including Linux" in "including $os_of_user" + other info for kde-on-cygwin
> etc.

Yes, it would be possible, even with #if ... #else ... #endif,
but then it would be nearly impossible for the translators to get it right.

> <snip>
>
> >             title = i18n("Swap Space");
> > +           hint = i18n("The swap space is the <b>virtual memory</b> "
> > +                       "available to the system. "
> > +                       "<p>It will be used on demand and is provided "
> > +                       "through swap partitions and swap files.");
>
> --> through one or more swap partitions and/or swap files.

Ok - done.

Thanks,
Helge

Comment 5 Helge Deller 2003-04-25 07:49:30 UTC
*** Bug has been marked as fixed ***.
Comment 6 Sander Devrieze 2004-03-12 21:33:26 UTC
I tested it a time ago in CVS and that time it was fixed but it seems someone changed the string again for KDE 3.1 which makes I need to reopen this bug :(
Comment 7 Sander Devrieze 2004-03-12 21:34:12 UTC
s/KDE 3.1/KDE 3.2/
Comment 8 Helge Deller 2004-03-12 22:17:18 UTC
Changed which string ?
In KDE 3.2 ?
Comment 9 Sander Devrieze 2004-03-12 23:48:37 UTC
Yes, the string now is:

Memory Information

This display shows you the current memory usage of your system. The values are 
updated on a regular basis and give you an overview of the physical and 
virtual used memory.

Comment 10 Helge Deller 2004-03-13 02:35:50 UTC
This string (you get it by pressing Shift-F1) is the same in KDE 3.2.1 and KDE 3.2 (CVS).
Basically what we talked about one year back is the QToolTip string. This one is IMHO still ok and will automatically appear if you move your mouse over one of the memory graphics (whithout pressing Shift-F1)....
Helge
Comment 11 Sander Devrieze 2004-03-13 11:27:15 UTC
:-$ I see that I was wrong and you where right.