Issue 120570

Summary: Save keyboard configuration dialog displays "Load Keyboard Configuration" title
Product: General Reporter: TAB <TorrAB>
Component: codeAssignee: Ariel Constenla-Haile <arielch>
Status: CLOSED FIXED QA Contact:
Severity: Normal    
Priority: P3 CC: arielch, issues, xavi_dandy
Version: 3.4.0   
Target Milestone: 4.0.0   
Hardware: All   
OS: All   
Issue Type: DEFECT Latest Confirmation in: 3.4.1
Developer Difficulty: ---

Description TAB 2012-08-14 16:02:30 UTC
Under Tools/Customize/Keyboard, click Save:
this opens a window titled 'Load Keyboard Configuration'. It should be 'Save...'.
Comment 1 Ariel Constenla-Haile 2012-08-15 08:37:44 UTC
The dialog itself is not wrong, it's only the title.

main/cui/source/customize/acccfg.cxx is using the wrong string:

IMPL_LINK( SfxAcceleratorConfigPage, Save, Button*, EMPTYARG )
{
    StartFileDialog( WB_SAVEAS | WB_STDMODAL | WB_3DLOOK, aLoadAccelConfigStr );
    return 0;
}


It should be 

IMPL_LINK( SfxAcceleratorConfigPage, Save, Button*, EMPTYARG )
{
    StartFileDialog( WB_SAVEAS | WB_STDMODAL | WB_3DLOOK, aSaveAccelConfigStr );
    return 0;
}
Comment 2 SVN Robot 2012-08-15 08:44:51 UTC
"arielch" committed SVN revision 1373272 into trunk:
#i120570# - Fix title in "Save Keyboard Configuration" dialog
Comment 3 Ariel Constenla-Haile 2012-08-15 09:36:03 UTC
Fixed on trunk
Comment 4 Javier Lopez 2013-03-01 00:48:33 UTC
Hello 
I was checking this and it's true, I finded Load Keyboard Configuration (En I was checking this and it's true, I did find Load Keyboard Configuration (En espaƱol: Cargar configuraciĆ³n del Teclado) maybe it's not wrong but I think that it's should be "SAVE" and not "LOAD"

It was found in platform W7 34BITS AOO 3.4.1

Javier