1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 // include --------------------------------------------------------------- 24#include <cuires.hrc> 25#include "helpid.hrc" 26#include "hangulhanjadlg.hrc" 27 28Window RID_SVX_WND_COMMON_LINGU 29{ 30 DialogControl = TRUE; // we want to tab out of this 31 Hide = TRUE; 32 33 FixedText FT_WORD 34 { 35 Pos = MAP_APPFONT( 6, 9 ); 36 Size = MAP_APPFONT( 42, 10 ); 37 Text [ en-US ] = "Origi~nal"; 38 }; 39 Control FT_AKTWORD 40 { 41 HelpId=HID_SPELLDLG_SETWORD; 42 Pos = MAP_APPFONT( 51, 9 ); 43 Size = MAP_APPFONT( 164, 10 ); 44 Border =FALSE; 45 TabStop = TRUE; 46 }; 47 48 FixedText FT_NEWWORD 49 { 50 Pos = MAP_APPFONT( 6, 25 ); 51 Size = MAP_APPFONT( 42, 10 ); 52 Text [ en-US ] = "~Word" ; 53 }; 54 55 Edit ED_NEWWORD 56 { 57 Pos = MAP_APPFONT( 51, 24 ); 58 Size = MAP_APPFONT( 137, 12 ); 59 Border = TRUE; 60 }; 61 62 FixedText FT_SUGGESTION 63 { 64 Pos = MAP_APPFONT( 6, 48 ); 65 Size = MAP_APPFONT( 42, 10 ); 66 Text [ en-US ] = "~Suggestions" ; 67 }; 68 69 PushButton BTN_IGNORE 70 { 71 Pos = MAP_APPFONT( 224, 6 ); 72 Size = MAP_APPFONT( 55, 14 ); 73 Text [ en-US ] = "~Ignore" ; 74 }; 75 76 PushButton BTN_IGNOREALL 77 { 78 Pos = MAP_APPFONT( 224, 22 ); 79 Size = MAP_APPFONT( 55, 14 ); 80 Text [ en-US ] = "Always I~gnore" ; 81 }; 82 83 PushButton BTN_CHANGE 84 { 85 Pos = MAP_APPFONT( 224, 40 ); 86 Size = MAP_APPFONT( 55, 14 ); 87 Text [ en-US ] = "~Replace" ; 88 DefButton = TRUE ; 89 }; 90 91 PushButton BTN_CHANGEALL 92 { 93 Pos = MAP_APPFONT( 224, 56 ); 94 Size = MAP_APPFONT( 55, 14 ); 95 Text [ en-US ] = "Always R~eplace" ; 96 }; 97 98 PushButton BTN_OPTIONS 99 { 100 Pos = MAP_APPFONT( 224, 129 ); 101 Size = MAP_APPFONT( 55, 14 ); 102 Hide = TRUE ; 103 Text [ en-US ] = "Options..." ; 104 }; 105 106 FixedText FT_STATUS 107 { 108 Pos = MAP_APPFONT( 6, 155 ); 109 Size = MAP_APPFONT( 130, 10 ); 110 }; 111 112 GroupBox GB_AUDIT 113 { 114 Pos = MAP_APPFONT( 1, 1 ); 115 Size = MAP_APPFONT( 283, 148 ); 116 Hide=TRUE; 117 }; 118 119 HelpButton BTN_SPL_HELP 120 { 121 Pos = MAP_APPFONT( 160, 153 ); 122 Size = MAP_APPFONT( 55, 14 ); 123 }; 124 125 CancelButton BTN_SPL_CANCEL 126 { 127 Pos = MAP_APPFONT ( 224 , 153 ) ; 128 Size = MAP_APPFONT ( 55 , 14 ) ; 129 TabStop = TRUE ; 130 Text [ en-US ] = "~Close" ; 131 }; 132}; 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150