< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xpath/internal/res/XPATHErrorResources_zh_CN.java

Print this page

        

*** 1,8 **** /* ! * reserved comment block ! * DO NOT REMOVE OR ALTER! */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. --- 1,7 ---- /* ! * Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership.
*** 30,39 **** --- 29,39 ---- * you need to first add a Static string constant for the * Key and update the contents array with Key, Value pair * Also you need to update the count of messages(MAX_CODE)or * the count of warnings(MAX_WARNING) [ Information purpose only] * @xsl.usage advanced + * @LastModified: May 2019 */ public class XPATHErrorResources_zh_CN extends ListResourceBundle { /*
*** 148,157 **** --- 148,161 ---- "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG"; public static final String ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG"; public static final String ER_PREDICATE_ILLEGAL_SYNTAX = "ER_PREDICATE_ILLEGAL_SYNTAX"; + public static final String ER_PREDICATE_TOO_MANY_OPEN = + "ER_PREDICATE_TOO_MANY_OPEN"; + public static final String ER_COMPILATION_TOO_MANY_OPERATION = + "ER_COMPILATION_TOO_MANY_OPERATION"; public static final String ER_ILLEGAL_AXIS_NAME = "ER_ILLEGAL_AXIS_NAME"; public static final String ER_UNKNOWN_NODETYPE = "ER_UNKNOWN_NODETYPE"; public static final String ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED"; public static final String ER_COULDNOT_BE_FORMATTED_TO_NUMBER =
*** 462,471 **** --- 466,481 ---- "已找到 ',', 但后面没有参数!"}, { ER_PREDICATE_ILLEGAL_SYNTAX, "'..[predicate]' 或 '.[predicate]' 是非法语法。请改用 'self::node()[predicate]'。"}, + { ER_PREDICATE_TOO_MANY_OPEN, + "对 {1} 中的 {0} 进行语法分析时堆栈溢出。未结束的谓词太多 ({2})。"}, + + { ER_COMPILATION_TOO_MANY_OPERATION, + "编译表达式时堆栈溢出。运算太多 ({0})。"}, + { ER_ILLEGAL_AXIS_NAME, "非法轴名称: {0}"}, { ER_UNKNOWN_NODETYPE, "未知节点类型: {0}"},
< prev index next >