Issue 41927 - space before ... in menu items
Summary: space before ... in menu items
Status: CLOSED FIXED
Alias: None
Product: General
Classification: Code
Component: ui (show other issues)
Version: current
Hardware: All All
: P5 (lowest) Trivial (vote)
Target Milestone: OOo 2.0
Assignee: pavel
QA Contact: issues@framework
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-02-02 21:26 UTC by pavel
Modified: 2005-03-31 19:08 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description pavel 2005-02-02 21:26:08 UTC
Hi,

officecfg/registry/data/org/openoffice/Office/Embedding.xcu contains:

                        <node oor:name="PROPERTIES" oor:op="replace">
                        <prop oor:name="VerbUIName">
                                <value xml:lang="de">~Eigenschaften ...</value>
                                <value xml:lang="en-US">Propert~ies ...</value>
                                <value xml:lang="x-comment">.....
                        </prop>

There is a space before dots. The same string is in
sfx2/source/doc/doc.src:

String STR_FRAMEOBJECT_PROPERTIES
{
        Text [ de ] = "~Eigenschaften ..." ;
        Text [ en-US ] = "Propert~ies ..." ;
        Text [ x-comment ] = " ";
};

and also svx/source/gallery2/gallery.src:

                MenuItem
                {
                        Identifier = MN_PROPERTIES;
                        HelpId = HID_GALLERY_PROPERTIES;
                        Text [ de ] = "~Eigenschaften ..." ;
                        Text [ en-US ] = "Propert~ies ..." ;
                        Text [ x-comment ] = " ";
                };

Other occurences of this " ..." are:

dbaccess/source/ui/app/app.src:

                MenuItem
                {
                        Identifier = SID_APP_NEW_FORM;
                        HelpId = SID_APP_NEW_FORM;
                        Command = ".uno:DBNewForm";
                        Text [ de ] ="Formular ..." ;
                        Text [ en-US ] = "Form ..." ;
                };

svx/source/dialog/docrecovery.src:

PushButton BTN_BROKEN_SAVE
{
        Pos = MAP_APPFONT( BROKEN_COL0, BROKEN_ROW4 );
        Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
        Text[ de ] = "Speichern in...";
        Text[ en-US ] = "Save in ...";
};

svx/source/fmcomp/gridctrl.src:

MenuItem
{
        Identifier = SID_FM_SHOWCOLS_MORE ;
        HelpID = SID_FM_SHOWCOLS_MORE ;
        Text [ de ] = "~Mehr ..." ;
        Text [ en-US ] = "~More ...";

The rest is consistent and contains "Text...".
Comment 1 e.matthis 2005-02-03 10:29:44 UTC
Hi Pavel,
You are correct: there should be no spaces before punctuation.

One developer already corrected one of these strings: dbaccess/source/ui/app/app.src

Please go ahaead and correct the others if you have a cws. Please always correct
both German and English!

Elizabeth
Comment 2 pavel 2005-02-03 16:58:00 UTC
.
Comment 3 pavel 2005-02-03 17:23:07 UTC
Fixed the above mentioned strings in:

officecfg/registry/data/org/openoffice/Office/Embedding.xcu
sfx2/source/doc/doc.src
dbaccess/source/ui/app/app.src
svx/source/gallery2/gallery.src
svx/source/dialog/docrecovery.src
svx/source/fmcomp/gridctrl.src
Comment 4 pavel 2005-02-09 19:30:57 UTC
Verified in babelfish06.
Comment 5 pavel 2005-03-31 19:08:06 UTC
.