001 /* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the "License"); 007 * you may not use this file except in compliance with the License. 008 * You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018 /* 019 * $Id: SerializerMessages_ko.java 471981 2006-11-07 04:28:00Z minchau $ 020 */ 021 022 package org.apache.xml.serializer.utils; 023 024 import java.util.ListResourceBundle; 025 import java.util.Locale; 026 import java.util.MissingResourceException; 027 import java.util.ResourceBundle; 028 029 /** 030 * An instance of this class is a ListResourceBundle that 031 * has the required getContents() method that returns 032 * an array of message-key/message associations. 033 * <p> 034 * The message keys are defined in {@link MsgKey}. The 035 * messages that those keys map to are defined here. 036 * <p> 037 * The messages in the English version are intended to be 038 * translated. 039 * 040 * This class is not a public API, it is only public because it is 041 * used in org.apache.xml.serializer. 042 * 043 * @xsl.usage internal 044 */ 045 public class SerializerMessages_ko extends ListResourceBundle { 046 047 /* 048 * This file contains error and warning messages related to 049 * Serializer Error Handling. 050 * 051 * General notes to translators: 052 053 * 1) A stylesheet is a description of how to transform an input XML document 054 * into a resultant XML document (or HTML document or text). The 055 * stylesheet itself is described in the form of an XML document. 056 057 * 058 * 2) An element is a mark-up tag in an XML document; an attribute is a 059 * modifier on the tag. For example, in <elem attr='val' attr2='val2'> 060 * "elem" is an element name, "attr" and "attr2" are attribute names with 061 * the values "val" and "val2", respectively. 062 * 063 * 3) A namespace declaration is a special attribute that is used to associate 064 * a prefix with a URI (the namespace). The meanings of element names and 065 * attribute names that use that prefix are defined with respect to that 066 * namespace. 067 * 068 * 069 */ 070 071 /** The lookup table for error messages. */ 072 public Object[][] getContents() { 073 Object[][] contents = new Object[][] { 074 { MsgKey.BAD_MSGKEY, 075 "''{0}'' \uba54\uc2dc\uc9c0 \ud0a4\uac00 ''{1}'' \uba54\uc2dc\uc9c0 \ud074\ub798\uc2a4\uc5d0 \uc5c6\uc2b5\ub2c8\ub2e4." }, 076 077 { MsgKey.BAD_MSGFORMAT, 078 "''{1}'' \uba54\uc2dc\uc9c0 \ud074\ub798\uc2a4\uc5d0 \uc788\ub294 ''{0}'' \uba54\uc2dc\uc9c0\uc758 \ud615\uc2dd\uc774 \uc798\ubabb \ub418\uc5c8\uc2b5\ub2c8\ub2e4." }, 079 080 { MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER, 081 "''{0}'' \uc9c1\ub82c \ud504\ub85c\uadf8\ub7a8 \ud074\ub798\uc2a4\uac00 org.xml.sax.ContentHandler\ub97c \uad6c\ud604\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." }, 082 083 { MsgKey.ER_RESOURCE_COULD_NOT_FIND, 084 "[ {0} ] \uc790\uc6d0\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n{1}" }, 085 086 { MsgKey.ER_RESOURCE_COULD_NOT_LOAD, 087 "[ {0} ] \uc790\uc6d0\uc774 {1} \n {2} \t {3}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 088 089 { MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO, 090 "\ubc84\ud37c \ud06c\uae30 <=0" }, 091 092 { MsgKey.ER_INVALID_UTF16_SURROGATE, 093 "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uc790(surrogate)\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0} ?" }, 094 095 { MsgKey.ER_OIERROR, 096 "IO \uc624\ub958" }, 097 098 { MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION, 099 "\ud558\uc704 \ub178\ub4dc\uac00 \uc0dd\uc131\ub41c \uc774\ud6c4 \ub610\ub294 \uc694\uc18c\uac00 \uc791\uc131\ub418\uae30 \uc774\uc804\uc5d0 {0} \uc18d\uc131\uc744 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc18d\uc131\uc774 \ubb34\uc2dc\ub429\ub2c8\ub2e4." }, 100 101 /* 102 * Note to translators: The stylesheet contained a reference to a 103 * namespace prefix that was undefined. The value of the substitution 104 * text is the name of the prefix. 105 */ 106 { MsgKey.ER_NAMESPACE_PREFIX, 107 "''{0}'' \uc811\ub450\ubd80\uc5d0 \ub300\ud55c \uc774\ub984 \uacf5\uac04\uc774 \uc120\uc5b8\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4." }, 108 109 /* 110 * Note to translators: This message is reported if the stylesheet 111 * being processed attempted to construct an XML document with an 112 * attribute in a place other than on an element. The substitution text 113 * specifies the name of the attribute. 114 */ 115 { MsgKey.ER_STRAY_ATTRIBUTE, 116 "''{0}'' \uc18d\uc131\uc774 \uc694\uc18c\uc758 \uc678\ubd80\uc5d0 \uc788\uc2b5\ub2c8\ub2e4." }, 117 118 /* 119 * Note to translators: As with the preceding message, a namespace 120 * declaration has the form of an attribute and is only permitted to 121 * appear on an element. The substitution text {0} is the namespace 122 * prefix and {1} is the URI that was being used in the erroneous 123 * namespace declaration. 124 */ 125 { MsgKey.ER_STRAY_NAMESPACE, 126 "''{0}''=''{1}'' \uc774\ub984 \uacf5\uac04 \uc120\uc5b8\uc774 \uc694\uc18c\uc758 \uc678\ubd80\uc5d0 \uc788\uc2b5\ub2c8\ub2e4." }, 127 128 { MsgKey.ER_COULD_NOT_LOAD_RESOURCE, 129 "''{0}''(CLASSPATH \ud655\uc778)\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc73c\ubbc0\ub85c, \ud604\uc7ac \uae30\ubcf8\uac12\ub9cc\uc744 \uc0ac\uc6a9\ud558\ub294 \uc911\uc785\ub2c8\ub2e4." }, 130 131 { MsgKey.ER_ILLEGAL_CHARACTER, 132 "{1}\uc758 \uc9c0\uc815\ub41c \ucd9c\ub825 \uc778\ucf54\ub529\uc5d0 \ud45c\uc2dc\ub418\uc9c0 \uc54a\uc740 \ubb34\uacb0\uc131 \uac12 {0}\uc758 \ubb38\uc790\ub97c \ucd9c\ub825\ud558\uc2ed\uc2dc\uc624. " }, 133 134 { MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY, 135 "''{1}'' \ucd9c\ub825 \uba54\uc18c\ub4dc(CLASSPATH \ud655\uc778)\uc5d0 \ub300\ud55c ''{0}'' \ud2b9\uc131 \ud30c\uc77c\uc744 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 136 137 { MsgKey.ER_INVALID_PORT, 138 "\uc798\ubabb\ub41c \ud3ec\ud2b8 \ubc88\ud638" }, 139 140 { MsgKey.ER_PORT_WHEN_HOST_NULL, 141 "\ud638\uc2a4\ud2b8\uac00 \ub110(null)\uc774\uba74 \ud3ec\ud2b8\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 142 143 { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED, 144 "\ud638\uc2a4\ud2b8\uac00 \uc644\uc804\ud55c \uc8fc\uc18c\uac00 \uc544\ub2d9\ub2c8\ub2e4." }, 145 146 { MsgKey.ER_SCHEME_NOT_CONFORMANT, 147 "\uc2a4\ud0a4\ub9c8\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." }, 148 149 { MsgKey.ER_SCHEME_FROM_NULL_STRING, 150 "\ub110(null) \ubb38\uc790\uc5f4\uc5d0\uc11c \uc2a4\ud0a4\ub9c8\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 151 152 { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE, 153 "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \uc774\uc2a4\ucf00\uc774\ud504 \uc21c\uc11c\uac00 \uc788\uc2b5\ub2c8\ub2e4." }, 154 155 { MsgKey.ER_PATH_INVALID_CHAR, 156 "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790\uac00 \uc788\uc2b5\ub2c8\ub2e4: {0}" }, 157 158 { MsgKey.ER_FRAG_INVALID_CHAR, 159 "\ub2e8\ud3b8\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790\uac00 \uc788\uc2b5\ub2c8\ub2e4." }, 160 161 { MsgKey.ER_FRAG_WHEN_PATH_NULL, 162 "\uacbd\ub85c\uac00 \ub110(null)\uc774\uba74 \ub2e8\ud3b8\uc744 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 163 164 { MsgKey.ER_FRAG_FOR_GENERIC_URI, 165 "\uc77c\ubc18 URI\uc5d0 \ub300\ud574\uc11c\ub9cc \ub2e8\ud3b8\uc744 \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4." }, 166 167 { MsgKey.ER_NO_SCHEME_IN_URI, 168 "URI\uc5d0 \uc2a4\ud0a4\ub9c8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4." }, 169 170 { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS, 171 "\ube48 \ub9e4\uac1c\ubcc0\uc218\ub85c URI\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 172 173 { MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH, 174 "\uacbd\ub85c \ubc0f \ub2e8\ud3b8 \ub458 \ub2e4\uc5d0 \ub2e8\ud3b8\uc744 \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 175 176 { MsgKey.ER_NO_QUERY_STRING_IN_PATH, 177 "\uacbd\ub85c \ubc0f \uc870\ud68c \ubb38\uc790\uc5f4\uc5d0 \uc870\ud68c \ubb38\uc790\uc5f4\uc744 \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 178 179 { MsgKey.ER_NO_PORT_IF_NO_HOST, 180 "\ud638\uc2a4\ud2b8\ub97c \uc9c0\uc815\ud558\uc9c0 \uc54a\uc740 \uacbd\uc6b0\uc5d0\ub294 \ud3ec\ud2b8\ub97c \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 181 182 { MsgKey.ER_NO_USERINFO_IF_NO_HOST, 183 "\ud638\uc2a4\ud2b8\ub97c \uc9c0\uc815\ud558\uc9c0 \uc54a\uc740 \uacbd\uc6b0\uc5d0\ub294 Userinfo\ub97c \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." }, 184 { MsgKey.ER_XML_VERSION_NOT_SUPPORTED, 185 "\uacbd\uace0: \uc694\uccad\ub41c \ucd9c\ub825 \ubb38\uc11c\uc758 \ubc84\uc804\uc740 ''{0}''\uc785\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \uc774 XML \ubc84\uc804\uc740 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ucd9c\ub825 \ubb38\uc11c\uc758 \ubc84\uc804\uc740 ''1.0''\uc774 \ub429\ub2c8\ub2e4." }, 186 187 { MsgKey.ER_SCHEME_REQUIRED, 188 "\uc2a4\ud0a4\ub9c8\uac00 \ud544\uc694\ud569\ub2c8\ub2e4." }, 189 190 /* 191 * Note to translators: The words 'Properties' and 192 * 'SerializerFactory' in this message are Java class names 193 * and should not be translated. 194 */ 195 { MsgKey.ER_FACTORY_PROPERTY_MISSING, 196 "SerializerFactory\uc5d0 \uc804\ub2ec\ub41c \ud2b9\uc131 \uc624\ube0c\uc81d\ud2b8\uc5d0 ''{0}'' \ud2b9\uc131\uc774 \uc5c6\uc2b5\ub2c8\ub2e4." }, 197 198 { MsgKey.ER_ENCODING_NOT_SUPPORTED, 199 "\uacbd\uace0: ''{0}'' \uc778\ucf54\ub529\uc740 Java Runtime\uc744 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." }, 200 201 {MsgKey.ER_FEATURE_NOT_FOUND, 202 "''{0}'' \ub9e4\uac1c\ubcc0\uc218\ub97c \uc778\uc2dd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 203 204 {MsgKey.ER_FEATURE_NOT_SUPPORTED, 205 "''{0}'' \ub9e4\uac1c\ubcc0\uc218\ub294 \uc778\uc2dd\ud560 \uc218 \uc788\uc73c\ub098 \uc694\uccad\ub41c \uac12\uc744 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 206 207 {MsgKey.ER_STRING_TOO_LONG, 208 "\uacb0\uacfc \ubb38\uc790\uc5f4\uc774 \ub108\ubb34 \uae38\uc5b4 DOMString\uc5d0 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: ''{0}'' "}, 209 210 {MsgKey.ER_TYPE_MISMATCH_ERR, 211 "\uc774 \ub9e4\uac1c\ubcc0\uc218 \uc774\ub984\uc5d0 \ub300\ud55c \uac12 \uc720\ud615\uc774 \uc608\uc0c1 \uac12 \uc720\ud615\uacfc \ud638\ud658\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 212 213 {MsgKey.ER_NO_OUTPUT_SPECIFIED, 214 "\ub370\uc774\ud130\ub97c \uae30\ub85d\ud560 \ucd9c\ub825 \ub300\uc0c1\uc774 \ub110(null)\uc785\ub2c8\ub2e4."}, 215 216 {MsgKey.ER_UNSUPPORTED_ENCODING, 217 "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \uc778\ucf54\ub529\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 218 219 {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE, 220 "\ub178\ub4dc\ub97c \uc9c1\ub82c\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 221 222 {MsgKey.ER_CDATA_SECTIONS_SPLIT, 223 "CDATA \uc139\uc158\uc5d0 \uc885\ub8cc \ud45c\uc2dc \ubb38\uc790\uc778 ']]>'\uac00 \ud558\ub098 \uc774\uc0c1 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4."}, 224 225 {MsgKey.ER_WARNING_WF_NOT_CHECKED, 226 "Well-Formedness \uac80\uc0ac\uae30\uc758 \uc778\uc2a4\ud134\uc2a4\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. Well-Formed \ub9e4\uac1c\ubcc0\uc218\uac00 true\ub85c \uc124\uc815\ub418\uc5c8\uc9c0\ub9cc Well-Formedness \uac80\uc0ac\ub97c \uc218\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." 227 }, 228 229 {MsgKey.ER_WF_INVALID_CHARACTER, 230 "''{0}'' \ub178\ub4dc\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 XML \ubb38\uc790\uac00 \uc788\uc2b5\ub2c8\ub2e4." 231 }, 232 233 { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT, 234 "\uc124\uba85\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 XML \ubb38\uc790(Unicode: 0x{0})\uac00 \uc788\uc2b5\ub2c8\ub2e4. " 235 }, 236 237 { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI, 238 "\ucc98\ub9ac \uba85\ub839\uc5b4 \ub370\uc774\ud130\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 XML \ubb38\uc790(Unicode: 0x{0})\uac00 \uc788\uc2b5\ub2c8\ub2e4 " 239 }, 240 241 { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA, 242 "CDATASection\uc758 \ub0b4\uc6a9\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 XML \ubb38\uc790(Unicode: 0x{0})\uac00 \uc788\uc2b5\ub2c8\ub2e4. " 243 }, 244 245 { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT, 246 "\ub178\ub4dc\uc758 \ubb38\uc790 \ub370\uc774\ud130 \ub0b4\uc6a9\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 XML \ubb38\uc790(Unicode: 0x{0})\uac00 \uc788\uc2b5\ub2c8\ub2e4. " 247 }, 248 249 { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME, 250 "\uc774\ub984\uc774 ''{1}''\uc778 {0} \ub178\ub4dc\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 XML \ubb38\uc790\uac00 \uc788\uc2b5\ub2c8\ub2e4. " 251 }, 252 253 { MsgKey.ER_WF_DASH_IN_COMMENT, 254 "\uc124\uba85 \ub0b4\uc5d0\uc11c\ub294 \"--\" \ubb38\uc790\uc5f4\uc774 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4." 255 }, 256 257 {MsgKey.ER_WF_LT_IN_ATTVAL, 258 "\"{0}\" \uc694\uc18c \uc720\ud615\uacfc \uc5f0\uad00\ub41c \"{1}\" \uc18d\uc131\uac12\uc5d0 ''<'' \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uba74 \uc548\ub429\ub2c8\ub2e4." 259 }, 260 261 {MsgKey.ER_WF_REF_TO_UNPARSED_ENT, 262 "\"&{0};\"\uc758 \uad6c\ubd84 \ubd84\uc11d\ub418\uc9c0 \uc54a\uc740 \uc5d4\ud2f0\ud2f0 \ucc38\uc870\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " 263 }, 264 265 {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT, 266 "\uc18d\uc131\uac12\uc5d0\ub294 \"&{0};\" \uc678\ubd80 \uc5d4\ud2f0\ud2f0 \ucc38\uc870\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. " 267 }, 268 269 {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND, 270 "\"{0}\" \uc811\ub450\ubd80\ub97c \"{1}\" \uc774\ub984 \uacf5\uac04\uc5d0 \ubc14\uc778\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4." 271 }, 272 273 {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME, 274 "\"{0}\" \uc694\uc18c\uc758 \ub85c\uceec \uc774\ub984\uc774 \ub110(null)\uc785\ub2c8\ub2e4." 275 }, 276 277 {MsgKey.ER_NULL_LOCAL_ATTR_NAME, 278 "\"{0}\" \uc18d\uc131\uc758 \ub85c\uceec \uc774\ub984\uc774 \ub110(null)\uc785\ub2c8\ub2e4." 279 }, 280 281 { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF, 282 "\"{0}\" \uc5d4\ud2f0\ud2f0 \ub178\ub4dc\uc758 \ub300\uccb4 \ud14d\uc2a4\ud2b8\uc5d0 \ubc14\uc778\ub4dc\ub418\uc9c0 \uc54a\uc740 \uc811\ub450\ubd80 \"{2}\"\uc744(\ub97c) \uac16\ub294 \"{1}\" \uc694\uc18c \ub178\ub4dc\uac00 \uc788\uc2b5\ub2c8\ub2e4." 283 }, 284 285 { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF, 286 "\"{0}\" \uc5d4\ud2f0\ud2f0 \ub178\ub4dc\uc758 \ub300\uccb4 \ud14d\uc2a4\ud2b8\uc5d0 \ubc14\uc778\ub4dc\ub418\uc9c0 \uc54a\uc740 \uc811\ub450\ubd80 \"{2}\"\uc744(\ub97c) \uac16\ub294 \"{1}\" \uc18d\uc131 \ub178\ub4dc\uac00 \uc788\uc2b5\ub2c8\ub2e4." 287 }, 288 289 }; 290 291 return contents; 292 } 293 }