Bug 143598 - Inconsistent UI terminology for rectangle/box
Summary: Inconsistent UI terminology for rectangle/box
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: general (show other bugs)
Version: 1.x
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-29 19:37 UTC by Andrew Walker
Modified: 2007-03-31 00:42 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 Andrew Walker 2007-03-29 19:37:42 UTC
Version:           HEAD (using KDE KDE 3.5.1)
Installed from:    Compiled From Sources
OS:                Linux

PROBLEM:

The rectangle/box object is referred to as a rectangle in the Graphics Mode menu
but is referred to as a Box in the Edit Box dialog.

The terminology should be consistent.
Comment 1 Netterfield 2007-03-31 00:41:59 UTC
SVN commit 648297 by netterfield:

Rectangle -> box.

Approved by George.

BUG: 143598


 M  +3 -3      kst.cpp  


--- trunk/extragear/graphics/kst/src/libkstapp/kst.cpp #648296:648297
@@ -766,13 +766,13 @@
   _tiedZoomAction->setWhatsThis(i18n("Apply zoom actions to all plots\n"
                                      "(not just the active one)."));
 
-  _gfxRectangleAction = new KRadioAction(i18n("&Rectangle"), "kst_gfx_rectangle", 
+  _gfxRectangleAction = new KRadioAction(i18n("&Box"), "kst_gfx_rectangle", 
                                   KShortcut(Key_F8),
                                   this, SLOT(toggleMouseMode()),
                                   actionCollection(), "rectangle_action");
   _gfxRectangleAction->setExclusiveGroup("gfx");
-  _gfxRectangleAction->setToolTip(i18n("Draw rectangle"));
-  _gfxRectangleAction->setWhatsThis(i18n("Draw rectangle"));
+  _gfxRectangleAction->setToolTip(i18n("Draw box"));
+  _gfxRectangleAction->setWhatsThis(i18n("Draw box"));
 
   _gfxEllipseAction = new KRadioAction(i18n("&Ellipse"), "kst_gfx_ellipse",
                                   KShortcut(Key_F9),