/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: thesdlg.src,v $ * $Revision: 1.23 $ * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // include --------------------------------------------------------------- #include #include #include "thesdlg.hrc" #include "helpid.hrc" // pragma ---------------------------------------------------------------- // RID_SVXDLG_THES ------------------------------------------------------- ModalDialog RID_SVXDLG_THESAURUS { HelpId = SID_THESAURUS ; OutputSize = TRUE ; Size = MAP_APPFONT ( 285 , 116 ) ; Text [ en-US ] = "Thesaurus" ; Moveable = TRUE ; SvLook = TRUE ; OkButton BTN_THES_OK { Pos = MAP_APPFONT ( 219 , 6 ) ; Size = MAP_APPFONT ( 60 , 14 ) ; DefButton = TRUE ; }; CancelButton BTN_THES_CANCEL { Pos = MAP_APPFONT ( 219 , 23 ) ; Size = MAP_APPFONT ( 60 , 14 ) ; }; PushButton BTN_LOOKUP { Pos = MAP_APPFONT ( 219 , 40 ) ; Size = MAP_APPFONT ( 60 , 14 ) ; Text [ en-US ] = "~Search" ; }; PushButton BTN_LANGUAGE { Pos = MAP_APPFONT ( 219 , 57 ) ; Size = MAP_APPFONT ( 60 , 14 ) ; Text [ en-US ] = "~Language..." ; }; HelpButton BTN_THES_HELP { Pos = MAP_APPFONT ( 219 , 77 ) ; Size = MAP_APPFONT ( 60 , 14 ) ; }; FixedText FT_WORD { Pos = MAP_APPFONT ( 12 , 14 ) ; Size = MAP_APPFONT ( 96 , 8 ) ; Text [ en-US ] = "~Word" ; LEFT = TRUE ; }; ListBox LB_WORD { DropDown = TRUE ; Pos = MAP_APPFONT ( 12 , 25 ) ; Size = MAP_APPFONT ( 96 , 65 ) ; }; FixedText FT_MEAN { Pos = MAP_APPFONT ( 12 , 43 ) ; Size = MAP_APPFONT ( 96 , 8 ) ; Text [ en-US ] = "~Meaning " ; LEFT = TRUE ; }; ListBox LB_MEAN { BORDER = TRUE ; Pos = MAP_APPFONT ( 12 , 55 ) ; Size = MAP_APPFONT ( 96 , 50 ) ; AutoHScroll = TRUE ; }; FixedText FT_SYNON { Pos = MAP_APPFONT ( 111 , 43 ) ; Size = MAP_APPFONT ( 96 , 8 ) ; Text [ en-US ] = "Sy~nonym" ; LEFT = TRUE ; }; ListBox LB_SYNON { BORDER = TRUE ; Pos = MAP_APPFONT ( 111 , 55 ) ; Size = MAP_APPFONT ( 96 , 50 ) ; AutoHScroll = TRUE ; }; FixedText FT_REPL { Pos = MAP_APPFONT ( 111 , 14 ) ; Size = MAP_APPFONT ( 96 , 8 ) ; Text [ en-US ] = "~Replace" ; LEFT = TRUE ; }; Edit ED_REPL { BORDER = TRUE ; Pos = MAP_APPFONT ( 111 , 25 ) ; Size = MAP_APPFONT ( 96 , 12 ) ; LEFT = TRUE ; }; FixedLine FL_VAR { Pos = MAP_APPFONT ( 6 , 3 ) ; Size = MAP_APPFONT ( 207 , 8 ) ; Text [ en-US ] = "Variations" ; }; String STR_ERR_WORDNOTFOUND { Text [ en-US ] = "Word not found in thesaurus" ; }; }; // RID_SVXDLG_THES_LANGUAGE ---------------------------------------------- ModalDialog RID_SVXDLG_THES_LANGUAGE { HelpId = HID_THES_LANGUAGE ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 170 , 86 ) ; /* ### ACHTUNG: Neuer Text in Resource? Sprache auswählen : Sprache auswõhlen */ /* ### ACHTUNG: Neuer Text in Resource? Sprache auswählen : Sprache auswõhlen */ Text [ en-US ] = "Select Language" ; Moveable = TRUE ; ListBox LB_THES_LANGUAGE { Border = TRUE ; Pos = MAP_APPFONT ( 12 , 14 ) ; Size = MAP_APPFONT ( 90 , 60 ) ; Sort = TRUE ; }; FixedLine FL_THES_LANGUAGE { Pos = MAP_APPFONT ( 6 , 3 ) ; Size = MAP_APPFONT ( 102 , 8 ) ; Text [ en-US ] = "Selection" ; }; OKButton BTN_LANG_OK { Pos = MAP_APPFONT ( 114 , 6 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; DefButton = TRUE ; }; CancelButton BTN_LANG_CANCEL { Pos = MAP_APPFONT ( 114 , 23 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; }; HelpButton BTN_LANG_HELP { Pos = MAP_APPFONT ( 114 , 43 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; }; }; // ********************************************************************** EOF